/* ============================================
   THEME TOKENS
============================================ */
:root {
    --color-bg:           #faf6f0;
    --color-bg-alt:       #f3ede4;
    --color-card:         #ffffff;
    --color-ink:          #1a1a1a;
    --color-ink-muted:    #6b6258;
    --color-ink-soft:     #8a8073;
    --color-border:       #e8dfd2;
    --color-border-soft:  #f0e8db;
    --color-primary:      #1f3d3d;
    --color-primary-dark: #142828;
    --color-primary-soft: #2d5454;
    --color-accent:       #c25a2f;
    --color-accent-dark:  #a44820;
    --color-accent-soft:  #f5e3d8;
    --color-sage:         #7a9577;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --radius-full:  9999px;

    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
    --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 24px 64px rgba(26, 26, 26, 0.14);

    --header-height: 76px;
    --banner-height: 0px;

    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --container-max: 1200px;
    --container-pad: 24px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

section {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

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

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-ink);
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

h5 {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

p {
    color: var(--color-ink-muted);
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.85);
}

.section-head {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-lede {
    font-size: 1.075rem;
    color: var(--color-ink-muted);
}

/* ============================================
   ANNOUNCEMENT BANNER
============================================ */
.announcement {
    background: var(--color-primary);
    color: #fff;
    position: relative;
    z-index: 1001;
}

.announcement-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 11px var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    position: relative;
}

.announcement-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.announcement p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
}

.announcement p strong {
    color: #fff;
    font-weight: 600;
}

.announcement a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
    margin-left: 4px;
}

.announcement a:hover {
    color: var(--color-accent-soft);
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.announcement-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

body.has-banner { --banner-height: 44px; }

@media (max-width: 600px) {
    .announcement-inner {
        padding: 9px 40px 9px 14px;
        gap: 8px;
    }
    .announcement p { font-size: 0.82rem; line-height: 1.35; }
    .announcement-dot { width: 6px; height: 6px; }
}

/* ============================================
   HEADER
============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 246, 240, 0.95);
    border-bottom-color: var(--color-border);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-height);
}

@media (max-width: 600px) {
    .header-inner { gap: 12px; padding: 14px 18px; }
    .logo-icon { width: 28px; height: 28px; }
    .logo-main { font-size: 1.05rem; }
    .logo-sub { font-size: 0.62rem; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: var(--color-primary);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    margin-top: 3px;
    font-weight: 500;
}

.primary-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.primary-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-ink);
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.primary-nav a:hover {
    color: var(--color-primary);
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px var(--container-pad);
        gap: 14px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        z-index: 999;
        max-height: 75vh;
        overflow-y: auto;
    }
    .primary-nav.open {
        display: flex;
    }
    .primary-nav a {
        font-size: 1rem;
        width: 100%;
        padding: 4px 0;
    }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.98rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    padding: 16px 28px;
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--banner-height));
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url("images/Hanson_front_aerial.jpg") center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 18s ease-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 40, 40, 0.35) 0%,
            rgba(20, 40, 40, 0.45) 60%,
            rgba(20, 40, 40, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 80px var(--container-pad);
    text-align: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 24px;
}

.hero h1 br { display: block; }

.hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: bounce 2.5s ease-in-out infinite;
}

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

.hero-scroll:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   STATS BAR
============================================ */
.stats {
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    text-align: left;
}

.stat svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.stat div {
    font-size: 0.95rem;
    color: var(--color-ink-muted);
    line-height: 1.3;
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-ink);
    letter-spacing: -0.01em;
}

@media (max-width: 720px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ============================================
   ABOUT
============================================ */
.about {
    padding: 100px 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

@media (max-width: 880px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        aspect-ratio: 4 / 3;
    }
}

/* ============================================
   AMENITIES
============================================ */
.amenities {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity {
    background: var(--color-card);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-soft);
}

.amenity svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.amenity h4 {
    color: var(--color-ink);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.amenity p {
    font-size: 0.92rem;
    color: var(--color-ink-soft);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 980px) {
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .amenity { padding: 22px 18px; }
}
@media (max-width: 420px) {
    .amenities-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    padding: 100px 0;
    background: var(--color-bg);
}

.gallery-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-main {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-slow);
}

.gallery-main img:hover,
.gallery-side img:hover {
    transform: scale(1.04);
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 16px;
}

.gallery-side img {
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
}

.gallery-side img:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
}

@media (max-width: 880px) {
    .gallery-featured {
        grid-template-columns: 1fr;
    }
    .gallery-main {
        aspect-ratio: 4 / 3;
    }
    .gallery-side {
        grid-template-rows: auto auto;
    }
    .gallery-side img:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .gallery-side {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gallery-featured { gap: 10px; }
}

/* ============================================
   LOCATION
============================================ */
.location {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 540px;
    position: sticky;
    top: calc(var(--header-height) + var(--banner-height) + 20px);
}

.map-wrap iframe { display: block; height: 100%; }

.nearby {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border-soft);
}

.nearby h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.nearby ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nearby li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nearby li > span {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--color-accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nearby li > div {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-ink-muted);
    line-height: 1.45;
}

.nearby li > div strong {
    display: block;
    color: var(--color-ink);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

@media (max-width: 880px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .map-wrap {
        height: 360px;
        position: static;
    }
}

/* ============================================
   LEASE TERMS + RENOVATION CALLOUT
============================================ */
.terms {
    padding: 100px 0;
    background: var(--color-bg);
}

.callout {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.callout::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.22;
    border-radius: 50%;
}

.callout-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.callout h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    position: relative;
    z-index: 1;
}

.callout p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.callout-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent-soft);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.callout-link:hover {
    color: #fff;
    border-bottom-color: var(--color-accent-soft);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.term-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    border: 1px solid var(--color-border-soft);
    transition: var(--transition);
}

.term-card:hover {
    border-color: var(--color-accent-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.term-card svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.term-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.term-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 980px) {
    .terms-grid { grid-template-columns: repeat(2, 1fr); }
    .callout { padding: 36px 32px; }
}
@media (max-width: 480px) {
    .terms-grid { grid-template-columns: 1fr; }
    .callout { padding: 32px 24px; }
}

/* ============================================
   AVAILABILITY
============================================ */
.availability {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.calendar-wrap {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-soft);
    overflow: hidden;
}

.calendar-wrap iframe {
    display: block;
    border-radius: var(--radius-md);
}

.availability-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--color-ink-muted);
}

/* ============================================
   FAQ
============================================ */
.faq {
    padding: 100px 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    background: var(--color-card);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-list details[open] {
    border-color: var(--color-accent-soft);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: var(--transition);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary:hover {
    background: var(--color-bg);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-list details[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    color: #fff;
}

.faq-list p {
    padding: 0 28px 24px;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-list summary { padding: 18px 20px; font-size: 1rem; }
    .faq-list p { padding: 0 20px 20px; }
}

/* ============================================
   CONTACT
============================================ */
.contact {
    padding: 100px 0;
    background: var(--color-primary);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.contact-text h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-direct a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    transition: var(--transition);
}

.contact-direct a:hover {
    color: var(--color-accent-soft);
}

.contact-direct svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.inquiry-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.field {
    margin-bottom: 18px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

.field label .optional {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.78rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(194, 90, 47, 0.15);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

/* Date input calendar icon — make visible on dark bg */
.field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.6);
    cursor: pointer;
}

.form-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 16px 0 0;
    line-height: 1.5;
}

.field-hint {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: -8px 0 18px;
    line-height: 1.5;
}

@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .inquiry-form { padding: 28px 22px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.logo-footer {
    color: #fff;
    margin-bottom: 16px;
}

.logo-footer .logo-main { color: #fff; }
.logo-footer .logo-sub { color: rgba(255, 255, 255, 0.5); }

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h5 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px var(--container-pad);
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@media (max-width: 880px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   LIGHTBOX
============================================ */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

#lightbox.open { display: flex; }

#lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
    .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 20px; }
    .lightbox-close { top: 16px; right: 16px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
