/* ═══════════════════════════════════════════════════════
   WKCC — Wolverhampton Kitchen Clearance Center
   style.css — Shared styles for all pages
   
   Design system: Stone/Oak/Sage palette
   Fonts: Fraunces (display) + General Sans (body)
   Philosophy: Premium but friendly. IKEA meets Nike.
   ═══════════════════════════════════════════════════════ */


/* ── Design Tokens ── */
:root {
    /* Stone scale (warm greys) */
    --stone-950: #1c1917;
    --stone-800: #3d3833;
    --stone-600: #6b6560;
    --stone-400: #a8a29e;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --stone-50:  #fafaf9;
    --warm-white: #fefdfb;

    /* Accent colours */
    --oak:       #c4956a;          /* Warmth, highlights */
    --oak-soft:  rgba(196,149,106,0.1);
    --oak-med:   rgba(196,149,106,0.2);
    --sage:      #7c8c6e;          /* Trust, CTAs */
    --sage-soft: rgba(124,140,110,0.08);
    --sage-light:#e8ede4;
    --coral:     #d4785c;          /* Errors only */

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Easing */
    --ease:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}


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

body {
    font-family: var(--font-body);
    color: var(--stone-950);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* Skip-to-content link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--stone-950);
    color: var(--stone-50);
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }


/* ── Layout ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}


/* ── Animations ── */
@keyframes rise     { from { opacity:0; transform:translateY(32px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes slideIn  { from { opacity:0; transform:translateX(-20px) } to { opacity:1; transform:translateX(0) } }
@keyframes countUp  { from { opacity:0; transform:translateY(12px) } to { opacity:1; transform:translateY(0) } }
@keyframes ticker   { from { transform:translateX(0) } to { transform:translateX(-50%) } }
@keyframes pulse    { 0%,100% { opacity:1 } 50% { opacity:0.5 } }
@keyframes scaleUp  { from { opacity:0; transform:scale(0.96) } to { opacity:1; transform:scale(1) } }

.rise { opacity:0; animation: rise 0.7s var(--ease) forwards; }
.rise-d1 { animation-delay:0.08s }
.rise-d2 { animation-delay:0.18s }
.rise-d3 { animation-delay:0.28s }
.rise-d4 { animation-delay:0.38s }

/* Scroll-triggered reveal (JS adds .visible) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .rise { opacity: 1; transform: none; animation: none; }
    .ticker__track { animation: none; }
}


/* ══════════════════════════════════════
   SHARED COMPONENTS
   Buttons, section headers, form elements
   ══════════════════════════════════════ */

/* ── Section Headers ── */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.section-title strong { font-weight: 700; font-style: italic; }

.section-header__row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.section-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--stone-500);
    max-width: 48ch;
    line-height: 1.6;
    flex: 1 1 auto;
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }


/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}

.btn--dark {
    background: var(--stone-950);
    color: var(--stone-50);
}
.btn--dark:hover {
    background: var(--stone-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,25,23,0.12);
}

.btn--soft {
    background: var(--stone-200);
    color: var(--stone-950);
}
.btn--soft:hover {
    background: var(--stone-400);
    color: var(--warm-white);
}

.btn--sage {
    background: var(--sage);
    color: #fff;
}
.btn--sage:hover {
    background: #6a7a5e;
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--stone-600);
    padding: 0.8rem 0;
    border-radius: 0;
}
.btn--ghost:hover { color: var(--stone-950); }

.btn__arrow {
    font-size: 1rem;
    transition: transform 0.3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }


/* ══════════════════════════════════════
   NAVIGATION
   Fixed, frosted glass, clean & airy
   ══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(254,253,251,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled { box-shadow: 0 1px 0 var(--stone-200); }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav__logo-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--stone-950);
    color: var(--oak);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
}

.nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--stone-950);
    letter-spacing: -0.01em;
}

/* Desktop links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav__link {
    padding: 0.5rem 1.1rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--stone-600);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav__link:hover { color: var(--stone-950); background: var(--stone-100); }

.nav__cta {
    margin-left: 0.75rem;
    padding: 0.55rem 1.3rem;
    background: var(--stone-950);
    color: var(--stone-50);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s var(--ease);
}
.nav__cta:hover { background: var(--stone-800); transform: translateY(-1px); }

/* Phone in nav */
.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--stone-600);
    margin-left: 0.5rem;
}
.nav__phone:hover { color: var(--stone-950); }
.nav__phone-icon { font-size: 0.9rem; line-height: 1; }

/* Mobile hamburger */
.nav__toggle {
    display: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}
.nav__toggle span {
    width: 20px; height: 1.5px;
    background: var(--stone-950);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger → X animation */
.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--warm-white);
    display: flex;
    flex-direction: column;
    padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__link {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--stone-950);
    border-bottom: 1px solid var(--stone-100);
    transition: color 0.2s ease;
}
.mobile-menu__link:hover { color: var(--oak); }

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage);
}

.mobile-menu__cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--stone-950);
    color: var(--stone-50);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}


/* ══════════════════════════════════════
   HERO
   Lifestyle feel, not showroom sterile
   ══════════════════════════════════════ */
.hero {
    padding-top: 68px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--stone-50);
    position: relative;
}

.hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.25rem;
}

.hero__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--stone-950);
    margin-bottom: 1.5rem;
}

.hero__title strong {
    font-weight: 700;
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--stone-600);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero stats row */
.hero__stats { display: flex; gap: 2.5rem; }

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--stone-950);
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.72rem;
    color: var(--stone-400);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: 0.1rem;
}

/* Hero visual / image area */
.hero__visual { position: relative; }

.hero__img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/6;
    background: var(--stone-200);
    position: relative;
}

.hero__img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Placeholder (remove when real images added) */
.hero__img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #e8e3da 0%, #d5cec3 50%, #c4bcb0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--stone-600);
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem;
}

.hero__img-placeholder-icon { font-size: 2.5rem; }
.hero__img-placeholder-sub { font-size: 0.72rem; opacity: 0.6; }

/* Floating price tag */
.hero__price-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--warm-white);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    animation: scaleUp 0.5s var(--ease) 0.6s forwards;
    opacity: 0;
}

.hero__price-tag-label {
    font-size: 0.65rem;
    color: var(--stone-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__price-tag-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.15rem;
}

.hero__price-tag-from { font-size: 0.75rem; color: var(--stone-400); }

.hero__price-tag-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--stone-950);
}

.hero__price-tag-note {
    font-size: 0.65rem;
    color: var(--sage);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Floating review badge */
.hero__badge-float {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--stone-950);
    color: var(--stone-50);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: scaleUp 0.5s var(--ease) 0.8s forwards;
    opacity: 0;
}

.hero__badge-float-star { color: #facc15; }


/* ══════════════════════════════════════
   SOCIAL PROOF TICKER
   Dark bar, infinite scroll
   ══════════════════════════════════════ */
.ticker {
    background: var(--stone-950);
    padding: 0.85rem 0;
    overflow: hidden;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--stone-400);
}

.ticker__divider {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--stone-600);
    flex-shrink: 0;
}

.ticker__highlight { color: var(--oak); }


/* ══════════════════════════════════════
   HOW IT WORKS — 4-step journey
   ══════════════════════════════════════ */
.journey {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--warm-white);
}

.journey__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.journey__step {
    padding: 2rem 1.75rem;
    position: relative;
    border-left: 1px solid var(--stone-200);
    transition: background 0.3s ease;
}

.journey__step:first-child { border-left: none; }
.journey__step:hover { background: var(--stone-50); }

.journey__step-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--stone-200);
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.journey__step:hover .journey__step-num { color: var(--oak); }

.journey__step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.journey__step-text {
    font-size: 0.88rem;
    color: var(--stone-600);
    line-height: 1.65;
}

.journey__step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: var(--sage);
    font-weight: 600;
    background: var(--sage-soft);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.journey__step-time-icon { font-size: 0.8rem; line-height: 1; }


/* ══════════════════════════════════════
   KITCHEN STYLES PREVIEW
   Browsable card grid, links to portfolio
   ══════════════════════════════════════ */
.styles {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--stone-50);
}

.styles__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: clamp(500px, 55vw, 680px);
}

.style-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--stone-200);
}

.style-card:first-child { grid-row: 1 / -1; }

.style-card__bg {
    width: 100%; height: 100%;
    transition: transform 0.6s var(--ease);
}

.style-card__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.style-card:hover .style-card__bg { transform: scale(1.04); }

.style-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(28,25,23,0.7) 0%, transparent 100%);
}

.style-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
}

.style-card__tag {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    backdrop-filter: blur(8px);
}

.style-card__arrow {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s var(--ease);
}

.style-card:hover .style-card__arrow { opacity: 1; transform: translate(0); }


/* ══════════════════════════════════════
   WHY WKCC — differentiators
   ══════════════════════════════════════ */
.why {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--warm-white);
}

.why__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
}

.why__card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--stone-100);
    transition: padding-left 0.3s var(--ease);
}

.why__card:hover { padding-left: 0.5rem; }
.why__card:last-child { border-bottom: none; }

.why__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.why__icon--oak  { background: var(--oak-soft); }
.why__icon--sage { background: var(--sage-soft); }
.why__icon--stone { background: var(--stone-100); }

.why__card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.why__card-text {
    font-size: 0.88rem;
    color: var(--stone-600);
    line-height: 1.6;
}

/* Why visual / showroom image */
.why__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--stone-100);
}

.why__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Placeholder (remove when real images added) */
.why__visual-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #e2ddd5, #ccc5ba);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--stone-600);
    font-size: 0.85rem;
    padding: 2rem;
    text-align: center;
}

/* Price comparison overlay */
.why__visual-tag {
    position: absolute;
    bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
    background: var(--warm-white);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.why__visual-tag-label {
    font-size: 0.72rem;
    color: var(--stone-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.why__visual-tag-compare {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.6rem;
}

.why__price-col { text-align: center; }

.why__price-name {
    font-size: 0.68rem;
    color: var(--stone-400);
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.why__price-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.why__price-val--them { color: var(--stone-400); text-decoration: line-through; }
.why__price-val--us   { color: var(--sage); }

.why__price-save {
    background: var(--sage-light);
    color: var(--sage);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    text-align: center;
    line-height: 1.3;
}


/* ══════════════════════════════════════
   REVIEWS
   Real, warm, personal
   ══════════════════════════════════════ */
.reviews {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--stone-50);
}

.reviews__header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

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

.review {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--stone-200);
    transition: all 0.3s var(--ease);
}

.review:hover {
    border-color: var(--oak-med);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(28,25,23,0.06);
}

.review__stars {
    color: var(--oak);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.review__text {
    font-size: 0.94rem;
    color: var(--stone-800);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.review__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.review__name { font-size: 0.82rem; font-weight: 600; }
.review__meta { font-size: 0.7rem; color: var(--stone-400); }

.reviews__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.reviews__source {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--stone-600);
    padding: 0.5rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--stone-200);
    transition: all 0.2s ease;
}

.reviews__source:hover { border-color: var(--stone-400); background: var(--stone-100); }
.reviews__source-icon { font-size: 0.9rem; line-height: 1; }


/* ══════════════════════════════════════
   CTA / QUOTE FORM SECTION
   Dark background, warm overlay
   ══════════════════════════════════════ */
.cta-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--stone-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(196,149,106,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oak);
    margin-bottom: 0.75rem;
}

.cta__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--stone-50);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta__title strong { font-weight: 700; font-style: italic; }

.cta__desc {
    font-size: 0.95rem;
    color: var(--stone-400);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta__phone-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--stone-400);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.cta__phone-link:hover { color: var(--oak); }

.cta__phone-link-icon { font-size: 0.95rem; line-height: 1; }

.cta__or {
    color: var(--stone-600);
    font-size: 0.8rem;
}


/* ── Quote Form Card ── */
.cta__form-card {
    background: var(--stone-800);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta__form-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--stone-50);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.cta__form-sub {
    font-size: 0.78rem;
    color: var(--stone-400);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group { margin-bottom: 0.85rem; }

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--stone-400);
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--stone-950);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--stone-50);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--stone-600); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--oak); }

/* Validation error state */
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: var(--coral); }

.form-error {
    font-size: 0.7rem;
    color: var(--coral);
    margin-top: 0.25rem;
    display: none;
}

.form-error.visible { display: block; }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 80px; }

/* Honeypot — anti-bot, invisible to humans.
   Uses off-screen positioning, not display:none (bots detect that) */
.ohnohoney {
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}

.form-submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--sage);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover { background: #6a7a5e; }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success state */
.form-submit-btn.success {
    background: var(--sage);
    pointer-events: none;
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.68rem;
    color: var(--stone-600);
}

.form-trust-icon { font-size: 0.8rem; line-height: 1; }

/* Form status messages */
.form-status {
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}

.form-status.success {
    display: block;
    background: var(--sage-soft);
    color: var(--sage);
    border: 1px solid rgba(124,140,110,0.2);
}

.form-status.error {
    display: block;
    background: rgba(212,120,92,0.1);
    color: var(--coral);
    border: 1px solid rgba(212,120,92,0.2);
}


/* ══════════════════════════════════════
   VISIT / LOCATION SECTION
   ══════════════════════════════════════ */
.visit {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--warm-white);
}

.visit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.visit__map {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--stone-100);
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Map placeholder (remove when iframe added) */
.visit__map-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--stone-400);
    font-size: 0.85rem;
}

.visit__map-placeholder-sub { font-size: 0.75rem; opacity: 0.6; }

.visit__detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--stone-100);
}

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

.visit__detail-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--stone-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.visit__detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-400);
    margin-bottom: 0.15rem;
}

.visit__detail-value { font-size: 0.95rem; font-weight: 500; }

.visit__detail-value a {
    transition: color 0.2s;
}
.visit__detail-value a:hover { color: var(--oak); }


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--stone-950);
    color: var(--stone-400);
    padding: 3rem 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--stone-50);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.footer__brand-text {
    font-size: 0.85rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-200);
    margin-bottom: 0.8rem;
}

.footer__link {
    display: block;
    font-size: 0.84rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.footer__link:hover { color: var(--oak); }

.footer__bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.footer__bar-links { display: flex; gap: 1.5rem; }
.footer__bar-links a:hover { color: var(--oak); }

.footer__security {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    justify-content: center;
}

.footer__security-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--stone-600);
}

.footer__security-icon { font-size: 0.85rem; line-height: 1; }


/* ══════════════════════════════════════
   MOBILE STICKY BAR
   Fixed bottom, call + quote buttons
   ══════════════════════════════════════ */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: var(--warm-white);
    border-top: 1px solid var(--stone-200);
    padding: 0.6rem 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.sticky-bar__inner { display: flex; gap: 0.6rem; }

.sticky-bar__btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.sticky-bar__btn--quote { background: var(--stone-950); color: var(--stone-50); }
.sticky-bar__btn--call  { background: var(--sage); color: #fff; }
.sticky-bar__btn-icon   { font-size: 0.9rem; line-height: 1; }


/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .journey__steps { grid-template-columns: repeat(2, 1fr); }
    .journey__step { border-left: none; border-top: 1px solid var(--stone-200); }
    .journey__step:nth-child(-n+2) { border-top: none; }

    .styles__grid { grid-template-columns: 1fr 1fr; height: auto; }
    .styles__grid .style-card:first-child { grid-row: auto; }
    .style-card { aspect-ratio: 4/3; }

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

/* Mobile */
@media (max-width: 768px) {
    /* Nav: hide desktop links, show hamburger */
    .nav__links { display: none; }
    .nav__phone { display: none; }

    /* Larger touch target for hamburger (min 44×44px) */
    .nav__toggle {
        display: flex;
        padding: 12px 10px;
        margin-right: -10px;
    }

    /* Hero: single column, image above text */
    .hero__layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.75rem 0 3rem;
        gap: 1.75rem;
    }
    .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }

    /* Hero image: responsive width + cap the tall aspect ratio */
    .hero__visual {
        order: -1;
        width: 100%;
        max-width: min(100%, 400px);
        margin: 0 auto;
    }
    .hero__img-main {
        aspect-ratio: 4/3;
        max-height: 300px;
    }

    /* Journey: single column */
    .journey__steps { grid-template-columns: 1fr; }
    .journey__step { border-top: 1px solid var(--stone-200); border-left: none; }
    .journey__step:first-child { border-top: none; }

    /* Styles: single column */
    .styles__grid { grid-template-columns: 1fr; height: auto; }
    .style-card { aspect-ratio: 3/2; }

    /* Why: single column, cap visual height */
    .why__layout { grid-template-columns: 1fr; }
    .why__visual {
        order: -1;
        width: 100%;
        max-width: min(100%, 400px);
        margin: 0 auto;
        aspect-ratio: 4/3;
    }

    /* Reviews: full-width single column */
    .reviews__grid { grid-template-columns: 1fr; }
    .reviews__header { max-width: 100%; }

    /* CTA: single column */
    .cta__inner { grid-template-columns: 1fr; }
    .cta__form-card { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    /* Prevent iOS from zooming in on form fields */
    .form-input,
    .form-select,
    .form-textarea { font-size: 16px; }

    /* Visit: single column */
    .visit__layout { grid-template-columns: 1fr; }

    /* Footer: single column */
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__brand-text { max-width: 100%; margin: 0 auto; }
    .footer__bar { flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer__bar-links { justify-content: center; }
    .footer__security { flex-wrap: wrap; gap: 1rem; }

    /* Sticky bar with iOS safe-area inset */
    .sticky-bar {
        display: block;
        padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    }

    /* Body bottom padding accounts for sticky bar + iOS home indicator */
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }

    /* Minimum 44px tap targets on buttons */
    .btn,
    .sticky-bar__btn,
    .mobile-menu__link { min-height: 44px; }
}

/* Small mobile — phones ≤ 480px */
@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__stats { gap: 1.5rem; }
    .hero__stat-num { font-size: 1.3rem; }

    /* Stack hero CTAs to full-width buttons */
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }
}

/* Very small mobile — phones ≤ 380px */
@media (max-width: 380px) {
    .hero__title { font-size: 1.8rem; }
    .hero__stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .hero__stat { text-align: center; }

    /* Hide the wordmark, keep the icon only — saves ~80px on tiny screens */
    .nav__logo-name { display: none; }

    .hero__price-tag { padding: 0.65rem 0.9rem; }
    .hero__price-tag-price { font-size: 1.2rem; }

    .cta__form-card { padding: 1.25rem 1rem; }

    .footer__security { gap: 0.75rem; }
}

/* ══════════════════════════════════════════════
   PORTFOLIO PAGE STYLES
   Paste everything below at the END of style.css
   ══════════════════════════════════════════════ */


/* ── Active nav link (current page) ── */
.nav__link--active { color: var(--stone-950); }
.mobile-menu__link--active { color: var(--oak); }


/* ══════════════════════════════════════
   PORTFOLIO HEADER — clean, brief intro
══════════════════════════════════════ */
.portfolio-header {
    padding-top: 68px; /* nav height */
    background: var(--stone-50);
}

.portfolio-header__inner {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    max-width: 600px;
}

.portfolio-header__back {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--stone-400);
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.portfolio-header__back:hover { color: var(--stone-950); }

.portfolio-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--stone-950);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-header__title strong {
    font-weight: 700;
    font-style: italic;
}

.portfolio-header__sub {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--stone-600);
    line-height: 1.7;
}


/* ══════════════════════════════════════
   FILTER — typeform-style interactive
══════════════════════════════════════ */
.filter {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
    background: var(--stone-50);
}

.filter__step {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.filter__step-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.filter__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--stone-950);
    color: var(--stone-50);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.filter__step-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--stone-950);
}

.filter__step-hint {
    font-size: 0.78rem;
    color: var(--stone-400);
    font-weight: 400;
    width: 100%;
    padding-left: calc(28px + 0.75rem); /* align under title */
}


/* ── Style filter cards ── */
.filter__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.filter__cards--2 {
    grid-template-columns: repeat(2, 1fr);
}

.filter__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: var(--warm-white);
    border: 2px solid var(--stone-200);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: var(--font-body);
}

.filter__card:hover {
    border-color: var(--stone-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}

/* Selected state */
.filter__card.active {
    border-color: var(--oak);
    box-shadow: 0 0 0 1px var(--oak), 0 8px 24px rgba(196, 149, 106, 0.12);
}

.filter__card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.filter__card-img-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.filter__card:hover .filter__card-img-photo,
.filter__card.active .filter__card-img-photo {
    transform: scale(1.05);
}

/* Scrim so label text stays readable over photos */
.filter__card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 100%);
    pointer-events: none;
}

.filter__card-icon {
    font-size: 1.8rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.filter__card.active .filter__card-icon { opacity: 0.6; }

.filter__card-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--stone-950);
    padding: 0.75rem 0.5rem 0.15rem;
}

.filter__card-desc {
    display: block;
    font-size: 0.72rem;
    color: var(--stone-400);
    padding: 0 0.5rem 0.85rem;
}

/* Check indicator on selected card */
.filter__card.active::after {
    content: '✓';
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--oak);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card needs relative positioning for the check */
.filter__card { position: relative; }


/* ── Colour swatches ── */
.filter__swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem 0.7rem;
    background: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-family: var(--font-body);
}

.filter__swatch:hover {
    background: var(--warm-white);
    border-color: var(--stone-200);
}

.filter__swatch.active {
    background: var(--warm-white);
    border-color: var(--oak);
    box-shadow: 0 4px 12px rgba(196, 149, 106, 0.1);
}

.filter__swatch-circle {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.filter__swatch:hover .filter__swatch-circle {
    transform: scale(1.08);
}

.filter__swatch.active .filter__swatch-circle {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px var(--warm-white), 0 0 0 5px var(--oak);
}

.filter__swatch-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-600);
}

.filter__swatch.active .filter__swatch-label {
    color: var(--stone-950);
    font-weight: 600;
}


/* ── Filter bar (chips + count) ── */
.filter__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--stone-200);
    margin-top: 0.5rem;
    min-height: 52px;
}

.filter__bar-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter__chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: var(--oak-soft);
    color: var(--stone-800);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    animation: scaleUp 0.2s var(--ease) forwards;
}

.filter__chip-x {
    background: none;
    border: none;
    color: var(--stone-400);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.filter__chip-x:hover { color: var(--coral); }

.filter__reset {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0;
    font-family: var(--font-body);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.filter__reset:hover { color: var(--coral); }

/* Hide reset when no filters active */
.filter__reset { display: none; }
.filter__reset.visible { display: inline; }

.filter__count {
    font-size: 0.78rem;
    color: var(--stone-400);
    font-weight: 500;
    white-space: nowrap;
}


/* ══════════════════════════════════════
   GALLERY — the kitchen grid
══════════════════════════════════════ */
.gallery {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
    background: var(--stone-50);
}

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

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--stone-200);
    /* Transition for filter show/hide */
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    opacity: 1;
    transform: scale(1);
}

/* Hidden state when filtered out */
.gallery__item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--stone-200);
}

.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), opacity 0.4s ease;
}

.gallery__img img.lazy {
    opacity: 0;
}

.gallery__img img.loaded {
    opacity: 1;
}

.gallery__item:hover .gallery__img img {
    transform: scale(1.04);
}

/* Placeholder (shown when real images aren't available yet) */
.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--stone-600);
    font-size: 0.8rem;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.6s var(--ease);
}

.gallery__placeholder-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.gallery__placeholder-meta {
    font-size: 0.68rem;
    color: var(--stone-400);
}

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.04);
}

/* Overlay on hover/tap */
.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.75) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__tag {
    font-size: 0.78rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.gallery__cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gallery__cta:hover { color: var(--oak); }


/* ── Empty state ── */
.gallery__empty {
    display: none;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.gallery__empty.visible { display: block; }

.gallery__empty-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.gallery__empty-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gallery__empty-text {
    font-size: 0.9rem;
    color: var(--stone-600);
    margin-bottom: 1.5rem;
}


/* ══════════════════════════════════════
   PORTFOLIO CTA — brief invite section
══════════════════════════════════════ */
.portfolio-cta {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--warm-white);
    border-top: 1px solid var(--stone-200);
}

.portfolio-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.portfolio-cta__sub {
    font-size: 0.9rem;
    color: var(--stone-600);
    line-height: 1.65;
    max-width: 480px;
}

.portfolio-cta__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}


/* ══════════════════════════════════════
   PORTFOLIO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .filter__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-header__inner {
        text-align: center;
        max-width: 100%;
    }

    .portfolio-header__back {
        justify-content: center;
    }

    .filter__step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .filter__step-hint {
        padding-left: 0;
    }

    .filter__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .filter__swatches {
        justify-content: center;
        gap: 0.5rem;
    }

    .filter__swatch {
        padding: 0.5rem 0.65rem 0.6rem;
    }

    .filter__swatch-circle {
        width: 40px;
        height: 40px;
    }

    .filter__bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Show overlay always on mobile (no hover) */
    .gallery__overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(28, 25, 23, 0.6) 0%, transparent 100%);
    }

    .portfolio-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-cta__sub {
        max-width: 100%;
    }

    .portfolio-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filter__cards {
        grid-template-columns: 1fr 1fr;
    }

    .filter__card-desc {
        display: none; /* save space on small screens */
    }
}


/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .gallery__item {
        transition: opacity 0.2s ease;
    }

    .gallery__item.hidden {
        transition: none;
    }

    .filter__chip {
        animation: none;
    }
}