:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    background: var(--page-bg);
    line-height: 1.5;
}

.container {
    width: min(100% - 40px, var(--container-max));
    margin-inline: auto;
}

.service-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0.85rem;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212, 160, 71, 0.12);
    border: 1px solid rgba(212, 160, 71, 0.28);
    color: #4a3a18;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-area-badge .pin {
    flex: 0 0 auto;
}
:root {
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

/* ===== Base header: SOLID, non-overlapping (used on all inner pages) ===== */
header#nav_bar {
    position: sticky; /* occupies layout, no overlap */
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    color: var(--brand-ink);
    min-height: var(--nav-min);
    background: var(--brand); /* solid bar */
    padding: clamp(14px, 2.2vh, 26px) 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== Overlay variant for the landing page hero ===== */
header#nav_bar.overlay {
    position: fixed; /* sits above hero */
    left: 0;
    right: 0;
    top: 0;
    box-shadow: none;
    background: linear-gradient(
        to bottom,
        rgba(28, 28, 28, 0.92) 0%,
        rgba(28, 28, 28, 0.55) 55%,
        rgba(28, 28, 28, 0) 100%
    );
}

.nav-inner {
    width: min(100%, var(--container-max));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}
#logo {
    height: auto;
    max-height: clamp(44px, 9vh, 100px);
    width: auto;
    object-fit: contain;
    justify-self: start;
}

/* Primary nav */
nav[aria-label="Primary"] {
    justify-self: center;
}
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: clamp(10px, 1.2vw, 18px);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
.nav-links > li {
    position: relative;
}
.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #f4e9cf;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: clamp(0.95rem, 0.8vw, 1.02rem);
    padding: 8px 4px;
    outline: none;
    transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold);
}
/* underline reveal */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.contact-link-mobile {
    display: none;
}

.has-dropdown .dropdown-trigger {
    padding-right: 16px;
}

.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

.has-dropdown .dropdown-trigger::before {
    content: "▾";
    font-size: 0.72rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 52%;
    transform: translateY(-48%);
    color: currentColor;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 200px;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 71, 0.34);
    background: rgba(20, 20, 20, 0.97);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 6px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: rgba(212, 160, 71, 0.18);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    color: #f4e9cf;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.97rem;
    white-space: nowrap;
}

.nav-phone:hover,
.nav-phone:focus-visible {
    color: var(--gold);
}

/* Contact button (desktop) */
.contact-btn {
    background: var(--btn-bg);
    color: var(--btn-ink);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-family: "Libre Bodoni", serif;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.05s ease;
}
.contact-btn:hover {
    background: var(--btn-bg-hover);
}
.contact-btn:active {
    transform: translateY(1px);
}

/* Hamburger */
.menu-toggle {
    display: none;
    justify-self: end;
    background: transparent;
    border: 0;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 8px;
}
.menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
}

@media (max-width: 1280px) {
    .nav-links a {
        font-size: 0.95rem;
    }

    .contact-btn {
        padding: 9px 14px;
    }

    .nav-phone {
        font-size: 0.93rem;
    }
}

/* ===== Mobile ===== */
@media (max-width: 1120px) {
    .nav-actions {
        display: none;
    } /* move CTA into mobile menu */
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }
    .nav-inner {
        grid-template-columns: auto 1fr auto;
    }

    /* collapse nav to panel */
    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(20, 20, 20, 0.96);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        flex-direction: column;
        gap: 8px;
        padding: 14px 18px 18px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .nav-links > li {
        width: 100%;
    }

    .contact-link-mobile {
        display: inline-block;
    }

    /* On non-overlay pages, use a SOLID panel to match the solid bar */
    header#nav_bar:not(.overlay) .nav-links {
        background: var(--brand);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    header#nav_bar.open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.05rem;
        padding: 10px 0;
    }

    .has-dropdown .dropdown-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-right: 0;
    }

    .has-dropdown .dropdown-trigger::before {
        position: static;
        transform: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: none;
        min-width: 0;
        margin-top: 4px;
        padding: 10px;
        border-radius: 10px;
        border-color: rgba(212, 160, 71, 0.25);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 10px;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        padding: 7px 0;
    }

    .nav-links a::after {
        display: none;
    } /* simpler mobile states */
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}
/* darken/grade overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-video-toggle {
    font: inherit;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.22);
}

.hero-video-toggle:hover {
    background: rgba(0, 0, 0, 0.36);
}

.hero-content {
    position: relative;
    height: 100%;
    display: grid;
    align-content: end; /* sit near bottom for drama */
    padding: 0 0 clamp(80px, 14vh, 160px);
}
.hero-kicker {
    color: #fff;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Libre Bodoni", serif;
    font-weight: 600;
    line-height: 1.1;
    font-size: clamp(32px, 6.2vw, 64px);
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
}
.hero p {
    margin: 0 0 22px;
    color: #f3f3f3;
    max-width: 60ch;
    font-size: clamp(16px, 2.2vw, 18px);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn,
.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}
.btn {
    background: var(--btn-bg);
    color: var(--btn-ink);
}
.btn:hover {
    background: var(--btn-bg-hover);
}
.btn--ghost {
    border: 2px solid #ffffff;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 980px) {
    .hero-content {
        align-content: end;
        padding-bottom: clamp(64px, 16vh, 140px);
    }
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.promo-refinish {
    padding: clamp(40px, 8vw, 96px) 0;
    background: radial-gradient(
            1200px 400px at 80% 0%,
            rgba(212, 160, 71, 0.08),
            transparent 60%
        ),
        linear-gradient(#f7f3eb, #faf9f7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}
.promo-title {
    margin: 8px 0 8px;
    font-family: "Libre Bodoni", serif;
    font-size: clamp(28px, 5.2vw, 48px);
    line-height: 1.1;
}
.promo-sub {
    margin: 0 0 14px;
    color: #444;
    max-width: 60ch;
}
.benefit-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 18px;
}
.benefit-chips span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(212, 160, 71, 0.28);
    color: #4a3a18;
    font-size: 0.92rem;
}

/* Simple Before/After pair */
.ba-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(10px, 2.4vw, 18px);
    align-items: center;
}
.ba-item {
    margin: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.ba-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.ba-item figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 0.9rem;
}
.ba-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    font-size: 22px;
    color: #222;
}
@media (max-width: 980px) {
    .ba-pair {
        grid-template-columns: 1fr;
    }
    .ba-arrow {
        display: none;
    }
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.services-title {
    margin: 6px 0 4px;
    font-family: "Libre Bodoni", serif;
    font-size: clamp(28px, 5vw, 42px);
}
.services-subtitle {
    margin: 0;
    color: #5b5b5b;
    max-width: 70ch;
}

.services-cards {
    padding: clamp(48px, 8vw, 100px) 0;
    background: radial-gradient(
            900px 300px at 15% 0%,
            rgba(212, 160, 71, 0.06),
            transparent 60%
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.02) 0 6px,
            rgba(0, 0, 0, 0) 6px 12px
        ),
        #f9f6f0;
}
.services-cards__header {
    text-align: left;
    margin-bottom: clamp(18px, 3vw, 28px);
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.4vw, 26px);
}
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}
.card-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-title {
    margin: 2px 0 0;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
}
.card-bullets {
    margin: 0;
    padding-left: 18px;
    color: #444;
}
.stairs-strip {
    margin-top: clamp(16px, 3vw, 28px);
    background: #fff;
    border: 1px dashed rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    padding: 14px;
}
.stairs-strip h4 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}
.feature-chips li {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3efe7;
    color: #4a3a18;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 160, 71, 0.25);
}

.service-ctas {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.text-link {
    text-underline-offset: 3px;
    color: var(--ink);
}
.text-link:hover {
    color: var(--gold);
}

/* Responsive tweaks */
@media (max-width: 980px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .ba {
        order: -1;
    } /* show slider first on small screens */
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .card-media img {
        height: 200px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 48px 1fr;
        padding: 14px;
    }
    .service-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.process-section {
    padding: clamp(32px, 6vw, 72px) 0;
    background: radial-gradient(
            900px 300px at 85% 0%,
            rgba(212, 160, 71, 0.07),
            transparent 60%
        ),
        #f6f4ee;
}
.process-grid {
    display: grid;
    gap: clamp(12px, 2vw, 18px);
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
}
.step {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}
.step-icon {
    font-size: 24px;
}
.step h3 {
    margin: 6px 0 6px;
    font-size: 1.05rem;
    font-family: "Playfair Display", serif;
}
.step p {
    margin: 0;
    color: #444;
}
.center-cta {
    text-align: center;
    margin-top: clamp(12px, 2vw, 18px);
}
.center-cta .micro-note {
    margin: 0.4rem 0 0;
    color: #666;
}

@media (max-width: 980px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
.seo-section {
    padding: clamp(48px, 8vw, 100px) 0;
    background: #fff;
}

.seo-section--warm {
    background:
        radial-gradient(
            1000px 320px at 100% 0%,
            rgba(212, 160, 71, 0.08),
            transparent 60%
        ),
        #f8f4ec;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(18px, 3vw, 30px);
    align-items: start;
}

.seo-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5a1b;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 0 0.45rem;
}

.seo-title {
    margin: 0 0 0.7rem;
    font-family: "Libre Bodoni", serif;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.1;
    max-width: 18ch;
}

.seo-copy p {
    margin: 0 0 1rem;
    color: #444;
    max-width: 66ch;
}

#hardwood-guides {
    padding-top: clamp(28px, 5vw, 56px);
}

#dmv-area {
    padding: clamp(30px, 5vw, 56px) 0;
}

.seo-intro {
    max-width: 54ch;
}

.area-points {
    display: grid;
    gap: 12px;
    margin-top: 1.1rem;
}

.area-point {
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 14px 16px;
}

.area-point h3 {
    margin: 0 0 0.25rem;
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
}

.area-point p {
    margin: 0;
    color: #4a4a4a;
    max-width: none;
}

.seo-panel,
.guide-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}

.seo-panel {
    padding: 22px;
}

.seo-panel--map {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.seo-panel h3,
.guide-card h3 {
    margin: 0 0 0.6rem;
    font-family: "Playfair Display", serif;
}

.seo-panel p,
.guide-card p {
    margin: 0 0 1rem;
    color: #4a4a4a;
}

.city-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-cloud li {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f3efe7;
    border: 1px solid rgba(212, 160, 71, 0.25);
    color: #4a3a18;
    font-size: 0.92rem;
}

.city-cloud li a {
    color: inherit;
    text-decoration: none;
}

.city-cloud li a:hover {
    color: var(--gold);
}

.service-map {
    position: relative;
    min-height: 320px;
}

.service-map__frame {
    display: block;
    width: 100%;
    min-height: 320px;
    height: 100%;
    border: 0;
}

.map-copy {
    padding: 22px;
}

.map-copy .btn-row {
    margin-top: 1rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

.guide-card {
    padding: 20px;
}

.guide-points {
    margin: 0 0 1rem;
    padding-left: 18px;
    color: #444;
}

.guide-points li + li {
    margin-top: 0.55rem;
}

.guide-card .text-link {
    font-weight: 700;
}

@media (min-width: 981px) {
    #dmv-area .seo-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
        align-items: start;
    }

    #dmv-area .seo-copy {
        max-width: 760px;
    }

    #dmv-area .seo-panel--map {
        width: 100%;
        margin-right: 0;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    #dmv-area .service-map {
        min-height: 340px;
    }

    #dmv-area .service-map__frame {
        min-height: 340px;
    }
}

@media (max-width: 980px) {
    .seo-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.gallery-section {
    padding: clamp(48px, 8vw, 100px) 0;
    background: #faf8f3;
}
.gallery-header {
    margin-bottom: clamp(16px, 3vw, 24px);
}

/* Carousel layout */
.gallery-carousel {
    --gallery-gap: clamp(10px, 2vw, 16px);
    display: flex;
    align-items: center;
    gap: var(--gallery-gap);
}

.gallery-nav {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.gallery-nav:hover {
    background: #fff;
}
.gallery-nav:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.gallery-nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.gallery-viewport {
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.gallery-viewport::-webkit-scrollbar {
    display: none; /* WebKit */
}

.gallery-track {
    display: flex;
    gap: var(--gallery-gap);
    padding: 2px;
}
.gallery-item {
    position: relative;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    flex: 0 0 calc((100% - (3 * var(--gallery-gap))) / 4);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.25s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
@media (max-width: 980px) {
    .gallery-item {
        flex-basis: calc((100% - (1 * var(--gallery-gap))) / 2);
    }
}
@media (max-width: 560px) {
    .gallery-carousel {
        gap: 10px;
    }
    .gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .gallery-item {
        flex-basis: 100%;
    }
    .gallery-item img {
        height: 240px;
    }
}

/* Lightbox */
.lightbox[hidden] {
    display: none;
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: grid;
    place-items: center;
    z-index: 1002;
    padding: 16px;
}
.lightbox-img {
    max-width: min(1200px, 96vw);
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.lightbox-close:focus-visible {
    outline: 2px solid var(--gold);
}
:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.site-footer {
    background: #111;
    color: #ddd;
}
.footer-grid {
    display: grid;
    gap: clamp(16px, 3vw, 26px);
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: clamp(28px, 6vw, 46px) 0;
}
.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}
.footer-col h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1rem;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.footer-col a {
    color: #f4e9cf;
    text-decoration: none;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-area {
    margin: 0.5rem 0 0;
    color: #bbb;
}
.footer-contact li {
    color: #ccc;
}
.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-base small {
    display: block;
    padding: 12px 0;
    color: #aaa;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
