:root {
    --background: #0d0d0d;
    --foreground: #ece5d8;
    --card: #141414;
    --secondary: #1d1d1d;
    --muted: #a79572;
    --muted-text: rgba(236, 229, 216, 0.7);
    --border: rgba(213, 184, 99, 0.18);
    --gold: #d6b44e;
    --gold-light: #ecd8a2;
    --gold-dark: #a97b12;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --container: 1180px;
    --radius: 4px;
    --transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

iframe {
    display: block;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 50;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.93);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 86px;
}

.brand,
.footer-brand {
    font-family: var(--font-heading);
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 600;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: clamp(180px, 18vw, 280px);
    height: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link,
.mobile-link {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: rgba(236, 229, 216, 0.78);
    transition: color var(--transition);
}

.nav-link:hover,
.mobile-link:hover,
.contact-info a:hover {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.92rem 1.65rem;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    transition: all var(--transition);
}

.btn:hover {
    background: var(--gold);
    color: #0d0d0d;
}

.btn-lg {
    padding: 1.05rem 2rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background: var(--gold);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 1.5rem 1rem 2rem;
    background: rgba(13, 13, 13, 0.97);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-cta {
    margin-top: 0.3rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
}

.hero-overlay {
    background: rgba(13, 13, 13, 0.62);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 6rem;
}

.hero h1,
.section-heading h2,
.content-block h2,
.service-card h3,
.contact-info h3,
.policy-card h3 {
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.1;
}

.hero h1 {
    font-size: clamp(3.4rem, 9vw, 7rem);
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo {
    width: min(92vw, 720px);
    height: auto;
    margin: 0 auto;
}

.subtitle,
.eyebrow {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-light);
}

.subtitle {
    margin: 1rem 0 1.4rem;
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: 0.15em;
}

.hero-tagline {
    margin: 1.5rem auto 2.25rem;
    max-width: 42rem;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(236, 229, 216, 0.84);
}

.gold-separator {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-separator.center {
    margin-inline: auto;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    width: 1px;
    height: 70px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: floatLine 2s ease-in-out infinite;
}

@keyframes floatLine {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--background);
}

.section-secondary {
    background: var(--secondary);
}

.section-gap {
    margin-bottom: 5rem;
}

.two-columns,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.content-block {
    max-width: 38rem;
}

.content-block h2,
.section-heading h2 {
    color: var(--gold);
    font-size: clamp(2.3rem, 5vw, 4rem);
    letter-spacing: 0.03em;
}

.content-block p,
.contact-info p,
.service-card li,
.footer-copy,
.footer-subtitle,
.footer-credit {
    color: var(--muted-text);
}

.content-block p + p,
.policy-card p + p,
.contact-info .info-card + .info-card {
    margin-top: 0.9rem;
}

.content-block .gold-separator {
    margin: 1.4rem 0 1.7rem;
}

.media-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.media-narrow-wrap {
    display: flex;
    justify-content: center;
}

.media-portrait {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(236, 229, 216, 0.65);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.service-card {
    border: 1px solid var(--border);
    background: rgba(13, 13, 13, 0.35);
    padding: 2rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    border-color: rgba(214, 180, 78, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 2rem;
    letter-spacing: 0.03em;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}

.service-card li {
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.service-price {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: var(--muted);
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

.contact-grid {
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.3rem;
}

.info-card {
    border-left: 1px solid var(--gold);
    padding-left: 1.25rem;
}

.contact-info h3,
.policy-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.muted {
    color: rgba(236, 229, 216, 0.52);
    font-size: 0.85rem;
}

.map-frame {
    overflow: hidden;
    min-height: 520px;
    border: 1px solid var(--border);
}

.map-frame iframe {
    min-height: 520px;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

.policy-card {
    margin: 4rem auto 0;
    max-width: 42rem;
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin: 0 0 0.6rem;
    font-size: 2rem;
}

.footer-subtitle,
.footer-copy,
.footer-credit {
    margin: 0.5rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-up { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.footer-brand .brand-logo {
    width: clamp(60px, 10vw, 90px); 
    margin: 0 auto;
    height: auto; 
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-columns,
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 820px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .section {
        padding: 5rem 0;
    }

    .two-columns,
    .contact-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .reverse-mobile > :first-child {
        order: 2;
    }

    .reverse-mobile > :last-child {
        order: 1;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.4rem), var(--container));
    }

    .nav-inner {
        min-height: 74px;
    }

    .service-card,
    .policy-card {
        padding: 1.4rem;
    }

    .hero-tagline,
    .btn,
    .nav-link,
    .mobile-link {
        letter-spacing: 0.14em;
    }
}

@media (max-width: 720px) {
    .brand-logo {
        width: clamp(140px, 36vw, 220px);
    }

    .hero-logo {
        width: min(94vw, 520px);
    }
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin: 1.2rem 0 0.8rem;
}

.footer-link-btn {
    border: 0;
    background: transparent;
    color: rgba(236, 229, 216, 0.78);
    font: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}

.footer-link-btn:hover,
.footer-link-btn:focus-visible,
.modal-content a:hover,
.modal-content a:focus-visible {
    color: var(--gold);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 120;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.modal-panel {
    position: relative;
    width: min(100%, 760px);
    max-height: min(86vh, 920px);
    overflow-y: auto;
    background: #111111;
    border: 1px solid var(--border);
    padding: 2rem;
    z-index: 1;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.modal-panel h2 {
    margin: 0;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.modal-panel .gold-separator {
    margin: 1rem 0 1.5rem;
}

.modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    border: 0;
    background: transparent;
    color: var(--foreground);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.modal-content p {
    margin: 0 0 1.1rem;
    color: var(--muted-text);
}

.modal-content strong,
.cookie-option strong,
.cookie-banner-text h2 {
    color: var(--gold-light);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 110;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.cookie-banner-text h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cookie-banner-text p,
.cookie-option p {
    margin: 0;
    color: var(--muted-text);
}

.cookie-banner-actions,
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border);
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
}

.cookie-toggle {
    cursor: pointer;
}

.cookie-status {
    white-space: nowrap;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-status-fixed {
    color: var(--gold-light);
}

.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-slider {
    position: relative;
    width: 56px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.08);
    transition: background var(--transition), border-color var(--transition);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--foreground);
    transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(214, 180, 78, 0.24);
    border-color: rgba(214, 180, 78, 0.55);
}

.toggle-switch input:checked + .toggle-slider::after {
    transform: translateX(24px);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .cookie-banner-inner,
    .cookie-option {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions,
    .modal-actions {
        width: 100%;
    }

    .cookie-banner-actions .btn,
    .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .modal {
        padding: 0.75rem;
    }

    .modal-panel {
        padding: 1.4rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.55rem;
    }
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity var(--transition), color var(--transition);
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    opacity: 0.88;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .scroll-indicator {
        display: none;
    }
}


.local-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.local-seo-copy {
    max-width: 46rem;
}

.local-seo-copy p,
.highlight-card p,
.faq-item p {
    color: var(--muted-text);
}

.local-seo-copy p + p {
    margin-top: 1rem;
}

.local-seo-copy strong,
.highlight-card h3,
.faq-item h3 {
    color: var(--gold-light);
}

.local-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.local-highlights,
.faq-grid {
    display: grid;
    gap: 1rem;
}

.highlight-card,
.faq-item {
    border: 1px solid var(--border);
    background: rgba(13, 13, 13, 0.35);
    padding: 1.35rem;
}

.highlight-card h3,
.faq-item h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.1;
}

.faq-wrap {
    margin-top: 4rem;
}

.section-heading-compact {
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .local-seo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .local-cta-row .btn {
        width: 100%;
    }
}
