/* ====== BOSTON ANGEL (drop font files into /fonts/ later) ====== */
@font-face {
    font-family: 'Boston Angel';
    src: url('fonts/Boston_Angel_Thin.ttf') format('truetype');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Boston Angel';
    src: url('fonts/Boston_Angel_Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Boston Angel';
    src: url('fonts/Boston_Angel_Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Boston Angel';
    src: url('fonts/Boston_Angel_Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Boston Angel';
    src: url('fonts/Boston_Angel_Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

:root {
    --crimson: #6b0c1c;
    --wine: #2a0408;
    --gold: #c8923a;
    --gold-soft: #b8842e;
    --ivory: #f2e8d5;
    --ivory-warm: #ede1c8;
    --cream: #faf3e3;
    --magenta: #9b1f6e;
    --grey: #8a8275;
    --line: #d4c8b0;
    --display: 'Boston Angel', 'Cormorant Garamond', serif;
    --serif: 'Cormorant Garamond', serif;
    --body: 'EB Garamond', Georgia, serif;
    --fine: 'Lora', Georgia, serif;
    --deva: 'Hind', sans-serif;
    --gutter: clamp(20px, 4vw, 56px);
    --container: 1400px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

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

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.02 0 0 0 0 0.03 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(242, 232, 213, 0.78);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border-bottom: 1px solid rgba(200, 146, 58, 0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.nav.hidden {
    transform: translateY(-100%);
}

/* Hide nav when mobile menu is open */
body.menu-open .nav {
    transform: translateY(-100%);
}

.nav.scrolled {
    background: rgba(242, 232, 213, 0.94);
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.nav-logo .deva {
    font-family: var(--deva);
    font-weight: 700;
    color: var(--wine);
    font-size: 22px;
}

.nav-logo .latin {
    font-family: var(--display);
    font-weight: 700;
    color: var(--gold);
    font-size: 22px;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    justify-self: center;
}

.nav-links a {
    font-family: var(--fine);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--wine);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--crimson);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.nav-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(42, 4, 8, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon:hover {
    background: var(--wine);
    border-color: var(--wine);
    color: var(--ivory);
    transform: translateY(-2px);
}

.nav-icon svg {
    width: 15px;
    height: 15px;
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--wine);
    transition: transform 0.4s ease, opacity 0.3s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
    }
}

/* ============================================
   MOBILE MENU — Showroom Drawer (Direction 5)
============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.6s;
}

body.menu-open .mobile-menu {
    pointer-events: auto;
    visibility: visible;
    transition: visibility 0s linear 0s;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 4, 8, 0.5);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--ivory);
    border-radius: 16px 16px 0 0;
    padding: 16px var(--gutter) 32px;
    transform: translateY(100%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px -8px rgba(42, 4, 8, 0.25);
    -webkit-overflow-scrolling: touch;
}

body.menu-open .mobile-menu-sheet {
    transform: translateY(0);
}

.mobile-menu-handle {
    width: 44px;
    height: 4px;
    background: rgba(42, 4, 8, 0.25);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.mobile-menu-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
}

.mobile-menu-nav a {
    font-family: var(--fine);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--wine);
    padding: 8px 4px;
}

.mobile-menu-nav a.active {
    color: var(--crimson);
    font-style: italic;
}

.mobile-menu-nav .dot {
    color: var(--gold);
    opacity: 0.5;
    font-size: 14px;
}

.mobile-menu-featured {
    margin-bottom: 36px;
}

.mobile-menu-featured .featured-image {
    aspect-ratio: 4/5;
    position: relative;
    border: 1px solid rgba(107, 12, 28, 0.45);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.mobile-menu-featured .featured-image::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 146, 58, 0.35);
    pointer-events: none;
    border-radius: 2px;
    z-index: 3;
}

.mobile-menu-featured .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-caption {
    font-family: var(--serif);
    font-size: 16px;
    font-style: normal;
    color: var(--wine);
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.featured-caption em {
    font-style: italic;
    color: var(--crimson);
}

.featured-link {
    display: block;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--wine);
    border-bottom: 1px solid var(--gold);
    padding: 4px 0;
    width: fit-content;
    margin: 0 auto;
}

.mobile-menu-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 20px;
}

.mobile-menu-divider::before,
.mobile-menu-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.mobile-menu-divider span {
    font-family: var(--serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--gold);
}

.mobile-menu-visit {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-menu-visit .visit-address {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.5;
    color: var(--wine);
    margin-bottom: 16px;
}

.mobile-menu-visit .visit-hours {
    font-family: var(--fine);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mobile-menu-visit .visit-hours .closed {
    color: var(--crimson);
    font-style: italic;
}

.mobile-menu-visit .visit-directions {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--wine);
    border-bottom: 1px solid var(--gold);
    padding: 4px 0;
}

.mobile-menu-contacts {
    border-top: 1px solid var(--line);
    margin-top: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    color: var(--wine);
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:active {
    background: rgba(200, 146, 58, 0.06);
}

.contact-row .contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid rgba(42, 4, 8, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row .contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-row .contact-label {
    flex: 1;
    font-size: 16px;
    font-style: normal;
}

.contact-row .contact-arrow {
    font-family: var(--fine);
    color: var(--gold);
    font-size: 16px;
    opacity: 0.7;
}

/* PLACEHOLDERS */
.ph {
    background: linear-gradient(135deg, rgba(107, 12, 28, 0.08) 0%, rgba(200, 146, 58, 0.06) 100%);
    border: 1px dashed rgba(107, 12, 28, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(42, 4, 8, 0.55);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.ph::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 146, 58, 0.25);
    pointer-events: none;
    border-radius: 2px;
}

.ph-label {
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(42, 4, 8, 0.55);
}

.ph-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: rgba(107, 12, 28, 0.55);
}

.ph-text {
    color: rgba(42, 4, 8, 0.45);
    font-style: regular;
}

/* IMAGE FRAMING — gives real images the same dashed border + inner gold frame
   that the placeholders had, so they feel gallery-mounted */
.img-wrap,
.intro-deco,
.quote-image,
.story-image,
.craft-card .img-wrap,
.look-card {
    border: 1px solid rgba(107, 12, 28, 0.45);
    border-radius: 4px;
    position: relative;
}

.img-wrap::before,
.intro-deco::before,
.quote-image::before,
.story-image::before,
.craft-card .img-wrap::before,
.look-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 146, 58, 0.35);
    pointer-events: none;
    border-radius: 2px;
    z-index: 3;
}

/* IMAGES — drop-in replacement for placeholders */
.img-wrap img,
.hero-image img,
.intro-deco img,
.quote-image img,
.story-image img,
.story-bleed>img,
.look-card img,
.craft-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image img,
.story-bleed>img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero image needs a subtle dark gradient overlay for text legibility,
   matching the placeholder's vignette */
.hero-image-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42, 4, 8, 0.35) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(42, 4, 8, 0.2) 0%, transparent 30%, transparent 60%, rgba(42, 4, 8, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

/* SHARED */
section {
    position: relative;
}

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

.eyebrow {
    font-family: var(--serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.center::before {
    display: none;
}

.eyebrow .num {
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
    color: var(--crimson);
    letter-spacing: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 999px;
    font-family: var(--fine);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    white-space: nowrap;
}

.pill-primary {
    background: var(--wine);
    color: var(--ivory);
}

.pill-primary:hover {
    background: var(--crimson);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(42, 4, 8, 0.4);
}

.pill-ghost {
    background: transparent;
    color: var(--wine);
    border: 1px solid var(--wine);
}

.pill-ghost:hover {
    background: var(--wine);
    color: var(--ivory);
}

.pill svg {
    width: 13px;
    height: 13px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover svg {
    transform: translate(4px, -4px);
}

.section-head {
    max-width: var(--container);
    margin: 0 auto 80px;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.section-head-left {
    flex: 1;
    min-width: 280px;
}

.section-eyebrow {
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(40px, 5.5vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--wine);
}

.section-title em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 300;
}

.section-link {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--wine);
    border-bottom: 1px solid var(--gold);
    padding: 4px 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.section-link:hover {
    color: var(--crimson);
    border-color: var(--crimson);
}

/* HERO */
.hero {
    position: relative;
    min-height: 80vh;
    min-height: 80svh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image .ph {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, var(--wine) 0%, var(--crimson) 50%, var(--magenta) 100%);
}

.hero-image .ph::before {
    border-color: rgba(200, 146, 58, 0.35);
}

.hero-image .ph-label,
.hero-image .ph-sub {
    color: rgba(242, 232, 213, 0.7);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42, 4, 8, 0.35) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(42, 4, 8, 0.2) 0%, transparent 30%, transparent 60%, rgba(42, 4, 8, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 80vh;
    min-height: 80svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px var(--gutter) 80px;
    max-width: var(--container);
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: var(--serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-deva {
    font-family: var(--deva);
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 24px);
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--display);
    font-weight: 100;
    font-size: clamp(56px, 8vw, 140px);
    line-height: 0.95;
    margin-top: 26px;
    letter-spacing: -0.025em;
    color: var(--ivory);
    margin-bottom: 28px;
    max-width: 1100px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.hero-sub {
    font-family: var(--body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: rgba(242, 232, 213, 0.85);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(242, 232, 213, 0.7);
}

.scroll-cue-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(242, 232, 213, 0.6), transparent);
    animation: scrollPulse 2.4s cubic-bezier(0.6, 0, 0.4, 1) infinite;
    transform-origin: top;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1.6);
        opacity: 1;
    }
}

/* PAGE HEADER (About) */
.page-header {
    padding: 200px var(--gutter) 120px;
    text-align: center;
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    overflow: hidden;
}

.page-header .eyebrow {
    position: relative;
    z-index: 2;
    justify-content: center;
    margin-bottom: 28px;
}

.page-header .eyebrow::before {
    display: none;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-family: var(--display);
    font-weight: 100;
    font-size: clamp(56px, 9vw, 160px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--wine);
    margin-bottom: 32px;
}

.page-header h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--crimson);
}

.page-header p {
    position: relative;
    z-index: 2;
    font-family: var(--body);
    font-style: italic;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.55;
    color: var(--wine);
    opacity: 0.78;
    max-width: 680px;
    margin: 0 auto;
}

/* INTRO STRIP */
.intro {
    padding: clamp(120px, 18vw, 200px) 0 clamp(80px, 12vw, 140px);
    position: relative;
}

.intro-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
}

.intro-text {
    max-width: 640px;
}

.intro-eyebrow {
    margin-bottom: 28px;
}

.intro-headline {
    font-family: var(--body);
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--wine);
    margin-bottom: 32px;
}

.intro-headline em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 500;
}

.intro-body {
    font-family: var(--body);
    font-weight: 400;
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.8;
    color: var(--wine);
    opacity: 0.85;
    max-width: 54ch;
    margin-bottom: 36px;
}

.intro-deco {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 380px;
    justify-self: end;
    transform: translateY(20px);
    overflow: hidden;
}

.intro-deco .ph {
    width: 100%;
    height: 100%;
}

.intro-deco::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

/* Tablet — keep two columns but balance them better */
@media (max-width: 1024px) and (min-width: 769px) {
    .intro-inner {
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 64px);
    }

    .intro-deco {
        max-width: 320px;
        transform: none;
    }
}

/* Mobile — single column, centred */
@media (max-width: 768px) {
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .intro-deco {
        max-width: 360px;
        transform: none;
        justify-self: center;
        margin: 0 auto;
    }
}

/* COLLECTION */
.collection {
    padding: clamp(80px, 12vw, 140px) 0;
}

.collection-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.product-card .ph {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.product-card .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 12, 28, 0.55) 0%, rgba(107, 12, 28, 0) 60%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.product-card:hover .img-wrap::after {
    opacity: 1;
}

.product-card .img-wrap>* {
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .img-wrap>* {
    transform: scale(1.05);
}

.product-info {
    padding: 24px 4px 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.product-name {
    font-family: var(--serif);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(20px, 1.7vw, 24px);
    color: var(--wine);
    line-height: 1.25;
}

.product-meta {
    display: block;
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-top: 8px;
}

.view-arrow {
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--wine);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-top: 6px;
    transition: color 0.3s ease;
}

.product-card:hover .view-arrow {
    color: var(--crimson);
}

.view-arrow svg {
    width: 11px;
    height: 11px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .view-arrow svg {
    transform: translate(3px, -3px);
}

.product-card.tall {
    grid-column: span 5;
}

.product-card.tall .img-wrap {
    aspect-ratio: 4/5.5;
}

.product-card.wide {
    grid-column: span 7;
    align-self: center;
}

.product-card.wide .img-wrap {
    aspect-ratio: 5/4;
}

.product-card.med-l {
    grid-column: 2 / span 6;
    margin-top: 60px;
}

.product-card.med-l .img-wrap {
    aspect-ratio: 4/5;
}

.product-card.med-r {
    grid-column: span 5;
}

.product-card.med-r .img-wrap {
    aspect-ratio: 4/4.5;
}

@media (max-width: 800px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-card.tall,
    .product-card.wide,
    .product-card.med-l,
    .product-card.med-r {
        grid-column: 1;
        margin-top: 0;
    }

    .product-card .img-wrap {
        aspect-ratio: 4/5;
    }
}

/* PULL QUOTE SPLIT */
.quote-split {
    padding: clamp(100px, 16vw, 180px) 0;
    background: var(--wine);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.quote-split::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(200, 146, 58, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.quote-split-deva {
    position: absolute;
    top: 8%;
    right: 6%;
    font-family: var(--deva);
    font-weight: 700;
    font-size: clamp(80px, 14vw, 220px);
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.quote-split-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-family: var(--body);
    font-weight: 200;
    font-size: clamp(36px, 4.5vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.quote-text em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.quote-attr {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    opacity: 0.7;
}

.quote-attr::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.quote-image {
    aspect-ratio: 3/4;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.quote-image .ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 146, 58, 0.1) 0%, rgba(155, 31, 110, 0.1) 100%);
    border-color: rgba(200, 146, 58, 0.4);
    color: rgba(242, 232, 213, 0.7);
}

.quote-image .ph::before {
    border-color: rgba(200, 146, 58, 0.25);
}

@media (max-width: 900px) {
    .quote-split-inner {
        grid-template-columns: 1fr;
    }

    .quote-image {
        transform: none;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* STORY (About) */
.story {
    padding: clamp(120px, 18vw, 200px) 0;
}

.story-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.story.reverse .story-inner {
    direction: rtl;
}

.story.reverse .story-inner>* {
    direction: ltr;
}

.story-image {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}

.story-image .ph {
    width: 100%;
    height: 100%;
}

.story-image .num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 64px;
    color: var(--ivory);
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    z-index: 4;
}

.story-text {
    max-width: 540px;
}

.story-deva {
    font-family: var(--deva);
    font-weight: 700;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.story-title {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(36px, 4.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--wine);
    margin-bottom: 28px;
}

.story-title em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 300;
}

.story-body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--wine);
    opacity: 0.85;
    margin-bottom: 16px;
}

@media (max-width: 800px) {

    .story-inner,
    .story.reverse .story-inner {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.story-bleed {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.story-bleed .ph {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--wine) 100%);
}

.story-bleed-card {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 88vw);
    background: rgba(242, 232, 213, 0.88);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    padding: clamp(32px, 5vw, 56px);
    border-radius: 4px;
    border: 1px solid rgba(200, 146, 58, 0.3);
    z-index: 2;
}

.story-bleed-card .eyebrow {
    margin-bottom: 20px;
}

.story-bleed-card h3 {
    font-family: var(--body);
    font-weight: 500;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    color: var(--wine);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.story-bleed-card h3 em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 500;
}

.story-bleed-card p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--wine);
    opacity: 0.85;
}

/* CRAFTS */
.crafts {
    padding: clamp(120px, 18vw, 200px) 0;
}

.crafts-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.craft-card {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.craft-card:hover {
    transform: translateY(-12px);
}

.craft-card .img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
}

.craft-card .ph {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-card:hover .ph {
    transform: scale(1.05);
}

.craft-deva {
    font-family: var(--deva);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}

.craft-name {
    font-family: var(--body);
    font-weight: 500;
    font-size: clamp(24px, 2.4vw, 32px);
    color: var(--wine);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.craft-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--crimson);
    margin-bottom: 14px;
    display: block;
}

.craft-desc {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--wine);
    opacity: 0.78;
}

@media (max-width: 800px) {
    .crafts-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

/* HERITAGE QUOTE */
.heritage-quote {
    background: var(--wine);
    color: var(--gold);
    padding: clamp(120px, 18vw, 220px) var(--gutter);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heritage-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 146, 58, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 31, 110, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.heritage-quote-deva {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--deva);
    font-weight: 700;
    font-size: clamp(140px, 30vw, 480px);
    color: var(--gold);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.heritage-quote blockquote {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(36px, 5vw, 88px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.heritage-quote blockquote em {
    font-style: italic;
    color: var(--ivory);
    font-weight: 300;
}

.heritage-quote cite {
    display: block;
    margin-top: 36px;
    font-family: var(--fine);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: rgba(200, 146, 58, 0.7);
    font-style: normal;
    position: relative;
    z-index: 2;
}

/* LOOKBOOK */
.lookbook {
    padding: clamp(120px, 18vw, 200px) 0 clamp(80px, 12vw, 140px);
    overflow: hidden;
}

.lookbook-track {
    display: flex;
    gap: 24px;
    padding: 0 var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 32px;
}

.lookbook-track::-webkit-scrollbar {
    height: 3px;
}

.lookbook-track::-webkit-scrollbar-track {
    background: rgba(200, 146, 58, 0.1);
}

.lookbook-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.look-card {
    flex: 0 0 clamp(280px, 28vw, 400px);
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    cursor: pointer;
}

.look-card .ph {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.look-card:hover .ph {
    transform: scale(1.05);
}

.look-card:hover img {
    transform: scale(1.05);
}

.look-card img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.look-card .caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(242, 232, 213, 0.92);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--serif);
    font-style: normal;
    font-size: 13px;
    color: var(--wine);
    z-index: 4;
}

/* VISIT */
.visit {
    padding: clamp(120px, 18vw, 200px) 0;
    background: var(--ivory-warm);
}

.visit-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.visit-text {
    max-width: 560px;
}

.visit-title {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(40px, 5.5vw, 88px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--wine);
    margin-bottom: 28px;
    margin-top: 24px;
}

.visit-title em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 300;
}

.visit-body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--wine);
    opacity: 0.85;
    margin-bottom: 36px;
}

.visit-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.visit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.visit-card {
    background: var(--ivory);
    padding: 28px 24px;
    border-radius: 6px;
    border: 1px solid var(--line);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.visit-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.visit-card .label {
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.visit-card .value {
    font-family: var(--serif);
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    color: var(--wine);
    line-height: 1.4;
}

/* Hours card — list layout, no label */
.hours-card .value {
    font-family: var(--serif);
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-list>span {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.hours-list .day {
    color: var(--wine);
}

.hours-list .time {
    font-family: var(--fine);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--grey);
    white-space: nowrap;
}

.hours-list .closed .time {
    color: var(--crimson);
    font-style: italic;
    letter-spacing: 0.08em;
}

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

/* FOOTER */
.footer {
    background: var(--ivory);
    padding: clamp(80px, 12vw, 140px) var(--gutter) 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col h4 {
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col li {
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    color: var(--wine);
    transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col a:hover {
    color: var(--crimson);
    padding-left: 8px;
}

.footer-brand p {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--wine);
    opacity: 0.78;
    margin: 18px 0 28px;
    max-width: 320px;
}

.newsletter {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--wine);
    border-radius: 999px;
    padding: 4px 4px 4px 22px;
    max-width: 360px;
    transition: border-color 0.4s ease;
}

.newsletter:focus-within {
    border-color: var(--crimson);
}

.newsletter input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--body);
    font-size: 15px;
    padding: 10px 0;
    color: var(--wine);
    outline: none;
    min-width: 0;
}

.newsletter input::placeholder {
    color: var(--grey);
    font-style: italic;
}

.newsletter button {
    background: var(--wine);
    color: var(--ivory);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: var(--crimson);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--fine);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--grey);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--grey);
}

.footer-bottom a:hover {
    color: var(--crimson);
}

@media (max-width: 800px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}