
:root {
    --ink: #0E0E0E;
    --ink-soft: #1C1C1C;
    --cream: #F9F5EE;
    --cream-dark: #EDE7D9;
    --gold: #B8924A;
    --gold-light: #D4AF72;
    --gold-pale: #F0E4C8;
    --teal: #1A5C6B;
    --teal-light: #2A8EA0;
    --mist: #8A9FAB;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: default;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform .15s ease;
    mix-blend-mode: multiply;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all .18s ease;
    mix-blend-mode: multiply;
}

/* ─── NOISE OVERLAY ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: .025;
    pointer-events: none;
    z-index: 9997;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.6rem 0;
    transition: all .5s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, .96);
    padding: 1rem 0;
    backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand em {
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-quote {
    background: var(--gold);
    color: var(--ink) !important;
    padding: .55rem 1.4rem;
    letter-spacing: 1px;
    transition: all .2s !important;
}

.nav-quote:hover {
    background: var(--gold-light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all .3s;
}

/* ─── PAGE HERO (shared across inner pages) ─── */
.page-hero {
    min-height: 42vh;
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 4rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14,14,14,.92) 0%, rgba(14,14,14,.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.08;
}

.page-hero h1 i {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero-sub {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 520px;
    font-weight: 300;
    margin-top: 1rem;
}

/* ─── HERO (home page) ─── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .38;
    scale: 1.08;
    animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { scale: 1.08; }
    to   { scale: 1.0;  }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14,14,14,.92) 0%, rgba(14,14,14,.55) 55%, rgba(26,92,107,.4) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.8rem;
    animation: fadeUp .9s ease .1s both;
}

.hero h1 i {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    color: rgba(255,255,255,.62);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 2.8rem;
    animation: fadeUp .9s ease .25s both;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeUp .9s ease .4s both;
}

.hero-panel {
    position: relative;
    z-index: 2;
    animation: fadeRight .9s ease .3s both;
}

.hero-img-stack { position: relative; }

.hero-img-main {
    width: 100%;
    border-radius: 2px;
    display: block;
    box-shadow: 0 60px 100px rgba(0,0,0,.5);
}

.hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -25px;
    width: 46%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    border: 4px solid var(--ink);
}

.hero-badge {
    position: absolute;
    top: 25px;
    right: -20px;
    background: var(--gold);
    padding: 1.4rem 1.6rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(184,146,74,.5);
}

.hero-badge .num {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.hero-badge .txt {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(14,14,14,.7);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s ease infinite;
}

.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── MARQUEE ─── */
.marquee-section {
    background: var(--gold);
    padding: .9rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0 3rem;
}

.marquee-item i { font-size: .6rem; opacity: .5; }

@keyframes marquee {
    from { transform: translateX(0);    }
    to   { transform: translateX(-50%); }
}

/* ─── SECTION HELPERS ─── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.section-eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold);
}

h2.display-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
}

h2.display-title i {
    font-style: italic;
    color: var(--teal);
}

h2.display-title-light {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

h2.display-title-light i {
    font-style: italic;
    color: var(--gold-light);
}

.lead-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* ─── NUMBERS STRIP ─── */
.numbers-section {
    background: var(--ink-soft);
    padding: 4rem 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.num-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,.07);
}

.num-item:last-child { border-right: none; }

.num-item .n {
    font-family: var(--serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.num-item .n span {
    color: var(--gold);
    font-style: italic;
}

.num-item .d {
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: .5rem;
}

/* ─── SERVICES ─── */
.services-section {
    padding: 7rem 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(14,14,14,.08);
}

.svc-card {
    background: var(--cream);
    padding: 2.8rem 2.4rem;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s ease;
    z-index: 0;
}

.svc-card:hover::before { transform: scaleY(1); }

.svc-card:hover .svc-num,
.svc-card:hover h4,
.svc-card:hover p,
.svc-card:hover .svc-icon { color: rgba(255,255,255,.9); }

.svc-card:hover .svc-icon-wrap { background: var(--gold); }
.svc-card:hover .svc-icon { color: var(--ink) !important; }

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

.svc-content {
    position: relative;
    z-index: 1;
}

.svc-num {
    font-family: var(--serif);
    font-size: .85rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    transition: color .35s;
}

.svc-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all .35s;
}

.svc-icon {
    font-size: 1.3rem;
    color: var(--teal);
    transition: color .35s;
}

.svc-card h4 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .8rem;
    transition: color .35s;
}

.svc-card p {
    font-size: .88rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
    transition: color .35s;
}

.svc-arrow {
    position: absolute;
    bottom: 2.8rem;
    right: 2.4rem;
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .35s;
    z-index: 1;
}

/* ─── PORTFOLIO ─── */
.portfolio-section {
    padding: 7rem 0;
    background: var(--ink);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    grid-template-rows: 320px 320px;
    gap: 3px;
    margin-top: 3.5rem;
}

.p-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .6s ease;
}

.p-item:hover img { scale: 1.06; }

.p-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,.85) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity .35s;
}

.p-item:hover::before { opacity: 1; }

.p-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(15px);
    opacity: 0;
    transition: all .35s;
}

.p-item:hover .p-info {
    opacity: 1;
    transform: translateY(0);
}

.p-tag {
    font-size: .65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.p-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.p-tall { grid-row: 1/3; }

/* ─── PROCESS ─── */
.process-section {
    padding: 7rem 0;
    background: var(--cream-dark);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) 100%);
    opacity: .25;
    z-index: 0;
}

.proc-item {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.proc-dot {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 1px solid rgba(184,146,74,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all .35s;
    position: relative;
}

.proc-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(184,146,74,.2);
    animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.proc-item:hover .proc-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(184,146,74,.3);
}

.proc-dot i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color .35s;
}

.proc-item:hover .proc-dot i { color: var(--ink); }

.proc-num {
    font-family: var(--serif);
    font-size: .78rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: .6rem;
}

.proc-item h5 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
}

.proc-item p {
    font-size: .83rem;
    color: #888;
    line-height: 1.7;
}

/* ─── ABOUT / WHY US ─── */
.about-section {
    padding: 7rem 0;
    background: var(--white);
}

.about-img-wrap { position: relative; }

.about-img-main {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 2px;
}

.about-tag {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--teal);
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 60px rgba(26,92,107,.35);
}

.about-tag .big {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-tag .sm {
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: .3rem;
}

.guarantee-strip {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--gold-pale);
    padding: 1.4rem 1.8rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--gold);
}

.guarantee-strip i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.guarantee-strip p {
    font-size: .88rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid #E8E0D0;
}

.features-list li:last-child { border-bottom: none; }

.feat-icon {
    width: 42px;
    height: 42px;
    background: var(--ink);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon i {
    font-size: .95rem;
    color: var(--gold);
}

.features-list h6 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .25rem;
}

.features-list p {
    font-size: .83rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.reviews-section {
    padding: 7rem 0;
    background: var(--ink);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    margin-top: 4rem;
}

.review-card {
    background: var(--ink-soft);
    padding: 2.8rem 2.4rem;
    transition: background .35s;
}

.review-card:hover { background: #1F1F1F; }

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.4rem;
}

.review-stars i {
    color: var(--gold);
    font-size: .8rem;
}

.review-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
}

.review-divider {
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: .4;
    margin-bottom: 1.4rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
}

.reviewer-loc {
    font-size: .73rem;
    color: rgba(255,255,255,.4);
    margin-top: 2px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    padding: .5rem 1.1rem;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: 2.5rem;
}

/* ─── AREAS ─── */
.areas-section {
    padding: 6rem 0;
    background: var(--cream);
}

.areas-visual {
    position: relative;
    background: var(--ink);
    border-radius: 2px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}

.areas-visual-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem;
}

.areas-visual h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
}

.areas-visual p {
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}

.areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 2.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    border: 1px solid rgba(14,14,14,.15);
    color: #555;
    padding: .45rem 1rem;
    font-size: .78rem;
    letter-spacing: .5px;
    transition: all .2s;
    cursor: default;
}

.pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,146,74,.05);
}

.pill i {
    font-size: .6rem;
    color: var(--gold);
}

/* ─── CALL TO ACTION ─── */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--teal);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(42,142,160,.25);
    filter: blur(80px);
}

.cta-content { position: relative; z-index: 1; }

.cta-eyebrow {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.cta-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-light);
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.cta-section p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 440px;
}

.contact-form {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 2.8rem;
    backdrop-filter: blur(10px);
}

.form-field {
    width: 100%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--white);
    padding: .85rem 1.1rem;
    font-family: var(--sans);
    font-size: .88rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color .2s;
    border-radius: 0;
}

.form-field::placeholder { color: rgba(255,255,255,.35); }

.form-field:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,.1);
}

.form-field option {
    color: var(--ink);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 1.1rem;
    font-family: var(--sans);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cta-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

.contact-link:hover { color: var(--gold-light); }

.contact-link i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ─── FOOTER ─── */
footer {
    background: #080808;
    padding: 5rem 0 2rem;
    color: rgba(255,255,255,.5);
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand em {
    color: var(--gold);
    font-style: italic;
}

.footer-desc {
    font-size: .83rem;
    line-height: 1.8;
    max-width: 280px;
    margin-top: .8rem;
    color: rgba(255,255,255,.4);
}

.footer-head {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 1.4rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: .65rem; }

.footer-links a {
    color: rgba(255,255,255,.45);
    font-size: .84rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .9rem;
    font-size: .84rem;
}

.footer-contact-item i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.social-row {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-line {
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 4rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    font-size: .75rem;
}

.footer-legal a {
    color: rgba(255,255,255,.3);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color .2s;
}

.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ─── FLOATING PHONE ─── */
.float-phone {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--ink);
    padding: .9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 990;
    box-shadow: 0 12px 40px rgba(184,146,74,.45);
    transition: all .25s;
    animation: phPulse 3s ease-in-out infinite;
}

.float-phone:hover {
    background: var(--gold-light);
    color: var(--ink);
    transform: translateY(-2px);
}

@keyframes phPulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(184,146,74,.45); }
    50%       { box-shadow: 0 12px 60px rgba(184,146,74,.7);  }
}

/* ─── BUTTONS ─── */
.btn-primary-gold {
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .25s;
    border: none;
    cursor: pointer;
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184,146,74,.4);
}

.btn-ghost-white {
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .25s;
    background: transparent;
    cursor: pointer;
}

.btn-ghost-white:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,.06);
}

.btn-ghost-dark {
    border: 1px solid rgba(14,14,14,.25);
    color: var(--ink);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .25s;
    background: transparent;
    cursor: pointer;
}

.btn-ghost-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0);    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── LAYOUT HELPERS ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.col-6 { flex: 0 0 calc(50% - 1.5rem); }
.col-5 { flex: 0 0 calc(41.66% - 1.5rem); }
.col-7 { flex: 0 0 calc(58.33% - 1.5rem); }
.col-4 { flex: 0 0 calc(33.33% - 2rem); }
.col-8 { flex: 0 0 calc(66.66% - 1rem); }

.text-center { text-align: center; }

/* ─── CONTENT SECTIONS (inner pages) ─── */
.content-section {
    padding: 6rem 0;
    background: var(--cream);
}

.content-section-white {
    padding: 6rem 0;
    background: var(--white);
}

.content-section-dark {
    padding: 6rem 0;
    background: var(--ink-soft);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.5rem;
    letter-spacing: .5px;
}

.breadcrumb a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb i { font-size: .6rem; }

/* ─── INFO BOX ─── */
.info-box {
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    padding: 1.6rem 2rem;
    margin: 2rem 0;
}

.info-box h5 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .5rem;
}

.info-box p {
    font-size: .88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }

    .num-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px;
    }

    .p-tall { grid-row: auto; }

    .process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-track::before { display: none; }

    .review-grid { grid-template-columns: 1fr; }

    .nav-links { display: none; }

    .hamburger { display: flex; }

    .col-6, .col-5, .col-7, .col-4, .col-8 { flex: 0 0 100%; }

    .form-row { grid-template-columns: 1fr; }

    .about-tag { right: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 576px) {
    .services-grid,
    .portfolio-grid { grid-template-columns: 1fr; }

    .portfolio-grid { grid-template-rows: 200px 200px 200px; }

    .cta-contact-bar {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-grid { grid-template-columns: 1fr !important; }
}

/* ── SPLIT HERO (hub pages ke liye) ── */
.hub-hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
 
.hub-hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 0;
}
 
.hub-hero-right {
    position: relative;
    overflow: hidden;
}
 
.hub-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    scale: 1.05;
    animation: heroZoom 14s ease-in-out infinite alternate;
}
 
.hub-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 40%);
    z-index: 1;
}
 
.hub-hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,.7) 0%, transparent 60%);
    z-index: 1;
}
 
/* ── HERO BOTTOM SERVICE STRIP ── */
.hero-service-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    gap: 1px;
}
 
.hero-svc-mini {
    flex: 1;
    background: rgba(14,14,14,.85);
    backdrop-filter: blur(12px);
    border-top: 2px solid transparent;
    padding: 1.4rem 1.6rem;
    transition: all .3s;
    text-decoration: none;
    display: block;
}
 
.hero-svc-mini:hover {
    background: rgba(184,146,74,.12);
    border-top-color: var(--gold);
}
 
.hero-svc-mini .mini-label {
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: .35rem;
}
 
.hero-svc-mini .mini-title {
    font-family: var(--serif);
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.hero-svc-mini .mini-title i {
    font-size: .75rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .3s;
}
 
.hero-svc-mini:hover .mini-title i {
    opacity: 1;
    transform: translateX(0);
}
 
/* ── WHY CARDS GRID (3-col icon cards) ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(14,14,14,.06);
}
 
.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background .3s;
}
 
.why-card:hover {
    background: var(--cream);
}
 
.why-icon {
    width: 60px;
    height: 60px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    transition: background .3s;
}
 
.why-card:hover .why-icon {
    background: var(--gold);
}
 
.why-icon i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: color .3s;
}
 
.why-card:hover .why-icon i {
    color: var(--ink);
}
 
.why-card h5 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
}
 
.why-card p {
    font-size: .83rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
 
/* ── SERVICE HUB CARDS (large, with image) ── */
.hub-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 4rem;
    background: rgba(14,14,14,.08);
}
 
.hub-svc-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
}
 
.hub-svc-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    transition: opacity .5s ease, scale .6s ease;
    scale: 1.04;
}
 
.hub-svc-card:hover img {
    opacity: .45;
    scale: 1.0;
}
 
.hub-svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,.9) 0%, rgba(14,14,14,.2) 60%, transparent 100%);
    z-index: 1;
    transition: opacity .4s;
}
 
.hub-svc-body {
    position: relative;
    z-index: 2;
    padding: 2.4rem;
}
 
.hub-svc-tag {
    font-size: .62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}
 
.hub-svc-card h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .8rem;
}
 
.hub-svc-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 380px;
}
 
.hub-svc-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .25s;
}
 
.hub-svc-card:hover .hub-svc-link {
    gap: .9rem;
}
 
/* Featured (large) card spans full width */
.hub-svc-card.featured {
    grid-column: 1 / -1;
    min-height: 440px;
    flex-direction: row;
    align-items: flex-end;
}
 
.hub-svc-card.featured .hub-svc-body {
    max-width: 560px;
}
 
.hub-svc-card.featured h3 {
    font-size: 2.2rem;
}
 
/* ── TESTIMONIAL SINGLE (mini quote) ── */
.mini-quote-strip {
    background: var(--gold);
    padding: 3.5rem 0;
}
 
.mini-quote-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
 
.mini-quote-icon {
    font-family: var(--serif);
    font-size: 6rem;
    color: rgba(14,14,14,.15);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -1rem;
}
 
.mini-quote-text {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    font-style: italic;
}
 
.mini-quote-author {
    font-family: var(--sans);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(14,14,14,.55);
    margin-top: .8rem;
}
 
/* ── LOCATIONS SERVED (compact pills section) ── */
.locations-band {
    background: var(--ink-soft);
    padding: 4rem 0;
}
 
.locations-band-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
 
.locations-band-label {
    font-size: .68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
    white-space: nowrap;
}
 
.locations-band-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
 
.pill-dark {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.45);
    padding: .4rem .9rem;
    font-size: .75rem;
    letter-spacing: .5px;
    transition: all .2s;
    cursor: default;
}
 
.pill-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}
 
.pill-dark i {
    font-size: .55rem;
    color: var(--gold);
    opacity: .6;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hub-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
 
    .hub-hero-left {
        padding: 8rem 0 3rem;
        order: 2;
    }
 
    .hub-hero-right {
        height: 50vh;
        order: 1;
    }
 
    .hub-hero-right::before {
        background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%);
    }
 
    .hero-service-strip {
        position: relative;
        bottom: auto;
        flex-wrap: wrap;
    }
 
    .hero-svc-mini {
        flex: 0 0 calc(50% - 1px);
    }
 
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .hub-services-grid {
        grid-template-columns: 1fr;
    }
 
    .hub-svc-card.featured {
        grid-column: auto;
        min-height: 360px;
    }
 
    .mini-quote-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
 
    .mini-quote-icon { display: none; }
 
    .locations-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
}
 
@media (max-width: 576px) {
    .why-grid { grid-template-columns: 1fr; }
 
    .hero-svc-mini { flex: 0 0 100%; }
}

/* ── BEFORE / AFTER SLIDER ── */
.ba-section {
    padding: 7rem 0;
    background: var(--ink);
}
 
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 4rem;
}
 
.ba-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
 
.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .6s ease;
}
 
.ba-card:hover img { scale: 1.06; }
 
.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--ink);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .3rem .8rem;
    z-index: 2;
}
 
.ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,.85) 0%, transparent 55%);
    z-index: 1;
    opacity: 0;
    transition: opacity .35s;
}
 
.ba-card:hover .ba-overlay { opacity: 1; }
 
.ba-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all .35s;
}
 
.ba-card:hover .ba-info {
    opacity: 1;
    transform: translateY(0);
}
 
.ba-info-tag {
    font-size: .62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}
 
.ba-info-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}
 
/* ── CLIMATE CHALLENGE CARDS ── */
.climate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(14,14,14,.07);
}
 
.climate-card {
    background: var(--cream);
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .35s;
}
 
.climate-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .35s;
}
 
.climate-card:hover::after { transform: scaleX(1); }
.climate-card:hover { background: var(--white); }
 
.climate-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
 
.climate-card h5 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
}
 
.climate-card p {
    font-size: .82rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
 
/* ── PAINT BRANDS STRIP ── */
.brands-strip {
    background: var(--cream-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(14,14,14,.07);
    border-bottom: 1px solid rgba(14,14,14,.07);
}
 
.brands-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
 
.brands-label {
    font-size: .68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(14,14,14,.35);
    flex-shrink: 0;
}
 
.brand-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    opacity: .45;
    transition: opacity .25s;
    cursor: default;
}
 
.brand-badge:hover { opacity: .85; }
 
.brand-badge i {
    font-size: 1.6rem;
    color: var(--ink);
}
 
.brand-badge span {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}
 
/* ── SURFACE TYPES ACCORDION ── */
.surfaces-section {
    padding: 7rem 0;
    background: var(--white);
}
 
.accordion {
    margin-top: 3rem;
    border-top: 1px solid #E8E0D0;
}
 
.accordion-item {
    border-bottom: 1px solid #E8E0D0;
}
 
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}
 
.accordion-trigger-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
 
.accordion-num {
    font-family: var(--serif);
    font-size: .8rem;
    font-style: italic;
    color: var(--gold);
    flex-shrink: 0;
}
 
.accordion-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    transition: color .25s;
}
 
.accordion-trigger:hover .accordion-title { color: var(--teal); }
 
.accordion-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(14,14,14,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    font-size: .85rem;
    color: var(--ink);
}
 
.accordion-item.open .accordion-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: rotate(45deg);
}
 
.accordion-body {
    display: none;
    padding: 0 0 1.8rem 3.2rem;
}
 
.accordion-item.open .accordion-body { display: block; }
 
.accordion-body p {
    font-size: .88rem;
    color: #777;
    line-height: 1.8;
    max-width: 680px;
}
 
.accordion-body ul {
    list-style: none;
    padding: 0;
    margin-top: .8rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
 
.accordion-body ul li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--cream);
    border: 1px solid #E8E0D0;
    font-size: .78rem;
    color: #666;
    padding: .3rem .8rem;
}
 
.accordion-body ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .climate-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-inner { gap: 2rem; }
}
 
@media (max-width: 576px) {
    .ba-grid { grid-template-columns: 1fr; }
    .climate-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   commercial-painting.html — Page-Specific CSS
   Ye sab style.css mein add kar do
   ═══════════════════════════════════════════════ */

/* ── COMMERCIAL HERO (dark full-bleed with overlay text) ── */
.commercial-hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.commercial-hero-bg {
    position: absolute;
    inset: 0;
}

.commercial-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
    scale: 1.06;
    animation: heroZoom 14s ease-in-out infinite alternate;
}

.commercial-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14,14,14,1) 0%,
        rgba(14,14,14,.7) 40%,
        rgba(14,14,14,.3) 100%
    );
}

.commercial-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 6rem;
    width: 100%;
}

.commercial-hero-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 4rem;
}

.commercial-hero-certs {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    align-items: flex-end;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: .6rem 1.1rem;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.cert-badge i {
    color: var(--gold);
    font-size: .8rem;
}

/* Industry type tabs at hero bottom */
.industry-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
}

.industry-tab {
    background: rgba(14,14,14,.7);
    backdrop-filter: blur(12px);
    padding: 1.4rem 1.2rem;
    text-align: center;
    cursor: pointer;
    border-top: 2px solid transparent;
    transition: all .3s;
    text-decoration: none;
    display: block;
}

.industry-tab:hover,
.industry-tab.active {
    background: rgba(184,146,74,.12);
    border-top-color: var(--gold);
}

.industry-tab i {
    font-size: 1.3rem;
    color: rgba(255,255,255,.35);
    display: block;
    margin-bottom: .5rem;
    transition: color .3s;
}

.industry-tab:hover i,
.industry-tab.active i {
    color: var(--gold);
}

.industry-tab span {
    font-size: .68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .3s;
}

.industry-tab:hover span,
.industry-tab.active span {
    color: var(--white);
}

/* ── INDUSTRIES SERVED CARDS ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(14,14,14,.07);
}

.industry-card {
    background: var(--white);
    padding: 2.6rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    border-bottom: 3px solid transparent;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--ink);
    transition: height .4s ease;
    z-index: 0;
}

.industry-card:hover::before { height: 100%; }

.industry-card:hover {
    border-bottom-color: var(--gold);
}

.industry-card:hover .ind-icon-wrap { background: var(--gold); }
.industry-card:hover .ind-icon { color: var(--ink); }
.industry-card:hover h4,
.industry-card:hover p { color: rgba(255,255,255,.85); }
.industry-card:hover .ind-num { color: rgba(255,255,255,.2); }

.industry-card-inner {
    position: relative;
    z-index: 1;
}

.ind-num {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(14,14,14,.05);
    line-height: 1;
    transition: color .35s;
}

.ind-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all .35s;
}

.ind-icon {
    font-size: 1.25rem;
    color: var(--teal);
    transition: color .35s;
}

.industry-card h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .7rem;
    transition: color .35s;
}

.industry-card p {
    font-size: .85rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
    transition: color .35s;
}

/* ── COMMERCIAL DIFFERENCE — SPLIT FEATURE ROW ── */
.diff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 4rem;
}

.diff-col {
    padding: 3.5rem;
    position: relative;
}

.diff-col-dark {
    background: var(--ink);
}

.diff-col-light {
    background: var(--cream-dark);
}

.diff-col h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.diff-col-light h3 { color: var(--ink); }

.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .87rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.diff-col-light .diff-list li {
    border-bottom-color: rgba(14,14,14,.08);
    color: #666;
}

.diff-list li:last-child { border-bottom: none; }

.diff-list li i {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── PORTFOLIO MASONRY-STYLE GRID ── */
.commercial-portfolio {
    padding: 7rem 0;
    background: var(--ink);
}

.comm-port-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 260px 260px;
    gap: 3px;
    margin-top: 4rem;
}

.comm-port-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.comm-port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .6s ease;
}

.comm-port-item:hover img { scale: 1.07; }

.comm-port-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    z-index: 1;
}

.comm-port-item:hover::after { opacity: 1; }

.comm-port-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem;
    z-index: 2;
    transform: translateY(12px);
    opacity: 0;
    transition: all .35s;
}

.comm-port-item:hover .comm-port-info {
    opacity: 1;
    transform: translateY(0);
}

.comm-port-tag {
    font-size: .62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}

.comm-port-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* Grid layout spans */
.comm-port-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.comm-port-item:nth-child(2) { grid-column: span 4; }
.comm-port-item:nth-child(3) { grid-column: span 3; }
.comm-port-item:nth-child(4) { grid-column: span 7; }

/* ── SCHEDULING PROMISE BANNER ── */
.schedule-banner {
    background: var(--teal);
    padding: 0;
    overflow: hidden;
}

.schedule-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.schedule-col {
    padding: 3.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,.1);
    position: relative;
}

.schedule-col:last-child { border-right: none; }

.schedule-col i {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}

.schedule-col h5 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .6rem;
}

.schedule-col p {
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0;
}

/* ── COMMERCIAL NUMBERS ── */
.commercial-numbers {
    background: var(--cream-dark);
    padding: 5rem 0;
}

.comm-num-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(14,14,14,.08);
}

.comm-num-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(14,14,14,.08);
}

.comm-num-item:last-child { border-right: none; }

.comm-num-item .cn {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.comm-num-item .cn span { color: var(--gold); font-style: italic; }

.comm-num-item .cd {
    font-size: .68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    margin-top: .5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .commercial-hero-top {
        grid-template-columns: 1fr;
    }

    .commercial-hero-certs {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .industry-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-row {
        grid-template-columns: 1fr;
    }

    .comm-port-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .comm-port-item:nth-child(1),
    .comm-port-item:nth-child(2),
    .comm-port-item:nth-child(3),
    .comm-port-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .schedule-banner-inner {
        grid-template-columns: 1fr;
    }

    .schedule-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .schedule-col:last-child { border-bottom: none; }

    .comm-num-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comm-num-item:nth-child(2) { border-right: none; }
    .comm-num-item { border-bottom: 1px solid rgba(14,14,14,.08); }
    .comm-num-item:nth-child(3),
    .comm-num-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 576px) {
    .industry-tabs { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: 1fr; }
    .comm-num-grid { grid-template-columns: 1fr 1fr; }
    .comm-port-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .comm-port-item { height: 220px; }
}
 /* ── HOA HERO — diagonal split layout ── */
.hoa-hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
 
.hoa-hero-bg {
    position: absolute;
    inset: 0;
}
 
.hoa-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    scale: 1.06;
    animation: heroZoom 14s ease-in-out infinite alternate;
}
 
.hoa-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(14,14,14,.97) 0%,
        rgba(14,14,14,.75) 50%,
        rgba(26,92,107,.45) 100%
    );
}
 
.hoa-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 80px;
    width: 100%;
}
 
/* Floating trust score card */
.hoa-trust-card {
    background: var(--gold);
    padding: 2rem 2.2rem;
    display: inline-block;
    margin-bottom: 2.5rem;
    animation: fadeUp .7s ease both;
}
 
.hoa-trust-card .trust-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
 
.hoa-trust-card .trust-big {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
 
.hoa-trust-card .trust-info {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
 
.hoa-trust-card .trust-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(14,14,14,.55);
}
 
.hoa-trust-card .trust-sub {
    font-size: .82rem;
    color: rgba(14,14,14,.7);
    font-weight: 500;
}
 
/* Hero scope tags */
.hoa-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem;
}
 
.scope-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    padding: .45rem 1rem;
    font-size: .73rem;
    letter-spacing: .5px;
    backdrop-filter: blur(6px);
}
 
.scope-tag i {
    font-size: .6rem;
    color: var(--gold);
}
 
/* ── HOA PROJECT SCALE CARDS ── */
.scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(14,14,14,.06);
}
 
.scale-card {
    background: var(--white);
    padding: 2.8rem 2.4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .35s;
}
 
.scale-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--teal);
    transition: height .4s ease;
    z-index: 0;
}
 
.scale-card:hover::after { height: 100%; }
 
.scale-card-inner {
    position: relative;
    z-index: 1;
}
 
.scale-card:hover .scale-num,
.scale-card:hover h4,
.scale-card:hover p,
.scale-card:hover .scale-icon { color: rgba(255,255,255,.9) !important; }
 
.scale-card:hover .scale-icon-wrap {
    background: var(--gold);
}
 
.scale-card:hover .scale-icon { color: var(--ink) !important; }
 
.scale-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: .3rem;
    transition: color .35s;
}
 
.scale-num span { color: var(--gold); font-style: italic; }
 
.scale-unit {
    font-size: .65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 1.5rem;
    transition: color .35s;
}
 
.scale-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: background .35s;
}
 
.scale-icon {
    font-size: 1.3rem;
    color: var(--teal);
    transition: color .35s;
}
 
.scale-card h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
    transition: color .35s;
}
 
.scale-card p {
    font-size: .83rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
    transition: color .35s;
}
 
/* ── HOA PROCESS TIMELINE (vertical) ── */
.hoa-timeline {
    position: relative;
    margin-top: 4rem;
    padding-left: 3rem;
}
 
.hoa-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(184,146,74,.15) 100%);
}
 
.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
}
 
.timeline-item:last-child { padding-bottom: 0; }
 
.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
 
.timeline-item:hover .timeline-dot {
    background: var(--gold);
}
 
.timeline-dot i {
    font-size: .55rem;
    color: var(--gold);
    transition: color .3s;
}
 
.timeline-item:hover .timeline-dot i { color: var(--ink); }
 
.timeline-step {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}
 
.timeline-item h5 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .5rem;
}
 
.timeline-item p {
    font-size: .85rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
    max-width: 560px;
}
 
/* ── COMMUNITY TYPES GRID ── */
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(14,14,14,.07);
}
 
.community-card {
    background: var(--cream);
    padding: 2.6rem 2.4rem;
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}
 
.community-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width .35s ease;
}
 
.community-card:hover::before { width: 3px; }
.community-card:hover { background: var(--white); }
 
.community-icon {
    width: 48px;
    height: 48px;
    background: var(--ink);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.community-icon i {
    font-size: 1.1rem;
    color: var(--gold);
}
 
.community-card h5 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .5rem;
}
 
.community-card p {
    font-size: .83rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
 
/* ── RESIDENT COMMUNICATION BANNER ── */
.resident-banner {
    background: var(--ink-soft);
    padding: 5rem 0;
}
 
.resident-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
 
.resident-banner h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
 
.resident-banner h2 i {
    font-style: italic;
    color: var(--gold-light);
}
 
.resident-banner p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
 
.comm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.comm-list li {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .85rem;
    color: rgba(255,255,255,.6);
}
 
.comm-list li:last-child { border-bottom: none; }
 
.comm-list li i {
    color: var(--gold);
    font-size: .85rem;
    flex-shrink: 0;
}
 
.resident-visual {
    position: relative;
}
 
.resident-visual img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
 
.resident-stat-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--gold);
    padding: 1.5rem 1.8rem;
    box-shadow: 0 20px 50px rgba(184,146,74,.4);
}
 
.resident-stat-card .rs-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
 
.resident-stat-card .rs-label {
    font-size: .62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(14,14,14,.6);
    margin-top: .3rem;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .scale-grid { grid-template-columns: 1fr 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .resident-banner-grid { grid-template-columns: 1fr; gap: 3rem; }
    .resident-stat-card { left: 0; bottom: -1rem; }
}
 
@media (max-width: 576px) {
    .scale-grid { grid-template-columns: 1fr; }
    .hoa-scope-tags { gap: .4rem; }
}