/* =========================================================
   Ollie B. Permanent Fine Jewelry
   Phase 1 — atelier design system (tokens, type, chrome)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Homemade+Apple&display=swap');

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

:root {
    /* Brand */
    --primary: #5E1F23;
    --primary-dark: #451519;
    --primary-deep: #2E0E10;
    --accent: #B89A70;
    --accent-light: #C9AF8A;
    --accent-soft: rgba(184, 154, 112, 0.35);

    /* Surfaces */
    --cream: #EFEEEA;
    --cream-warm: #F6F3EC;
    --cream-deep: #E5E1D5;
    --white: #FFFFFF;

    /* Text (darker for AA contrast) */
    --text: #5C4735;
    --text-body: #5C4735;
    --text-soft: #8A7562;
    --text-ink: #2F2418;
    --border: #D4C4A8;

    /* Legacy aliases */
    --light: var(--cream);
    --dark: var(--primary);
    --text-light: var(--text-soft);

    /* Type */
    --font-display: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
    --font-script: 'Homemade Apple', 'Caveat', cursive;

    /* Shape */
    --radius-sm: 3px;
    --radius: 6px;
    --radius-lg: 12px;
    --radius-pill: 999px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(94, 31, 35, 0.05);
    --shadow-md: 0 4px 14px rgba(94, 31, 35, 0.08);
    --shadow-lg: 0 18px 40px rgba(94, 31, 35, 0.12);
    --shadow-polaroid: 0 1px 2px rgba(94, 31, 35, 0.06), 0 14px 28px rgba(94, 31, 35, 0.10);

    /* Motion */
    --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
    --t-fast: 180ms;
    --t-med: 320ms;
    --t-slow: 600ms;

    /* Layout */
    --container: 1200px;
    --container-narrow: 780px;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Subtle paper grain — fixed, unobtrusive */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.12 0 0 0 0 0.14 0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

body > * {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--primary-deep);
    line-height: 1.15;
    letter-spacing: -0.005em;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.35rem, 1.5vw + 0.8rem, 1.8rem);
    font-weight: 500;
}

h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--primary);
    transition: color var(--t-fast) var(--ease);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    scroll-margin-top: 80px;
}

/* ----- Atelier utilities ----- */

/* Scroll reveal (opt-in via .reveal-on-scroll, toggled by script.js) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 3.6em;
    font-weight: 400;
    line-height: 0.9;
    float: left;
    margin: 0.12em 0.08em 0 0;
    color: var(--primary);
}

/* ----- Navigation ----- */
.navbar {
    background: rgba(46, 14, 16, 0.94);
    backdrop-filter: saturate(1.1) blur(10px);
    -webkit-backdrop-filter: saturate(1.1) blur(10px);
    border-bottom: 1px solid rgba(184, 154, 112, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cream-warm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--t-fast) var(--ease);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--t-med) var(--ease), left var(--t-med) var(--ease);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

.nav-menu a.active {
    color: var(--accent);
}

.nav-menu .cta-button {
    background: var(--cream-warm);
    color: var(--primary-deep);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all var(--t-fast) var(--ease);
    border: 1px solid var(--cream-warm);
}

.nav-menu .cta-button::after {
    display: none;
}

.nav-menu .cta-button:hover {
    background: var(--accent);
    color: var(--primary-deep);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.nav-menu .cta-button.active {
    background: var(--accent);
    color: var(--primary-deep);
    border-color: var(--accent);
}

.nav-review-dropdown {
    position: relative;
}

.nav-review-dropdown .review-toggle {
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-warm);
    padding: 0.4rem 0;
    transition: color var(--t-fast) var(--ease);
}

.nav-review-dropdown .review-toggle:hover {
    color: var(--accent);
}

.review-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 0.5rem;
    background: var(--cream);
    border: 1px solid var(--accent-soft);
    border-radius: var(--radius-sm);
    min-width: 160px;
    list-style: none;
    padding: 0.4rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 100;
}

.nav-review-dropdown:hover .review-dropdown-menu,
.nav-review-dropdown:focus-within .review-dropdown-menu,
.nav-review-dropdown.open .review-dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .nav-review-dropdown.open .review-dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.25rem 0 0.5rem;
    }

    .nav-review-dropdown.open .review-dropdown-menu li a {
        color: var(--cream-warm);
        justify-content: center;
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .nav-review-dropdown.open .review-dropdown-menu li a:hover {
        background: transparent;
        color: var(--accent);
    }
}

.review-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    color: var(--primary-deep);
    text-decoration: none;
    transition: background var(--t-fast) var(--ease);
}

.review-dropdown-menu li a::after {
    display: none;
}

.review-dropdown-menu li a:hover {
    background: var(--accent-soft);
}

.cta-button {
    background: var(--primary);
    color: var(--cream);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 26px;
    gap: 5px;
    padding: 0.5rem 0;
}

.hamburger span {
    width: 100%;
    height: 1.5px;
    background: var(--cream-warm);
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}

/* ----- Hero (atelier) ----- */
.hero-atelier {
    position: relative;
    background: var(--cream);
    border-bottom: 1px solid var(--accent-soft);
}

.hero-atelier-inner {
    max-width: var(--container);
    margin: 0 auto;
    min-height: clamp(520px, 82vh, 760px);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

.hero-atelier-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 6.5rem) clamp(1.5rem, 4vw, 4.5rem);
    position: relative;
    z-index: 3;
}

.hero-atelier-eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.4rem;
}

.hero-atelier h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.6rem, 5.6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--primary-deep);
    margin-bottom: 1.4rem;
}

.hero-atelier h1 em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    display: block;
    font-size: 0.52em;
    line-height: 1;
    margin-top: 0.4rem;
    letter-spacing: 0.01em;
}

.hero-atelier-lede {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 38ch;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.hero-atelier-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.hero-atelier-meta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.hero-atelier-meta strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-atelier-media {
    position: relative;
    overflow: hidden;
}

.hero-atelier-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 50%;
    filter: saturate(1.04) contrast(1.02);
}

.hero-atelier-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(239, 238, 234, 0.6) 0%, rgba(239, 238, 234, 0) 28%);
    pointer-events: none;
}

.hero-atelier-stamp {
    position: absolute;
    left: clamp(1.25rem, 3vw, 2.5rem);
    bottom: clamp(1.25rem, 3vw, 2.5rem);
    z-index: 4;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    padding: 0.75rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: rotate(-2deg);
    white-space: nowrap;
}

@media (max-width: 860px) {
    .hero-atelier-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-atelier-media {
        height: 60vh;
        min-height: 360px;
        order: -1;
    }

    .hero-atelier-stamp {
        left: 1rem;
        bottom: 1rem;
    }
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all var(--t-fast) var(--ease);
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--primary-deep);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--accent);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--cream);
    border-color: var(--primary);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 0.88rem;
}

/* ----- Letter (welcome, first-person) ----- */
.letter {
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
    background: var(--cream);
    position: relative;
}

.letter-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.letter-aside {
    position: sticky;
    top: 6rem;
    text-align: center;
}

.letter-aside-mark {
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.9rem;
}

.letter-aside-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.letter-aside-hair {
    width: 48px;
    height: 1px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.letter-body {
    max-width: 60ch;
}

.letter-body .eyebrow {
    margin-bottom: 1rem;
}

.letter-body h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw + 0.6rem, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

.letter-body p {
    font-size: 1.06rem;
    line-height: 1.82;
    color: var(--text-body);
    margin-bottom: 1.2rem;
}

.letter-body p.drop-cap::first-letter {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 4em;
    line-height: 0.88;
    float: left;
    margin: 0.08em 0.12em 0 -0.04em;
    color: var(--primary);
}

.letter-signoff {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.letter-signoff-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.letter-signoff-name {
    font-family: var(--font-body);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-soft);
}

@media (max-width: 860px) {
    .letter-inner {
        grid-template-columns: 1fr;
    }

    .letter-aside {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }

    .letter-aside-mark {
        font-size: 1.6rem;
        margin: 0;
    }

    .letter-aside-hair {
        display: none;
    }
}

/* ----- Interior page masthead ----- */
.page-mast {
    background: var(--cream);
    padding: clamp(3rem, 6vw, 5.5rem) 1.25rem clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    border-bottom: 1px solid var(--accent-soft);
}

.page-mast-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-mast .eyebrow {
    margin-bottom: 1.2rem;
}

.page-mast h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.4rem, 4.4vw + 0.5rem, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.page-mast h1 em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    font-size: 0.68em;
    letter-spacing: 0;
}

.page-mast p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin: 0 auto;
    line-height: 1.75;
}

/* ----- Chain showcase (polaroid grid) ----- */
.chain-showcase {
    background: var(--cream);
    padding: clamp(3rem, 6vw, 5rem) 1.25rem;
}

.chain-showcase .studio-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ----- Restaurant-style menu sections ----- */
.menu-section {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
    background: var(--cream);
    border-top: 1px solid var(--accent-soft);
}

.menu-section-alt {
    background: var(--cream-warm);
}

.menu-section-header {
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.menu-section-header .eyebrow {
    margin-bottom: 0.9rem;
}

.menu-section-header h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.4vw + 0.5rem, 3rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--primary-deep);
    margin-bottom: 0.9rem;
}

.menu-section-header h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
    font-size: 0.78em;
}

.menu-section-header p {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.75;
}

.menu-book {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

.menu-card {
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    padding: clamp(1.8rem, 3vw, 2.5rem);
    position: relative;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-section-alt .menu-card {
    background: var(--cream);
}

.menu-card-head {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--accent-soft);
    margin-bottom: 1.25rem;
    min-height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.menu-card-mark {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.menu-card-head h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.55rem, 1.5vw + 1rem, 1.85rem);
    line-height: 1.1;
    color: var(--primary-deep);
    margin-bottom: 0.45rem;
    letter-spacing: -0.005em;
}

.menu-card-head p {
    font-size: 0.86rem;
    color: var(--text-soft);
    font-style: italic;
    margin: 0;
    line-height: 1.45;
}

.menu-single {
    max-width: 780px;
    margin: 0 auto;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.menu-row + .menu-row {
    border-top: 1px solid rgba(184, 154, 112, 0.18);
}

.menu-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.18rem;
    color: var(--primary-deep);
    line-height: 1.3;
    letter-spacing: -0.005em;
    flex-shrink: 1;
    min-width: 0;
}

.menu-name strong {
    font-weight: 500;
}

.menu-desc {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-body);
    font-style: normal;
    margin-top: 0.3rem;
    max-width: 56ch;
    letter-spacing: 0;
}

.menu-row-expanded {
    flex-direction: column;
    align-items: stretch;
}

.menu-row-expanded .menu-desc {
    max-width: 100%;
}

.menu-row-head {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    width: 100%;
}

.menu-desc-fine {
    font-size: 0.78rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-top: 0.4rem;
}

.menu-leader {
    flex: 1 1 auto;
    border-bottom: 1.5px dotted var(--accent);
    opacity: 0.55;
    min-width: 2rem;
    margin-top: 0.7em;
}

.menu-price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-price small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-left: 0.2rem;
}

.menu-note {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-soft);
    font-style: italic;
    margin-top: 1.5rem;
    text-align: center;
}

.menu-footnote {
    max-width: 560px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.02rem;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .menu-row {
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
    }

    .menu-leader {
        display: none;
    }

    .menu-name {
        flex: 1 1 auto;
    }
}

/* ----- Pullquote (burgundy slab) ----- */
.pullquote {
    background: var(--primary-deep);
    color: var(--cream-warm);
    padding: clamp(4rem, 8vw, 6.5rem) 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pullquote::before,
.pullquote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1px;
    background: var(--accent);
    opacity: 0.55;
}

.pullquote::before { top: 2.4rem; }
.pullquote::after { bottom: 2.4rem; }

.pullquote-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 4.5rem;
    line-height: 0.6;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.pullquote blockquote {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.4rem, 2.4vw + 0.6rem, 2.3rem);
    line-height: 1.35;
    letter-spacing: -0.005em;
    max-width: 26ch;
    margin: 0 auto 1.8rem;
    color: var(--cream-warm);
}

.pullquote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

.pullquote cite::before {
    content: '—  ';
    letter-spacing: 0;
}

/* ----- Events callout ----- */
.events-callout {
    background: var(--cream-warm);
    padding: clamp(4rem, 7vw, 6rem) 1.25rem;
    border-top: 1px solid var(--accent-soft);
    border-bottom: 1px solid var(--accent-soft);
}

.events-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.events-copy .eyebrow {
    margin-bottom: 1rem;
}

.events-copy h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3vw + 0.6rem, 2.8rem);
    line-height: 1.12;
    color: var(--primary-deep);
    margin-bottom: 1.25rem;
}

.events-copy h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
    font-size: 0.8em;
}

.events-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    max-width: 52ch;
}

.events-copy .fineprint {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 1.8rem;
}

.events-media {
    position: relative;
    padding: 0.9rem 0.9rem 2.6rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(-1.6deg);
    max-width: 440px;
    margin-left: auto;
}

.events-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: saturate(1.04);
}

.events-media-caption {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 1.05rem;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .events-inner {
        grid-template-columns: 1fr;
    }

    .events-media {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ----- Atelier CTA ----- */
.cta-atelier {
    background: var(--cream);
    padding: clamp(4rem, 7vw, 6rem) 1.25rem;
    text-align: center;
    position: relative;
}

.cta-atelier-inner {
    max-width: 620px;
    margin: 0 auto;
}

.cta-atelier .eyebrow {
    margin-bottom: 1rem;
}

.cta-atelier h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.6vw + 0.4rem, 3.2rem);
    line-height: 1.1;
    color: var(--primary-deep);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.cta-atelier h2 em {
    font-family: var(--font-script);
    color: var(--accent);
    font-style: normal;
    font-weight: 400;
}

.cta-atelier p {
    font-size: 1.04rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.cta-atelier-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    align-items: center;
}

.cta-atelier-hair {
    width: 80px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
    opacity: 0.8;
}

/* ----- Footer ----- */
.footer {
    background: var(--primary-deep);
    color: var(--cream);
    padding: 4rem 1.25rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--accent-soft);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer h5 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.9rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-mark {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.01em;
    line-height: 1;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--accent-light);
    letter-spacing: 0;
}

.footer p,
.footer a {
    color: var(--cream);
    opacity: 0.88;
    font-size: 0.92rem;
    line-height: 1.7;
    text-decoration: none;
    margin-bottom: 0.3rem;
    font-style: normal;
}

.footer p em {
    color: var(--accent-light);
    font-style: italic;
    opacity: 0.85;
    font-size: 0.86rem;
}

.footer a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-socials {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(239, 238, 234, 0.22);
    color: var(--cream);
    transition: all var(--t-fast) var(--ease);
    margin: 0;
}

.footer-socials a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary-deep);
    transform: translateY(-1px);
}

.footer-bottom {
    max-width: var(--container);
    margin: 2.5rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 154, 112, 0.22);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-deep);
        width: 100%;
        text-align: center;
        gap: 0;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(184, 154, 112, 0.3);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(184, 154, 112, 0.18);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1.25rem;
    }

    .nav-menu .cta-button {
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }

    .footer {
        padding: 3rem 1.25rem 1.25rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        margin-top: 2rem;
    }

    .reviews-strip-inner {
        flex-direction: column;
        gap: 0.9rem;
    }
}

/* ----- Reviews strip (compressed) ----- */
.reviews-strip {
    background: var(--cream-deep);
    border-top: 1px solid var(--accent-soft);
    border-bottom: 1px solid var(--accent-soft);
    padding: 1.75rem 1.25rem;
}

.reviews-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.reviews-strip-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

.review-buttons {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--cream);
    color: var(--primary);
    border: 1px solid var(--border);
    transition: all var(--t-fast) var(--ease);
}

.btn-review:hover {
    border-color: var(--accent);
    color: var(--primary-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-review i {
    color: inherit;
}

/* ----- Studio (alternating slabs) ----- */
.studio {
    background: var(--cream);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.studio-header {
    max-width: 900px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    padding: 0 1.25rem;
}

.studio-header .eyebrow {
    margin-bottom: 0.9rem;
}

.studio-header h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.1rem, 3.8vw + 0.4rem, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--primary-deep);
    margin-bottom: 0.9rem;
}

.studio-header h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
    font-size: 0.82em;
}

.studio-header p {
    font-size: 1.04rem;
    color: var(--text-body);
    max-width: 56ch;
    margin: 0 auto;
}

.studio-slab {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem) 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.studio-slab + .studio-slab {
    border-top: 1px solid var(--accent-soft);
}

.studio-slab:nth-child(even) .studio-slab-media {
    order: 2;
}

.studio-slab-media {
    position: relative;
    padding: 0.9rem 0.9rem 2.6rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(-1.2deg);
    transition: transform var(--t-med) var(--ease);
}

.studio-slab:nth-child(even) .studio-slab-media {
    transform: rotate(1.6deg);
}

.studio-slab-media:hover {
    transform: rotate(0deg) translateY(-4px);
}

.studio-slab-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: saturate(1.04);
}

.studio-slab-media .tag {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--primary);
    pointer-events: none;
}

.studio-slab-copy .eyebrow {
    margin-bottom: 0.8rem;
}

.studio-slab-copy h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw + 0.4rem, 2.2rem);
    line-height: 1.12;
    color: var(--primary-deep);
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
}

.studio-slab-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.studio-slab-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
}

.studio-slab-copy li {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.45rem 0;
    border-bottom: 1px dotted var(--accent-soft);
    font-size: 0.98rem;
    color: var(--text-body);
}

.studio-slab-copy li::before {
    content: '';
    flex: 0 0 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(1px);
}

.studio-slab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--accent);
    transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.studio-slab-link:hover {
    color: var(--primary-deep);
    gap: 0.9rem;
}

.studio-slab-link::after {
    content: '→';
    font-size: 1rem;
    letter-spacing: 0;
}

@media (max-width: 860px) {
    .studio-slab {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2.5rem 1.25rem;
    }

    .studio-slab:nth-child(even) .studio-slab-media {
        order: 0;
    }

    .studio-slab-media {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ----- Letter aside: polaroid portrait (About page) ----- */
.letter-aside-photo {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.letter-aside-photo figure {
    position: relative;
    padding: 0.75rem 0.75rem 2.3rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(-2deg);
    width: 100%;
    max-width: 320px;
    margin: 0;
    transition: transform var(--t-med) var(--ease);
}

.letter-aside-photo figure:hover {
    transform: rotate(0) translateY(-3px);
}

.letter-aside-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: saturate(1.02);
}

.letter-aside-photo figcaption {
    position: absolute;
    left: 50%;
    bottom: 0.55rem;
    transform: translateX(-50%);
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 1.1rem;
    pointer-events: none;
    white-space: nowrap;
}

.letter-aside-meta {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-soft);
    line-height: 1.5;
}

.letter-aside-meta strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 860px) {
    .letter-aside-photo {
        position: static;
        max-width: 320px;
        margin: 0 auto 1rem;
    }
}

/* ----- FAQ accordion ----- */
.faq-section {
    background: var(--cream);
    padding: clamp(3rem, 5vw, 4.5rem) 1.25rem clamp(4rem, 7vw, 6rem);
}

.faq-book {
    max-width: 820px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.faq-group-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.9rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--accent-soft);
}

.faq-group-header .eyebrow {
    font-size: 0.7rem;
    color: var(--accent);
}

.faq-group-header h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw + 0.6rem, 2rem);
    line-height: 1.15;
    color: var(--primary-deep);
    letter-spacing: -0.005em;
    margin: 0;
    flex: 1 1 auto;
}

.faq-group-header h2 em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    font-size: 0.82em;
}

.faq-item {
    border-bottom: 1px solid rgba(184, 154, 112, 0.28);
    padding: 0.25rem 0 1.4rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.15rem 0 0.6rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.1rem, 0.4vw + 1rem, 1.25rem);
    line-height: 1.35;
    color: var(--primary-deep);
    letter-spacing: -0.005em;
    margin: 0;
}

.faq-answer {
    padding: 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 0.9rem;
    max-width: 62ch;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

/* ----- Reach studio (contact split) ----- */
.reach-studio {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
    background: var(--cream);
    border-top: 1px solid var(--accent-soft);
    border-bottom: 1px solid var(--accent-soft);
}

.reach-studio-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}

.reach-col .eyebrow {
    margin-bottom: 0.75rem;
}

.reach-col h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 1.2vw + 1.5rem, 2.4rem);
    color: var(--primary-deep);
    letter-spacing: -0.01em;
    margin: 0 0 1.75rem;
    line-height: 1.15;
}

.reach-col h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.85em;
}

.reach-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 1.1rem;
}

.reach-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.reach-list li:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.reach-list i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.reach-list div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.reach-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.reach-list a {
    color: var(--primary-deep);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--t-fast) var(--ease);
}

.reach-list a:hover {
    color: var(--primary);
}

.reach-socials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reach-socials-row {
    display: flex;
    gap: 0.75rem;
}

.reach-socials-row a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 1px solid var(--accent-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.reach-socials-row a:hover {
    background: var(--primary);
    color: var(--cream);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.reach-hours {
    position: sticky;
    top: 110px;
    padding: 1.75rem 1.75rem 2rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(-0.4deg);
}

.reach-hours .eyebrow {
    margin-bottom: 0.6rem;
}

.reach-hours h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--primary-deep);
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.reach-hours h3 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.85em;
}

.reach-hours-list {
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.reach-hours-row {
    display: grid;
    gap: 0.15rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed var(--accent-soft);
}

.reach-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reach-hours-row dt {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-deep);
    font-style: italic;
}

.reach-hours-row dd {
    margin: 0;
    color: var(--text-body);
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.reach-hours-note {
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 0.9rem;
}

/* ----- Location studio ----- */
.location-studio {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
    background: var(--cream-warm);
}

.location-studio-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.location-copy .eyebrow {
    margin-bottom: 0.75rem;
}

.location-copy h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 1.4vw + 1.4rem, 2.4rem);
    color: var(--primary-deep);
    letter-spacing: -0.01em;
    margin: 0 0 1.25rem;
    line-height: 1.15;
}

.location-copy h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.85em;
}

.location-copy p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.location-copy-meta {
    margin-top: 1.25rem !important;
}

.location-map {
    margin: 0;
    padding: 0.75rem 0.75rem 2rem;
    background: var(--cream);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(0.6deg);
    transition: transform var(--t-med) var(--ease);
    position: relative;
}

.location-map:hover {
    transform: rotate(0);
}

.location-map iframe {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border: 0;
}

.location-map figcaption {
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

/* ----- Booking studio ----- */
.booking-studio {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
    background: var(--cream);
}

.booking-studio-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.booking-note {
    position: sticky;
    top: 110px;
    padding: 1.75rem 1.75rem 2rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    transform: rotate(-0.3deg);
}

.booking-note .eyebrow {
    margin-bottom: 0.6rem;
}

.booking-note h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 1vw + 1.2rem, 1.9rem);
    color: var(--primary-deep);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.booking-note h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.9em;
}

.booking-note p {
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.booking-note-methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}

.booking-note-methods li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
}

.booking-note-methods i {
    color: var(--primary);
    width: 1.2rem;
    text-align: center;
    flex-shrink: 0;
}

.booking-note-methods a {
    color: var(--primary-deep);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--t-fast) var(--ease);
}

.booking-note-methods a:hover {
    color: var(--primary);
}

.booking-calendar .eyebrow {
    margin-bottom: 0.6rem;
}

.booking-calendar h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 1vw + 1.2rem, 1.9rem);
    color: var(--primary-deep);
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.booking-calendar h3 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.9em;
}

.booking-calendar-frame {
    padding: 0.5rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
}

.booking-calendar-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

@media (max-width: 860px) {
    .reach-studio-inner,
    .location-studio-inner,
    .booking-studio-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reach-hours,
    .booking-note {
        position: static;
        transform: none;
    }

    .location-map {
        transform: none;
    }

    .location-studio-inner {
        align-items: start;
    }
}

/* ----- Gallery (masonry polaroid wall) ----- */
.gallery-page {
    padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem clamp(3.5rem, 6vw, 5.5rem);
    background: var(--cream);
}

.gallery-masonry {
    max-width: 1280px;
    margin: 0 auto;
    column-width: 260px;
    column-gap: 1.4rem;
}

.gallery-frame {
    position: relative;
    display: block;
    break-inside: avoid;
    margin: 0 0 1.4rem;
    padding: 0.7rem 0.7rem 1.6rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: var(--shadow-polaroid);
    cursor: zoom-in;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    outline: none;
}

.gallery-frame:nth-child(6n+1) { transform: rotate(-0.9deg); }
.gallery-frame:nth-child(6n+2) { transform: rotate(0.7deg); }
.gallery-frame:nth-child(6n+3) { transform: rotate(-0.4deg); }
.gallery-frame:nth-child(6n+4) { transform: rotate(1.1deg); }
.gallery-frame:nth-child(6n+5) { transform: rotate(-1.3deg); }
.gallery-frame:nth-child(6n+6) { transform: rotate(0.5deg); }

.gallery-frame:hover,
.gallery-frame:focus-visible {
    transform: rotate(0) translateY(-4px);
    box-shadow: 0 2px 4px rgba(94, 31, 35, 0.08), 0 22px 40px rgba(94, 31, 35, 0.14);
}

.gallery-frame:focus-visible {
    border-color: var(--primary);
}

.gallery-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.04);
}

/* ----- Lightbox ----- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(46, 14, 16, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: clamp(1rem, 4vw, 3rem);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    margin: 0;
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    padding: 0.75rem 0.75rem 1.5rem;
    background: var(--cream-warm);
    border: 1px solid var(--accent-soft);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 30px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(88vh - 2.25rem);
    width: auto;
    height: auto;
    margin: 0 auto;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: var(--cream-warm);
    color: var(--primary-deep);
    border: 1px solid var(--accent-soft);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    z-index: 2;
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.8rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--primary);
    color: var(--cream);
    border-color: var(--primary);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 640px) {
    .gallery-masonry {
        column-width: 160px;
        column-gap: 0.9rem;
    }

    .gallery-frame {
        margin-bottom: 0.9rem;
        padding: 0.5rem 0.5rem 1.1rem;
    }

    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

@media (max-width: 768px) {
    .menu-book {
        grid-template-columns: 1fr;
    }
}