/* ═══════════════════════════════════════════════════════════════
   E.B.W — Edinburgh Bespoke Wardrobes
   Shared stylesheet (multi-page)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
    --cream:        #F5F0E8;
    --cream-deep:   #EDE8DC;
    --cream-card:   #F9F6F0;
    --charcoal:     #1A1714;
    --charcoal-mid: #252018;
    --charcoal-lt:  #3A342E;
    --stone:        #7A6E63;
    --stone-lt:     #A89A8A;
    --gold:         #C09A56;
    --gold-lt:      #D4AF72;
    --white:        #FDFCFA;

    --ff-display: 'Bodoni Moda', Georgia, serif;
    --ff-body:    'Jost', system-ui, sans-serif;

    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --transition:   280ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-md:550ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 1.5rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition-md), backdrop-filter var(--transition-md), box-shadow var(--transition-md);
}

/* Interior pages start with a solid nav (no dark hero behind it) */
.nav.solid,
.nav.scrolled {
    background: rgba(26, 23, 20, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(192, 154, 86, 0.18);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-mark {
    font-family: var(--ff-display);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--cream);
    line-height: 1;
}

.nav-logo-sub {
    font-family: var(--ff-body);
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

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

.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone-lt);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-links .cta {
    color: var(--cream);
    border: 1px solid rgba(192, 154, 86, 0.45);
    padding: 0.6rem 1.5rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.nav-links .cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* ─── Desktop dropdown ───────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 0.5rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.7;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1.15rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: rgba(26, 23, 20, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(192, 154, 86, 0.22);
    padding: 0.65rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li { display: block; }

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--stone-lt);
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover { background: rgba(192, 154, 86, 0.08); color: var(--gold); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--cream);
    transition: var(--transition);
}

/* ─── Mobile menu ─────────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    padding: 0.55rem 0;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] { color: var(--gold); }

.mobile-menu .mobile-sub {
    font-family: var(--ff-body);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--stone-lt);
    padding: 0.4rem 0;
}

.mobile-menu-heading {
    font-family: var(--ff-body);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    background: none;
    border: none;
    color: var(--stone-lt);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

/* ─── Utility ────────────────────────────────────────────────── */
.label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.label-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.label-text {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-heading {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
}

.section-heading em { font-style: italic; color: var(--stone); }

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 1rem 2.25rem;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone-lt);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--transition);
}

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

/* Ghost button on light backgrounds */
.btn-ghost.dark { color: var(--stone); }
.btn-ghost.dark:hover { color: var(--charcoal); }

/* ─── Reveal Animations ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; transition-duration: 0ms !important; }
}

/* ─── HERO (home) ────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: var(--charcoal);
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 3.5rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(192, 154, 86, 0.35) 20%,
        rgba(192, 154, 86, 0.35) 80%,
        transparent 100%);
    pointer-events: none;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 4rem;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    padding: 10rem 4rem 4rem 6rem;
    width: 100%;
}

.hero-label { margin-bottom: 2.25rem; }

.hero-h1 {
    font-family: var(--ff-display);
    font-size: clamp(3.25rem, 6.5vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.75rem;
}

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

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone-lt);
    max-width: 44ch;
    margin-bottom: 2.75rem;
}

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

/* ─── CSS Wardrobe Art ───────────────────────────────────────── */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
}

.wardrobe {
    width: 100%;
    max-width: 300px;
    background: var(--charcoal-mid);
    border: 1px solid rgba(192, 154, 86, 0.3);
    position: relative;
}

.wardrobe-top {
    height: 14px;
    background: rgba(192, 154, 86, 0.12);
    border-bottom: 1px solid rgba(192, 154, 86, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wardrobe-top::before {
    content: '';
    width: 60%;
    height: 1px;
    background: rgba(192, 154, 86, 0.2);
}

.wardrobe-doors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.wardrobe-door {
    position: relative;
    border: 1px solid rgba(192, 154, 86, 0.1);
}

.wardrobe-door-inner {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(192, 154, 86, 0.1);
}

.wardrobe-door-handle {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.55;
}

.wardrobe-door:first-child .wardrobe-door-handle { left: auto; right: 10px; transform: none; }
.wardrobe-door:last-child .wardrobe-door-handle  { left: 10px; transform: none; }

.wardrobe-drawer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 52px;
    border-top: 1px solid rgba(192, 154, 86, 0.15);
}

.wardrobe-drawer {
    position: relative;
    border: 1px solid rgba(192, 154, 86, 0.08);
}

.wardrobe-drawer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: rgba(192, 154, 86, 0.35);
}

.wardrobe-caption {
    margin-top: 1.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
    text-align: center;
    max-width: 28ch;
    line-height: 1.6;
}

/* ─── Hero Footer ────────────────────────────────────────────── */
.hero-footer {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 4rem 2.5rem 6rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-location {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--stone);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.scroll-line {
    width: 38px;
    height: 1px;
    background: var(--stone);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: sweep 2.2s ease-in-out infinite;
}

@keyframes sweep {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}

/* ─── PAGE HERO (interior pages) ─────────────────────────────── */
.page-hero {
    background: var(--charcoal);
    padding: 11rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 3.5rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(192, 154, 86, 0.35) 20%,
        rgba(192, 154, 86, 0.35) 80%,
        transparent 100%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 2rem;
    list-style: none;
}

.breadcrumb a { color: var(--stone-lt); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li::after { content: '/'; margin-left: 0.5rem; color: var(--charcoal-lt); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li:last-child { color: var(--gold); }

.page-hero-h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.06;
    color: var(--cream);
    margin-bottom: 1.5rem;
    max-width: 18ch;
}

.page-hero-h1 em { font-style: italic; color: var(--gold); }

.page-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--stone-lt);
    max-width: 56ch;
}

/* ─── MEDIA FIGURE ───────────────────────────────────────────── */
.media {
    max-width: 1000px;
    margin: 0 auto;
}

.media img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(122, 110, 99, 0.18);
}

.media figcaption {
    margin-top: 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--stone);
    text-align: center;
}

/* ─── MEDIA GRID (two-up project photos on service pages) ─────── */
.media-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.media-grid figure { margin: 0; }

.media-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(122, 110, 99, 0.18);
}

.media-grid figcaption {
    margin-top: 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--stone);
    text-align: center;
}

/* ─── BEFORE / AFTER COMPARE SLIDER ──────────────────────────── */
.compare { max-width: 600px; margin: 0 auto; }

.compare-viewport {
    --pos: 50%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(122, 110, 99, 0.18);
    touch-action: pan-y;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.compare-viewport:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.compare-closed { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    margin-left: -1px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.compare-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.compare-knob::before,
.compare-knob::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%);
}

.compare-knob::before { left: 11px; border-right: 7px solid var(--charcoal); }
.compare-knob::after  { right: 11px; border-left: 7px solid var(--charcoal); }

.compare-tag {
    position: absolute;
    bottom: 14px;
    z-index: 2;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(20, 18, 16, 0.5);
    padding: 5px 10px;
    pointer-events: none;
}

.compare-tag-left  { left: 14px; }
.compare-tag-right { right: 14px; }

.compare figcaption {
    margin-top: 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--stone);
    text-align: center;
}

/* ─── PROSE (article body copy) ──────────────────────────────── */
.section {
    padding: 7rem 4rem;
}

.section.light  { background: var(--white); }
.section.cream  { background: var(--cream); }
.section.deep   { background: var(--cream-deep); }
.section.dark   { background: var(--charcoal); }

.prose {
    max-width: 720px;
    margin: 0 auto;
}

.prose.wide { max-width: 900px; }

.prose h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    margin: 3rem 0 1.25rem;
}

.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--stone); }

.prose h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 2.25rem 0 0.85rem;
}

.prose p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--stone);
    margin-bottom: 1.35rem;
}

.prose p strong { color: var(--charcoal); font-weight: 500; }

.prose ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.5rem 0 2rem;
}

.prose ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.975rem;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.6;
}

.prose ul li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.75em;
}

.prose a { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }

/* ─── PHILOSOPHY ─────────────────────────────────────────────── */
.philosophy { background: var(--white); padding: 9rem 4rem; }

.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 7rem;
    align-items: start;
}

.philosophy-left { position: sticky; top: 8rem; }
.philosophy-left .section-heading { margin-top: 1.25rem; }

.philosophy-quote {
    font-family: var(--ff-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--charcoal);
    padding-left: 1.75rem;
    border-left: 2px solid var(--gold);
    margin-bottom: 2.25rem;
}

.philosophy-body {
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--stone);
    margin-bottom: 1.75rem;
}

.philosophy-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.philosophy-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.5;
}

.philosophy-points li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.7em;
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.process { background: var(--cream); padding: 9rem 4rem; }
.process-inner { max-width: 1200px; margin: 0 auto; }

.process-header { text-align: center; margin-bottom: 5.5rem; }
.process-header .label { justify-content: center; }
.process-header .section-heading { margin-top: 1.25rem; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: calc(12.5% + 0.5rem);
    right: calc(12.5% + 0.5rem);
    height: 1px;
    background: linear-gradient(to right, var(--gold) 0%, rgba(192,154,86,0.15) 40%, rgba(192,154,86,0.15) 60%, var(--gold) 100%);
}

.step { padding: 0 1.75rem; text-align: center; }

.step-num {
    width: 4.75rem;
    height: 4.75rem;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.step-num span { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 400; color: var(--gold); }

.step-title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.step-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--stone); }

/* Process on white background variant */
.process.on-white { background: var(--white); }
.process.on-white .step-num { background: var(--white); }

/* ─── SHOWCASE ───────────────────────────────────────────────── */
.showcase { background: var(--charcoal); padding: 9rem 4rem; }
.showcase-inner { max-width: 1200px; margin: 0 auto; }

.showcase-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4.5rem;
}

.showcase-h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cream);
    margin-top: 1.25rem;
}

.showcase-h2 em { font-style: italic; color: var(--gold); }

.showcase-note {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--stone-lt);
    padding-bottom: 0.5rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.s-card {
    aspect-ratio: 3/4;
    border: 1px solid rgba(192, 154, 86, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1C1814;
    transition: border-color var(--transition-md), transform var(--transition-md);
}

.s-card:hover { border-color: rgba(192, 154, 86, 0.45); transform: translateY(-3px); }

.s-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-md);
}

.s-card:hover img { transform: scale(1.03); }

.s-card-1 img { object-position: center top; }
.s-card-3 img { object-position: center top; }
.s-card-2 img { object-position: center center; }

.s-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(18, 15, 12, 0.82) 100%);
    pointer-events: none;
}

.s-card-label { position: absolute; bottom: 1.1rem; left: 1.25rem; right: 1.25rem; z-index: 1; }

.s-card-label-text {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--stone-lt);
}

/* ─── SERVICE CARDS (link grid to wardrobe types) ────────────── */
.services { padding: 9rem 4rem; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 4.5rem; }
.services-header .label { justify-content: center; }
.services-header .section-heading { margin-top: 1.25rem; }
.services-header p {
    max-width: 54ch;
    margin: 1.5rem auto 0;
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--stone);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--cream-card);
    border: 1px solid var(--cream-deep);
    padding: 2.75rem;
    text-decoration: none;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
}

.service-card:hover {
    border-color: rgba(192, 154, 86, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -28px rgba(26, 23, 20, 0.4);
}

.service-card-num {
    font-family: var(--ff-display);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.9rem;
}

.service-card-body {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--stone);
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: gap var(--transition), color var(--transition);
}

.service-card:hover .service-card-link { gap: 1rem; color: var(--gold); }

/* ─── VALUES ─────────────────────────────────────────────────── */
.values { background: var(--cream-deep); padding: 9rem 4rem; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 5rem; }
.values-header .label { justify-content: center; }
.values-header .section-heading { margin-top: 1.25rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(122, 110, 99, 0.12);
}

.value-card { background: var(--cream-deep); padding: 3rem 2.75rem; transition: background var(--transition-md); }
.value-card:hover { background: var(--cream-card); }
.value-bar { width: 44px; height: 1px; background: var(--gold); margin-bottom: 2rem; }

.value-title {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.value-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: var(--stone); }

/* ─── PROMISE (replaces fake testimonials) ───────────────────── */
.promise { background: var(--white); padding: 9rem 4rem; }
.promise-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.promise-inner .label { justify-content: center; }
.promise-inner .section-heading { margin-top: 1.25rem; margin-bottom: 1.5rem; }

.promise-lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--stone);
    max-width: 56ch;
    margin: 0 auto 3.5rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: left;
}

.promise-item {
    padding-top: 1.75rem;
    border-top: 1px solid var(--cream-deep);
}

.promise-item-title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.promise-item-body { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: var(--stone); }

/* ─── REVIEWS (real customer testimonials) ───────────────────── */
.reviews { background: var(--cream); padding: 9rem 4rem; }
.reviews-inner { max-width: 1000px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .label { justify-content: center; }
.reviews-header .section-heading { margin-top: 1.25rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid rgba(122, 110, 99, 0.18);
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    margin-bottom: 1.5rem;
}

.review-quote {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 1.75rem;
    flex-grow: 1;
}

.review-author {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--stone);
}

.review-author strong { color: var(--charcoal); font-weight: 600; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--cream); padding: 9rem 4rem; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .label { justify-content: center; }
.faq-header .section-heading { margin-top: 1.25rem; }

.faq-item { border-top: 1px solid var(--cream-deep); }
.faq-item:last-child { border-bottom: 1px solid var(--cream-deep); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1.75rem 3rem 1.75rem 0;
    position: relative;
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
}

.faq-q::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 2rem;
    width: 12px;
    height: 12px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.faq-item.open .faq-q::after { transform: rotate(-135deg); top: 2.4rem; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-md);
}

.faq-a-inner {
    padding: 0 3rem 1.75rem 0;
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--stone);
}

.faq-a-inner p { margin-bottom: 1rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band { background: var(--charcoal); padding: 6rem 4rem; position: relative; overflow: hidden; }

.cta-band-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-band .label { justify-content: center; margin-bottom: 1.75rem; }

.cta-band h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.cta-band h2 em { font-style: italic; color: var(--gold); }

.cta-band p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone-lt);
    max-width: 46ch;
    margin: 0 auto 2.5rem;
}

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

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--charcoal); padding: 9rem 4rem; position: relative; overflow: hidden; }

.contact::before {
    content: 'E.B.W';
    position: absolute;
    font-family: var(--ff-display);
    font-size: 28vw;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.018);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.contact-inner { max-width: 960px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact .label { justify-content: center; margin-bottom: 2rem; }

.contact-h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.contact-h2 em { font-style: italic; color: var(--gold); }

.contact-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone-lt);
    max-width: 46ch;
    margin: 0 auto 2.5rem;
}

/* ─── Survey / funnel embed ──────────────────────────────────── */
.survey-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 154, 86, 0.2);
    padding: 2rem 2rem 0.5rem;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.survey-wrap iframe { width: 100%; border: none; display: block; min-height: 560px; }

.contact-or {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 320px;
    margin: 0 auto 2.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
}

.contact-or::before, .contact-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(192, 154, 86, 0.15);
}

.contact-details { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }

.c-detail-label {
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.c-detail-value {
    font-size: 0.95rem;
    color: var(--stone-lt);
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--transition);
    display: block;
}

.c-detail-value:hover { color: var(--gold-lt); }
.c-divider { width: 1px; height: 2.5rem; background: rgba(192, 154, 86, 0.15); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #110E0C; padding: 4rem 3.5rem 2.5rem; }

.footer-top {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand-mark {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.footer-brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone);
    max-width: 34ch;
}

.footer-col-title {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

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

.footer-col a {
    font-size: 0.82rem;
    color: var(--stone-lt);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 300;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(122, 110, 99, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--charcoal-lt); }
.footer-area { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--charcoal-lt); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav { padding: 1.25rem 2rem; }

    .hero-main { grid-template-columns: 1fr; padding: 9rem 2rem 4rem; }
    .hero-visual { display: none; }
    .hero-footer { padding: 0 2rem 2.5rem; }
    .hero::after { left: 2rem; }

    .page-hero { padding: 9.5rem 2rem 4rem; }
    .page-hero::after { left: 2rem; }

    .section { padding: 5rem 2rem; }

    .philosophy { padding: 6rem 2rem; }
    .philosophy-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .philosophy-left { position: static; }

    .process { padding: 6rem 2rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 3.5rem 2rem; }
    .process-steps::before { display: none; }

    .showcase { padding: 6rem 2rem; }
    .showcase-header { grid-template-columns: 1fr; gap: 2rem; }
    .showcase-grid { grid-template-columns: 1fr 1fr; }

    .services { padding: 6rem 2rem; }

    .values { padding: 6rem 2rem; }
    .values-grid { grid-template-columns: 1fr; }

    .promise { padding: 6rem 2rem; }
    .promise-grid { grid-template-columns: 1fr; gap: 2rem; }

    .reviews { padding: 6rem 2rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 2rem; }

    .media-grid { gap: 1rem; }

    .faq { padding: 6rem 2rem; }
    .cta-band { padding: 5rem 2rem; }
    .contact { padding: 6rem 2rem; }

    .footer { padding: 3.5rem 2rem 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero::after { display: none; }
    .hero-main { padding: 7rem 1.25rem 2.5rem; }
    .hero-h1 { font-size: clamp(2.6rem, 10vw, 3.5rem); margin-bottom: 1.25rem; }
    .hero-sub { font-size: 1rem; max-width: 100%; margin-bottom: 2.25rem; }
    .hero-actions { gap: 1.25rem; }
    .hero-footer { padding: 0 1.25rem 1.75rem; }

    .page-hero { padding: 8rem 1.25rem 3.5rem; }
    .page-hero::after { display: none; }
    .page-hero-sub { font-size: 1rem; }

    .section { padding: 4rem 1.25rem; }

    .philosophy, .process, .showcase, .services,
    .values, .promise, .reviews, .faq, .contact { padding: 5rem 1.25rem; }
    .cta-band { padding: 4.5rem 1.25rem; }

    .philosophy-inner { gap: 2.5rem; }
    .philosophy-quote { font-size: 1.2rem; padding-left: 1.25rem; }
    .philosophy-body { font-size: 1rem; }

    .process-steps { grid-template-columns: 1fr; gap: 0; }
    .step {
        display: grid;
        grid-template-columns: 3.25rem 1fr;
        grid-template-areas: "num title" "num desc";
        column-gap: 1.25rem;
        row-gap: 0.3rem;
        padding: 1.75rem 0;
        border-bottom: 1px solid rgba(122, 110, 99, 0.15);
        text-align: left;
    }
    .step:last-child { border-bottom: none; }
    .step-num { grid-area: num; width: 3.25rem; height: 3.25rem; margin: 0; align-self: start; }
    .step-num span { font-size: 0.95rem; }
    .step-title { grid-area: title; align-self: end; margin-bottom: 0; font-size: 1.05rem; }
    .step-desc { grid-area: desc; align-self: start; font-size: 0.9rem; }

    .showcase-header { gap: 1.5rem; }
    .showcase-grid { grid-template-columns: 1fr; gap: 1rem; }
    .s-card { aspect-ratio: 1/1; }

    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 2.25rem; }

    .promise-grid { grid-template-columns: 1fr; }

    .faq-q { font-size: 1.05rem; padding-right: 2.5rem; }

    .contact-h2 { font-size: clamp(2.25rem, 9vw, 3.5rem); }
    .contact-details { gap: 2rem; flex-direction: column; align-items: center; }
    .c-divider { display: none; }
    .contact .btn-primary { display: block; width: 100%; text-align: center; padding: 1.1rem 1.5rem; }

    .cta-band-actions { flex-direction: column; gap: 1rem; }
    .cta-band-actions .btn-primary { display: block; width: 100%; text-align: center; }

    .prose h2 { margin-top: 2.5rem; }

    .footer { padding: 3rem 1.25rem 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

    .mobile-menu a { font-size: 1.5rem; }
}
