/* Corinium Carpets - Main Stylesheet */

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

:root {
    --white: #FFFFFF;
    --grey-50: #F9F9F8;
    --grey-100: #F1F1F0;
    --grey-200: #E0DFDE;
    --grey-300: #D1D0CF;
    --grey-500: #787776;
    --grey-600: #5C5B5A;
    --grey-700: #4A4948;
    --grey-800: #2E2D2C;
    --gold: #B8960F;
}

html { scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: 18px; } }

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: var(--grey-700);
    background: var(--white);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--grey-800);
    text-transform: uppercase;
    letter-spacing: 1px;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* Utility */
.label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--grey-600); display: block;
}
.label-gold { color: var(--gold); }

.link-underline {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.68rem; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--grey-700); position: relative;
    display: inline-block; padding-bottom: 4px;
}
.link-underline::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--grey-300); transition: background 0.3s;
}
.link-underline:hover::after { background: var(--grey-800); }
.link-underline:hover { color: var(--grey-800); }
.link-underline-white { color: var(--white); }
.link-underline-white::after { background: rgba(255,255,255,0.4); }
.link-underline-white:hover { color: var(--white); }
.link-underline-white:hover::after { background: var(--white); }

.btn-solid {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--white); background: var(--grey-500);
    padding: 0.9rem 2.2rem; transition: background 0.3s; line-height: 1;
}
.btn-solid:hover { background: var(--grey-700); }

/* Announcement */
.announcement {
    background: var(--grey-50); text-align: center;
    padding: 0.55rem 1rem; font-size: 0.6rem; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; color: var(--grey-600);
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.04); border-bottom-color: transparent; }
.header-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; padding: 0.9rem 1.5rem;
    max-width: 1440px; margin: 0 auto;
}
@media (min-width: 768px) { .header-inner { padding: 1rem 2.5rem; } }
.header-left { display: flex; align-items: center; }
.header-center { display: flex; justify-content: center; }
.header-center img { height: 38px; width: auto; }
@media (min-width: 768px) { .header-center img { height: 46px; } }
.header-logo-link { display: flex; align-items: center; gap: 0.75rem; }
.header-logo-icon { display: none; }
.header-tagline { display: none; }
@media (min-width: 768px) { .header-logo-icon { display: block; } .header-tagline { display: block !important; } }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 2rem; }
.header-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--grey-800); letter-spacing: 0.5px; display: none;
}
@media (min-width: 768px) { .header-phone { display: block; } }
.header-phone:hover { color: var(--gold); }
.header-phone-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--grey-500); margin-right: 0.5rem;
}
.header-phone-mobile {
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-700); min-height: 44px; min-width: 44px;
}
.header-phone-mobile:hover { color: var(--grey-800); }
.header-phone-mobile span { display: none; }
@media (min-width: 768px) { .header-phone-mobile { display: none; } }

.burger {
    background: none; border: none; cursor: pointer; padding: 6px 2px;
    display: flex; flex-direction: column; gap: 5px; width: 22px;
    min-height: 44px; justify-content: center;
}
.burger span { display: block; height: 1.5px; background: var(--grey-700); transition: all 0.35s; width: 100%; }

/* Nav panel */
.nav-backdrop {
    position: fixed; inset: 0; z-index: 60;
    background: rgba(0,0,0,0.08);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }
.nav-panel {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; z-index: 70;
    background: var(--white); transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; display: flex; flex-direction: column;
}
.nav-panel.open { transform: translateX(0); }
@media (min-width: 768px) { .nav-panel { width: 420px; } }
.nav-panel-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 2.5rem; border-bottom: 1px solid var(--grey-100);
}
.nav-close {
    background: none; border: none; cursor: pointer;
    font-size: 0.8rem; color: var(--grey-500); padding: 8px;
    letter-spacing: 1.5px; transition: color 0.3s;
    font-family: 'Nunito Sans', sans-serif; text-transform: uppercase;
}
.nav-close:hover { color: var(--grey-800); }
.nav-links { padding: 1.5rem 0; flex: 1; }
.nav-links a {
    display: flex; align-items: center; padding: 1rem 2.5rem;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--grey-700);
    transition: color 0.2s, background 0.2s; min-height: 48px;
}
.nav-links a:hover { color: var(--grey-800); background: var(--grey-50); }
.nav-group-title {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; cursor: pointer;
}
.nav-arrow { font-size: 0.6rem; color: var(--grey-500); transition: transform 0.3s; }
.nav-group.expanded .nav-arrow { transform: rotate(180deg); }
.nav-sub { display: none; padding: 0.25rem 0 0.5rem; }
.nav-group.expanded .nav-sub { display: block; }
.nav-sub a {
    padding: 0.6rem 2.5rem 0.6rem 3.5rem; color: var(--grey-600);
    font-size: 0.75rem; letter-spacing: 2px; min-height: 42px;
    border-left: 2px solid var(--grey-100); margin-left: 2.5rem;
    padding-left: 1.25rem;
}
.nav-sub a:hover { border-left-color: var(--gold); }
.nav-footer {
    padding: 2rem 2.5rem; border-top: 1px solid var(--grey-100);
    font-size: 0.78rem; color: var(--grey-600); line-height: 1.8;
}
.nav-footer a { color: var(--grey-700); }
.nav-footer a:hover { color: var(--grey-800); }

/* Hero */
.hero { position: relative; width: 100%; }
.hero img { width: 100%; height: 65vh; min-height: 420px; max-height: 850px; object-fit: cover; }
@media (min-width: 768px) { .hero img { height: 80vh; min-height: 500px; } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.05) 65%, rgba(0,0,0,0) 85%);
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: center;
    padding: 3rem 1.25rem; text-align: center;
}
@media (min-width: 768px) {
    .hero-overlay {
        padding: 5rem 2rem;
        background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0) 70%);
    }
}
.hero-overlay h1 {
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 500; color: var(--white);
    letter-spacing: 2px; line-height: 1.2; margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .hero-overlay h1 { letter-spacing: 3px; margin-bottom: 1.75rem; } }
.hero-label {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.95); margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-label { font-size: 0.8rem; letter-spacing: 3.5px; margin-bottom: 1.25rem; } }
.hero-buttons {
    display: flex; gap: 0.75rem; flex-direction: column; align-items: center; width: 100%;
}
@media (min-width: 480px) { .hero-buttons { flex-direction: row; justify-content: center; gap: 1rem; width: auto; } }
.hero-buttons .btn-solid { width: 100%; text-align: center; }
.hero-call-btn { display: none; }
@media (min-width: 480px) { .hero-buttons .btn-solid { width: auto; } .hero-call-btn { display: inline-block; } }

/* Features: Minimal Icon Row */
.features-a { padding: 2rem 0; border-bottom: 1px solid var(--grey-100); overflow: hidden; }
@media (min-width: 768px) { .features-a { padding: 2.5rem 2rem; overflow: visible; } }
.features-a-row {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: nowrap; gap: 1.5rem 2.5rem;
    max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .features-a-row { gap: 1.5rem 3.5rem; } }
@media (max-width: 767px) {
    .features-a-row {
        justify-content: flex-start;
        animation: features-scroll 12s linear infinite;
        width: max-content; gap: 2.5rem;
    }
}
@keyframes features-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.features-a-item {
    display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
@media (min-width: 768px) { .features-a-dup { display: none; } }
.features-a-item span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--grey-600); white-space: nowrap;
}
.features-a-link {
    color: inherit; text-decoration: none;
    transition: color 0.3s ease;
}
.features-a-link span { transition: color 0.3s ease; }
.features-a-link:hover span { color: var(--gold); }


/* Intro */
.intro { padding: 4rem 1.5rem; text-align: center; max-width: 660px; margin: 0 auto; }
@media (min-width: 768px) { .intro { padding: 6rem 2rem; } }
.intro h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: 1.5px; margin-bottom: 1.5rem; line-height: 1.3; }
@media (min-width: 768px) { .intro h2 { margin-bottom: 2.5rem; } }
.intro p { font-size: 0.92rem; color: var(--grey-600); line-height: 1.85; margin-bottom: 1rem; }

/* Dual banner */
.dual-banner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .dual-banner { grid-template-columns: 1fr 1fr; }
    .banner-card img { height: 50vh; min-height: 280px; }
}
.banner-card { position: relative; overflow: hidden; cursor: pointer; }
.banner-card img {
    width: 100%; height: 35vh; min-height: 220px; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-card:hover img { transform: scale(1.03); }
.banner-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: center;
    padding: 2.5rem 2rem; text-align: center;
}
.banner-card-overlay h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400; color: var(--white); letter-spacing: 2px; margin-bottom: 1rem;
}

/* Category grid */
.category-section { padding: 4rem 1.25rem; }
@media (min-width: 768px) { .category-section { padding: 6rem 3rem; } }
.category-header { text-align: center; margin-bottom: 2rem; }
@media (min-width: 768px) { .category-header { margin-bottom: 4rem; } }
.category-header h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: 2px; margin-top: 0.75rem; }
.category-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.category-card { cursor: pointer; text-align: center; position: relative; overflow: hidden; }
.category-card img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1.5rem 1rem;
    transition: background 0.4s;
}
.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
}
.category-card h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--white);
}
@media (min-width: 768px) { .category-card h4 { font-size: 0.8rem; letter-spacing: 3px; } }

/* Anniversary */
.anniversary { display: grid; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 768px) { .anniversary { grid-template-columns: 1fr 1fr; margin-bottom: 5rem; } }
.anniversary img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
@media (min-width: 768px) { .anniversary img { min-height: 400px; } }
.anniversary-content {
    display: flex; flex-direction: column; justify-content: center; padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .anniversary-content { padding: 6rem 4rem; } }
@media (min-width: 1200px) { .anniversary-content { padding: 7rem 6rem; } }
.anniversary-content h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: 1.5px; margin-bottom: 2rem; line-height: 1.3; }
.anniversary-content p { font-size: 0.92rem; color: var(--grey-600); line-height: 1.95; margin-bottom: 1rem; max-width: 480px; }
.anniversary-content .link-underline { margin-top: 1.5rem; }

/* Why Choose */
.why-choose { padding: 4rem 1.5rem; background: var(--grey-50); }
@media (min-width: 768px) { .why-choose { padding: 6rem 3rem; } }
.why-choose-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.why-choose h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: 1.5px; margin-top: 0.75rem; margin-bottom: 3rem; line-height: 1.3; }
.why-grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
    text-align: left;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2.5rem; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.why-item { padding: 0 0.5rem; }
.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 1rem;
}
.why-item h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--grey-800); margin-bottom: 0.75rem;
    line-height: 1.4;
}
.why-item p { font-size: 0.85rem; color: var(--grey-600); line-height: 1.8; }

/* Brands */
.brands { padding: 3rem 0; border-top: 1px solid var(--grey-100); overflow: hidden; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .brands { padding: 4rem 0; } }
.brands-row {
    display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center; gap: 2.5rem;
    animation: brands-scroll 35s linear infinite;
    width: max-content;
}
@keyframes brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brands-row img { height: 32px; width: auto; transition: opacity 0.3s; flex-shrink: 0; }
@media (min-width: 768px) { .brands-row img { height: 42px; } .brands-row { gap: 3.5rem; } }
.brands-row img:hover { opacity: 0.7; }

/* Reviews */
.reviews { padding: 4rem 1.25rem; background: var(--grey-50); }
@media (min-width: 768px) { .reviews { padding: 6rem 3rem; } }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .reviews-header { margin-bottom: 4rem; } }
.reviews-header h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: 2px; margin-top: 0.75rem; margin-bottom: 0.75rem; }
.reviews-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }
.reviews-sub { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-500); margin-top: 0.5rem; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--white); padding: 1.75rem 1.5rem; border-left: 2px solid var(--gold); }
@media (min-width: 768px) { .review-card { padding: 2.5rem 2rem; } }
.review-card .stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
.review-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 400; font-style: italic;
    line-height: 1.8; color: var(--grey-700); margin-bottom: 1.5rem;
    text-transform: none; letter-spacing: 0;
}
.review-card cite { font-style: normal; font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grey-500); }

/* Editorial */
.editorial { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .editorial { grid-template-columns: 1fr 1fr; } }
.editorial-reversed { direction: rtl; }
.editorial-reversed > * { direction: ltr; }
.editorial img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
@media (min-width: 768px) { .editorial img { min-height: 350px; } }
.editorial-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 1.5rem; background: var(--grey-50);
}
@media (min-width: 768px) { .editorial-content { padding: 6rem 4rem; } }
@media (min-width: 1200px) { .editorial-content { padding: 7rem 6rem; } }
.editorial-content h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: 1.5px; margin-bottom: 2rem; line-height: 1.3; }
.editorial-content p { font-size: 0.92rem; color: var(--grey-600); line-height: 1.95; margin-bottom: 1rem; max-width: 460px; }

/* CTA */
.cta { padding: 4rem 1.5rem; }
@media (min-width: 768px) { .cta { padding: 6rem 3rem; } }
.cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .cta-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.cta-text h2 { font-size: clamp(1.4rem, 3vw, 2.4rem); letter-spacing: 2px; margin-bottom: 1.5rem; line-height: 1.25; }
.cta-text p { font-size: 0.92rem; color: var(--grey-600); max-width: 460px; line-height: 1.9; margin-bottom: 1.5rem; }
.cta-text .details { font-size: 0.72rem; color: var(--grey-500); letter-spacing: 1px; margin-bottom: 2rem; line-height: 2; }
.cta-map { width: 100%; height: 280px; border: 1px solid var(--grey-200); }
@media (min-width: 768px) { .cta-map { height: 100%; min-height: 380px; } }

/* Newsletter */
.newsletter { padding: 3.5rem 1.5rem; background: var(--grey-50); text-align: center; border-top: 1px solid var(--grey-100); }
@media (min-width: 768px) { .newsletter { padding: 6rem 3rem; } }
.newsletter h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: 2px; margin-bottom: 0.75rem; }
.newsletter p { font-size: 0.88rem; color: var(--grey-600); max-width: 460px; margin: 0 auto 2rem; line-height: 1.8; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; width: 100%; }
.newsletter-form input {
    flex: 1; border: 1px solid var(--grey-300); border-right: none;
    padding: 0.85rem 1.25rem; font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem; color: var(--grey-700); outline: none;
    min-height: 48px; background: var(--white);
}
.newsletter-form input::placeholder { color: var(--grey-500); }
.newsletter-form input:focus { border-color: var(--grey-600); }
.newsletter-form button {
    background: var(--grey-600); color: var(--white); border: none;
    padding: 0.85rem 1.5rem; font-family: 'Nunito Sans', sans-serif;
    font-size: 0.62rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; cursor: pointer; transition: background 0.3s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--grey-800); }

/* Accreditations */
.accreditations { padding: 3.5rem 0; border-top: 1px solid var(--grey-100); overflow: hidden; }
@media (min-width: 768px) { .accreditations { padding: 6rem 3rem; overflow: visible; } }
.accreditations-header { text-align: center; margin-bottom: 2rem; }
@media (min-width: 768px) { .accreditations-header { margin-bottom: 3rem; } }
.accreditations-header h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); letter-spacing: 2px; margin-top: 0.75rem; }
.accreditations-row {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 3rem;
}
@media (max-width: 767px) {
    .accreditations-row {
        justify-content: flex-start;
        animation: accred-scroll 15s linear infinite;
        width: max-content;
    }
}
@keyframes accred-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (min-width: 768px) { .accreditations-row { flex-wrap: wrap; } }
.accreditations-row img { height: 45px; width: auto; transition: opacity 0.3s; flex-shrink: 0; }
@media (min-width: 768px) { .accreditations-row img { height: 60px; } }
.accreditations-row img:hover { opacity: 0.7; }
@media (min-width: 768px) { .accred-dup { display: none; } }

/* Page hero */
.page-hero { position: relative; width: 100%; }
.page-hero img { width: 100%; height: 55vh; min-height: 350px; max-height: 700px; object-fit: cover; object-position: center 55%; }
@media (min-width: 768px) { .page-hero img { height: 65vh; } }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 80%);
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: center;
    padding: 3rem 1.5rem; text-align: center;
}
@media (min-width: 768px) { .page-hero-overlay { padding: 4rem 2rem; } }
.page-hero-overlay h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 500; color: var(--white);
    letter-spacing: 2px; line-height: 1.2; margin-bottom: 0.75rem;
}
.page-hero-overlay p {
    font-size: 0.85rem; color: rgba(255,255,255,0.8);
    max-width: 500px; line-height: 1.7;
}

/* Content sections */
.content-section {
    padding: 5rem 1.5rem;
    max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .content-section { padding: 7rem 2rem; } }
.content-section h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    letter-spacing: 1.5px; margin-bottom: 1.5rem; line-height: 1.3;
}
.content-section p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.95; margin-bottom: 1.25rem;
}
.content-section + .content-section { padding-top: 0; }
.content-section + .split-section { margin-top: -2rem; }

/* Split section */
.split-section {
    display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-section img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
@media (min-width: 768px) { .split-section img { min-height: 400px; }
    .split-section { margin: 3rem 0; }
}
.split-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .split-content { padding: 5rem 4rem; } }
@media (min-width: 1200px) { .split-content { padding: 6rem 5rem; } }
.split-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    letter-spacing: 1.5px; margin-bottom: 1.5rem; line-height: 1.3;
}
.split-content p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.95; margin-bottom: 1rem; max-width: 480px;
}
.split-reversed { direction: rtl; }
.split-reversed > * { direction: ltr; }

/* Brands strip */
.brands-strip {
    padding: 5rem 1.5rem; border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100); background: var(--grey-50);
}
@media (min-width: 768px) { .brands-strip { padding: 7rem 2rem; } }
.brands-strip-header { text-align: center; margin-bottom: 2rem; }
.brands-strip-header h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    letter-spacing: 2px; margin-top: 0.75rem; white-space: nowrap;
}
.brands-strip-row {
    max-width: 1300px; margin: 0 auto;
    display: flex; flex-wrap: nowrap;
    justify-content: center; align-items: center; gap: 2rem;
}
@media (min-width: 768px) { .brands-strip-row { gap: 3rem; } }
.brands-strip-row img { height: 30px; width: auto; transition: opacity 0.3s; }
@media (min-width: 768px) { .brands-strip-row img { height: 38px; } }
.brands-strip-row img:hover { opacity: 0.7; }

/* Types grid */
.types-section { padding: 5rem 1.5rem; background: var(--grey-50); }
@media (min-width: 768px) { .types-section { padding: 7rem 3rem; } }
.types-header { text-align: center; margin-bottom: 3rem; }
.types-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    letter-spacing: 2px; margin-top: 0.75rem;
}
.types-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 2rem; max-width: 1000px; margin: 0 auto;
}
@media (min-width: 768px) { .types-grid { grid-template-columns: repeat(3, 1fr); } }
.type-card {
    background: var(--white); padding: 2.5rem 2rem; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.type-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.type-card h3 {
    font-size: 1.1rem; letter-spacing: 1.5px; margin-bottom: 1rem;
}
.type-card p {
    font-size: 0.88rem; color: var(--grey-600); line-height: 1.8;
}

/* Horizontal pinned scroll: section pins, vertical scroll drives horizontal card movement */
.hpin-section { background: var(--grey-50); position: relative; }
.hpin-sticky {
    position: relative; padding: 4rem 1.5rem;
    overflow: hidden;
}
@media (min-width: 900px) {
    .hpin-sticky {
        position: sticky; top: 0;
        height: 85vh;
        padding: 0 3rem;
        display: flex; align-items: center;
    }
}
.hpin-inner {
    max-width: 1400px; margin: 0 auto; width: 100%;
    position: relative;
}
@media (max-width: 899px) {
    .hpin-inner { display: flex; flex-direction: column; gap: 2.5rem; }
}
.hpin-left { position: relative; z-index: 2; }
@media (min-width: 900px) {
    .hpin-left {
        position: absolute; left: 0; top: 50%;
        transform: translateY(-50%);
        width: 480px;
        background: var(--grey-50);
        padding: 2.5rem 3rem 2.5rem 0;
    }
    /* Extend background to the left edge of the viewport so cards can't peek through */
    .hpin-left::before {
        content: ''; position: absolute;
        top: 0; bottom: 0; right: 100%;
        width: 100vw;
        background: var(--grey-50);
    }
}
.hpin-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 1.5px; line-height: 1.25;
    margin-bottom: 1.5rem;
}
.hpin-left p {
    font-size: 0.95rem; color: var(--grey-600);
    line-height: 1.9; max-width: 420px;
}
.hpin-progress {
    margin-top: 2rem; height: 2px; background: var(--grey-200);
    max-width: 200px; position: relative; overflow: hidden;
    display: none;
}
@media (min-width: 900px) { .hpin-progress { display: block; } }
.hpin-progress span {
    position: absolute; left: 0; top: 0; height: 100%;
    background: var(--gold); width: 0;
    transition: width 0.1s linear;
}
.hpin-viewport { min-width: 0; overflow: visible; }
@media (min-width: 900px) {
    /* Full width so cards travel behind the left container */
    .hpin-viewport { width: 100%; }
}
.hpin-track {
    display: flex; gap: 1.25rem; padding: 0.5rem 0;
    will-change: transform;
}
@media (min-width: 900px) {
    /* Push the first card past the left container so it starts visible */
    .hpin-track { padding-left: 480px; }
}
@media (max-width: 899px) {
    .hpin-track {
        overflow-x: auto; scroll-snap-type: x mandatory;
        scroll-behavior: smooth; scrollbar-width: none;
        padding-bottom: 1rem;
    }
    .hpin-track::-webkit-scrollbar { display: none; }
}
.hpin-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--grey-100);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    flex: 0 0 calc(85% - 0.625rem); scroll-snap-align: start;
}
@media (min-width: 640px) { .hpin-card { flex: 0 0 calc(55% - 0.625rem); padding: 2.5rem 2rem; } }
@media (min-width: 900px) {
    .hpin-card { flex: 0 0 380px; padding: 2.5rem 2.25rem; }
}
.hpin-card .stack-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 1rem;
}
.hpin-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500;
    letter-spacing: 1px; color: var(--grey-800);
    margin-bottom: 0.85rem; line-height: 1.3;
}
.hpin-card p {
    font-size: 0.9rem; color: var(--grey-600); line-height: 1.85;
}

/* Stack section: sticky left, scroll-stacking cards on right */
.stack-section { padding: 4rem 1.5rem; background: var(--grey-50); }
@media (min-width: 768px) { .stack-section { padding: 6rem 3rem; } }
.stack-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 900px) {
    .stack-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.stack-left { position: relative; }
.stack-left-inner {
    position: sticky; top: 2rem;
}
@media (min-width: 900px) { .stack-left-inner { top: 6rem; } }
.stack-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 1.5px; line-height: 1.25;
    margin-bottom: 1.5rem;
}
.stack-left p {
    font-size: 0.95rem; color: var(--grey-600);
    line-height: 1.9; max-width: 460px;
}
.stack-right { display: flex; flex-direction: column; gap: 1.25rem; }
.stack-card {
    position: sticky; top: 6rem;
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--grey-100);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .stack-card { padding: 2.5rem 2.25rem; } }
/* Visual cascade: each card sits 1rem lower than the one above */
.stack-card:nth-child(1) { transform: translateY(0); }
.stack-card:nth-child(2) { transform: translateY(1rem); }
.stack-card:nth-child(3) { transform: translateY(2rem); }
.stack-card:nth-child(4) { transform: translateY(3rem); }
.stack-card:nth-child(5) { transform: translateY(4rem); }
.stack-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 1rem;
}
.stack-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500;
    letter-spacing: 1px; color: var(--grey-800);
    margin-bottom: 0.85rem; line-height: 1.3;
}
.stack-card p {
    font-size: 0.9rem; color: var(--grey-600); line-height: 1.85;
}

/* Carousel */
.carousel {
    position: relative; max-width: 1200px; margin: 0 auto;
    padding: 0 0.5rem;
}
@media (min-width: 768px) { .carousel { padding: 0 3.5rem; } }
.carousel-track {
    display: flex; gap: 1.25rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; scrollbar-width: none;
    padding: 0.5rem 0;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
    background: var(--white); padding: 2.25rem 1.75rem;
    flex: 0 0 calc(100% - 0.5rem); scroll-snap-align: start;
    border: 1px solid var(--grey-100);
    transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 640px) { .carousel-card { flex: 0 0 calc(50% - 0.625rem); } }
@media (min-width: 1024px) { .carousel-card { flex: 0 0 calc(33.333% - 0.834rem); padding: 2.5rem 2rem; } }
.carousel-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.carousel-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 1rem;
}
.carousel-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; letter-spacing: 1.5px;
    margin-bottom: 0.85rem; color: var(--grey-800);
}
.carousel-card p {
    font-size: 0.85rem; color: var(--grey-600); line-height: 1.8;
}
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; z-index: 2;
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: 50%;
    color: var(--gold); cursor: pointer;
    display: none; align-items: center; justify-content: center;
    transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.3s;
}
@media (min-width: 768px) { .carousel-btn { display: flex; } }
.carousel-btn svg { transition: transform 0.3s; }
.carousel-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(184, 150, 15, 0.15);
}
.carousel-prev:hover svg { transform: translateX(-2px); }
.carousel-next:hover svg { transform: translateX(2px); }
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* About: Meet the Team */
.team-section {
    padding: 4rem 1.5rem;
    background: var(--grey-50);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .team-section { padding: 6rem 3rem; } }
.team-header {
    text-align: center;
    max-width: 640px; margin: 0 auto 3rem;
}
@media (min-width: 768px) { .team-header { margin-bottom: 4rem; } }
.team-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; margin-top: 0.75rem; line-height: 1.3;
}
.team-header > p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.85;
    margin-top: 1.5rem;
}
.team-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 2.5rem;
    max-width: 1200px; margin: 0 auto;
}
@media (min-width: 768px) { .team-grid { gap: 3rem 2.5rem; } }
.team-card {
    flex: 0 0 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.5rem;
    position: relative;
}
@media (min-width: 560px) {
    .team-card { flex: 0 0 calc(50% - 1.25rem); }
}
@media (min-width: 900px) {
    .team-card { flex: 0 0 calc(33.333% - 1.7rem); max-width: 300px; }
}
.team-avatar {
    width: 150px; height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--grey-100);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}
.team-avatar::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(184,150,15,0.05), rgba(184,150,15,0) 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.team-initials {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 500;
    font-size: 2.6rem;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
    transition: transform 0.4s ease;
}
.team-card:hover .team-avatar {
    background: #FCFBF9;
    border-color: var(--grey-200);
    box-shadow: 0 8px 24px rgba(46,45,44,0.06);
}
.team-card:hover .team-avatar::before { opacity: 1; }
.team-card:hover .team-initials { transform: translateY(-2px); }
.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.team-role {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.62rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.team-email {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--grey-600);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-200);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
    word-break: break-word;
}
.team-email:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* About: Google reviews section */
.about-reviews {
    padding: 4rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .about-reviews { padding: 6rem 4rem; } }
@media (min-width: 1200px) { .about-reviews { padding: 6rem 5rem; } }
.about-reviews-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .about-reviews-header { margin-bottom: 3.5rem; } }
.about-reviews-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; margin-top: 0.75rem; line-height: 1.3;
}
.about-reviews-widget { max-width: 1100px; margin: 0 auto; }

/* About page */
.about-services-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 0;
    max-width: 1180px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--grey-100);
    box-shadow: 0 1px 0 rgba(46,45,44,0.02);
}
@media (min-width: 640px) {
    .about-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .about-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.about-service {
    display: flex; align-items: flex-start; gap: 1.5rem;
    padding: 1.85rem 1.75rem;
    border-bottom: 1px solid var(--grey-100);
    position: relative;
    transition: background-color 0.45s ease, box-shadow 0.45s ease;
    overflow: hidden;
    cursor: default;
    min-height: 130px;
}
@media (min-width: 640px) {
    .about-service:nth-child(2n) { border-left: 1px solid var(--grey-100); }
    .about-service:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 1024px) {
    .about-service { padding: 2.1rem 2rem; min-height: 150px; }
    .about-service:nth-child(2n) { border-left: none; }
    .about-service:not(:nth-child(3n+1)) { border-left: 1px solid var(--grey-100); }
    .about-service:nth-last-child(-n+2) { border-bottom: 1px solid var(--grey-100); }
    .about-service:nth-last-child(-n+3) { border-bottom: none; }
}
/* Soft warm wash on hover */
.about-service::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(184,150,15,0.04) 0%, rgba(184,150,15,0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
/* Gold underline that draws under the name */
.about-service::after {
    content: '';
    position: absolute;
    left: 5.5rem; bottom: 1.4rem;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 1024px) {
    .about-service::after { left: 6rem; bottom: 1.6rem; }
}
.about-service:hover { background: #FCFBF9; box-shadow: 0 2px 18px rgba(46,45,44,0.05); }
.about-service:hover::before { opacity: 1; }
.about-service:hover::after { width: 56px; }
.about-service:hover .about-service-num { color: var(--gold); transform: translateY(-2px); }
.about-service:hover .about-service-arrow { opacity: 1; transform: translateX(0); }
.about-service:hover .about-service-name { color: var(--grey-900, #1c1b1a); }

.about-service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.6vw, 2.85rem);
    font-style: italic; font-weight: 400;
    color: var(--gold);
    letter-spacing: -1px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 4rem;
    transition: transform 0.4s ease, color 0.3s ease;
    opacity: 0.92;
}
.about-service-body {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.35rem;
}
.about-service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500;
    color: var(--grey-800); line-height: 1.3;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
}
@media (min-width: 768px) {
    .about-service-name { font-size: 1.32rem; }
}
.about-service-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.72rem; font-weight: 400;
    color: var(--grey-500);
    letter-spacing: 0.5px;
    line-height: 1.6;
}
.about-service-arrow {
    position: absolute;
    right: 1.5rem; top: 50%;
    transform: translate(-8px, -50%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1;
    pointer-events: none;
}
.about-service:hover .about-service-arrow { transform: translate(0, -50%); }
/* Legacy dot - kept hidden for any cached markup */
.about-service-dot { display: none; }
.about-highlights {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
    max-width: 1000px; margin: 0 auto;
    padding-top: 1rem;
}
@media (min-width: 768px) { .about-highlights { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.about-highlight { text-align: center; }
.about-highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
    color: var(--gold); line-height: 1; margin-bottom: 0.75rem;
}
.about-highlight-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--grey-600);
}

/* About: highlights strip directly under the hero */
.about-highlights-bar {
    padding: 1.5rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .about-highlights-bar { padding: 2rem 2rem; } }
.about-highlights-bar .about-highlights {
    padding-top: 0;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    max-width: 1280px;
}
@media (min-width: 768px) { .about-highlights-bar .about-highlights { gap: 0; } }
.about-highlights-bar .about-highlight {
    position: relative;
    padding: 0 0.5rem;
}
@media (min-width: 768px) {
    .about-highlights-bar .about-highlight {
        padding: 0 1.5rem;
    }
    .about-highlights-bar .about-highlight + .about-highlight {
        border-left: 1px solid var(--grey-100);
    }
}
.about-highlights-bar .about-highlight-num {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    margin-bottom: 0.35rem;
}
.about-highlights-bar .about-highlight-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .about-highlights-bar .about-highlight-label {
        font-size: 0.62rem; letter-spacing: 2.5px;
        white-space: nowrap;
    }
}

/* Timeline */
.timeline-section {
    padding: 4rem 1.5rem; background: var(--grey-50);
    border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .timeline-section { padding: 6rem 3rem; } }
.timeline-header { text-align: center; margin-bottom: 3rem; }
.timeline-header h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: 1.5px; margin-top: 0.75rem; line-height: 1.3; }
.timeline {
    position: relative; max-width: 960px; margin: 0 auto;
    padding-left: 2.5rem;
}
@media (min-width: 768px) { .timeline { padding-left: 0; } }

/* Rail: grey baseline */
.timeline::before {
    content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
    width: 1px; background: var(--grey-200);
}
@media (min-width: 768px) {
    .timeline::before { left: 50%; transform: translateX(-50%); }
}

/* Rail: gold progress fill, driven by JS */
.timeline-progress {
    position: absolute; left: 10px; top: 0;
    width: 1px; height: 0;
    background: var(--gold);
    z-index: 1;
}
@media (min-width: 768px) {
    .timeline-progress { left: 50%; transform: translateX(-50%); }
}

/* Travelling leader dot */
.timeline-leader {
    position: absolute; left: 10px; top: 0;
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(184, 150, 15, 0.18);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0; z-index: 3; pointer-events: none;
    will-change: top;
}
@media (min-width: 768px) { .timeline-leader { left: 50%; } }
.timeline-item {
    position: relative; padding: 0 0 2.5rem 0;
}
@media (min-width: 768px) {
    .timeline-item {
        width: 50%; padding: 0 0 3.5rem 0;
        padding-right: 3.5rem; text-align: right;
    }
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 3.5rem; padding-right: 0;
        text-align: left;
    }
}
/* Default reveal still fades content in, but no Y shift on items */
.timeline-item.reveal { transform: none; opacity: 0; transition: opacity 0.5s; }
.timeline-item.activated { opacity: 1; }

/* Stamp dropped by the leader at each milestone: hidden until activated */
.timeline-item::before {
    content: ''; position: absolute;
    left: 10px; top: 6px;
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--gold); border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 150, 15, 0.12);
    transform: translate(-50%, 0) scale(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}
.timeline-item.activated::before { transform: translate(-50%, 0) scale(1); }

@media (min-width: 768px) {
    /* Odd items (left side): dot sits at the right edge of the item = on central rail */
    .timeline-item::before {
        left: auto; right: 0;
        transform: translate(50%, 0) scale(0);
    }
    .timeline-item.activated::before { transform: translate(50%, 0) scale(1); }
    /* Even items (right side): dot sits at the left edge = on central rail */
    .timeline-item:nth-child(even)::before {
        left: 0; right: auto;
        transform: translate(-50%, 0) scale(0);
    }
    .timeline-item:nth-child(even).activated::before { transform: translate(-50%, 0) scale(1); }
}
.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .timeline-year { font-size: 1.9rem; } }
.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; letter-spacing: 1px;
    color: var(--grey-800); margin-bottom: 0.6rem; line-height: 1.3;
}
.timeline-content p {
    font-size: 0.88rem; color: var(--grey-600); line-height: 1.8;
}

/* Contact page */
.contact-tiles {
    padding: 4rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .contact-tiles { padding: 5rem 3rem; } }
.contact-tiles-inner {
    display: grid; grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1200px; margin: 0 auto;
}
@media (min-width: 768px) {
    .contact-tiles-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}
.contact-tile {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0.45rem;
    padding: 2rem 1.75rem 2.25rem;
    background: var(--white);
    border: 1px solid var(--grey-100);
    color: var(--grey-800);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.contact-tile::after {
    content: '';
    position: absolute;
    left: 1.75rem; bottom: 1.5rem;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.contact-tile:hover {
    background: #FCFBF9;
    border-color: var(--grey-200);
    box-shadow: 0 2px 18px rgba(46,45,44,0.05);
}
.contact-tile:hover::after { width: 48px; }
.contact-tile-icon {
    color: var(--gold);
    margin-bottom: 0.85rem;
    line-height: 1;
    display: inline-flex;
}
.contact-tile-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--grey-500);
}
.contact-tile-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500;
    color: var(--grey-800); letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0.15rem 0 0.35rem;
}
@media (min-width: 768px) { .contact-tile-value { font-size: 1.35rem; } }
.contact-tile-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.76rem; color: var(--grey-500);
    line-height: 1.6;
}

/* Contact main: form + details */
.contact-main {
    padding: 4rem 1.5rem;
    background: var(--grey-50);
}
@media (min-width: 768px) { .contact-main { padding: 6rem 3rem; } }
.contact-main-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr;
    gap: 2.5rem; align-items: start;
}
@media (min-width: 900px) {
    .contact-main-inner { grid-template-columns: 1fr 1.2fr; gap: 4.5rem; }
}
.contact-form-intro { width: 100%; }
.contact-form-intro h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; line-height: 1.3;
    margin-bottom: 1.25rem;
}
.contact-form-intro > p {
    font-size: 0.92rem; line-height: 1.85;
    color: var(--grey-600);
    max-width: 460px;
    margin-bottom: 0;
}
@media (min-width: 900px) {
    .contact-form-intro { position: sticky; top: 7rem; }
}
.contact-form-col { width: 100%; }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--grey-100);
    padding: 2rem 1.75rem;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }
.contact-form-placeholder {
    font-size: 0.88rem; color: var(--grey-600);
    line-height: 1.8; margin: 0;
}
.contact-form-placeholder a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    text-decoration: none;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap textarea,
.contact-form-wrap select {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--grey-800);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 0;
    outline: none;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
    border-color: var(--gold);
}
.contact-form-wrap label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.66rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--grey-600);
    display: block;
    margin-bottom: 0.5rem;
}
.contact-form-wrap textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.contact-form-wrap button[type="submit"],
.contact-form-wrap input[type="submit"],
.contact-form-wrap .gform_button,
.contact-form-wrap input.gform_button,
.contact-form-wrap .gform_footer input[type="submit"],
.contact-form-wrap .gform_footer button[type="submit"] {
    background: var(--grey-800) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 2.5rem !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: background 0.3s ease !important;
    box-shadow: none !important;
    width: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
}
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .gform_button:hover,
.contact-form-wrap input.gform_button:hover {
    background: var(--gold) !important;
}
.contact-form-wrap .gform_footer {
    padding: 1.5rem 0 0 !important;
    margin: 0 !important;
}

/* Contact details column */
.contact-details-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--grey-800); line-height: 1.3;
}
.contact-details-col > p {
    font-size: 0.9rem; color: var(--grey-600);
    line-height: 1.85; margin-bottom: 1.5rem;
}
.contact-detail-block {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--grey-100);
}
.contact-detail-block:last-of-type { border-bottom: none; }
.contact-detail-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.contact-detail-value {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem; color: var(--grey-700);
    line-height: 1.75;
}
.contact-detail-value a {
    color: var(--grey-700);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-200);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.contact-detail-value a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-detail-muted { color: var(--grey-500); font-size: 0.85em; }

/* Contact: Showroom + Map combined */
.contact-locate { background: var(--white); border-top: 1px solid var(--grey-100); }
.contact-locate-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--grey-800);
    font-weight: 500;
    text-transform: uppercase;
}
.contact-locate-text > p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.85; margin-bottom: 1.5rem;
    max-width: 480px;
}
.contact-locate .cta-map { min-height: 420px; }
@media (min-width: 768px) { .contact-locate .cta-map { min-height: 480px; } }

/* Carpet Fitting page */
.cf-process-section {
    padding: 4rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .cf-process-section { padding: 6rem 3rem; } }
.cf-process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
@media (min-width: 768px) { .cf-process-header { margin-bottom: 4rem; } }
.cf-process-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; margin-top: 0.75rem; line-height: 1.3;
}
.cf-process-header > p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.85; margin-top: 1.5rem;
}
.cf-process-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1200px; margin: 0 auto;
}
@media (min-width: 600px) {
    .cf-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .cf-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
}
.cf-process-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    padding: 2rem 1.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.45s ease, box-shadow 0.45s ease;
}
@media (min-width: 1024px) {
    .cf-process-card { border-right: none; }
    .cf-process-card:last-child { border-right: 1px solid var(--grey-100); }
}
.cf-process-card::after {
    content: '';
    position: absolute;
    left: 1.75rem; bottom: 1.4rem;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cf-process-card:hover {
    background: #FCFBF9;
    box-shadow: 0 2px 18px rgba(46,45,44,0.05);
}
.cf-process-card:hover::after { width: 56px; }
.cf-process-card:hover .cf-process-num { transform: translateY(-2px); }
.cf-process-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 500;
    font-size: clamp(2.2rem, 3.6vw, 2.85rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease;
}
.cf-process-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}
.cf-process-card p {
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.8;
    margin: 0;
}

/* Brands strip (text-only) */
.cf-brands {
    padding: 4rem 1.5rem;
    background: var(--grey-50);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    text-align: center;
}
@media (min-width: 768px) { .cf-brands { padding: 5rem 3rem; } }
.cf-brands-header { margin-bottom: 2.5rem; }
.cf-brands-header h2 {
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    letter-spacing: 1.5px;
    margin-top: 0.75rem;
}
.cf-brands-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center;
    gap: 1.25rem 2rem;
    max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .cf-brands-row { gap: 2.5rem 3.5rem; } }
.cf-brands-row-logos img {
    height: 32px; width: auto;
    object-fit: contain;
    transition: opacity 0.35s ease;
    flex-shrink: 0;
    mix-blend-mode: multiply;
}
@media (min-width: 768px) {
    .cf-brands-row-logos img { height: 44px; }
}
.cf-brands-row-logos img:hover { opacity: 0.65; }
.cf-brands-note {
    max-width: 620px;
    margin: 2.5rem auto 0;
    font-size: 0.85rem;
    color: var(--grey-500);
    line-height: 1.85;
    font-style: italic;
}

/* Why choose us */
.cf-why-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}
@media (min-width: 768px) { .cf-why-section { padding: 6rem 3rem; } }
.cf-why-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
@media (min-width: 768px) { .cf-why-header { margin-bottom: 4rem; } }
.cf-why-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 1.5px; margin-top: 0.75rem; line-height: 1.3;
}
.cf-why-header > p {
    font-size: 0.92rem; color: var(--grey-600);
    line-height: 1.85; margin-top: 1.5rem;
}
.cf-why-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) {
    .cf-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
}
.cf-why-card {
    padding: 0 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .cf-why-card + .cf-why-card { border-left: 1px solid var(--grey-100); }
}
.cf-why-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.cf-why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem; font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}
.cf-why-card p {
    font-size: 0.88rem; color: var(--grey-600);
    line-height: 1.85; margin: 0;
    max-width: 280px; margin-left: auto; margin-right: auto;
}

/* Policy / Legal pages */
.policy-header {
    padding: 4rem 1.5rem;
    background: var(--grey-50);
    text-align: center;
    border-bottom: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .policy-header { padding: 6rem 3rem 5rem; } }
.policy-header-inner { max-width: 720px; margin: 0 auto; }
.policy-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.25;
    margin-top: 1rem;
}
.policy-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}
@media (min-width: 768px) { .policy-section { padding: 6rem 3rem; } }
.policy-content {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Nunito Sans', sans-serif;
}
.policy-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.3vw, 1.55rem);
    font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 3.5rem 0 1.25rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--grey-100);
}
.policy-content > h2:first-child {
    margin-top: 0; padding-top: 0; border-top: none;
}
.policy-content h2::after {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--gold);
    margin-top: 1rem;
}
.policy-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey-800);
    letter-spacing: 1px;
    line-height: 1.35;
    margin: 2.25rem 0 0.85rem;
}
.policy-content p {
    font-size: 0.92rem;
    color: var(--grey-700);
    line-height: 1.9;
    margin: 0 0 1.25rem;
}
.policy-content p:last-child { margin-bottom: 0; }
.policy-content ul,
.policy-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}
.policy-content ul { list-style: none; padding-left: 0; }
.policy-content ul li {
    position: relative;
    padding-left: 1.25rem;
}
.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.85rem;
    width: 6px; height: 1px;
    background: var(--gold);
}
.policy-content ol li::marker {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}
.policy-content li {
    font-size: 0.92rem;
    color: var(--grey-700);
    line-height: 1.85;
    margin-bottom: 0.65rem;
}
.policy-content li:last-child { margin-bottom: 0; }
.policy-content strong {
    color: var(--grey-800);
    font-weight: 600;
}
.policy-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 150, 15, 0.3);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.policy-content a:hover {
    border-bottom-color: var(--gold);
}

/* Page CTA */
.page-cta {
    padding: 5rem 1.5rem; text-align: center;
    border-top: 1px solid var(--grey-100);
}
@media (min-width: 768px) { .page-cta { padding: 7rem 2rem; } }
.page-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 2px; margin-bottom: 1.25rem; line-height: 1.25;
}
.page-cta p {
    font-size: 0.92rem; color: var(--grey-600);
    max-width: 500px; margin: 0 auto 2rem; line-height: 1.8;
}

/* Colours section */
@media (min-width: 768px) { .colours-section { padding: 7rem 2rem !important; } }
@media (min-width: 768px) { .colours-grid { grid-template-columns: repeat(3, 1fr) !important; } }

/* Cross-promo grid */
@media (min-width: 768px) { .cross-promo-grid { grid-template-columns: 1fr 1fr !important; } }

/* Footer */
.site-footer { background: var(--grey-50); border-top: 1px solid var(--grey-200); padding: 3rem 1.5rem 1.5rem; }
@media (min-width: 768px) { .site-footer { padding: 5rem 3rem 2rem; } }
.footer-grid {
    max-width: 1200px; margin: 0 auto 2.5rem;
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--grey-700); margin-bottom: 1.25rem;
}
.site-footer p, .site-footer li { font-size: 0.8rem; color: var(--grey-600); line-height: 2; }
.site-footer ul { list-style: none; }
.site-footer a { color: var(--grey-600); }
.site-footer a:hover { color: var(--grey-800); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid var(--grey-200);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
    font-size: 0.62rem; color: var(--grey-500); letter-spacing: 0.5px;
}
.footer-bottom a { color: var(--grey-500); }
.footer-bottom a:hover { color: var(--grey-700); }

/* Animations */
.reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered reveals */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }

/* Gold line draw */
.heading-line {
    display: block; width: 0; height: 1px;
    background: var(--gold); margin: 1rem auto 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.reveal.visible .heading-line,
.reveal .heading-line.visible { width: 50px; }

/* Review card hover */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 30;
    width: 38px; height: 38px;
    background: var(--white); border: 1px solid var(--grey-200); color: var(--grey-600);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.8rem;
    opacity: 0; pointer-events: none; transition: all 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--grey-500); }
