/* ==========================================================================
   ESSARDAS GROUP — Global Styles
   ========================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--shop-body-font);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--ink);
    background: var(--bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--shop-heading-font);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 0.4em;
    letter-spacing: -0.005em;
    color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 600; }

p { margin: 0 0 1em; }

::selection { background: var(--champagne); color: var(--noir); }

/* Utility ------------------------------------------------------------- */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

.eyebrow {
    display: inline-block;
    font-family: var(--shop-body-font);
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne-dk);
    margin-bottom: 18px;
}

.eyebrow.on-dark { color: var(--champagne); }

.section { padding: var(--section-y) 0; position: relative; }
.section-dark { background: var(--noir); color: var(--bone); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-alt { background: var(--ivory); }

.section-header { margin-bottom: clamp(40px, 5vw, 72px); text-align: center; }
.section-header.left { text-align: left; }
.section-header p { max-width: 640px; margin: 10px auto 0; color: var(--ink-soft); }
.section-header.left p { margin-left: 0; }

/* Buttons ------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--shop-body-font);
    font-size: var(--fs-ui);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 300ms var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: transparent;
    border-color: var(--champagne);
    color: var(--champagne-dk);
}
.btn-primary:hover {
    background: var(--champagne);
    color: var(--noir);
}

.btn-on-dark {
    background: transparent;
    border-color: var(--champagne);
    color: var(--champagne);
}
.btn-on-dark:hover {
    background: var(--champagne);
    color: var(--noir);
}

.btn-ghost {
    background: transparent;
    border-color: currentColor;
    color: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-solid {
    background: var(--noir);
    color: var(--bone);
    border-color: var(--noir);
}
.btn-solid:hover { background: var(--ink); }

/* Announcement bar ---------------------------------------------------- */

.announcement {
    background: var(--noir);
    color: var(--champagne-lt);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}
.announcement span { opacity: 0.88; }

/* Navbar -------------------------------------------------------------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bone);
    border-bottom: 1px solid var(--hairline-lt);
    transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.navbar.scrolled {
    background: rgba(245, 241, 234, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 var(--hairline-lt);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-right { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    position: relative;
    font-size: var(--fs-ui);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    padding: 10px 0;
    transition: color 250ms var(--ease);
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 400ms var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--champagne-dk); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.nav-logo img {
    height: 46px;
    width: auto;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    transition: color 250ms var(--ease);
}
.nav-icon:hover { color: var(--champagne-dk); }
.nav-icon svg { width: 20px; height: 20px; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
}
.mobile-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}

/* Mobile sidebar ------------------------------------------------------ */

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: var(--noir-soft);
    color: var(--bone);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid var(--hairline);
}
.sidebar.open { transform: translateX(0); box-shadow: -40px 0 100px rgba(0,0,0,0.6); }

/* Header: logo + close */
.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--hairline-dk);
    flex-shrink: 0;
}
.sidebar-logo {
    height: 30px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}
.sidebar-close {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mist);
    border: 1px solid var(--hairline-dk);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: color 200ms var(--ease), border-color 200ms var(--ease);
    flex-shrink: 0;
}
.sidebar-close:hover { color: var(--champagne); border-color: var(--champagne); }
.sidebar-close svg { width: 13px; height: 13px; }

/* Primary nav — shop destinations */
.sidebar-nav--primary {
    list-style: none;
    counter-reset: nav-count;
    margin: 0;
    padding: 22px 24px 6px;
}
.sidebar-nav--primary li { counter-increment: nav-count; }
.sidebar-nav--primary a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 11px 0;
    font-family: var(--shop-heading-font);
    font-size: 21px;
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    border: none;
    transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.sidebar-nav--primary a::before {
    content: counter(nav-count, decimal-leading-zero);
    font-family: var(--shop-body-font);
    font-style: normal;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--champagne-dk);
    opacity: 0.55;
    min-width: 18px;
    flex-shrink: 0;
}
.sidebar-nav--primary a:hover { color: var(--champagne-lt); transform: translateX(3px); }
.sidebar-nav--primary a.active { color: var(--champagne); font-style: normal; }

/* Divider between sections */
.sidebar-divider {
    margin: 14px 24px;
    height: 1px;
    background: var(--hairline);
    flex-shrink: 0;
}

/* Secondary nav — explore */
.sidebar-nav--secondary {
    list-style: none;
    margin: 0;
    padding: 0 24px;
}
.sidebar-nav--secondary a {
    display: block;
    padding: 8px 0;
    font-family: var(--shop-body-font);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 180ms var(--ease);
}
.sidebar-nav--secondary a:hover { color: var(--champagne-lt); }
.sidebar-nav--secondary a.active { color: var(--champagne); }

/* Footer */
.sidebar-foot {
    margin-top: auto;
    padding: 18px 24px 26px;
    border-top: 1px solid var(--hairline-dk);
    flex-shrink: 0;
}
.sidebar-foot-tagline {
    display: block;
    font-family: var(--shop-heading-font);
    font-style: italic;
    font-size: 13px;
    color: var(--champagne-dk);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.sidebar-foot-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-bottom: 8px;
}
.sidebar-foot a {
    display: block;
    color: var(--mist);
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 3px 0;
    transition: color 180ms var(--ease);
}
.sidebar-foot a:hover { color: var(--champagne-lt); }

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 13, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms var(--ease);
    z-index: 150;
}
.backdrop.open { opacity: 1; pointer-events: auto; }

body.menu-open { overflow: hidden; }

/* Hero ---------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h) - 40px);
    min-height: calc(100dvh - var(--nav-h) - 40px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--noir);
    color: var(--bone);
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,13,0.5) 0%, rgba(11,11,13,0.35) 40%, rgba(11,11,13,0.85) 100%);
    z-index: 1;
}
@keyframes kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: clamp(60px, 10vh, 120px) 0;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero h1 {
    font-size: var(--fs-display);
    font-weight: 500;
    color: var(--ivory);
    margin: 0 0 22px;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: clamp(16px, 1.3vw, 19px);
    max-width: 560px;
    color: rgba(245, 241, 234, 0.82);
    margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 44px;
    background: var(--champagne);
    animation: scrollDown 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollDown {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Heritage strip ------------------------------------------------------ */

.heritage-strip { background: var(--ivory); }
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.heritage-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.heritage-img img { width: 100%; height: 100%; object-fit: cover; }
.heritage-img::after {
    content: 'EST. 1918';
    position: absolute;
    top: 24px; left: 24px;
    padding: 8px 14px;
    background: var(--noir);
    color: var(--champagne);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 500;
}
.heritage-copy p { color: var(--ink-soft); font-size: 18px; line-height: 1.75; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--hairline-lt);
}
.stat-row .stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
    font-family: var(--shop-heading-font);
    font-size: clamp(28px, 3.2vw, 44px);
    color: var(--champagne-dk);
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
}

/* Maisons grid -------------------------------------------------------- */

.maisons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--hairline-lt);
    border: 1px solid var(--hairline-lt);
}
.maison {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ivory);
    display: block;
    transition: transform 800ms var(--ease);
}
.maison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease), filter 500ms var(--ease);
}
.maison::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,13,0) 40%, rgba(11,11,13,0.82) 100%);
    transition: opacity 400ms var(--ease);
}
.maison-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 2;
    padding: 0 28px;
    color: var(--ivory);
    transition: transform 500ms var(--ease);
}
.maison-label .eyebrow { color: var(--champagne-lt); margin-bottom: 8px; }
.maison-label h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--ivory);
    margin: 0;
}
.maison:hover img { transform: scale(1.08); }
.maison:hover .maison-label { transform: translateY(-8px); }

/* Product grid (homepage featured) ----------------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: clamp(20px, 2.5vw, 40px);
}
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--mist);
    font-style: italic;
    font-size: 18px;
}
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}
.loading-spinner::before {
    content: '';
    width: 32px; height: 32px;
    border: 2px solid var(--hairline-lt);
    border-top-color: var(--champagne);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Split banners ------------------------------------------------------- */

.split-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.split-banner {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(28px, 4vw, 56px);
    color: var(--ivory);
    isolation: isolate;
}
.split-banner img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 1.2s var(--ease);
}
.split-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,11,13,0) 30%, rgba(11,11,13,0.78) 100%);
    z-index: -1;
}
.split-banner:hover img { transform: scale(1.06); }
.split-banner h3 {
    font-size: clamp(26px, 3vw, 44px);
    color: var(--ivory);
    margin-bottom: 14px;
}

/* Services preview ---------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: var(--hairline-lt);
    border: 1px solid var(--hairline-lt);
}
.service-card {
    padding: clamp(28px, 3vw, 44px);
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 280px;
    transition: background 300ms var(--ease);
}
.service-card:hover { background: var(--bone); }
.service-icon {
    width: 48px; height: 48px;
    color: var(--champagne-dk);
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 1; }
.service-card h4 {
    font-family: var(--shop-heading-font);
    font-weight: 500;
    font-size: 24px;
    margin: 0;
}
.service-card p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.6; }

/* Brand marquee ------------------------------------------------------- */

.marquee {
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--hairline-lt);
    border-bottom: 1px solid var(--hairline-lt);
    background: var(--ivory);
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 70px;
    animation: marquee 50s linear infinite;
    width: max-content;
    align-items: center;
}
.marquee-track img {
    height: 42px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 300ms var(--ease), filter 300ms var(--ease);
}
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Tax-free banner ----------------------------------------------------- */

.taxfree {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: var(--ivory);
    overflow: hidden;
    isolation: isolate;
}
.taxfree img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.taxfree::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,11,13,0.85) 0%, rgba(11,11,13,0.55) 60%, rgba(11,11,13,0.3) 100%);
    z-index: -1;
}
.taxfree .inner { max-width: 620px; padding: 100px 0; }
.taxfree h2 { color: var(--ivory); }
.taxfree p { color: rgba(245,241,234,0.85); font-size: 17px; max-width: 520px; }

/* Visit us / map ------------------------------------------------------ */

.visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--ivory);
}
.visit-info {
    padding: clamp(40px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visit-info h2 { margin-bottom: 18px; }
.visit-info .meta { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.visit-info .meta-row {
    display: flex;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hairline-lt);
    font-size: 15px;
}
.visit-info .meta-row:last-child { border-bottom: 0; }
.visit-info .meta-row span:first-child {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    min-width: 110px;
    padding-top: 2px;
}
.visit-info a { color: var(--champagne-dk); }
.visit-info a:hover { color: var(--ink); }
.visit-map {
    min-height: 460px;
    position: relative;
}
.visit-map iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Footer -------------------------------------------------------------- */

.footer {
    background: var(--noir);
    color: rgba(245,241,234,0.75);
    padding: clamp(60px, 7vw, 100px) 0 30px;
    font-size: 14.5px;
    border-top: 1px solid var(--hairline-dk);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: clamp(30px, 3vw, 60px);
    padding-bottom: 60px;
    border-bottom: 1px solid var(--hairline-dk);
}
.footer-brand .brand-mark {
    font-family: var(--shop-heading-font);
    font-size: 30px;
    color: var(--ivory);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    display: inline-block;
}
.footer-brand .brand-mark small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--champagne);
    margin-top: 4px;
    font-family: var(--shop-body-font);
    font-weight: 500;
}
.footer-brand p { max-width: 300px; line-height: 1.7; }
.footer-brand .social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.footer-brand .social a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hairline-dk);
    border-radius: 50%;
    color: var(--champagne-lt);
    transition: all 250ms var(--ease);
}
.footer-brand .social a:hover { border-color: var(--champagne); color: var(--champagne); }
.footer-brand .social svg { width: 16px; height: 16px; }

.footer-col h5 {
    font-family: var(--shop-body-font);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    margin: 0 0 20px;
    font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(245,241,234,0.72); transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--champagne); }

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--mist);
    letter-spacing: 0.05em;
}
.footer-bottom .credit a { color: var(--champagne); transition: color 200ms var(--ease); }
.footer-bottom .credit a:hover { color: var(--champagne-lt); }
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom .legal a:hover { color: var(--ivory); }

/* Page header (interior pages) --------------------------------------- */

.page-header {
    background: var(--noir);
    color: var(--bone);
    padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 7vw, 100px);
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--hairline-dk);
}
.page-header .eyebrow { color: var(--champagne); }
.page-header h1 {
    color: var(--ivory);
    font-size: clamp(42px, 6vw, 80px);
    margin-bottom: 14px;
}
.page-header p { max-width: 600px; margin: 0 auto; color: rgba(245,241,234,0.72); font-size: 17px; }

/* Boutiques ----------------------------------------------------------- */

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 2vw, 32px);
}
.boutique-card {
    padding: clamp(30px, 3vw, 44px);
    background: var(--ivory);
    border: 1px solid var(--hairline-lt);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 350ms var(--ease);
    position: relative;
    overflow: hidden;
}
.boutique-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 500ms var(--ease);
}
.boutique-card:hover {
    background: var(--bone);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(11,11,13,0.06);
}
.boutique-card:hover::before { width: 100%; }
.boutique-card .num {
    font-family: var(--shop-heading-font);
    font-size: 40px;
    line-height: 1;
    color: var(--champagne-dk);
}
.boutique-card h3 { margin: 0; font-size: 26px; }
.boutique-card .addr {
    color: var(--ink-soft);
    font-size: 15px;
}
.boutique-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 14px;
}
.boutique-card .tags span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--hairline);
    color: var(--champagne-dk);
}
.boutique-card .actions {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--hairline-lt);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}
.boutique-card .actions a { color: var(--ink); }
.boutique-card .actions a:hover { color: var(--champagne-dk); }

/* Heritage page ------------------------------------------------------- */

.prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.85;
    color: var(--ink-soft);
}
.prose p + p { margin-top: 1.2em; }
.prose h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--ink);
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.prose .dropcap::first-letter {
    font-family: var(--shop-heading-font);
    float: left;
    font-size: 5em;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--champagne-dk);
    font-weight: 500;
}

.fullbleed-img {
    margin: clamp(60px, 8vw, 110px) 0;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    position: relative;
}
.fullbleed-img img { width: 100%; height: 100%; object-fit: cover; }

/* Services page ------------------------------------------------------- */

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    margin-bottom: clamp(70px, 9vw, 120px);
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-row-img { order: 2; }
.service-row-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row-text .eyebrow { color: var(--champagne-dk); }
.service-row-text h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.service-row-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }

/* Contact page -------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
}
.contact-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--hairline-lt);
}
.contact-item .eyebrow { margin-bottom: 6px; color: var(--champagne-dk); }
.contact-item h4 { font-family: var(--shop-heading-font); font-size: 22px; font-weight: 500; margin: 0 0 6px; }
.contact-item a { display: block; color: var(--ink-soft); font-size: 15px; }
.contact-item a:hover { color: var(--champagne-dk); }

/* Page container for shared-element pages ---------------------------- */

.shared-wrap {
    padding: clamp(40px, 5vw, 70px) 0 var(--section-y);
}
.shared-element-container { min-height: 400px; }

/* Reveal animations --------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .hero-bg img { animation: none; }
}

/* Responsive ---------------------------------------------------------- */

@media (max-width: 960px) {
    .nav-menu { display: none; }
    .nav-icon.hide-mobile { display: none; }
    .mobile-toggle { display: inline-flex; }
    .nav-container { grid-template-columns: auto 1fr auto; }
    .nav-left { order: 1; }
    .nav-logo { order: 2; justify-content: flex-start; }
    .nav-right { order: 3; }

    .heritage-grid { grid-template-columns: 1fr; gap: 48px; }
    .stat-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .split-banners { grid-template-columns: 1fr; }
    .visit { grid-template-columns: 1fr; }
    .visit-map { min-height: 380px; aspect-ratio: 4/3; }
    .service-row { grid-template-columns: 1fr; gap: 30px; }
    .service-row.reverse .service-row-img { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
    .hero-actions { flex-direction: column; align-items: center; gap: 16px; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-logo img { height: 38px; }
    .page-header { padding-top: 60px; padding-bottom: 50px; }
    .maison-label h3 { font-size: 22px; }
    .hero-scroll { display: none; }
}
