:root {
    /* Brand colors (from --e-global-color-*) */
    --color-primary: #D9CE83;      /* gold / accent (global primary & accent) */
    --color-primary-light: #F2EEB3;/* global 686dcb4 */
    --color-primary-dark: #c9bd6a;
    --color-secondary: #54595F;    /* global secondary grey */
    --color-text: #7A7A7A;         /* global text */
    --color-dark: #282828;         /* section / footer dark */
    --color-black: #000000;        /* global 7e085dd */
    --color-white: #FFFFFF;
    --color-bg-soft: #f7f6ef;
    --color-border: #e6e6e6;

    /* Typography */
    --font-primary: "Montserrat", Sans-serif;

    /* Spacing scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 70px;
    --space-2xl: 100px;

    /* Layout */
    --container: 1200px;
    --container-wide: 1400px;
    --radius: 8px;
    --radius-lg: 16px;
    --header-h: 96px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .15);
    --transition: .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    line-height: 1.3;
    font-weight: 500;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 2000;
    background: var(--color-primary); color: #000; padding: 10px 16px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: var(--space-xl) 0; }
.section-soft { background: var(--color-bg-soft); }
.text-center { text-align: center; }

/* Small italic gold label above section headings ("Nivi Homes") */
.section-eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 8px;
}
/* Main section headings: Poppins 32px / 500 / italic (matches live) */
.section-title {
    font-size: 32px;
    font-weight: 500;
    font-style: italic; 
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1;
}
.section-title.gold { color: var(--color-primary); }
.section-title.white { color: var(--color-white); }
.section-title .accent { color: var(--color-primary); }
.section-subtitle { max-width: 760px; margin: 0 auto 40px; color: var(--color-text); }
.title-underline {
    width: 70px; height: 3px; background: var(--color-primary);
    margin: 14px auto 0; border-radius: 2px;
}

/* ---------- Buttons ---------- */
/* Buttons match live: black bg / white text -> hover gold bg / black text */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px;
    font-size: 18px; font-weight: 300;
    font-family: var(--font-primary);
    border-radius: 5px;
    transition: all .3s ease;
    cursor: pointer;
    line-height: 1;
    text-align: center;
}
.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    fill: var(--color-white);
}
.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-black);
    fill: var(--color-black);
}
.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-black);
}
.btn-light { background: var(--color-white); color: var(--color-black); }
.btn-light:hover { background: var(--color-primary); color: var(--color-black); }

/* =============================================================
   HEADER / NAV
   ============================================================= */
/* Solid black header bar, full-width, STATIC (live header scrolls away, not sticky) */
.site-header {
    position: static;
    background: var(--color-black);
    z-index: 1000;
}
.site-header .container { max-width: 100%; padding: 10px 0; }
/* Header height scales with the logo (= logo height + 20px), matching the
   original's % based logo sizing across all viewports */
.header-inner {
    display: flex; align-items: center; justify-content: flex-start;
    padding: 10px 0;
}
/* Logo column 23.655%; logo widget 124.626% wide + text-align center reproduces
   the exact offset (~164px @1920) and size (233x109) of the original. */
.brand { flex: 0 0 23.655%; min-width: 0; }
.brand-inner { display: block; width: 124.626%; text-align: center; overflow: visible; line-height: 0; font-size: 0; }
.brand-logo { display: inline-block; width: 41.2%; height: auto; vertical-align: middle; }

/* Nav column fills the rest; menu items centered within it (not pushed to edge) */
.primary-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 0 15px;
    height: 68px;
    font-size: 15px; font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    transition: all .4s ease;
}
/* Only the current-page link is white; others stay gold (hover has no color change) */
.nav-item.active > .nav-link { color: var(--color-white); }

.caret {
    width: 6px; height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition);
    margin-left: 2px;
}
.nav-item.has-dropdown:hover .caret { transform: rotate(-135deg) translateY(0); }

/* Dropdown (black panel, gold links on grey rows, 12px radius) */
.dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 220px;
    background: var(--color-black);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 100;
    overflow: hidden;
    max-height: 70vh;
    overflow-y: auto;
}
/* Scrollbar styling for dropdown with many items */
.dropdown::-webkit-scrollbar { width: 5px; }
.dropdown::-webkit-scrollbar-track { background: transparent; }
.dropdown::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 3px; }
.dropdown::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }
.nav-item.has-dropdown:hover > .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    background: var(--color-secondary);
    transition: all .3s;
}
.dropdown li a:hover {
    background: var(--color-black);
    color: var(--color-primary);
}
.submenu-toggle { display: none; }

/* Hamburger (gold, 45x29 like the original ElementsKit toggle) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 4px; width: 45px; height: 29px; padding: 8px; background: var(--color-primary); border-radius: 3px; }
.nav-toggle span {
    width: 100%; height: 2px; background: var(--color-black);
    transition: all var(--transition); border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 999; opacity: 0; transition: opacity var(--transition);
}

/* =============================================================
   HERO SLIDER
   ============================================================= */
/* Hero = full-width 16:9 image carousel.
   The source banners are all 1920x1080 (16:9). The container is locked to that
   same ratio via aspect-ratio, and the images use object-fit: contain, so the
   COMPLETE banner is always visible - never cropped, never stretched, at any
   viewport width.
   On ultrawide screens max-width caps the hero so its 16:9 height can never
   exceed the viewport height; the leftover space becomes brand-coloured gutters
   rather than a cropped image. */
.hero {
    position: relative;
    width: 100%;
    /* 16:9 - matches the source images exactly */
    aspect-ratio: 16 / 9;
    /* Never taller than the viewport: 100vh at 16:9 == 100vh * 16/9 wide */
  /*  max-width: calc(100vh * 16 / 9); */
    margin-inline: auto;
    background: #18160f;
    overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* contain guarantees the whole image is shown; because the container is
       already 16:9 there is no letterboxing in practice */
    object-fit: contain;
    object-position: center;
}
.hero-overlay { display: none; }

/* Fallback for browsers without aspect-ratio support (very old Safari):
   padding-top hack keeps the same 56.25% (16:9) box. */
@supports not (aspect-ratio: 16 / 9) {
    .hero { height: 0; padding-top: 56.25%; }
}

/* Hero pagination dots */
.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 3;
}
.hero-dots button {
    width: 7px;
    height: 7px;
    border-radius: 3.5px;
    background: rgba(201, 162, 84, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
}
.hero-dots button.is-active { background: #c6bc78; }

/* Hero arrows: gold circle-bordered */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: none; border-radius: 22px;
    border: 1px solid rgba(201, 162, 84, 0.4);
    color: #c6bc78; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}
.hero-arrow svg { width: 18px; height: 18px; stroke: #c6bc78; }
.hero-arrow:hover { background: rgba(201, 162, 84, 0.15); border-color: #c6bc78; }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* Hero bottom-left label */
.hero-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    background: rgba(20, 17, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 13px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.44px;
    line-height: 1.75;
}

/* =============================================================
   PAGE BANNER (inner pages)
   ============================================================= */
/* Inner-page banner: #282828 base + #141414 overlay that drifts opposite the
   cursor (Elementor mouse-track). Gold italic heading + italic breadcrumb. */
.page-banner {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
    min-height: 324px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 40px 0;
}
/* Background image layer that drifts opposite the cursor (over-sized so the
   movement never reveals the edges) */
.page-banner__bg {
    position: absolute; inset: -24px;
    background-position: center; background-size: cover; background-repeat: no-repeat;
    transform: translate(var(--ov-x, 0px), var(--ov-y, 0px));
    transition: transform 1s cubic-bezier(0, 0.33, 0.07, 1.03);
    will-change: transform;
    z-index: 0;
}
/* Static dark overlay on top of the image */
.page-banner::before {
    content: "";
    position: absolute; inset: 0;
    background: #141414;
    opacity: .84;
    z-index: 1;
}
.page-banner > *:not(.page-banner__bg) { position: relative; z-index: 2; }
.page-banner h1 {
    color: var(--color-primary);
    font-size: 48px; font-weight: 500; font-style: italic;
    line-height: 1; margin: 0 0 40px;
}
.breadcrumb { color: #fff; font-size: 12px; font-weight: 500; font-style: italic; margin: 0; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--color-primary); }

/* =============================================================
   DISCOVER / INTRO
   ============================================================= */
/* Discover section: image left + text right, 1140 container, 80px margins */
.intro { padding: 0; margin: 80px 0; }
.intro .container { max-width: 1140px; padding: 0; }
.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 74px;
}
.intro-media {
    padding: 0;
    position: relative;
}
/* Gold rectangle offset behind the image */
.intro-media::before { display: none; }
.intro-img-offset {
    position: absolute;
    top: 14px;
    left: -14px;
    width: 100%;
    height: 100%;
    background: #c6bc78;
}
.intro-img-card {
    position: relative;
    border: 1px solid #18160f;
    overflow: hidden;
    background: #eae1cc;
    min-height: 260px;
}
.intro-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(20, 17, 10, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 13px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.44px;
}
.intro-media img { width: 100%; aspect-ratio: auto; object-fit: cover; display: block; position: relative; z-index: 1; }
.intro-content { padding-left: 20px; }
.intro-content .section-title { text-align: left; margin-bottom: 20px; font-size: 34px; font-weight: 600; font-style: italic; color: #211d15; letter-spacing: -0.34px; }
.intro-content p { margin-bottom: 20px; font-weight: 400; color: #6f6552; font-size: 15px; line-height: 1.75; }
.intro-content .btn { margin-top: 0; border: 1px solid #18160f; background: transparent; color: #18160f; font-size: 13.5px; font-weight: 700; letter-spacing: 0.27px; padding: 17px 27px; border-radius: 0; }

/* =============================================================
   SERVICES  (dark #282828 section, 2x2 image tiles w/ overlay)
   ============================================================= */
/* Dark heading strip: 2 columns (heading left | intro right), matches live */
.services-section { background: var(--color-white); margin-bottom: 0; }
.services-head { background: #18160f; padding: 52px 300px; }
.services-head-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 30px;
    padding: 0 40px;
}
.services-head-left, .services-head-right { text-align: left; }
.services-head .section-eyebrow { margin-bottom: 10px; font-style: italic; font-weight: 700; font-size: 11.5px; letter-spacing: 0.575px; }
.services-head .section-title { color: #fbf6ea; margin-bottom: 0; font-size: 32px; font-weight: 700; letter-spacing: -0.32px; line-height: 1.75; }
.services-head .services-intro { color: #a89d84; font-weight: 400; font-size: 14.5px; line-height: 1.75; margin: 0; max-width: 400px; }

/* Tiles: full-bleed 2-col, bg image + overlay, title + desc + Read More */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.service-card {
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
    border: 1px solid #18160f;
}
.service-card::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(15, 13, 8, 0.6);
    transition: background .3s;
}
.service-card:hover::before { background: rgba(15, 13, 8, 0.72); }
.service-card > * { position: relative; z-index: 1; }
.service-card-label {
    position: absolute;
    bottom: 15px;
    left: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 400;
    color: #c6bc78;
    line-height: 1.75;
}
.service-card-center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
}
.service-card h3 {
    font-size: 28px; font-weight: 600; font-style: italic;
    color: #c6bc78; line-height: 1.75; margin: 0;
    letter-spacing: -0.28px;
}
.service-card p { color: #a89d84; font-weight: 400; font-size: 13.8px; line-height: 1.75; margin: 0; max-width: 347px; }
.service-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #c6bc78;
    text-decoration: underline;
    transition: color 0.3s;
}
.service-card-link:hover { color: #fff; }
.service-card .btn { display: none; }

/* =============================================================
   OUR SERVICES PAGE
   ============================================================= */
/* Centered intro heading (matches live H4 22.78px / 500) */
.srv-intro { padding: 50px 0; }
.srv-intro .container { max-width: 1140px; }
.srv-intro h4 {
    max-width: 740px; margin: 0 auto; text-align: center;
    font-size: 22.78px; font-weight: 500; color: #000; line-height: 1.4;
}

/* 2x2 full-bleed image tiles */
.srv-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.srv-tile {
    position: relative;
    min-height: 441px;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center;
    overflow: hidden; text-align: center;
}
.srv-tile::before {
    content: ""; position: absolute; inset: 0;
    background: #242424; opacity: .5;
    transition: background .3s, opacity .3s;
}
.srv-tile:hover::before { background: #000; opacity: .65; }
.srv-tile-inner { position: relative; z-index: 1; padding: 20px; }
.srv-tile h3 {
    font-size: 29px; font-weight: 500; font-style: italic;
    color: var(--color-white); line-height: 1; margin: 0 0 70px;
}
.srv-readmore {
    font-size: 18px; font-weight: 200; color: var(--color-primary);
    line-height: 1; transition: color .3s;
}
.srv-readmore:hover { color: var(--color-white); }

/* =============================================================
   CUSTOM HOMES PAGE (and service detail pages)
   ============================================================= */
/* Intro paragraph */
.ch-intro { padding: 40px 0 0; }
.ch-intro .container { max-width: 1140px; }
.ch-intro p { font-size: 16px; font-weight: 200; color: var(--color-dark); line-height: 24px; margin: 0; }

/* Image + 2x2 feature grid */
.ch-features { padding: 60px 0; background: #fff; }
.ch-features .container { max-width: 1140px; }
.ch-features-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,.045);
    padding: 50px 50px 50px 40px;
}
.ch-features-media { text-align: center; align-self: center; }
.ch-features-media img { width: 100%; max-width: 280px; height: auto; border-radius: 6px; display: block; }
.ch-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 44px; padding-left: 40px; }
.ch-feat { padding: 0; background: none; box-shadow: none; border-radius: 0; }
.ch-feat-icon {
    width: 36px; height: 36px; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(217, 206, 131, .15);
    border-radius: 6px;
}
.ch-feat-icon svg { width: 18px; height: 18px; stroke: var(--color-primary-dark, #c9bd6a); fill: none; stroke-width: 1.6; }
.ch-feat h5 { font-size: 18px; font-weight: 500; color: var(--color-primary); line-height: 1.3; margin: 0 0 8px; }
.ch-feat p { font-size: 14px; font-weight: 400; color: var(--color-text); line-height: 1.6; margin: 0; }

/* Why choose a custom home (image left / text right) */
.ch-why { padding: 80px 0 32px; }
.ch-why .container { max-width: 1140px; }
.ch-why-grid { display: grid; grid-template-columns: 47% 53%; gap: 40px; align-items: center; }
.ch-why-media img { width: 100%; height: auto; border-radius: 4px; display: block; }
.ch-why-text h3 { font-size: 28px; font-weight: 500; color: #000; line-height: 1.2; margin: 0 0 20px; }
.ch-why-text p { font-size: 16px; font-weight: 400; color: var(--color-text); line-height: 24px; margin: 0; }

/* CTA with background image (matches live: content centered, 50% dark overlay) */
.ch-cta { position: relative; padding: 67px 0; background-size: cover; background-position: center; text-align: center; }
/* 50% black overlay on background image */
.ch-cta::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.ch-cta .container { max-width: 1000px; min-height: 315px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 1; }
.ch-cta h3 { font-size: 28px; font-weight: 500; color: #fff; line-height: 1.3; margin: 0 auto 10px; max-width: 760px; }
.ch-cta p { font-size: 16px; font-weight: 400; color: #fff; line-height: 24px; margin: 0 auto 30px; max-width: 720px; }
.ch-cta-btn {
    display: inline-block; background: var(--color-primary); color: #000;
    font-size: 18px; font-weight: 200; padding: 20px 40px; border-radius: 5px;
    transition: background .3s, color .3s;
    position: relative; z-index: 1;
}
.ch-cta-btn:hover { background: #fff; color: #000; }
/* Light-text CTA variant (dark background image) — granny flats heading is white */
.ch-cta--light-text h3 { color: #fff; }

/* ----- Granny Flats: cost article ----- */
.gf-article { padding: 40px 0 32px; }
.gf-article .container { max-width: 1140px; }
.gf-article p { font-size: 16px; font-weight: 400; color: var(--color-text); line-height: 24px; margin: 0 0 24px; }
.gf-article p:last-child { margin-bottom: 0; }

/* ----- Granny Flats: image gallery (3 x 2) ----- */
.gf-gallery-sec { padding: 20px 0 60px; }
.gf-gallery-sec .container { max-width: 1140px; }
.gf-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.gf-gallery-item { overflow: hidden; }
.gf-gallery-item img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 4; object-fit: cover; }

/* =============================================================
   SINGLE / DOUBLE STOREY PROJECTS PAGE
   ============================================================= */
/* Dark hero with darkened house background image
   (black overlay @ .32 opacity == brightness(0.68) of the live site) */
.ss-hero { position: relative; background-color: #040101; background-size: cover; background-position: center top; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.ss-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(0, 0, 0, 0.32); }
.ss-hero .container { max-width: 1140px; position: relative; z-index: 1; }
.ss-hero h2 { font-size: 40px; font-weight: 500; color: #fff; line-height: 1.2; margin: 0 0 24px; }
.ss-hero p { font-size: 16px; font-weight: 400; color: #fff; line-height: 24px; margin: 0; max-width: 545px; }

/* Filter bar */
.ss-filter { background: #000; padding: 24px 30px; }
.ss-filter .container { max-width: 1140px; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 20px 55px; }
.ss-filter-group { text-align: center; }
.ss-filter-group h4 { font-size: 22px; font-weight: 600; color: #f5f5f5; margin: 0 0 12px; }
.ss-opts { display: flex; justify-content: center; gap: 18px; }
.ss-opt {
    background: none; border: none; cursor: pointer;
    font-size: 16px; font-weight: 400; color: #cfcfcf; padding: 2px 0;
    font-family: inherit; transition: color .3s; position: relative;
}
.ss-opt:hover { color: #fff; }
.ss-opt.is-active { color: var(--color-primary); font-weight: 500; }

/* Project cards */
.ss-projects { padding: 50px 0 70px; }
.ss-projects .container { max-width: 1140px; }
.ss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ss-card { border: 1px solid #e2e2e2; border-radius: 20px; overflow: hidden; background: #fff; }
.ss-card-media { position: relative; }
.ss-card-media a { display: block; position: relative; }
.ss-card-media img { width: 100%; height: 179px; object-fit: cover; display: block; }
.ss-card-body { padding: 22px 20px 26px; }
.ss-card-title { font-size: 25px; font-weight: 500; color: #595454; line-height: 1.2; margin: 0 0 16px; }
.ss-specs { display: flex; align-items: center; gap: 26px; margin-bottom: 20px; }
.ss-spec { display: inline-flex; align-items: center; gap: 8px; color: #595454; }
.ss-spec svg { color: #d0c36e; flex-shrink: 0; }
.ss-spec em { font-style: normal; font-size: 24px; font-weight: 400; color: #595454; }
.ss-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ss-btn {
    display: inline-block; width: fit-content;
    background: #d0c36e; color: #595454;
    font-size: 16px; font-weight: 500; padding: 10px 22px; border-radius: 5px;
    transition: background .3s, color .3s;
}
.ss-btn:hover { background: #595454; color: #fff; }
.ss-btn-outline {
    display: inline-block; width: fit-content;
    background: transparent; color: #595454;
    border: 1px solid #595454;
    font-size: 16px; font-weight: 500; padding: 10px 22px; border-radius: 5px;
    transition: background .3s, color .3s, border-color .3s;
}
.ss-btn-outline:hover { background: #595454; color: #fff; border-color: #595454; }

/* Label on design card image */
.ss-card-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(40, 40, 40, 0.80);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* =============================================================
   PROJECT VIDEOS & TOURS (2-col image + title grid)
   ============================================================= */
.pt-section { padding: 40px 0 70px; }
.pt-section .container { max-width: 1140px; }
.pt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
.pt-card { text-align: center; }
.pt-media { display: block; overflow: hidden; }
.pt-media img { width: 100%; aspect-ratio: 550 / 309; object-fit: cover; display: block; transition: transform .5s ease; }
.pt-media:hover img { transform: scale(1.04); }
.pt-card h3 { font-size: 24px; font-weight: 500; color: #000; text-align: center; line-height: 1.3; margin: 22px 0 0; }
.pt-card h3 a { color: #000; transition: color var(--transition); }
.pt-card h3 a:hover { color: var(--color-primary); }

/* =============================================================
   PROJECT DETAIL PAGE (cover + info + gallery)
   ============================================================= */
.pj-top { padding: 40px 0 20px; }
.pj-top .container { max-width: 1140px; }
.pj-top-grid { display: grid; grid-template-columns: 550px 1fr; gap: 50px; align-items: center; }
.pj-cover img { width: 100%; aspect-ratio: 550 / 309; object-fit: cover; display: block; }
.pj-title { font-size: 32px; font-weight: 700; color: #000; line-height: 1.2; margin: 0 0 30px; }
.pj-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; }
.pj-box { display: flex; gap: 12px; align-items: flex-start; }
.pj-ic {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
}
.pj-ic svg { width: 20px; height: 20px; }
.pj-box-text h3 { font-size: 11px; font-weight: 600; color: #7a7a7a; line-height: 1.2; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.pj-box-text p { font-size: 16px; font-weight: 600; color: var(--color-dark); line-height: 1.3; margin: 4px 0 0; }

.pj-gallery-sec { padding: 30px 0 70px; }
.pj-gallery-sec .container { max-width: 1140px; }
.pj-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pj-gallery-item { display: block; overflow: hidden; cursor: pointer; }
.pj-gallery-item img { width: 100%; aspect-ratio: 273 / 153; object-fit: cover; display: block; transition: transform .5s ease; }
.pj-gallery-item:hover img { transform: scale(1.06); }

/* Optional description / features (rendered only when the project has them) */
.pj-detail { padding: 10px 0 20px; }
.pj-detail .container { max-width: 1140px; }
.pj-lead { font-size: 18px; font-weight: 400; color: var(--color-dark); line-height: 1.6; margin: 0 0 18px; }
.pj-desc { font-size: 16px; font-weight: 300; color: var(--color-text); line-height: 1.7; margin: 0 0 18px; }
.pj-features { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 30px; margin: 0; padding: 0; }
.pj-features li { position: relative; padding-left: 26px; font-size: 16px; font-weight: 300; color: var(--color-dark); line-height: 1.6; }
.pj-features li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); }
@media (max-width: 767px) { .pj-features { grid-template-columns: 1fr; } }

/* =============================================================
   WHY CHOOSE  (white bg, gold italic heading, feature blocks)
   ============================================================= */
.why-choose { background: var(--color-white); padding: 80px 0; margin-bottom: 80px; }
.why-choose .container { max-width: 1320px; padding: 0 40px; }
.why-choose .section-title { margin-bottom: 56px; font-size: 34px; font-weight: 600; font-style: italic; color: #18160f; letter-spacing: -0.34px; }
.features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 325px 325px;
    border: 1px solid #ddd0ac;
    padding: 1px;
}
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fffefb;
}
.feature-card:nth-child(1), .feature-card:nth-child(4) { background: #18160f; }
.feature-card:nth-child(1) h3, .feature-card:nth-child(4) h3 { color: #c6bc78; }
.feature-card:nth-child(1) p, .feature-card:nth-child(4) p { color: #a89d84; }
.feature-card:nth-child(1) .feature-icon, .feature-card:nth-child(4) .feature-icon { border-color: #c6bc78; color: #c6bc78; }
.feature-card:nth-child(1) .feature-icon svg, .feature-card:nth-child(4) .feature-icon svg { stroke: #c6bc78; }
.feature-card.fc-dark, .feature-card.fc-dark2, .feature-card.fc-light { }
.feature-card::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}
.feature-card:hover::before { opacity: 0.15; }
.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
    width: 52px; height: 52px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #c6bc78;
    border-radius: 0;
    color: #8a6c2a;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 19px; font-weight: 700; font-style: normal; margin: 10px 0 14px; color: #8a6c2a; line-height: 1.75; text-align: center; letter-spacing: -0.19px; }
.feature-card p { font-size: 14px; font-weight: 400; color: #6f6552; margin: 0; text-align: center; line-height: 1.75; max-width: 352px; }

/* =============================================================
   CTA / TESTIMONIAL / COMPANIES
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-content .section-title { text-align: left; }

.companies { text-align: center; padding: 0; margin-bottom: 50px; }
.company-card {
    max-width: 520px; margin: 0 auto;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: #1a1a1a; color: #cfcfcf; padding-top: 50px; }
/* Ensure no gap between main content and footer */
main { margin-bottom: 0; padding-bottom: 0; }
main + .site-footer { margin-top: 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 30.4% 19.6% 25% 25%;
    gap: 0;
    padding-bottom: 20px;
}
.footer-logo-link img { width: 174px; margin-bottom: 20px; }
.footer-desc {
    font-size: 12px;
    font-weight: 300;
    color: #7a7a6a;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 220px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 84, 0.35);
    border-radius: 50%;
    color: #a89d84;
    transition: background 0.3s, color 0.3s;
}
.footer-socials a svg { display: block; fill: currentColor; }
.footer-socials a:hover { background: rgba(201, 162, 84, 0.15); color: #ddd0ac; }
.footer-contact-label {
    font-size: 12px;
    font-weight: 300;
    color: #7a7a6a;
    margin-right: 0;
    display: block;
    margin-bottom: 2px;
}
.footer-title {
    color: var(--color-primary); font-size: 11px; font-weight: 500; line-height: 1;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
    font-style: italic;
}
.footer-links li, .footer-contact li { margin: 0; }
.footer-links a, .footer-contact a {
    display: block; padding: 5px 0;
    color: #9a9a9a; font-size: 13px; font-weight: 300; line-height: 1.4;
    transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--color-primary); }
.footer-contact li { margin-bottom: 10px; }

/* Social icons: 26px gold glyphs, no background (matches live) */
.social-list { display: flex; gap: 12px; }
.social-list a {
    width: 26px; height: 26px;
    background: none; color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    transition: color var(--transition), transform var(--transition);
}
.social-list a svg { width: 22px; height: 22px; }
.social-list a:hover { color: #fff; transform: translateY(-2px); }

.footer-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.footer-gallery-item { overflow: hidden; border-radius: 4px; }
.footer-gallery-item img { aspect-ratio: 1; object-fit: cover; transition: transform var(--transition); }
.footer-gallery-item:hover img { transform: scale(1.12); }

.footer-bar { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bar-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px; font-size: 13px; color: #9a9a9a;
}
.footer-bar a { color: var(--color-primary); }

/* Back to top */
.back-to-top {
    position: fixed; right: 24px; bottom: 24px; z-index: 900;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--color-primary); color: #2b2b2b;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-secondary); color: #fff; }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
    transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .55);
}
.whatsapp-float svg { display: block; }

/* Move back-to-top above WhatsApp */
.back-to-top { bottom: 90px; }

/* =============================================================
   ABOUT / NIVI HOMES STORY PAGE
   ============================================================= */
/* Alternating text + image rows (1140 container) */
.story-row { margin-top: 80px; }
.story-row .container { max-width: 1140px; }
.story-grid { display: grid; align-items: center; gap: 0; }
.story-grid.img-left  { grid-template-columns: 37.6% 62.4%; }
.story-grid.img-right { grid-template-columns: 62.4% 37.6%; }
.story-media { padding: 10px; }
.story-media img { width: 100%; height: auto; display: block; transition: filter 1.2s; }
/* Offset gold decorative block behind the images (exact live box-shadows) */
.story-grid.img-left  .story-media img { box-shadow: -15px 15px 0 0 var(--color-primary); }
.story-grid.img-right .story-media img { box-shadow: 20px 19px 0 0 var(--color-primary); }
/* About Us image: desaturates to grayscale on hover over 1.2s (exact live effect) */
.about-row .story-media:hover img { filter: brightness(100%) contrast(100%) saturate(0%); }
.story-text { }
.story-grid.img-left .story-text { padding-left: 10px; }
.story-grid.img-right .story-text { padding-right: 10px; }
.story-text h2 {
    font-size: 30px; font-weight: 700; font-style: italic;
    color: var(--color-primary); line-height: 1; margin-bottom: 20px;
}
.story-text p { font-size: 16px; font-weight: 300; color: var(--color-dark); line-height: 24px; margin: 0; }
.story-row.about-row .story-text p { font-size: 14px; line-height: 21px; }
.story-text strong, .story-text b { font-weight: 600; }

/* Our Values (white section, gold heading, grey rounded cards) */
.values-section { padding: 80px 0; margin-top: 80px; }
.values-section .container { max-width: 1140px; }
.values-head { text-align: center; }
.values-head h2 { font-size: 28.83px; font-weight: 500; color: var(--color-primary); line-height: 1; margin-bottom: 20px; }
.values-intro { text-align: center; max-width: 1120px; margin: 0 auto 48px; font-weight: 300; color: var(--color-dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.value-card {
    background: var(--color-secondary);
    border-radius: 16px;
    padding: 44px 38px 46px;
    text-align: left;
    height: 100%;
}
.value-card .value-icon {
    width: 44px; height: 44px; margin-bottom: 24px; color: var(--color-primary);
}
.value-card .value-icon svg { width: 44px; height: 44px; }
.value-card h3 { font-size: 23px; font-weight: 600; font-style: normal; color: var(--color-white); line-height: 1.25; margin-bottom: 14px; text-align: left; }
.value-card p { font-size: 15.5px; font-weight: 400; color: var(--color-primary); line-height: 1.65; margin: 0; }

/* =============================================================
   WHY BUILD WITH US PAGE
   ============================================================= */
.wb-row { padding: 80px 0 32px; }
.wb-row .container { max-width: 1140px; padding: 0; }
.wb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.wb-media { padding: 16px; }
.wb-media img { width: 100%; height: auto; display: block; }
.wb-text { padding-right: 16px; }
.wb-text p { font-size: 16px; font-weight: 400; color: #000; line-height: 24px; margin: 0; max-width: 458px; margin-left: auto; }

/* What Sets Us Apart */
.wb-apart { padding: 0 0 90px; }
.wb-apart .container { max-width: 1140px; padding: 0; }
.wb-apart-top { display: grid; grid-template-columns: 44% 56%; gap: 0; align-items: center; margin-bottom: 10px; }
.wb-apart-media { padding: 16px; text-align: left; }
.wb-apart-media img { width: 393px; max-width: 100%; height: auto; display: block; }
.wb-apart-content h2 { font-size: 28.83px; font-weight: 500; color: var(--color-primary); line-height: 1; margin-bottom: 20px; }
.wb-apart-content p { font-size: 16px; font-weight: 400; color: #000; line-height: 24px; margin: 0; }
/* Card wrapper for What Sets Us Apart content */
.wb-apart-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
}
.wb-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.wb-feature { text-align: center; padding: 40px 28px 0; }
.wb-feature img { width: 68px; height: 68px; margin: 0 auto 16px; display: block; }
.wb-feature h3 { font-size: 18px; font-weight: 500; color: #000; text-align: center; line-height: 1.2; margin: 0 0 10px; }
.wb-feature p { font-size: 14px; font-weight: 300; color: var(--color-dark); line-height: 21px; text-align: center; margin: 0; }

/* =============================================================
   SERVICES DETAIL
   ============================================================= */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.detail-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.detail-content h2 { font-size: 32px; margin-bottom: 18px; }
.detail-content p { margin-bottom: 16px; }
.check-list li {
    position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--color-secondary);
}
.check-list li::before {
    content: ""; position: absolute; left: 0; top: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2b2b' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* =============================================================
   PROJECTS
   ============================================================= */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); aspect-ratio: 4/3;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0) 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; color: #fff;
    opacity: 1; transition: background var(--transition);
}
.project-overlay h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.project-overlay span { font-size: 13px; color: var(--color-primary); }

/* =============================================================
   DESIGNS
   ============================================================= */
.designs-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.design-tab {
    padding: 10px 26px; border-radius: 30px; font-weight: 500; font-size: 14px;
    background: var(--color-bg-soft); color: var(--color-secondary);
    border: 1px solid var(--color-border); transition: all var(--transition);
}
.design-tab.active, .design-tab:hover { background: var(--color-primary); color: #2b2b2b; border-color: var(--color-primary); }

.designs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.design-card {
    background: var(--color-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.design-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.design-card-media { aspect-ratio: 16/10; overflow: hidden; background: #eee; }
.design-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.design-card:hover .design-card-media img { transform: scale(1.06); }
.design-card-body { padding: 22px; }
.design-card-body h3 { font-size: 22px; margin-bottom: 14px; }
.design-specs { display: flex; gap: 18px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); }
.design-spec { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-secondary); font-weight: 500; }
.design-spec svg { width: 20px; height: 20px; color: var(--color-primary-dark); }
.design-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.design-actions .btn { padding: 10px 20px; font-size: 13px; }

/* =============================================================
   OUR INCLUSIONS PAGE (Redesigned)
   Figma: sidebar + main content layout, Montserrat-inspired
   ============================================================= */

/* --- Page Layout --- */
.inc-page { padding: 80px 0 0; }
.inc-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 90px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

/* --- Sidebar --- */
.inc-sidebar {
    position: sticky;
    top: 20px;
    background: #fffaf0;
    border-left: 1px solid #ddd0ac;
    box-shadow: 0 4px 2px rgba(201, 162, 84, 0.1);
    padding: 0 0 12px 1px;
}
.inc-nav { display: flex; flex-direction: column; gap: 2px; }
.inc-nav-link {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 12px 9px 19px;
    font-weight: 600;
    border-left: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    text-decoration: none;
}
.inc-nav-link:hover,
.inc-nav-link.active { border-left-color: #a9812e; }
.inc-nav-link:hover .inc-nav-label,
.inc-nav-link.active .inc-nav-label { color: #211d15; }
.inc-nav-num { font-size: 11px; color: #8a6c2a; line-height: 1.65; }
.inc-nav-label { font-size: 13px; color: #6f6552; line-height: 1.65; }
.inc-nav-note {
    margin-top: 20px;
    padding: 18px 18px 0;
}
.inc-nav-note p {
    font-size: 12px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.6;
    margin: 0;
}

/* --- Main Content --- */
.inc-main { max-width: 1020px; }

/* --- Section Shared --- */
.inc-section {
    padding-bottom: 49px;
    margin-bottom: 48px;
    border-bottom: 1px solid #ddd0ac;
}
.inc-section:last-child { border-bottom: none; margin-bottom: 0; }

/* --- Section Header --- */
.inc-section-header { margin-bottom: 34px; }

/* --- Label (numbered eyebrow) --- */
.inc-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
}
.inc-label-line {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: #a9812e;
}
.inc-label-text {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.07px;
    color: #8a6c2a;
    line-height: 1.65;
}
.inc-label-dark .inc-label-line { background: #c6bc78; }
.inc-label-dark .inc-label-text { color: #c6bc78; }

/* --- Headings --- */
.inc-title {
    font-size: 32px;
    font-weight: 700;
    color: #211d15;
    line-height: 1.65;
    letter-spacing: -0.32px;
    margin: 0 0 11px;
}
.inc-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.65;
    max-width: 556px;
    margin: 0;
}
.inc-subtitle em {
    font-style: italic;
    color: #8a6c2a;
}
.inc-h3 {
    font-size: 16px;
    font-weight: 600;
    color: #211d15;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd0ac;
}

/* --- List Items --- */
.inc-list { width: 100%; }
.inc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 9px 0 10px 0;
    border-bottom: 1px dashed #ddd0ac;
    font-size: 14.5px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.65;
}
.inc-list-item:last-child { border-bottom: none; }
.inc-dash {
    display: inline-block;
    width: 11px;
    min-width: 11px;
    height: 1.5px;
    background: #a9812e;
    margin-top: 11px;
    flex-shrink: 0;
}
.inc-list-sm .inc-list-item { font-size: 14px; padding: 6.5px 0; }

/* --- Two Column Split --- */
.inc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 34px;
}
.inc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* --- Image Cards --- */
.inc-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 34px;
}
.inc-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd0ac;
}
.inc-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.inc-image-card-tall { height: 600px; }
.inc-image-card-tall img { height: 100%; }
.inc-image-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 7.5px 13px;
    font-size: 11.5px;
    font-weight: 600;
    color: #211d15;
    border-radius: 6px;
    border: 1px solid rgba(221, 208, 172, 0.5);
    line-height: 1.65;
}

/* --- Section 07: Full Spec Summary (dark) --- */
.inc-spec-section {
    background: #18160f;
    padding: 96px 0;
}
.inc-spec-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
.inc-spec-header { margin-bottom: 56px; max-width: 640px; }
.inc-spec-title {
    font-size: 38px;
    font-weight: 700;
    color: #fbf6ea;
    line-height: 1.65;
    letter-spacing: -0.38px;
    margin: 0 0 11px;
    white-space: nowrap;
}
.inc-spec-accent { color: #c6bc78; }
.inc-spec-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.65;
    margin: 0;
}

/* --- Spec Grid (4 columns) --- */
.inc-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 162, 84, 0.28);
}
.inc-spec-grid::after {
    content: "";
    background: #18160f;
}
.inc-spec-card {
    background: #18160f;
    padding: 32px 26px 30px;
    border-top: 2px solid transparent;
}
.inc-spec-card-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.84px;
    color: #c6bc78;
    line-height: 1.65;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(201, 162, 84, 0.3);
    margin: 0 0 16px;
}
.inc-spec-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.inc-spec-card-list li {
    font-size: 12.8px;
    font-weight: 400;
    color: #efe8d8;
    line-height: 1.55;
    padding: 6px 0 6px 15px;
    position: relative;
}
.inc-spec-dash {
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 700;
    color: #c6bc78;
    font-size: 12.8px;
    line-height: 1.55;
}

/* --- Section 08: Disclaimer --- */
.inc-disclaimer-section {
    padding: 40px 0 80px;
    max-width: 1320px;
    margin: 0 auto;
}
.inc-disclaimer-container {
    padding: 0 40px;
}
.inc-disclaimer-body {
    font-size: 13px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.7;
    margin: 13px 0 0;
    max-width: 1168px;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section .container { max-width: 1140px; }
.contact-grid { display: grid; grid-template-columns: 570px 1fr; gap: 50px; align-items: start; }
.contact-form-wrap { background: none; padding: 0; border-radius: 0; box-shadow: none; }

/* Form fields: underline-style inputs, bordered textarea (matches live) */
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 16px; font-weight: 400; color: #888; margin-bottom: 4px; }
.form-group input {
    width: 100%; padding: 10px 0 9px; font-family: inherit; font-size: 16px;
    border: none; border-bottom: 1px solid #777771; border-radius: 0;
    background: transparent; color: #000; transition: border-color var(--transition);
}
.form-group textarea {
    width: 100%; padding: 12px 10px; font-family: inherit; font-size: 16px;
    border: 1px solid #777771; border-radius: 2px; background: transparent; color: #000;
    resize: vertical; min-height: 140px; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); }
.char-count { text-align: left; font-size: 13px; color: #888; margin-top: 6px; }
.contact-form-wrap .btn-send {
    display: inline-block; background: #097bAA; color: #fff; border: none; cursor: pointer;
    font-family: inherit; font-size: 15px; font-weight: 400; padding: 10px 22px;
    border-radius: 2px; margin-top: 6px; transition: background var(--transition);
}
.contact-form-wrap .btn-send:hover { background: #076a92; }
.form-note { margin-top: 14px; font-size: 14px; }
.form-note.success { color: #2e7d32; }
.form-note.error { color: #e53935; }
.form-error { display: block; margin-top: 5px; font-size: 13px; color: #e53935; }

/* Info column (Office Hours) — plain text on white, gold icons */
.contact-info-card { background: none; color: var(--color-dark); padding: 0; border-radius: 0; }
.contact-info-card h3 { color: var(--color-dark); font-size: 22px; font-weight: 500; margin-bottom: 26px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .ci-icon {
    flex-shrink: 0; width: 22px; height: 22px; color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-item .ci-icon svg { width: 20px; height: 20px; }
.contact-info-item a, .contact-info-item p { color: var(--color-text); font-size: 16px; line-height: 1.5; }
.contact-info-item a:hover { color: var(--color-primary); }
.contact-info-card .social-list { display: flex; gap: 10px; margin-top: 26px; }
.contact-info-card .social-list a { width: 26px; height: 26px; background: none; color: var(--color-primary); display: flex; align-items: center; justify-content: center; }

/* Map — contained, matches live (1140 x 334) */
.map-wrap { padding: 0 20px 60px; }
.map-wrap .container { max-width: 1140px; padding: 0; }
.map-wrap iframe { width: 100%; height: 334px; border: 0; display: block; }

/* =============================================================
   DESIGN DETAIL (single / double storey design pages)
   — Styles moved to end of file for Figma-match redesign.
   Legacy rules kept minimal here for backwards compatibility.
   ============================================================= */
.dd-main { padding: 50px 0 30px; }
.dd-main .container { max-width: 1140px; }
.dd-pdf { margin-top: 4px; }

/* =============================================================
   TYPOGRAPHY + CONTRAST NORMALIZATION
   Headings 32px · sub-headings 24px · body 16px.
   All headings/subheadings on white backgrounds use #000 (black).
   Placed last so it overrides the per-section rules above.
   ============================================================= */

/* --- Main headings: keep individual sizes, ensure black on white bg --- */
.page-banner h1 { font-size: 48px; line-height: 1.15; }
.section-title,
.story-text h2,
.pj-title,
.values-head h2,
.wb-apart-content h2,
.detail-content h2,
.dd-title { font-size: 32px; line-height: 1.15; }

/* --- Sub-headings: 24px --- */
.service-card h3,
.srv-tile h3,
.srv-intro h4,
.ch-why-text h3,
.ch-cta h3,
.feature-card h3,
.ss-card-title,
.pt-card h3,
.wb-feature h3,
.dd-dim-title,
.detail-content h3 { font-size: 24px; line-height: 1.25; }

/* --- Body copy: 16px --- */
.section-subtitle,
.dd-desc, .dd-range-text,
.story-text p, .intro-content p,
.ch-intro p, .ch-why-text p, .ch-cta p,
.wb-text p, .wb-apart-content p, .wb-feature p,
.detail-content p { font-size: 16px; }

/* --- All headings on WHITE backgrounds -> BLACK (#000) for contrast --- */
.section-title,
.section-title.gold,
.story-text h2,
.pj-title,
.values-head h2,
.wb-apart-content h2,
.detail-content h2,
.dd-title,
.ch-why-text h3,
.pt-card h3,
.pt-card h3 a,
.wb-feature h3,
.ss-card-title,
.contact-info-card h3,
.srv-intro h4 { color: #000000; }

/* Preserve white/gold headings on dark backgrounds (must override above) */
.section-title.white { color: #ffffff; }
.services-head .section-title { color: #ffffff; }
.feature-card.fc-dark h3,
.feature-card.fc-dark2 h3 { color: #c6bc78; }

/* =============================================================
   LIGHTBOX GALLERY
   ============================================================= */
.lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lb.lb-active {
    opacity: 1;
    visibility: visible;
}
.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}
.lb-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}
.lb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.15s ease;
    user-select: none;
    -webkit-user-drag: none;
}

/* Toolbar */
.lb-toolbar {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    gap: 6px;
}
.lb-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}
.lb-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Navigation arrows */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}
.lb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* Counter */
.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* Toast notification */
.lb-toast {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.lb-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .lb-content { padding: 50px 16px; }
    .lb-nav { width: 38px; height: 38px; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .lb-toolbar { top: 10px; right: 10px; gap: 4px; }
    .lb-btn { width: 36px; height: 36px; }
}

/* =============================================================
   ABOUT US PAGE (Redesigned)
   ============================================================= */
.abt-section { padding: 80px 0; }
.abt-container {
    max-width: 1362px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Image + Text Grid --- */
.abt-grid {
    display: grid;
    grid-template-columns: 586px 1fr;
    gap: 80px;
    align-items: center;
}
.abt-grid-reverse {
    grid-template-columns: 1fr 586px;
}
.abt-grid-reverse .abt-text { order: -1; }

/* --- Image Card with Gold Offset --- */
.abt-media { position: relative; }
.abt-img-offset {
    position: absolute;
    top: 14px;
    left: -14px;
    width: 100%;
    height: 100%;
    background: #c6bc78;
    border-radius: 4px;
}
.abt-img-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 280px;
}
.abt-img-card img {
    width: 100%;
    height: 488px;
    object-fit: cover;
    display: block;
}
.abt-img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(20, 17, 10, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 13px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.44px;
    line-height: 1.75;
}

/* --- Text Content --- */
.abt-text { max-width: 696px; }
.abt-heading {
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    color: #8a6c2a;
    letter-spacing: -0.3px;
    line-height: 1.75;
    margin: 0 0 13px;
}
.abt-text p {
    font-size: 15px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.75;
    margin: 0 0 13px;
}
.abt-text p:last-child { margin-bottom: 0; }
.abt-text p strong { font-weight: 700; }

/* --- Our Values Section (dark themed) --- */
.abt-values-section {
    background: #18160f;
    padding: 110px 0 100px;
}
.abt-values-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
.abt-values-header {
    max-width: 640px;
    margin-bottom: 60px;
}
.abt-values-title {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    color: #fbf6ea;
    letter-spacing: -0.36px;
    line-height: 1.75;
    margin: 6px 0 16px;
}
.abt-values-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.75;
    margin: 0;
}

/* --- Value Rows (numbered timeline) --- */
.abt-values-list {
    border-top: 1px solid rgba(221, 208, 172, 0.25);
}
.abt-value-row {
    display: grid;
    grid-template-columns: 80px 1px 1fr;
    gap: 40px;
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid rgba(221, 208, 172, 0.25);
}
.abt-value-num {
    font-size: 42px;
    font-weight: 700;
    color: #8a6c2a;
    line-height: 1;
    letter-spacing: -1px;
}
.abt-value-divider {
    width: 1px;
    height: 100%;
    min-height: 60px;
    background: rgba(221, 208, 172, 0.3);
}
.abt-value-content { padding-top: 4px; }
.abt-value-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fbf6ea;
    margin: 0 0 10px;
    line-height: 1.4;
}
.abt-value-content p {
    font-size: 13.6px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.65;
    margin: 0;
    max-width: 580px;
}

/* =============================================================
   WHY BUILD WITH US PAGE (Redesigned)
   ============================================================= */
.wb-section { padding: 80px 0; }
.wb-container {
    max-width: 1362px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Intro Grid --- */
.wb-intro-grid {
    display: grid;
    grid-template-columns: 558px 1fr;
    gap: 64px;
    align-items: center;
}
.wb-intro-media { position: relative; }
.wb-intro-text p {
    font-size: 15px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.75;
    margin: 0;
}

/* --- What Sets Us Apart --- */
.wb-apart-section { padding: 0 0 100px; }
.wb-apart-card {
    background: #fffefb;
    border: 1px solid #ddd0ac;
    border-radius: 20px;
    box-shadow: 0 4px 2px rgba(198, 188, 120, 0.2);
    padding: 57px 57px 9px;
}

/* Top grid: image left, heading right */
.wb-apart-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.wb-apart-img {
    position: relative;
    border: 1px solid #ddd0ac;
    border-top: 2px solid #c6bc78;
    overflow: hidden;
    background: #fbf8f1;
    min-height: 300px;
}
.wb-apart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}
.wb-apart-corner-tl {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-left: 1px solid #c6bc78;
    border-top: 1px solid #c6bc78;
}
.wb-apart-corner-br {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-right: 1px solid #c6bc78;
    border-bottom: 1px solid #c6bc78;
}
.wb-apart-img-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(20, 17, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 13px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.44px;
    line-height: 1.7;
}
.wb-apart-content { max-width: 615px; }
.wb-apart-title {
    font-size: 36px;
    font-weight: 700;
    color: #211d15;
    letter-spacing: -0.36px;
    line-height: 1.7;
    margin: 6px 0 13px;
}
.wb-apart-desc {
    font-size: 15.5px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.7;
    margin: 0;
}

/* Divider between top and features */
.wb-apart-divider {
    border-top: 1px solid #ddd0ac;
    margin-top: 56px;
}

/* --- Feature Cards (4 columns with vertical dividers) --- */
.wb-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.wb-feat-card {
    padding: 40px 28px 48px;
    border-right: 1px solid #ddd0ac;
}
.wb-feat-card:last-child { border-right: none; }
.wb-feat-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a9812e;
    border-radius: 23px;
    margin-bottom: 11px;
}
.wb-feat-icon img { width: 20px; height: 20px; object-fit: contain; }
.wb-feat-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #211d15;
    letter-spacing: -0.165px;
    margin: 9px 0 11px;
    line-height: 1.3;
}
.wb-feat-desc {
    font-size: 13.6px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.65;
    margin: 0;
}

/* =============================================================
   RESPONSIVE: About + Why Build
   ============================================================= */
@media (max-width: 1024px) {
    .abt-grid,
    .abt-grid-reverse,
    .wb-intro-grid,
    .wb-apart-top { grid-template-columns: 1fr; gap: 40px; }
    .abt-grid-reverse .abt-text { order: 0; }
    .abt-img-card img { height: 380px; }
    .wb-features-grid { grid-template-columns: repeat(2, 1fr); }
    .wb-feat-card:nth-child(2) { border-right: none; }
    .wb-apart-card { padding: 40px 30px 9px; }
}
@media (max-width: 767px) {
    .abt-section, .wb-section { padding: 50px 0; }
    .abt-container, .wb-container { padding: 0 20px; }
    .abt-heading { font-size: 26px; }
    .abt-values-title, .wb-apart-title { font-size: 28px; }
    .abt-img-card img { height: 300px; }
    .wb-features-grid { grid-template-columns: 1fr; }
    .wb-feat-card { border-right: none; border-bottom: 1px solid #ddd0ac; }
    .wb-feat-card:last-child { border-bottom: none; }
    .abt-img-offset { left: -8px; top: 8px; }
    .wb-apart-card { padding: 30px 20px 9px; border-radius: 12px; }
    .wb-apart-img { min-height: 220px; }
    .wb-apart-img img { min-height: 220px; }
}

/* =============================================================
   SERVICE DETAIL PAGES (Custom Homes, Duplex, KDR, Granny Flats)
   Shared design language matching Figma
   ============================================================= */

/* --- Container --- */
.svc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Intro paragraph --- */
.svc-intro { padding: 60px 0 0; }
.svc-intro p {
    max-width: 826px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.75;
    text-align: center;
}

/* --- Bordered Card (features section wrapper) --- */
.svc-card {
    background: #fffefb;
    border: 1px solid #ddd0ac;
    position: relative;
    padding: 56px 40px 56px 510px;
    min-height: 500px;
}

/* Card image (absolutely positioned left side) */
.svc-card-media {
    position: absolute;
    left: 36px;
    top: 86px;
    width: 425px;
    height: 325px;
}
.svc-card-img-bg {
    position: absolute;
    top: 17px;
    left: -17px;
    width: 100%;
    height: 100%;
    background: #c6bc78;
}
.svc-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1.25px solid #18160f;
    overflow: hidden;
    background: #eae1cc;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-card-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(20, 17, 10, 0.62);
    border: 1.25px solid rgba(255, 255, 255, 0.25);
    padding: 9px 16px 10px;
    font-size: 13.75px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.55px;
    line-height: 1.75;
}

/* Card features (2x2 grid, right side) */
.svc-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 44px;
}
.svc-feat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c6bc78;
    margin-bottom: 9px;
}
.svc-feat-item h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: #8a6c2a;
    letter-spacing: -0.165px;
    margin: 0 0 9px;
    line-height: 1.75;
}
.svc-feat-item p {
    font-size: 13.8px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.7;
    margin: 0;
}

/* --- Features section spacing --- */
.svc-features { padding: 70px 0; }

/* --- Why Choose section --- */
.svc-why { padding: 0 0 80px; }
.svc-why-grid {
    display: grid;
    grid-template-columns: 1fr 497px;
    gap: 70px;
    align-items: center;
}
.svc-why-media {
    position: relative;
    height: 373px;
}
.svc-why-media .svc-card-img {
    height: 100%;
}
.svc-why-media .svc-card-img-bg {
    top: 14px;
    left: -14px;
}
.svc-why-text h2 {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #211d15;
    letter-spacing: -0.32px;
    line-height: 1.75;
    margin: 0 0 16px;
}
.svc-why-text p {
    font-size: 15px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.75;
    margin: 0;
    max-width: 596px;
}

/* --- CTA section --- */
.svc-cta {
    position: relative;
    background-color: #18160f;
    background-size: cover;
    background-position: center;
    padding: 92px 0;
    text-align: center;
    margin-bottom: 0;
}
/* Remove gap between CTA and footer on service pages */
.svc-cta + * { margin-top: 0; }
.page-services main > .svc-cta:last-child { margin-bottom: 0; }
.svc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 22, 15, 0.75);
    z-index: 0;
}
.svc-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
}
.svc-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fbf6ea;
    line-height: 1.6;
    margin: 0 0 12px;
}
.svc-cta p {
    font-size: 15px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.7;
    margin: 0 0 32px;
}
.svc-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #c6bc78;
    color: #18160f;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}
.svc-cta-btn:hover {
    background: #a9812e;
    color: #fff;
    transform: translateY(-1px);
}

/* --- Responsive: Service pages --- */
@media (max-width: 1024px) {
    .svc-card { padding: 40px; min-height: auto; }
    .svc-card-media { position: relative; left: 0; top: 0; width: 100%; max-width: 425px; height: 280px; margin-bottom: 40px; }
    .svc-card-features { margin-top: 0; }
    .svc-why-grid { grid-template-columns: 1fr; gap: 40px; }
    .svc-why-media { height: 300px; max-width: 497px; }
}
@media (max-width: 767px) {
    .svc-container { padding: 0 20px; }
    .svc-intro { padding: 40px 0 0; }
    .svc-features { padding: 50px 0; }
    .svc-card { padding: 24px; }
    .svc-card-media { height: 220px; max-width: 100%; }
    .svc-card-features { grid-template-columns: 1fr; gap: 30px; }
    .svc-why-media { height: 250px; max-width: 100%; }
    .svc-why-text h2 { font-size: 26px; }
    .svc-cta { padding: 60px 0; }
    .svc-cta h2 { font-size: 24px; }
    .svc-card-img-bg { left: -10px; top: 10px; }
    .svc-why-media .svc-card-img-bg { left: -10px; top: 10px; }
}

/* --- Service page: Article text section --- */
.svc-article { padding: 60px 0; }
.svc-article p {
    font-size: 15px;
    font-weight: 400;
    color: #211d15;
    line-height: 1.75;
    margin: 0 0 20px;
    max-width: 953px;
}
.svc-article p:last-child { margin-bottom: 0; }

/* --- Service page: Gallery grid (3x2) --- */
.svc-gallery { padding: 0 0 80px; }
.svc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.svc-gallery-item {
    position: relative;
    border: 1px solid #ddd0ac;
    overflow: hidden;
    background: #eae1cc;
}
.svc-gallery-item img {
    width: 100%;
    height: 303px;
    object-fit: cover;
    display: block;
}

/* --- Flipped Why Choose (image left, text right) --- */
.svc-why-grid-flip {
    grid-template-columns: 497px 1fr;
}

@media (max-width: 1024px) {
    .svc-why-grid-flip { grid-template-columns: 1fr; }
    .svc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .svc-gallery-grid { grid-template-columns: 1fr; }
    .svc-gallery-item img { height: 220px; }
}

/* =============================================================
   CONTACT PAGE (Redesigned - Split Layout)
   ============================================================= */
.ct-section { padding: 0; }
.ct-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 900px;
}

/* --- Left: Info panel (dark) --- */
.ct-info {
    background: #18160f;
    padding: 90px 64px 70px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.ct-info-inner { max-width: 440px; width: 100%; }
.ct-heading {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: #ddd0ac;
    letter-spacing: -0.3px;
    line-height: 1.75;
    margin: 0 0 19px;
}
.ct-intro {
    font-size: 15px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.75;
    margin: 0 0 29px;
}

/* Contact items */
.ct-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 162, 84, 0.28);
    margin-bottom: 21px;
}
.ct-item { display: flex; gap: 16px; align-items: flex-start; }
.ct-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 84, 0.45);
    border-radius: 50%;
    flex-shrink: 0;
    color: #ddd0ac;
}
.ct-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: #ddd0ac;
    text-transform: uppercase;
    letter-spacing: 1.05px;
    margin-bottom: 3px;
    line-height: 1.75;
}
.ct-item a, .ct-item > div > span:not(.ct-label) {
    font-size: 14.5px;
    font-weight: 400;
    color: #efe8d8;
    line-height: 1.5;
}
.ct-item a:hover { color: #c6bc78; }

/* Social links */
.ct-socials { display: flex; gap: 10px; padding: 21px 0 19px; }
.ct-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 84, 0.4);
    border-radius: 17px;
    font-size: 12px;
    font-weight: 400;
    color: #ddd0ac;
    transition: background 0.3s, color 0.3s;
}
.ct-socials a:hover { background: rgba(201, 162, 84, 0.2); color: #efe8d8; }
.ct-socials a svg { display: block; fill: currentColor; }

/* Map thumbnail */
.ct-map-thumb {
    border: 1px solid rgba(201, 162, 84, 0.3);
    overflow: hidden;
    height: 110px;
    min-height: 110px;
    width: 550px;
    max-width: 100%;
    background: #26221a;
    position: relative;
}
.ct-map-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.ct-map-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 10.5px;
    font-weight: 600;
    color: #a89d84;
    letter-spacing: 0.315px;
    line-height: 1.75;
}

/* --- Right: Form panel --- */
.ct-form-panel {
    background: #f5f2eb;
    padding: 89px 60px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.ct-form-inner { max-width: 520px; width: 100%; }
.ct-form-heading {
    font-size: 30px;
    font-weight: 700;
    color: #211d15;
    letter-spacing: -0.3px;
    line-height: 1.75;
    margin: 0 0 8px;
}
.ct-form-subtitle {
    font-size: 14.5px;
    font-weight: 400;
    color: #6f6552;
    line-height: 1.75;
    margin: 0 0 30px;
}

/* Form fields */
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-field { margin-bottom: 20px; }
.ct-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #211d15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.ct-field input, .ct-field textarea {
    width: 100%;
    padding: 14px 17px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #ddd0ac;
    border-radius: 0;
    background: #fdfcf9;
    color: #211d15;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.ct-field input::placeholder, .ct-field textarea::placeholder { color: #a89d84; }
.ct-field input:focus, .ct-field textarea:focus {
    outline: none;
    border-color: #a9812e;
    box-shadow: 0 0 0 3px rgba(201, 162, 84, 0.12);
}
.ct-field textarea { resize: vertical; min-height: 110px; }
.ct-char-count {
    text-align: right;
    font-size: 12px;
    color: #a89d84;
    margin-top: 6px;
}
.ct-submit {
    width: 100%;
    padding: 18px;
    background: #18160f;
    color: #fbf6ea;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
.ct-submit:hover { background: #2a2518; }

/* --- Responsive: Contact page --- */
@media (max-width: 1024px) {
    .ct-split { grid-template-columns: 1fr; }
    .ct-info { padding: 70px 40px 60px; }
    .ct-form-panel { padding: 60px 40px; }
}
@media (max-width: 767px) {
    .ct-info { padding: 50px 20px 40px; }
    .ct-form-panel { padding: 40px 20px; }
    .ct-form-row { grid-template-columns: 1fr; gap: 0; }
    .ct-heading { font-size: 26px; }
    .ct-form-heading { font-size: 24px; }
}

/* =============================================================
   COMPLETED PROJECTS PAGE (Redesigned - Figma Match)
   ============================================================= */
.cp-section { padding: 60px 0 80px; }
.cp-section .container { max-width: 1140px; }
.cp-section .section-eyebrow {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.cp-section .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 50px;
}

/* 2-column grid */
.cp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 40px;
}

/* Card */
.cp-card {
    position: relative;
}
.cp-card-num {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-style: italic;
}

/* Image wrapper with gold offset behind (matches homepage intro style) */
.cp-card-media {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    margin-left: 14px;
    margin-bottom: 14px;
}
/* Gold rectangle offset behind the image — bottom-left */
.cp-card-media::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 0;
}
.cp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border: 1px solid #18160f;
    transition: transform .6s ease;
}
.cp-card-media:hover img {
    transform: scale(1.02);
}

/* Label overlay on the image */
.cp-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(40, 40, 40, 0.82);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Title with underline */
.cp-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 24px 0 0;
}
.cp-card-title a {
    color: var(--color-dark);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-primary);
}
.cp-card-title a:hover {
    color: var(--color-primary);
}
.cp-arrow {
    font-size: 18px;
    color: var(--color-primary);
    transition: transform .3s ease;
}
.cp-card-title a:hover .cp-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 767px) {
    .cp-grid { grid-template-columns: 1fr; gap: 40px; }
    .cp-section .section-title { font-size: 28px; }
}

/* =============================================================
   PROJECT DETAIL PAGE - Enhanced (Figma Match)
   ============================================================= */
/* Eyebrow label */
.pj-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* Cover image wrapper with label */
.pj-cover-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid #18160f;
}
.pj-cover-wrap img {
    width: 100%;
    aspect-ratio: 550 / 360;
    object-fit: cover;
    display: block;
}
.pj-cover-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(20, 17, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Gallery title */
.pj-gallery-title {
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 30px;
}

/* Gallery items with labels */
.pj-gallery-item {
    position: relative;
}
.pj-gallery-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(20, 17, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
    z-index: 2;
}

/* =============================================================
   DESIGN DETAIL PAGE - Enhanced (Figma Match)
   ============================================================= */
/* Page-level centered title */
.dd-page-title {
    font-size: 34px;
    font-weight: 700;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 40px;
}

/* Detail card container (the grey background box) */
.dd-detail-card {
    background: #f5f2eb;
    border: 1px solid #e8e2d4;
    padding: 50px 40px;
}

/* Grid: info left, floorplan right */
.dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.dd-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
}
.dd-specs {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d3c5;
}
.dd-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-dark);
    font-size: 15px;
}
.dd-spec svg { color: var(--color-primary-dark); }
.dd-spec em { font-style: normal; font-weight: 500; }
.dd-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 24px;
}
.dd-dim-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 14px;
}
.dd-dims {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}
.dd-dims li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0dbd0;
    font-size: 14px;
    color: var(--color-text);
}
.dd-dims li span { font-weight: 400; }
.dd-dims li em { font-style: normal; font-weight: 500; color: var(--color-dark); }
.dd-dims .dd-total {
    border-bottom: none;
    padding-top: 12px;
    font-weight: 600;
}
.dd-dims .dd-total span { font-weight: 700; color: var(--color-dark); }
.dd-dims .dd-total em { font-weight: 700; }
.dd-pdf {
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 4px;
}

/* Floor plan image */
.dd-plan {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.dd-plan img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e0dbd0;
    background: #fff;
}

/* Design gallery (3-column) */
.dd-gallery-sec {
    padding: 40px 0 20px;
}
.dd-gallery-sec .container { max-width: 1140px; }
.dd-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dd-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.dd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.dd-gallery-item:hover img {
    transform: scale(1.05);
}
.dd-gallery-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(20, 17, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
    z-index: 2;
}

/* =============================================================
   CTA ENQUIRY SECTION (Reusable Component - Figma Match)
   ============================================================= */
.cta-enquiry {
    padding: 60px 0 80px;
    background: #18160f;
}
.cta-enquiry .container { max-width: 1140px; }
.cta-enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Left side */
.cta-enquiry-text {
    font-size: 14px;
    font-weight: 400;
    color: #a89d84;
    line-height: 1.8;
    margin-bottom: 30px;
}
.cta-enquiry-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 84, 0.3);
}
.cta-enquiry-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.cta-enquiry-img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(20, 17, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Right side: Form */
.cta-form-group {
    margin-bottom: 18px;
}
.cta-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ddd0ac;
    margin-bottom: 6px;
}
.cta-form-group input,
.cta-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(201, 162, 84, 0.35);
    border-radius: 0;
    background: transparent;
    color: #efe8d8;
    transition: border-color .3s;
}
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder {
    color: #6f6552;
}
.cta-form-group input:focus,
.cta-form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}
.cta-form-group textarea {
    resize: vertical;
    min-height: 100px;
    border: 1px solid rgba(201, 162, 84, 0.35);
}
.cta-form-group textarea:focus {
    border-color: var(--color-primary);
}
.cta-char-count {
    text-align: left;
    font-size: 11px;
    color: #6f6552;
    margin-top: 4px;
}
.cta-submit-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .3s, color .3s;
    margin-top: 8px;
}
.cta-submit-btn:hover {
    background: #fff;
    color: var(--color-dark);
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
    .cta-enquiry { padding: 40px 0 60px; }
}

/* Design detail responsive */
@media (max-width: 1024px) {
    .dd-grid { grid-template-columns: 1fr; }
    .dd-detail-card { padding: 30px 20px; }
    .dd-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .dd-page-title { font-size: 26px; }
    .dd-detail-card { padding: 20px 15px; }
    .dd-gallery { grid-template-columns: 1fr; }
}
