*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #faf8f5;
    --bg-warm: #f3efe9;
    --bg-card: #ffffff;
    --bg-accent: #ede7df;
    --cream: #fdfcfa;
    --brown-deep: #3d3229;
    --brown: #5c4a3a;
    --brown-light: #8b7560;
    --gold: #a08050;
    --gold-soft: #c4a87a;
    --text: #3d3229;
    --text-muted: #7a6b5d;
    --border: rgba(160, 128, 80, 0.15);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ===== NAV ===== */
.nav {
    --nav-h: 1.8rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.8rem 4rem;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.2rem 4rem;
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--brown-deep);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-stamp {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    transform: translateX(50px);
}
.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-deep);
    transition: color 0.3s;
    text-shadow: 0 0 8px rgba(250, 248, 245, 0.6);
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    width: 22px; height: 1.5px;
    background: var(--brown-deep);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 45% 55%;
}
.hero-left {
    display: flex;
    align-items: center;
    padding: 6rem 4rem 4rem;
    background: var(--bg);
}
.hero-left-inner {
    max-width: 520px;
}
.hero-brand {
    margin-bottom: 2.5rem;
}
.hero-seal {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
}
.hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--brown-deep);
    margin-bottom: 1.2rem;
}
.hero-left p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}
.btn--dark {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--brown-deep);
    color: var(--brown-deep);
    transition: all 0.3s var(--ease);
}
.btn--dark:hover {
    background: var(--brown-deep);
    color: #fff;
}
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay-text {
    position: absolute;
    top: clamp(2.5rem, 6vw, 4.75rem);
    left: clamp(2rem, 3.5vw, 3.5rem);
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    text-align: left;
    max-width: min(40rem, 84%);
    transform: translateY(50px);
}
.hero-overlay-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.18;
    color: rgb(61, 50, 41);
}
.hero-overlay-break {
    display: block;
}
.hero-overlay-keywords {
    font-family: var(--font-body);
    font-size: clamp(0.52rem, 0.7vw, 0.66rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgb(61, 50, 41);
    position: static;
    display: block;
    white-space: nowrap;
}
.btn--light:hover {
    background: #fff;
    color: var(--brown-deep);
    border-color: #fff;
}

/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.btn:hover {
    background: var(--gold);
    color: var(--cream);
}

/* ===== FEATURED STRIP ===== */
.featured-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 3.5rem 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.strip-item { text-align: center; }
.strip-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
}
.strip-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: block;
}
.strip-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SECTION COMMON ===== */
.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

/* ===== ABOUT ===== */
.about {
    padding: 9rem 4rem;
    background: var(--bg);
}
.about-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-image-col {
    display: flex;
    justify-content: center;
}
.about-portrait {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 24px 60px -28px rgba(60, 40, 25, 0.35);
    margin: 0;
}
.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--ease);
}
.about-portrait:hover img {
    transform: scale(1.04);
}
.about-portrait figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 1.4rem 1.1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: #fff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.about-portrait-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.2;
}
.about-portrait-role {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
}
.about-text-col h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 2rem;
}
.about-lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.about-text-col p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.about-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.about-signature span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown-deep);
    display: block;
}
.about-signature em {
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

/* ===== EXPERIENCES ===== */
.experiences {
    padding: 9rem 4rem;
    background: var(--bg-warm);
}
.experiences-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}
.experiences-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}
.experiences-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}
.experiences-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.exp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.exp-image {
    aspect-ratio: 1;
    overflow: hidden;
}
.exp-image img {
    transition: transform 0.6s var(--ease);
}
.exp-card:hover .exp-image img {
    transform: scale(1.06);
}
.exp-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.exp-tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.exp-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}
.exp-content p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.exp-detail {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    margin-top: auto;
}

/* ===== SHOP ===== */
.shop {
    padding: 8.5rem 4rem;
    background:
        radial-gradient(circle at top right, rgba(196, 168, 122, 0.1), transparent 24%),
        linear-gradient(180deg, #f6f1ea 0%, #faf7f2 100%);
}
.shop-shell {
    max-width: 1280px;
    margin: 0 auto;
}
.shop-header {
    margin-bottom: 4rem;
}
.shop-header-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.84fr);
    gap: 2.5rem;
    align-items: start;
}
.shop-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3vw, 2.85rem);
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--brown-deep);
}
.shop-intro {
    max-width: 44ch;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--text-muted);
}
.shop-list {
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
}
.shop-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 3rem;
    align-items: center;
}
.shop-feature--reverse {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}
.shop-media {
    overflow: hidden;
    border-radius: 4px;
    min-height: 100%;
    box-shadow: 0 16px 38px rgba(61, 50, 41, 0.06);
}
.shop-media--portrait {
    aspect-ratio: 4 / 5;
}
.shop-media--square {
    aspect-ratio: 1 / 1;
}
.shop-media img {
    transition: transform 0.8s var(--ease);
}
.shop-feature:hover .shop-media img {
    transform: scale(1.03);
}
.shop-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 35rem;
    padding: clamp(1.4rem, 2vw, 2rem) 0;
    background: transparent;
    border-top: 1px solid rgba(160, 128, 80, 0.16);
    border-bottom: 1px solid rgba(160, 128, 80, 0.1);
}
.shop-kind {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1.15rem;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.shop-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2.05rem);
    font-weight: 300;
    line-height: 1.16;
    color: var(--brown-deep);
    margin-bottom: 0.9rem;
}
.shop-copy p {
    max-width: 46ch;
    font-size: 0.89rem;
    font-weight: 300;
    line-height: 1.76;
    color: var(--text-muted);
}
.shop-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 1.5rem 0 1.9rem;
}
.shop-meta span {
    position: relative;
    padding-left: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    background: transparent;
}
.shop-meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: rgba(160, 128, 80, 0.5);
}
.shop-btn {
    align-self: flex-start;
}
.shop-note {
    margin-top: 2.5rem;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(160, 128, 80, 0.16);
}
.shop-note p {
    max-width: 58ch;
    font-size: 0.84rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--text-muted);
}

/* ===== SHOP GRID (8 products) ===== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem 1.4rem;
}
.shop-card {
    appearance: none;
    background: var(--bg-card);
    border: 1px solid rgba(160, 128, 80, 0.12);
    padding: 0;
    text-align: left;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    font: inherit;
    color: inherit;
}
.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(61, 50, 41, 0.08);
    border-color: rgba(160, 128, 80, 0.3);
}
.shop-card-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.shop-card-media img {
    transition: transform 0.8s var(--ease);
}
.shop-card:hover .shop-card-media img {
    transform: scale(1.04);
}
.shop-card-body {
    padding: 1.1rem 1.15rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.shop-card-kind {
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.shop-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--brown-deep);
}
.shop-card p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-muted);
}
.shop-card-cta {
    margin-top: 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
}

/* ===== SHOP MODAL ===== */
.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.shop-modal.open {
    display: flex;
}
.shop-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 22, 16, 0.55);
    backdrop-filter: blur(4px);
}
.shop-modal-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: min(960px, 100%);
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    animation: shopModalIn 0.4s var(--ease);
}
@keyframes shopModalIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.shop-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--brown-deep);
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s var(--ease);
}
.shop-modal-close:hover {
    background: #fff;
}
.shop-modal-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.shop-modal-body {
    padding: 2.4rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.shop-modal-body .shop-kind {
    margin-bottom: 0.8rem;
}
.shop-modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--brown-deep);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.shop-modal-body p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}
.shop-modal-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.shop-modal-meta li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
}
.shop-modal-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: rgba(160, 128, 80, 0.55);
}
.shop-modal-cta {
    align-self: flex-start;
}

/* ===== ABOUT EXTRAS ===== */
.about-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--brown);
    margin: 1.3rem 0 1.6rem;
    line-height: 1.5;
}
.about-story {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.about-story p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 9rem 4rem;
    background: var(--bg);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brown-deep);
}
.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
    transition: transform 0.7s var(--ease);
}
.gallery-item--zoomed img {
    transform: scale(1.3);
    transform-origin: top left;
}
.gallery-item--zoomed:hover img {
    transform: scale(1.35);
    transform-origin: top left;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== HOW IT WORKS — editorial timeline ===== */
.how-it-works {
    padding: 9rem 4rem 8rem;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}
.how-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}
.how-header {
    text-align: center;
    margin-bottom: 5.5rem;
}
.how-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 300;
    color: var(--brown-deep);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-top: 0.7rem;
}
.how-header h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}
.how-intro {
    margin: 1.15rem auto 0;
    max-width: 36ch;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.how-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    position: relative;
}
.how-timeline::before {
    content: "";
    position: absolute;
    top: 2.4rem;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(160, 128, 80, 0.4) 10%,
        rgba(160, 128, 80, 0.4) 90%,
        transparent 100%);
    pointer-events: none;
}

.how-step {
    position: relative;
    padding-top: 4.6rem;
    transition: transform 0.6s var(--ease);
}
.how-step:hover {
    transform: translateY(-4px);
}

.how-marker {
    position: absolute;
    top: 2.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 1px solid var(--gold);
    box-shadow: 0 0 0 5px var(--bg-warm);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.how-step:hover .how-marker {
    background: var(--gold);
    transform: translateX(-50%) scale(1.18);
}

.how-roman {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(3.4rem, 5.4vw, 5rem);
    font-weight: 300;
    line-height: 0.85;
    color: var(--gold);
    opacity: 0.92;
    margin-bottom: 1.4rem;
    letter-spacing: -0.03em;
    transition: color 0.55s var(--ease), opacity 0.55s var(--ease);
}
.how-step:hover .how-roman {
    color: var(--brown-deep);
    opacity: 1;
}

.how-text {
    position: relative;
}
.how-kicker {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 0.85rem;
}
.how-step h3 {
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 0.85rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
}
.how-step p {
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--text-muted);
    max-width: 24ch;
}

.how-coda {
    margin-top: 4.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.how-coda-mark {
    font-size: 1rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0;
}
.how-coda p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--brown);
    letter-spacing: 0.01em;
}

/* ===== BEFORE YOU BOOK ===== */
.before-book {
    padding: 7rem 4rem;
    background: var(--bg-warm);
}
.before-book-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.before-book-header {
    text-align: center;
    margin-bottom: 4rem;
}
.before-book-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--brown-deep);
    margin-top: 0.8rem;
}
.before-book-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.before-book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
}
.before-book-item {
    position: relative;
    padding-top: 0.4rem;
}
.before-book-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.6rem;
    opacity: 0.7;
}
.before-book-item h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown-deep);
    margin-bottom: 0.5rem;
}
.before-book-item p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 8rem 4rem;
    background: var(--bg);
    text-align: center;
}
.testimonial-inner {
    max-width: 750px;
    margin: 0 auto;
}
.testimonial blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--brown-deep);
    margin-bottom: 2rem;
}
.testimonial cite {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.testimonial cite em {
    color: var(--brown-light);
    font-style: normal;
}

/* ===== CONTACT ===== */
.contact {
    padding: 9rem 4rem;
    background: var(--bg-warm);
}
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 2.5rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-block h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.contact-block p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}
.contact-form-wrap {
    display: flex;
    align-items: center;
}
.contact-form-wrap form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    border-bottom-color: var(--gold);
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: var(--text-muted);
}
.contact-form-wrap select {
    appearance: none;
    color: var(--text-muted);
}
.contact-form-wrap select option {
    background: var(--bg);
    color: var(--text);
}
.contact-form-wrap textarea {
    resize: vertical;
    min-height: 80px;
}
.contact-form-wrap .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 4rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--brown-deep);
}
.footer-links {
    display: flex;
    gap: 2.5rem;
}
.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 4rem; }
    .experiences-grid { grid-template-columns: 1fr; }
    .exp-card { grid-template-columns: 0.8fr 1fr; }
    .shop-header-layout,
    .shop-feature,
    .shop-feature--reverse {
        grid-template-columns: 1fr;
    }
    .shop-copy {
        max-width: none;
    }
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-modal-dialog {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }
    .shop-modal-media {
        aspect-ratio: 16 / 10;
    }
    .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
    .how-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2.2rem;
    }
    .how-timeline::before { display: none; }
    .how-step p { max-width: none; }
    .before-book-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.25rem; }
    .nav.scrolled { padding: 0.9rem 1.25rem; }
    .nav-logo {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        gap: 0.45rem;
    }
    .nav-stamp {
        height: 30px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(250,248,245,0.98);
        padding: 1.25rem 1.25rem 1.5rem;
        gap: 1rem;
        transform: none;
        box-shadow: 0 12px 30px rgba(61, 50, 41, 0.08);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-right {
        height: 58vh;
        min-height: 31rem;
        order: -1;
    }
    .hero-left {
        padding: 2.75rem 1.25rem 3.5rem;
    }
    .hero-left-inner {
        max-width: none;
    }
    .hero-brand {
        margin-bottom: 1.5rem;
    }
    .hero-seal {
        width: 48px;
        height: 48px;
    }
    .hero-left h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }
    .hero-left p {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.8rem;
    }
    .hero-overlay-text {
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: auto;
        max-width: min(14rem, calc(100% - 2rem));
        gap: 0.45rem;
        padding: 0.9rem 1rem 0.85rem;
        background: linear-gradient(180deg, rgba(250, 248, 245, 0.18), rgba(250, 248, 245, 0.12));
        border: 1px solid rgba(160, 128, 80, 0.08);
        border-radius: 18px;
        backdrop-filter: blur(4px);
        box-shadow: none;
        transform: none;
    }
    .hero-overlay-tagline {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
        line-height: 1.02;
    }
    .hero-overlay-break {
        display: inline;
    }
    .hero-overlay-keywords {
        font-size: 0.58rem;
        letter-spacing: 0.16em;
        display: block;
        white-space: normal;
    }
    .btn,
    .btn--dark {
        width: 100%;
        text-align: center;
        padding: 1rem 1.25rem;
    }

    .featured-strip {
        flex-direction: column;
        gap: 1.4rem;
        padding: 2.5rem 1.25rem;
    }
    .strip-divider { width: 40px; height: 1px; }

    .about, .experiences, .shop, .gallery, .contact, .how-it-works, .before-book {
        padding: 4.5rem 1.25rem;
    }
    .section-label {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }
    .about-layout,
    .contact-layout {
        gap: 3rem;
    }
    .about-image-col {
        gap: 1rem;
    }
    .about-portrait {
        max-width: 380px;
    }
    .about-text-col h2,
    .experiences-header h2,
    .gallery-header h2,
    .how-header h2,
    .before-book-header h2,
    .contact-info h2 {
        line-height: 1.1;
    }
    .about-lead,
    .about-text-col p,
    .experiences-intro,
    .before-book-intro,
    .contact-block p,
    .how-step p,
    .before-book-item p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .exp-card { grid-template-columns: 1fr; }
    .exp-image { aspect-ratio: 16/9; }
    .exp-content {
        padding: 1.5rem 1.25rem;
    }
    .exp-content h3 {
        font-size: 1.25rem;
    }
    .shop-header {
        margin-bottom: 2.75rem;
    }
    .shop-header-layout {
        gap: 0.9rem;
    }
    .shop-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        line-height: 1.12;
    }
    .shop-intro {
        font-size: 0.88rem;
        line-height: 1.72;
        max-width: 36ch;
    }
    .shop-list {
        gap: 2.2rem;
    }
    .shop-feature {
        gap: 1.1rem;
    }
    .shop-copy {
        padding: 1.2rem 0 0.1rem;
    }
    .shop-copy h3 {
        font-size: 1.36rem;
        margin-bottom: 0.7rem;
    }
    .shop-copy p,
    .shop-note p {
        font-size: 0.88rem;
        line-height: 1.68;
    }
    .shop-meta {
        gap: 0.45rem;
        margin: 1rem 0 1.5rem;
    }
    .shop-meta span {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
        padding-left: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 0.85rem;
    }
    .gallery-item--tall { grid-row: span 2; }
    .gallery-item--wide { grid-column: span 2; }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .shop-card-body {
        padding: 0.9rem 0.95rem 1.1rem;
    }
    .shop-card h3 {
        font-size: 0.98rem;
    }
    .shop-modal {
        padding: 0;
    }
    .shop-modal-dialog {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        width: 100%;
    }
    .shop-modal-body {
        padding: 1.6rem 1.25rem;
    }
    .shop-modal-body h3 {
        font-size: 1.35rem;
    }
    .about-tagline {
        font-size: 0.98rem;
    }

    .how-header,
    .before-book-header,
    .gallery-header,
    .experiences-header {
        margin-bottom: 3rem;
    }
    .how-timeline {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .how-timeline::before {
        display: block;
        top: 0;
        bottom: 0;
        left: 1.4rem;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(160, 128, 80, 0.4) 6%,
            rgba(160, 128, 80, 0.4) 94%,
            transparent 100%);
    }
    .how-step {
        padding-top: 0;
        padding-left: 3.6rem;
    }
    .how-step:hover {
        transform: translateY(0);
    }
    .how-marker {
        top: 0.55rem;
        left: 1.4rem;
    }
    .how-roman {
        font-size: 2.6rem;
        margin-bottom: 0.55rem;
        line-height: 1;
    }
    .how-coda {
        margin-top: 3.2rem;
    }
    .how-coda p {
        font-size: 0.98rem;
    }
    .before-book-grid { grid-template-columns: 1fr; gap: 2rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap form {
        gap: 1.2rem;
    }
    .footer {
        padding: 2.5rem 1.25rem;
    }
    .footer-links {
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav { padding: 0.9rem 1rem; }
    .nav.scrolled { padding: 0.8rem 1rem; }
    .nav-logo {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
    }
    .nav-stamp {
        height: 28px;
    }
    .hero-right {
        height: 54vh;
        min-height: 27rem;
    }
    .hero-overlay-text {
        left: 0.85rem;
        bottom: 0.85rem;
        max-width: min(12.75rem, calc(100% - 1.7rem));
        padding: 0.8rem 0.9rem;
    }
    .hero-overlay-tagline {
        font-size: clamp(1.45rem, 7.5vw, 1.9rem);
    }
    .hero-overlay-keywords {
        font-size: 0.54rem;
        letter-spacing: 0.14em;
    }
    .hero-left {
        padding: 2.4rem 1rem 3rem;
    }
    .hero-left h1 {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
    .hero-left p {
        font-size: 0.95rem;
    }
    .about, .experiences, .shop, .gallery, .contact, .how-it-works, .before-book, .testimonial {
        padding: 4rem 1rem;
    }
    .about-image-col {
        justify-content: center;
    }
    .about-portrait {
        max-width: 100%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-image--dress-detail {
        object-position: center 72%;
    }
    .exp-content,
    .shop-copy,
    .before-book-item,
    .contact-form-wrap form {
        padding-left: 0;
        padding-right: 0;
    }
    .shop-copy {
        padding-top: 1.4rem;
        padding-bottom: 0.2rem;
    }
    .shop-kind {
        margin-bottom: 0.75rem;
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }
    .shop-copy h3 {
        font-size: 1.22rem;
        line-height: 1.18;
    }
    .shop-copy p {
        font-size: 0.85rem;
        line-height: 1.66;
    }
    .shop-meta span {
        font-size: 0.6rem;
    }
    .shop-note {
        margin-top: 2rem;
        padding-top: 1.25rem;
    }
    .shop-note p {
        font-size: 0.8rem;
        line-height: 1.72;
    }
    .footer {
        padding: 2.25rem 1rem;
    }
    .footer-links {
        flex-direction: column;
    }
}
