/* ==========================================================
   The Ashlar on Prospect — Public Site
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
}

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

a {
    color: inherit;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-narrow {
    max-width: var(--content-width-narrow);
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-sm);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 var(--space-sm);
    color: var(--color-ink);
}

h2 {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    margin: 0 0 var(--space-sm);
    color: var(--color-ink-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 34px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-primary {
    background: var(--color-ink);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #1c1613;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(43, 36, 34, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-light {
    background: var(--color-cream-deep);
    color: var(--color-ink);
    box-shadow: 0 0 0 rgba(168, 150, 130, 0);
}

.btn-light:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(232, 227, 217, 0.18);
}

.btn-light:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(232, 227, 217, 0.08);
    color: var(--color-cream-deep);
    border-color: rgba(232, 227, 217, 0.75);
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(232, 227, 217, 0.2);
    border-color: var(--color-cream-deep);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.btn-dark-outline {
    background: transparent;
    color: var(--color-ink);
    border-color: var(--color-ink);
}

.btn-dark-outline:hover {
    background: var(--color-ink);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   Brand (the client's actual logo — light/dark variants
   swapped based on background)
   ---------------------------------------------------------- */
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 58px;
    width: auto;
    display: block;
}

.brand-logo-dark {
    display: none;
}

/* ----------------------------------------------------------
   Navigation
   ---------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: padding 0.35s var(--ease);
}

.site-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: transparent;
    transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav.is-scrolled {
    padding: 14px 0;
}

.site-nav.is-scrolled::before {
    background: rgba(247, 245, 241, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(43, 36, 34, 0.08);
}

.site-nav.is-scrolled .brand-logo-light {
    display: none;
}

.site-nav.is-scrolled .brand-logo-dark {
    display: block;
}

.nav-links-panel {
    display: contents;
}

.nav-links-panel-header {
    display: none;
}

.nav-close {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transition: right 0.3s var(--ease);
}

.nav-links a:hover::after {
    right: 0;
}

.site-nav.is-scrolled .nav-links a {
    color: var(--color-ink-soft);
}

.nav-links li:has(.btn) a::after {
    display: none;
}

.nav-links .btn {
    padding: 10px 22px;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--color-white);
}

.nav-toggle svg {
    position: absolute;
    top: 8px;
    left: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle .icon-close {
    opacity: 0;
    transform: rotate(-45deg);
}

.nav-toggle.is-active .icon-hamburger {
    opacity: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-active .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.site-nav.is-scrolled .nav-toggle {
    color: var(--color-ink);
}

.nav-backdrop {
    display: none;
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-ink);
    cursor: grab;
}

.hero:active {
    cursor: grabbing;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide-img {
    position: absolute;
    inset: -3%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 12, 10, 0.5) 0%,
        rgba(15, 12, 10, 0.08) 24%,
        rgba(15, 12, 10, 0.05) 52%,
        rgba(15, 12, 10, 0.55) 78%,
        rgba(15, 12, 10, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: var(--space-2xl);
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-cream-deep);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(14px);
    animation: heroRise 0.9s var(--ease) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.05;
    margin: 0 0 var(--space-md);
    max-width: 820px;
    color: var(--color-cream-deep);
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(18px);
    animation: heroRise 0.9s var(--ease) 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    animation: heroRise 0.9s var(--ease) 0.6s forwards;
}

@keyframes heroRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dots {
    position: absolute;
    right: var(--space-md);
    bottom: var(--space-lg);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
    background: var(--color-white);
    transform: scale(1.3);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(232, 227, 217, 0.55);
    color: var(--color-cream-deep);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(232, 227, 217, 0.1);
    border-color: var(--color-cream-deep);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.94);
}

.hero-arrow-prev {
    left: var(--space-md);
}

.hero-arrow-next {
    right: var(--space-md);
}

@media (max-width: 760px) {
    .hero-arrow {
        top: auto;
        bottom: var(--space-lg);
        transform: none;
        width: 36px;
        height: 36px;
    }

    .hero-arrow:active {
        transform: scale(0.94);
    }

    .hero-arrow-prev {
        left: var(--space-sm);
    }

    .hero-arrow-next {
        right: var(--space-sm);
    }

    .hero-dots {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-kicker, .hero-title, .hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .hero-slide, .hero-slide-img {
        transition: none;
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ----------------------------------------------------------
   Page banner (interior pages without a hero slider)
   ---------------------------------------------------------- */
.page-banner {
    position: relative;
    background: var(--color-ink);
    background-size: cover;
    background-position: center;
    padding: 170px 0 var(--space-xl);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.75) 60%, rgba(15, 12, 10, 0.9) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .eyebrow {
    color: var(--color-accent);
}

.page-banner h1 {
    color: var(--color-cream-deep);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: var(--space-xs);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.page-banner p {
    color: rgba(232, 227, 217, 0.85);
    max-width: 560px;
    margin: 0;
}

/* ----------------------------------------------------------
   Scroll-reveal (used across sections)
   ---------------------------------------------------------- */
.reveal {
    opacity: 1;
}

.reveal.reveal-armed {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.reveal-armed.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal.reveal-armed {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ----------------------------------------------------------
   About
   ---------------------------------------------------------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    min-width: 0;
}

.about-grid > * {
    min-width: 0;
}

.about-copy p {
    font-size: 1.05rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about-fact {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-sm);
}

.about-fact .fact-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
}

.about-fact .fact-label {
    font-size: 0.82rem;
    color: var(--color-ink-soft);
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--color-accent);
    z-index: 0;
    pointer-events: none;
}

.about-image {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(43, 36, 34, 0.18);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(0deg, rgba(15, 12, 10, 0.75) 0%, rgba(15, 12, 10, 0) 100%);
    color: var(--color-cream-deep);
    pointer-events: none;
}

.about-image-caption .caption-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.about-image-caption .caption-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
}

/* ----------------------------------------------------------
   Construction Updates (preview + full list share these cards)
   ---------------------------------------------------------- */
.updates-section {
    position: relative;
    overflow: hidden;
    background: var(--color-warm-gray);
}

.updates-section::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('/assets/images/hero/facade-corner.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(14px);
    z-index: 0;
}

.updates-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.8);
    z-index: 1;
}

.updates-section .container {
    position: relative;
    z-index: 2;
}

.content-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(43, 36, 34, 0.08);
    padding: var(--space-xl);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.section-heading h2 {
    margin: 0;
}

.updates-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.update-card {
    width: 100%;
    background: var(--color-cream);
    border-radius: 4px;
    border: 1px solid transparent;
    padding: var(--space-lg);
    transition: border-color 0.25s var(--ease);
}

.update-card:hover {
    border-color: var(--color-ink);
}

.update-date {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-xs);
    display: block;
}

.update-card h3 {
    margin-bottom: var(--space-xs);
}

.update-body {
    color: var(--color-ink-soft);
}

.update-body.is-full {
    white-space: normal;
}

.updates-empty {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    color: var(--color-ink-soft);
    max-width: 480px;
    margin: 0 auto;
}

.view-all-mobile {
    display: none;
}

/* ----------------------------------------------------------
   Contact
   ---------------------------------------------------------- */
.contact-section {
    background: var(--color-cream);
}

.contact-panel {
    /* base panel look comes from .content-panel; nothing extra needed here */
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-xl);
    min-width: 0;
}

.contact-grid > * {
    min-width: 0;
}

.contact-info h2 {
    margin-bottom: var(--space-sm);
}

.contact-info > p {
    font-size: 1rem;
}

.contact-detail-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--color-ink-soft);
}

.contact-detail-list li > span {
    min-width: 0;
    flex: 1;
}

.contact-detail-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent-dark);
}

.contact-form .form-row {
    display: flex;
    gap: var(--space-sm);
}

.contact-form .form-row .form-group {
    flex: 1;
    min-width: 0;
}

.contact-form .form-group {
    margin-bottom: var(--space-sm);
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form label .required-mark {
    color: var(--color-error);
    margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-cream);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-ink);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(56, 43, 38, 0.1);
}

.contact-form input.has-error,
.contact-form textarea.has-error {
    border-color: var(--color-error);
}

.contact-form .field-error {
    color: var(--color-error);
    font-size: 0.8rem;
    margin: 4px 0 0;
}

.recaptcha-wrapper {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

@media (max-width: 480px) {
    .recaptcha-wrapper {
        width: 243px;
        height: 62px;
        overflow: hidden;
    }

    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.8);
        transform-origin: 0 0;
    }
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    margin-bottom: var(--space-md);
}

.form-alert-success {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.form-alert-error {
    background: var(--color-error-bg);
    color: var(--color-error);
}

/* ----------------------------------------------------------
   Map
   ---------------------------------------------------------- */
.map-section {
    background: var(--color-warm-gray);
    line-height: 0;
}

.map-embed {
    width: 100%;
    height: 480px;
    border: 0;
    display: block;
    filter: grayscale(0.9) contrast(1.05) brightness(1.02);
    transition: filter 0.6s ease;
}

.map-section:hover .map-embed,
.map-embed:focus {
    filter: grayscale(0.15) contrast(1);
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer .brand {
    margin-bottom: var(--space-md);
}

.site-footer .brand-logo {
    height: 64px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: var(--space-md);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* ----------------------------------------------------------
   Back to top
   ---------------------------------------------------------- */
.back-to-top {
    position: fixed;
    right: var(--space-md);
    bottom: var(--space-md);
    z-index: 90;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ink);
    color: var(--color-cream-deep);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-cream-deep);
}

@media (max-width: 760px) {
    .back-to-top {
        width: 42px;
        height: 42px;
        right: var(--space-sm);
        bottom: var(--space-sm);
    }
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: -1;
        margin: var(--space-sm) 0 var(--space-md);
    }

    .content-panel {
        padding: var(--space-lg);
    }
}

@media (max-width: 760px) {
    .view-all-desktop {
        display: none;
    }

    .view-all-mobile {
        display: flex;
        margin-top: var(--space-md);
        width: 100%;
    }

    .nav-links-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(85vw, 360px);
        background: var(--color-ink);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        z-index: 101;
        overflow-y: auto;
    }

    .nav-links-panel.is-open {
        visibility: visible;
        transition: transform 0.4s var(--ease);
        transform: translateX(0);
    }

    .nav-links-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px var(--space-lg);
        border-bottom: 1px solid rgba(232, 227, 217, 0.14);
        flex-shrink: 0;
    }

    .nav-links-panel-header .brand-logo {
        height: 32px;
    }

    .nav-close {
        display: block;
        background: none;
        border: none;
        color: var(--color-cream-deep);
        cursor: pointer;
        padding: 6px;
        transition: opacity 0.2s ease;
    }

    .nav-close:hover {
        opacity: 0.7;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-sm) var(--space-lg) var(--space-lg);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(232, 227, 217, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: var(--color-cream-deep) !important;
        display: block;
        padding: 18px 4px;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 12, 10, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
        z-index: 100;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .about-facts {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: var(--space-xl) 0;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
