/* ─── Reset & Design Tokens ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #18140f;
    --parchment: #f7f3ee;
    --cream: #efe9e0;
    --amber: #b5692a;
    --amber-light: #d4884a;
    --amber-pale: #f5ead9;
    --stone: #8a7d6e;
    --stone-light: #bfb4a7;
    --white: #ffffff;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;
    --nav-h: 72px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base ─── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--parchment);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select, textarea {
    font-family: var(--ff-body);
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}


/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 243, 238, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(181, 105, 42, 0.12);
    transition: all 0.4s;
}

.header-box {
    display: flex;
    gap: 20px;
    align-items: center;
    height: var(--nav-h);
    justify-content: space-between;
    padding: 0 5%;
}

.hamburger {
    top: 50%;
    width: 32px;
    height: 2px;
    background: #000;
    position: relative;
    border: none;
    transition: 0.5s;
    z-index: 1000000;
    transform: translateY(-50%);
}

.menu-item {
    list-style: none;
    position: relative;
}

.menu-item .sub-menu {
    display: none;
    position: absolute;
    background: transparent;
    top: 100%;
    border-radius: 3px;
    padding-top: 25px;
    width: 210px;
}

.menu-item:hover .sub-menu {
    display: block;
}

.menu-item .sub-menu li {
    background: #FFF;
    padding: 10px 20px;
}

.menu-item .sub-menu li:first-child {
    padding-top: 20px;
}

.menu-item .sub-menu li:last-child {
    padding-bottom: 20px;
}

.menu-item .sub-menu li a {
    color: var(--stone);
    background: none;
    padding: 0;
}

.menu-item .sub-menu li a:hover {
    color: var(--ink);
    background: none;
}

.hamburger-one::before,
.hamburger-one::after {
    content: '';
    position: absolute;
    left: 0;
    width: 32px;
    height: 2px;
    background: #000;
    transition: 0.5s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hamburger.rotate {
    background: rgba(0, 0, 0, 0);
    box-shadow: none;
}

.hamburger.rotate.hamburger-one::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.rotate.hamburger-one::after {
    top: 0;
    transform: rotate(135deg);
}

.mobile-toggle {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--ink);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    width: 18px;
    height: 18px;
    fill: var(--amber-light);
}

.nav-logo-text {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav-logo-text span {
    color: var(--amber);
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.menu-item a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--stone);
    text-transform: uppercase;
    transition: color 0.2s;
}

.menu-item a:hover,
.menu-item a.active {
    color: var(--ink);
}

.menu-item:last-child a {
    background: var(--ink);
    color: var(--parchment);
    border: none;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.2s, transform 0.15s;
}

.menu-item:last-child a:hover {
    background: var(--amber);
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════
   SHARED — Typography & Section Layout
   ═══════════════════════════════════════ */
section {
    padding: 6rem 5%;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-h2 {
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-h2 em {
    font-style: italic;
    color: var(--amber);
}

.section-sub {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
}

/* ─── Scroll reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ─── Buttons ─── */
.btn-primary {
    background: var(--amber);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: var(--amber);
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
}

.cta-banner h2 em {
    font-style: italic;
}

.cta-banner-btn {
    background: #fff;
    color: var(--amber);
    border: none;
    cursor: pointer;
    padding: 16px 36px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── Gallery Strip ─── */
.gallery-strip {
    padding: 0;
    display: flex;
    gap: 3px;
    height: 300px;
    overflow: hidden;
}

.gallery-strip-img {
    flex: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-strip-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.85);
}

.gallery-strip-img:hover img {
    transform: scale(1.07);
    filter: saturate(1.1);
}

/* ─── Trust Items (amber strip) ─── */
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 2.5rem;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

/* ─── Certifications Band ─── */
.cert-band {
    background: var(--amber-pale);
    padding: 3.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.cert-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.cert-sub {
    font-size: 11px;
    color: var(--stone);
    letter-spacing: 0.04em;
}

/* ─── Form Components ─── */
.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: var(--white);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(181, 105, 42, 0.06);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--ink);
    color: var(--white);
}

.form-group textarea {
    height: 120px;
    resize: none;
    line-height: 1.65;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    background: var(--amber);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.form-submit svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}


/* ═══════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════ */

/* ─── Hero Stats / Stats Band (cream — service & about pages) ─── */
.hero-stat {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.stats-band {
    background: var(--cream);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.stats-band .hero-stat {
    padding: 2.5rem 2rem;
}

.stats-band .hero-stat-num {
    font-size: 48px;
}

/* ─── Process Step (dark sections) ─── */
.process-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.process-step:hover {
    background: rgba(181, 105, 42, 0.12);
}

.process-step-num {
    font-family: var(--ff-display);
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    margin-bottom: 1.5rem;
}

.process-step h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    font-weight: 300;
}

.process-step-line {
    width: 32px;
    height: 2px;
    background: var(--amber);
    margin-bottom: 1.5rem;
}

/* ─── Process Step Light (cream/parchment sections) ─── */
.process-step-light {
    background: var(--parchment);
    border: 1px solid var(--cream);
    padding: 2.5rem 2rem;
    transition: background 0.3s, border-color 0.3s;
}

.process-step-light:hover {
    background: var(--amber-pale);
    border-color: rgba(181, 105, 42, 0.2);
}

.process-step-light .step-num {
    font-family: var(--ff-display);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: rgba(24, 20, 15, 0.06);
    margin-bottom: 1.5rem;
}

.process-step-light .step-line {
    width: 32px;
    height: 2px;
    background: var(--amber);
    margin-bottom: 1.5rem;
}

.process-step-light h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.process-step-light p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.75;
    font-weight: 300;
}

/* ─── Review Card (base) ─── */
.review-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
}

.review-quote {
    font-family: var(--ff-display);
    font-size: 80px;
    line-height: 0.6;
    color: var(--amber-pale);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.review-text {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 2rem;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--amber);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--amber);
}

.review-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
}

.review-proj {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ─── Page Hero (shared — service & inner pages) ─── */
.page-hero {
    padding-top: var(--nav-h);
    background: var(--ink);
    min-height: 58vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.page-hero-left {
    padding: 5rem 5% 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-hero-right {
    position: relative;
    overflow: hidden;
}

.page-hero-right img {
    max-height: 700px;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 6s var(--ease-out);
}

.page-hero-right:hover img {
    transform: scale(1.04);
}

.page-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 60%);
    z-index: 1;
}

.page-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.page-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.page-hero h1 em {
    color: var(--amber-light);
    font-style: italic;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 2rem;
    animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.page-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.3s var(--ease-out) both;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
    background: var(--ink);
    padding: 0 5% 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--amber-light);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255, 255, 255, 0.25);
    fill: none;
    flex-shrink: 0;
}

.breadcrumb span:last-child {
    color: var(--amber-light);
}

/* ─── Service Overview ─── */
.svc-overview {
    background: var(--parchment);
}

.svc-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.svc-overview-img {
    position: relative;
}

.svc-overview-img-main {
    height: 580px;
    overflow: hidden;
    border-radius: 2px;
}

.svc-overview-img-main img {
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.svc-overview-img-main:hover img {
    transform: scale(1.04);
}

.svc-overview-img-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--ink);
    color: var(--white);
    padding: 1.5rem 1.75rem;
    border-radius: 2px;
    text-align: center;
}

.svc-overview-img-badge strong {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    display: block;
    color: var(--amber-light);
}

.svc-overview-img-badge span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
}

.svc-overview-body {
    padding-right: 1rem;
}

.svc-overview-body p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.svc-checklist {
    list-style: none;
    margin-top: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 300;
}

.svc-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-check-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2.5;
}

/* ─── What We Handle ─── */
.handles-section {
    background: var(--cream);
}

.handles-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.handles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.handle-item {
    background: var(--parchment);
    padding: 2rem 1.75rem;
    transition: background 0.3s;
}

.handle-item:hover {
    background: var(--amber-pale);
}

.handle-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-pale);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.handle-item:hover .handle-icon {
    background: var(--white);
}

.handle-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.handle-item h4 {
    font-family: var(--ff-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.handle-item p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── Use Cases ─── */
.use-cases-section {
    background: var(--parchment);
}

.use-cases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.use-case-card {
    background: var(--cream);
    overflow: hidden;
    position: relative;
    cursor: default;
}

.use-case-card.wide {
    grid-column: span 2;
}

.use-case-img {
    height: 260px;
    overflow: hidden;
}

.use-case-card.wide .use-case-img {
    height: 320px;
}

.use-case-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.8);
}

.use-case-card:hover .use-case-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.use-case-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.use-case-badge {
    display: inline-block;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.use-case-body h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.use-case-body p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── Key Considerations (dark) ─── */
.considerations-section {
    background: var(--ink);
}

.considerations-section .section-h2 {
    color: var(--white);
}

.considerations-section .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

.considerations-section .section-eyebrow {
    color: var(--amber-light);
}

.considerations-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.consideration-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    align-items: start;
    transition: background 0.3s;
}

.consideration-item:hover {
    background: rgba(181, 105, 42, 0.1);
}

.consideration-num {
    font-family: var(--ff-display);
    font-size: 80px;
    font-weight: 600;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.06);
}

.consideration-content h4 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 0.5rem;
}

.consideration-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
}

.consideration-flag {
    display: inline-block;
    background: rgba(181, 105, 42, 0.25);
    border: 1px solid rgba(181, 105, 42, 0.4);
    color: var(--amber-light);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

/* ─── ROI / Value Banner ─── */
.roi-banner {
    background: var(--amber-pale);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
}

.roi-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.roi-num {
    font-family: var(--ff-display);
    font-size: 52px;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 6px;
}

.roi-label {
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.5;
}

.roi-label strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

/* ─── Materials & Finishes ─── */
.materials-section {
    background: var(--cream);
}

.materials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.material-card {
    background: var(--parchment);
    overflow: hidden;
}

.material-img {
    height: 320px;
    overflow: hidden;
}

.material-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.8);
}

.material-card:hover .material-img img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.material-body {
    padding: 1.75rem;
}

.material-body h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.material-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.material-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
}

.material-option::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── Investment Guide ─── */
.investment-section {
    background: var(--parchment);
}

.investment-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.investment-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.investment-card:hover {
    border-color: var(--stone-light);
}

.investment-card.featured {
    background: var(--amber);
    border-color: var(--amber);
}

.investment-card.featured:hover {
    border-color: var(--amber-light);
}

.investment-popular-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.investment-tier {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.75rem;
}

.investment-card.featured .investment-tier {
    color: rgba(255, 255, 255, 0.6);
}

.investment-price {
    font-family: var(--ff-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.investment-card.featured .investment-price {
    color: #fff;
}

.investment-ideal {
    font-size: 12px;
    color: var(--stone);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone-light);
    font-weight: 300;
}

.investment-card.featured .investment-ideal {
    color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.investment-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.investment-features li {
    font-size: 13px;
    color: var(--stone);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
    font-weight: 300;
}

.investment-card.featured .investment-features li {
    color: rgba(255, 255, 255, 0.85);
}

.investment-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.investment-card.featured .investment-features li::before {
    background: rgba(255, 255, 255, 0.7);
}

/* ─── Recent Projects ─── */
.recent-section {
    background: var(--cream);
}

.recent-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.recent-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: gap 0.2s;
}

.recent-link:hover {
    gap: 10px;
}

.recent-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.recent-card {
    background: var(--parchment);
    overflow: hidden;
}

.recent-card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.recent-card-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.85);
}

.recent-card:hover .recent-card-img img {
    transform: scale(1.06);
    filter: saturate(1);
}

.recent-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--ink);
    color: var(--amber-light);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.recent-card-body {
    padding: 1.5rem;
}

.recent-card-title {
    font-family: var(--ff-display);
    font-size: 21px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.recent-card-brief {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem;
}

.recent-card-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--cream);
}

.recent-meta-item {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
}

.recent-meta-item strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 1px;
    font-weight: 400;
}

/* ─── FAQ ─── */
.faq-section {
    background: var(--parchment);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.faq-intro p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.faq-intro-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 2.5rem;
}

.faq-intro-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-intro-cta-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.faq-intro-cta-text strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
}

.faq-intro-cta-text span {
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-item {
    background: var(--cream);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(181, 105, 42, 0.05);
}

.faq-q-text {
    font-family: var(--ff-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--stone-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--stone);
    fill: none;
    stroke-width: 2;
    transition: transform 0.35s var(--ease-out);
}

.faq-item.open .faq-icon {
    background: var(--amber);
    border-color: var(--amber);
}

.faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    font-size: 14px;
    color: var(--stone);
    line-height: 1.85;
    font-weight: 300;
}

.faq-item.open .faq-answer {
    max-height: 280px;
}

/* Contact page inverts FAQ colors — wrap in .contact-faq in HTML */
.contact-faq .faq-section {
    background: var(--cream);
}

.contact-faq .faq-item {
    background: var(--parchment);
}

/* Service-page FAQ alias */
.svc-faq-section {
    background: var(--parchment);
}

.svc-faq-section .faq-item {
    background: var(--cream);
}

/* ─── Contact-page FAQ sidebar direct links ─── */
.faq-direct {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-direct-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-direct-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-direct-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.faq-direct-text strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
}

.faq-direct-text span {
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
}

/* ─── Service Reviews ─── */
.svc-reviews {
    background: var(--cream);
}

.svc-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.svc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* ─── Filter Bar (shared — reviews & projects) ─── */
.filter-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--stone-light);
    color: var(--stone);
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.filter-btn.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--white);
}

.filter-count {
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
}

.filter-count span {
    color: var(--amber);
    font-weight: 500;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: #0f0c09;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo-text {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-brand .logo-text span {
    color: var(--amber-light);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 260px;
    font-weight: 300;
}

.footer-col h5 {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.8rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    background: #080604;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}


/* ═══════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════ */

/* ─── Hero ─── */
.hero {
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-left {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/image15.webp') center/cover;
    opacity: 0.22;
}

.hero-left>* {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(181, 105, 42, 0.45);
    color: var(--amber-light);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    width: fit-content;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-h1 {
    font-family: var(--ff-display);
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.hero-h1 em {
    color: var(--amber-light);
    font-style: italic;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.3s var(--ease-out) both;
}

.hero-right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 3px;
    background: var(--cream);
}

.hero-img-main {
    height: 100%;
    overflow: hidden;
}

.hero-img-main img {
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease-out);
}

.hero-img-main:hover img {
    transform: scale(1.03);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* ─── Trust Bar (homepage) ─── */
.trust-bar {
    background: var(--amber);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* ─── Services ─── */
#services {
    background: var(--cream);
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.svc-card {
    background: var(--parchment);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.svc-card.featured {
    grid-column: 1 / -1;
}

.svc-img {
    height: 420px;
    overflow: hidden;
}

.svc-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.svc-card:hover .svc-img img {
    transform: scale(1.05);
}

.svc-body {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.svc-num {
    font-family: var(--ff-display);
    font-size: 13px;
    color: var(--amber);
    letter-spacing: 0.08em;
}

.svc-card h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.svc-card p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
}

.svc-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--stone-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.svc-card:hover .svc-arrow {
    background: var(--amber);
    border-color: var(--amber);
}

.svc-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--stone);
    transition: stroke 0.3s;
}

.svc-card:hover .svc-arrow svg {
    stroke: #fff;
}

/* ─── Process ─── */
#process {
    background: var(--ink);
}

#process .section-h2 {
    color: var(--white);
}

#process .section-sub {
    color: rgba(255, 255, 255, 0.45);
}

#process .section-eyebrow {
    color: var(--amber-light);
}

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

/* ─── Homepage Reviews ─── */
#reviews {
    background: var(--cream);
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

#reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* ─── Homepage Contact ─── */
#contact {
    background: var(--cream);
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-left {
    padding: 5rem 5% 5rem 0;
}

.contact-info-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 3px;
    background: var(--amber-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 3px;
}

.contact-val {
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
}

.contact-right {
    background: var(--ink);
    padding: 5rem;
}

.contact-right .section-eyebrow {
    color: var(--amber-light);
}

.contact-right .section-h2 {
    color: var(--white);
}


/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-img-wrap {
    position: relative;
}

.story-img-main {
    height: 520px;
    overflow: hidden;
    border-radius: 2px;
}

.story-img-main img {
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.story-img-main:hover img {
    transform: scale(1.04);
}

.story-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--amber);
    color: #fff;
    padding: 1.5rem 1.75rem;
    border-radius: 2px;
    text-align: center;
}

.story-img-badge strong {
    font-family: var(--ff-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.story-img-badge span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.story-body {
    padding-left: 1rem;
}

.story-body p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.story-body p:last-of-type {
    margin-bottom: 2rem;
}

.story-signature {
    font-family: var(--ff-display);
    font-size: 28px;
    font-style: italic;
    color: var(--ink);
    margin-top: 2rem;
    margin-bottom: 4px;
}

.story-sig-title {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

#values {
    background: var(--ink);
}

#values .section-h2 {
    color: var(--white);
}

#values .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

#values .section-eyebrow {
    color: var(--amber-light);
}

.values-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

#team {
    background: var(--parchment);
}

.team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.team-card {
    background: var(--cream);
    overflow: hidden;
}

.team-card-img {
    height: 520px;
    overflow: hidden;
}

.team-card-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out);
    filter: saturate(0.8);
}

.team-card:hover .team-card-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.team-card-body {
    padding: 1.5rem;
}

.team-card-name {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.team-card-bio {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.75;
    font-weight: 300;
}


/* ═══════════════════════════════════════════════════
   PROJECTS PAGE
   ═══════════════════════════════════════════════════ */

/* ─── Filter Wrap ─── */
.filter-bar-wrap {
    background: var(--cream);
    padding: 1.75rem 5%;
    border-bottom: 1px solid rgba(181, 105, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ─── Projects Grid ─── */
#projects-grid {
    background: var(--parchment);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.project-card {
    background: var(--cream);
    overflow: hidden;
    cursor: pointer;
}

.project-card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.project-card-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.85);
}

.project-card:hover .project-card-img img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.project-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--ink);
    color: var(--amber-light);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.project-card-body {
    padding: 1.5rem 1.5rem 0.75rem;
}

.project-title {
    font-family: var(--ff-display);
    font-size: 21px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.project-brief {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--cream);
}

.project-meta-item {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
}

.project-meta-item strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 1px;
    font-weight: 400;
}

.project-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.project-card:hover .project-link {
    gap: 10px;
}

.project-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

/* ─── Spotlight ─── */
.spotlight {
    background: var(--ink);
    overflow: hidden;
}

.spotlight-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1.25fr 1fr;
}

.spotlight-img {
    height: 640px;
    overflow: hidden;
    position: relative;
}

.spotlight-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease-out);
}

.spotlight:hover .spotlight-img img {
    transform: scale(1.04);
}

.spotlight-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--ink));
}

.spotlight-content {
    padding: 5rem 5% 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.spotlight-title {
    font-family: var(--ff-display);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.spotlight-title em {
    font-style: italic;
    color: var(--amber-light);
}

.spotlight-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 380px;
}

.spotlight-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 2rem;
}

.spotlight-detail-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.spotlight-detail-val {
    font-size: 15px;
    color: var(--white);
    font-weight: 300;
}

.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.spotlight-feature-tag {
    background: rgba(181, 105, 42, 0.18);
    border: 1px solid rgba(181, 105, 42, 0.3);
    color: var(--amber-light);
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 2px;
}

/* ─── Before & After Slider ─── */
.ba-section {
    background: var(--cream);
}

.ba-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
}

.ba-header .section-eyebrow,
.ba-header .section-h2,
.ba-header .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ba-slider-wrap {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    height: 500px;
    border-radius: 2px;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.ba-handle-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2.5;
}

.ba-label {
    position: absolute;
    top: 1.5rem;
    z-index: 5;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ba-before-label {
    left: 1.5rem;
}

.ba-after-label {
    right: 1.5rem;
}

/* ─── Category Breakdown ─── */
.breakdown-section {
    background: var(--parchment);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.breakdown-facts {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.breakdown-fact-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream);
}

.breakdown-fact-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--amber);
    white-space: nowrap;
}

.breakdown-fact-label {
    font-size: 13px;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.5;
}

.breakdown-bars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.breakdown-bar-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.breakdown-bar-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink);
}

.breakdown-bar-pct {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--amber);
}

.breakdown-bar-track {
    height: 5px;
    background: var(--cream);
    border-radius: 3px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    background: var(--amber);
    border-radius: 3px;
    width: 0;
    transition: width 1.4s var(--ease-out);
}

/* ─── Scope Grid ─── */
.scope-section {
    background: var(--ink);
}

.scope-section .section-h2 {
    color: var(--white);
}

.scope-section .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

.scope-section .section-eyebrow {
    color: var(--amber-light);
}

.scope-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.scope-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.scope-item:hover {
    background: rgba(181, 105, 42, 0.1);
}

.scope-icon {
    width: 44px;
    height: 44px;
    background: rgba(181, 105, 42, 0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.scope-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber-light);
    fill: none;
    stroke-width: 1.5;
}

.scope-item h4 {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.scope-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    font-weight: 300;
}

/* ─── Project Testimonials ─── */
.project-reviews {
    background: var(--cream);
}

.project-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.project-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}


/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */

/* ─── Contact Hero ─── */
.contact-hero {
    padding-top: var(--nav-h);
    background: var(--ink);
    padding: calc(var(--nav-h) + 5rem) 5% 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=40') center/cover;
    opacity: 0.07;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    padding-bottom: 5rem;
}

.contact-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.contact-hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.contact-hero h1 em {
    color: var(--amber-light);
    font-style: italic;
}

.contact-hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 400px;
    animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.contact-hero-right {
    animation: fadeUp 1s 0.15s var(--ease-out) both;
}

.hero-promise-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-promise-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-promise-item:last-child {
    border-bottom: none;
}

.hero-promise-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(181, 105, 42, 0.15);
    border: 1px solid rgba(181, 105, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-promise-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--amber-light);
    fill: none;
    stroke-width: 1.5;
}

.hero-promise-text strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2px;
}

.hero-promise-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ─── Trust Band (contact page) ─── */
.trust-band {
    background: var(--amber);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* ─── Contact Main Layout ─── */
.contact-main {
    background: var(--cream);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.contact-info-side {
    padding: 5rem 5% 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
}

.contact-info-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
}

.contact-info-title em {
    font-style: italic;
    color: var(--amber);
}

.contact-info-body {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 3px;
}

.contact-detail-val {
    font-size: 15px;
    color: var(--ink);
    font-weight: 400;
}

.contact-detail-sub {
    font-size: 12px;
    color: var(--stone);
    font-weight: 300;
    margin-top: 2px;
}

.promise-box {
    background: var(--parchment);
    border: 1px solid rgba(181, 105, 42, 0.15);
    border-left: 3px solid var(--amber);
    padding: 1.5rem;
    margin-top: auto;
}

.promise-box p {
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
}

.promise-box span {
    display: block;
    font-family: var(--ff-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 8px;
}

.contact-form-side {
    background: var(--ink);
    padding: 5rem;
}

.form-title {
    font-family: var(--ff-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.form-title em {
    font-style: italic;
    color: var(--amber-light);
}

.form-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-divider {
    width: 40px;
    height: 2px;
    background: var(--amber);
    margin-bottom: 2rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--amber);
    flex-shrink: 0;
    cursor: pointer;
}

.form-consent label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    cursor: pointer;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(181, 105, 42, 0.15);
    border: 1px solid rgba(181, 105, 42, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-success-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--amber-light);
    fill: none;
    stroke-width: 2;
}

.form-success h3 {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.7;
}

/* ─── What Happens Next ─── */
.what-next {
    background: var(--parchment);
}

.what-next-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.what-next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.what-next-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.what-next-card:hover {
    background: var(--amber-pale);
}

.what-next-card::before {
    content: attr(data-step);
    font-family: var(--ff-display);
    font-size: 120px;
    font-weight: 600;
    color: rgba(24, 20, 15, 0.04);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    pointer-events: none;
}

.what-next-icon {
    width: 52px;
    height: 52px;
    background: var(--amber-pale);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.what-next-card:hover .what-next-icon {
    background: var(--white);
}

.what-next-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.what-next-step-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.what-next-card h4 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.what-next-card p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.8;
    font-weight: 300;
}

.what-next-timing {
    display: inline-block;
    background: var(--ink);
    color: var(--amber-light);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-top: 1.25rem;
}

/* ─── Service Area ─── */
.service-area {
    background: var(--cream);
}

.service-area-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.service-area-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.service-area-info p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.service-area-note {
    background: var(--amber-pale);
    border: 1px solid rgba(181, 105, 42, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 2px;
}

.service-area-note p {
    font-size: 13px;
    color: var(--stone);
    margin: 0;
    line-height: 1.7;
}

.service-area-note strong {
    color: var(--amber);
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.area-chip {
    background: var(--parchment);
    border: 1px solid var(--stone-light);
    color: var(--stone);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 2px;
    transition: all 0.2s;
    cursor: default;
}

.area-chip:hover {
    background: var(--amber-pale);
    border-color: var(--amber);
    color: var(--amber);
}

.area-chip.primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--amber-light);
}

/* ─── Contact Reviews ─── */
.contact-reviews {
    background: var(--parchment);
}

.contact-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.contact-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* ─── Basement / Generic Service Process (light) ─── */
.bsmt-process {
    background: var(--cream);
}

.bsmt-process .section-h2 {
    color: var(--ink);
}

.bsmt-process .section-eyebrow {
    color: var(--amber);
}


/* ═══════════════════════════════════════════════════
   REVIEWS PAGE
   ═══════════════════════════════════════════════════ */

/* ─── 1. Hero ─── */
.reviews-hero {
    padding-top: var(--nav-h);
    background: var(--ink);
    overflow: hidden;
    position: relative;
}

.reviews-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1600&auto=format&fit=crop&q=30') center/cover;
    opacity: 0.06;
}

.reviews-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 5%;
}

.reviews-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.reviews-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.reviews-hero h1 em {
    color: var(--amber-light);
    font-style: italic;
}

.reviews-hero-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 420px;
    animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-rating-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    animation: fadeUp 1s 0.15s var(--ease-out) both;
}

.hero-rating-num {
    font-family: var(--ff-display);
    font-size: 100px;
    font-weight: 600;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-rating-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.hero-rating-stars svg {
    width: 22px;
    height: 22px;
    fill: var(--amber);
}

.hero-rating-total {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-rating-total strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-source-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-source-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-source-pill span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
}

.hero-source-pill strong {
    font-size: 12px;
    color: var(--amber-light);
}

/* ─── 2. Platform Badges Band ─── */
.platforms-band {
    background: var(--cream);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.platform-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: background 0.3s;
}

.platform-card:hover {
    background: var(--amber-pale);
}

.platform-icon {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 24px;
    height: 24px;
}

.platform-name {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 4px;
}

.platform-rating-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 2px;
}

.platform-rating-num {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.platform-stars {
    display: flex;
    gap: 2px;
}

.platform-stars svg {
    width: 11px;
    height: 11px;
    fill: var(--amber);
}

.platform-count {
    font-size: 11px;
    color: var(--stone);
    font-weight: 300;
}

/* ─── 3. Rating Overview ─── */
.rating-section {
    background: var(--parchment);
}

.rating-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.rating-headline-num {
    font-family: var(--ff-display);
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
}

.rating-headline-stars {
    display: flex;
    gap: 6px;
    margin: 0.5rem 0 1rem;
}

.rating-headline-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--amber);
}

.rating-headline-label {
    font-size: 14px;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.rating-headline-label strong {
    color: var(--ink);
    font-weight: 500;
}

.rating-service-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.rating-svc-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-svc-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

.rating-svc-label {
    font-size: 12px;
    color: var(--stone);
    font-weight: 300;
}

.rating-svc-val {
    font-size: 12px;
    color: var(--amber);
    font-weight: 500;
    margin-left: auto;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-bar-label {
    font-size: 12px;
    color: var(--stone);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 46px;
    flex-shrink: 0;
}

.rating-bar-label svg {
    width: 11px;
    height: 11px;
    fill: var(--amber);
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--amber);
    border-radius: 4px;
    width: 0;
    transition: width 1.4s var(--ease-out);
}

.rating-bar-pct {
    font-size: 12px;
    color: var(--stone);
    font-weight: 400;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

.rating-bar-count {
    font-size: 11px;
    color: var(--stone-light);
    width: 70px;
    text-align: right;
    flex-shrink: 0;
    font-weight: 300;
}

/* ─── 4. Filter Bar + Reviews Grid ─── */
.reviews-filter-wrap {
    background: var(--cream);
    padding: 1.75rem 5%;
    border-bottom: 1px solid rgba(181, 105, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-main {
    background: var(--parchment);
}

.reviews-main-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* Reviews-page card variant */
.reviews-grid .review-card {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
}

.reviews-grid .review-quote {
    font-size: 64px;
    margin-bottom: 1rem;
}

.reviews-grid .review-text {
    font-size: 17px;
    margin-bottom: 1.5rem;
    flex: 1;
}

.reviews-grid .review-stars svg {
    width: 13px;
    height: 13px;
}

.reviews-grid .review-meta {
    margin-top: auto;
}

.reviews-grid .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-service-tag {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--amber-pale);
    color: var(--amber);
    padding: 3px 9px;
    border-radius: 2px;
    white-space: nowrap;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.review-verified svg {
    width: 12px;
    height: 12px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2;
}

.review-verified span {
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ─── 5. Featured Review Spotlight ─── */
.featured-review {
    background: var(--ink);
    overflow: hidden;
}

.featured-review-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-review-img {
    position: relative;
    overflow: hidden;
    height: 580px;
}

.featured-review-img img {
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 6s var(--ease-out);
}

.featured-review:hover .featured-review-img img {
    transform: scale(1.04);
}

.featured-review-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--ink));
}

.featured-review-content {
    padding: 5rem 5% 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1.5rem;
}

.featured-quote-mark {
    font-family: var(--ff-display);
    font-size: 120px;
    line-height: 0.5;
    color: rgba(181, 105, 42, 0.2);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.featured-quote-text {
    font-family: var(--ff-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.featured-quote-text em {
    color: var(--amber-light);
    font-style: normal;
}

.featured-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.featured-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--amber);
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(181, 105, 42, 0.2);
    border: 1px solid rgba(181, 105, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--amber-light);
    flex-shrink: 0;
}

.featured-name {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 3px;
}

.featured-proj {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── 6. Leave a Review ─── */
.leave-review {
    background: var(--cream);
}

.leave-review-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.leave-review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.leave-platform {
    background: var(--parchment);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.3s;
    text-decoration: none;
}

.leave-platform:hover {
    background: var(--amber-pale);
}

.leave-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 3px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leave-platform-icon svg {
    width: 26px;
    height: 26px;
}

.leave-platform-name {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
}

.leave-platform-desc {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.65;
    font-weight: 300;
}

.leave-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: var(--amber-light);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 2px;
    transition: background 0.2s;
    margin-top: auto;
}

.leave-platform:hover .leave-platform-btn {
    background: var(--amber);
    color: #fff;
}

.leave-platform-btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ─── 7. Reviews Stats Band (dark) ─── */
.reviews-stats-band {
    background: var(--ink);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.reviews-stats-band .stat-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-stats-band .stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════════════
   KITCHEN PAGE
   ═══════════════════════════════════════════════════ */
.layouts-section {
    background: var(--parchment);
}

.layouts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.layouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.layout-card {
    background: var(--cream);
    overflow: hidden;
    cursor: default;
}

.layout-img {
    height: 420px;
    overflow: hidden;
}

.layout-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.8);
}

.layout-card:hover .layout-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.layout-body {
    padding: 1.75rem 2rem;
}

.layout-badge {
    display: inline-block;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.layout-body h4 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}

.layout-body p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.75;
    font-weight: 300;
}

.kitchen-process {
    background: var(--ink);
}

.kitchen-process .section-h2 {
    color: var(--white);
}

.kitchen-process .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

.kitchen-process .section-eyebrow {
    color: var(--amber-light);
}

.kprocess-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.kprocess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}


/* ═══════════════════════════════════════════════════
   HOME ADDITIONS PAGE
   ═══════════════════════════════════════════════════ */
.add-types-section {
    background: var(--parchment);
}

.add-types-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.add-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.add-type-card {
    background: var(--cream);
    overflow: hidden;
    cursor: default;
}

.add-type-card.wide {
    grid-column: span 2;
}

.add-type-img {
    height: 260px;
    overflow: hidden;
}

.add-type-card.wide .add-type-img {
    height: 320px;
}

.add-type-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.8);
}

.add-type-card:hover .add-type-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.add-type-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.add-type-badge {
    display: inline-block;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.add-type-body h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.add-type-body p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
}

.arch-callout {
    background: var(--ink);
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.arch-callout-img {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.arch-callout-img img {
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 6s var(--ease-out);
}

.arch-callout:hover .arch-callout-img img {
    transform: scale(1.04);
}

.arch-callout-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--ink));
}

.arch-callout-body {
    padding: 5rem 5% 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.arch-callout-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.arch-callout-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.arch-callout-title em {
    font-style: italic;
    color: var(--amber-light);
}

.arch-callout-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.arch-match-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.arch-match-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.arch-match-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.arch-match-text strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 3px;
}

.arch-match-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.55;
}

.design-considerations {
    background: var(--cream);
}

.design-cons-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.design-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.design-cons-item {
    background: var(--parchment);
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--amber-pale);
    transition: border-color 0.3s, background 0.3s;
}

.design-cons-item:hover {
    border-color: var(--amber);
    background: var(--amber-pale);
}

.design-cons-icon {
    width: 44px;
    height: 44px;
    background: var(--amber-pale);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.design-cons-item:hover .design-cons-icon {
    background: var(--white);
}

.design-cons-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.design-cons-item h4 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.design-cons-item p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.8;
    font-weight: 300;
}

.design-cons-flag {
    display: inline-block;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.add-process {
    background: var(--ink);
}

.add-process .section-h2 {
    color: var(--white);
}

.add-process .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

.add-process .section-eyebrow {
    color: var(--amber-light);
}

.aprocess-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.aprocess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}


/* ═══════════════════════════════════════════════════
   BATHROOM PAGE
   ═══════════════════════════════════════════════════ */
.bath-types-section {
    background: var(--parchment);
}

.bath-types-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.bath-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.bath-type-card {
    background: var(--cream);
    overflow: hidden;
    cursor: default;
}

.bath-type-img {
    height: 400px;
    overflow: hidden;
}

.bath-type-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
    filter: saturate(0.8);
}

.bath-type-card:hover .bath-type-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.bath-type-body {
    padding: 1.75rem 2rem;
}

.bath-type-badge {
    display: inline-block;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.bath-type-body h4 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}

.bath-type-body p {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.75;
    font-weight: 300;
}

.bath-process {
    background: var(--ink);
}

.bath-process .section-h2 {
    color: var(--white);
}

.bath-process .section-sub {
    color: rgba(255, 255, 255, 0.4);
}

.bath-process .section-eyebrow {
    color: var(--amber-light);
}

.bprocess-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.bprocess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.spa-callout {
    background: var(--ink);
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.spa-callout-img {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.spa-callout-img img {
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 6s var(--ease-out);
}

.spa-callout:hover .spa-callout-img img {
    transform: scale(1.04);
}

.spa-callout-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, var(--ink) 0%, transparent 60%);
}

.spa-callout-body {
    padding: 5rem 5% 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spa-callout-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.spa-callout-title {
    font-family: var(--ff-display);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.spa-callout-title em {
    font-style: italic;
    color: var(--amber-light);
}

.spa-callout-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.spa-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spa-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.spa-feature-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.spa-feature-text strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2px;
}

.spa-feature-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.5;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    display: block !important;
}

.lb-nav a.lb-prev {
    background-image: url("../images/prev.png ");
}

.lb-nav a.lb-next {
    background-image: url("../images/next.png");
}

.lb-data .lb-close {
    background-image: url("../images/close.png");
}

#lightbox {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    width: 100%;
    transform: translate(-50%, -50%);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* ── 1399px ── */
@media (max-width: 1399px) {
    .team-card-img {
        height: 420px;
    }
}

/* ── 1199px — Mobile nav ── */
@media (max-width: 1199px) {
    .site-header {
        padding: 20px 0;
    }

    .header-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        height: auto;
    }

    .site-branding {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: space-between;
    }

    .main-navigation {
        width: 100%;
        display: none;
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .mobile-toggle {
        display: inline-block;
        margin-top: -6px;
    }

    .menu-item a,
    .menu-item:last-child a {
        font-size: 16px;
    }

    .menu-item .sub-menu {
        position: static;
        width: 100%;
        padding-top: 10px;
    }

    .menu-item {
        width: 100%;
    }
}

/* ── 1024px ── */
@media (max-width: 1024px) {

    /* Shared */
    .page-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .page-hero-right {
        display: none;
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-overview-img-badge {
        left: 1rem;
    }

    .handles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .materials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recent-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .roi-banner {
        grid-template-columns: 1fr;
    }

    .considerations-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .use-case-card.wide {
        grid-column: span 1;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Homepage */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 4rem 5% 3.5rem;
        min-height: 70vh;
    }

    .hero-right {
        display: grid;
        grid-template-rows: 260px auto;
    }

    .hero-img-main {
        height: 260px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .svc-card.featured {
        grid-column: 1;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    #reviews .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 4rem 0;
    }

    .contact-right {
        padding: 3rem 5%;
    }

    .gallery-strip {
        height: 220px;
    }

    /* About */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-img-badge {
        right: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-inner {
        grid-template-columns: 1fr;
    }

    .spotlight-img {
        height: 400px;
    }

    .spotlight-img::after {
        display: none;
    }

    .spotlight-content {
        padding: 3.5rem 5%;
    }

    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 4rem;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 4rem 5%;
    }

    .what-next-grid {
        grid-template-columns: 1fr;
    }

    .service-area-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cert-band {
        gap: 2rem;
    }

    /* Reviews page */
    .reviews-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-rating-card {
        max-width: 480px;
    }

    .platforms-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-overview-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-review-inner {
        grid-template-columns: 1fr;
    }

    .featured-review-img {
        height: 360px;
    }

    .featured-review-img::after {
        background: linear-gradient(to bottom, transparent 30%, var(--ink));
    }

    .featured-review-content {
        padding: 3.5rem 5%;
    }

    .leave-review-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-stats-band .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Kitchen page */
    .layouts-grid {
        grid-template-columns: 1fr;
    }

    .kprocess-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Home additions page */
    .add-types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .add-type-card.wide {
        grid-column: span 1;
    }

    .add-type-card.wide .add-type-img {
        height: 260px;
    }

    .arch-callout {
        grid-template-columns: 1fr;
    }

    .arch-callout-img {
        height: 380px;
    }

    .arch-callout-img::after {
        background: linear-gradient(to bottom, transparent 40%, var(--ink));
    }

    .arch-callout-body {
        padding: 3rem 5%;
    }

    .design-cons-grid {
        grid-template-columns: 1fr;
    }

    .aprocess-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Bathroom page */
    .bath-types-grid {
        grid-template-columns: 1fr;
    }

    .bprocess-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spa-callout {
        grid-template-columns: 1fr;
    }

    .spa-callout-img {
        height: 380px;
    }

    .spa-callout-img::after {
        background: linear-gradient(to bottom, transparent 40%, var(--ink));
    }

    .spa-callout-body {
        padding: 3rem 5%;
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    section {
        padding: 4rem 5%;
    }

    /* Shared */
    .cta-banner {
        text-align: center;
        justify-content: center;
    }

    .gallery-strip {
        height: 180px;
    }

    .handles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recent-grid {
        grid-template-columns: 1fr;
    }

    .svc-reviews-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Homepage */
    .hero-h1 {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stat-num {
        font-size: 26px;
    }

    .services-header, .reviews-header, .process-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-img {
        height: 320px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr 1fr;
    }

    .cert-band {
        gap: 2rem;
        justify-content: flex-start;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .project-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ba-slider-wrap {
        height: 300px;
    }

    .filter-bar-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Contact */
    .contact-form-side {
        padding: 3rem 5%;
    }

    .contact-info-side {
        padding: 4rem 5%;
    }

    .trust-item {
        padding: 12px 1.2rem;
        font-size: 11px;
    }

    .what-next-grid {
        grid-template-columns: 1fr;
    }

    .contact-reviews-grid {
        grid-template-columns: 1fr;
    }

    .consideration-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consideration-num {
        font-size: 52px;
        margin-bottom: 0.5rem;
    }

    /* Reviews page */
    .reviews-hero-inner {
        padding: 4rem 5%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating-service-breakdown {
        grid-template-columns: 1fr;
    }

    .leave-review-grid {
        grid-template-columns: 1fr;
    }

    .reviews-filter-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Kitchen page */
    .kprocess-grid {
        grid-template-columns: 1fr;
    }

    /* Home additions page */
    .add-types-grid {
        grid-template-columns: 1fr;
    }

    .aprocess-grid {
        grid-template-columns: 1fr;
    }

    /* Bathroom page */
    .bprocess-grid {
        grid-template-columns: 1fr;
    }

    /* Service pages */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .bsmt-process .bprocess-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {

    /* Homepage */
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        border-bottom: 1px solid var(--cream);
    }

    .trust-bar {
        flex-direction: column;
        gap: 0;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    /* About & Shared */
    .stats-band {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .trust-band {
        flex-direction: column;
        gap: 0;
    }

    .cert-band {
        gap: 1.5rem;
    }

    /* Shared service */
    .handles-grid {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews page */
    .platforms-band {
        grid-template-columns: 1fr;
    }

    .reviews-stats-band {
        grid-template-columns: 1fr 1fr;
    }

    /* Nav */
    .menu-item a,
    .menu-item:last-child a {
        font-size: 14px;
    }

    .gallery-strip {
        flex-wrap: wrap;
        height: auto;
    }

    .gallery-strip-img {
        flex: auto;
    }

    .layout-img {
        height: 320px;
    }
}