/* ── JoeLouis (headers & titles) ── */
@font-face {
    font-family: 'JoeLouis';
    src: url('https://fonts.cdnfonts.com/s/14553/JoeLouisBold.woff') format('woff');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
/* ── TeX Gyre Adventor (body text) ── */
@font-face {
    font-family: 'TeX Gyre Adventor';
    src: url('https://fonts.cdnfonts.com/s/14697/texgyreadventor-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TeX Gyre Adventor';
    src: url('https://fonts.cdnfonts.com/s/14697/texgyreadventor-bold.woff') format('woff');
    font-weight: 600 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TeX Gyre Adventor';
    src: url('https://fonts.cdnfonts.com/s/14697/texgyreadventor-italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-yellow: #f4c430;
    --accent-orange: #e8a628;
    --deep-charcoal: #333333;
    --warm-cream: #faf8f3;
    --soft-gray: #666666;
    --light-gray: #e8e8e8;

    /* Adjust this single value to change the breathing room between
       every major section on the page (vision, quote, features,
       timeline, program details, neighbourhood, contact). */
    --section-gap: 180px;
}
html { overflow-x: hidden; width: 100%; }
body { font-family: 'TeX Gyre Adventor', 'Trebuchet MS', sans-serif; color: var(--deep-charcoal); background-color: white; line-height: 1.6; overflow-x: hidden; width: 100%; }

header { background: white; padding: 20px 0; border-bottom: 1px solid var(--light-gray); position: relative; z-index: 20; }
nav { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'JoeLouis', serif; font-size: 24px; font-weight: 600; color: var(--deep-charcoal); text-transform: uppercase; letter-spacing: 1px; }
.subtitlelogo { font-family: 'Tex Gyre Adventor', serif; font-size: 18px; font-weight: 300; color: var(--deep-charcoal); text-transform: lowercase; letter-spacing: 1px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--deep-charcoal); font-size: 14px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-yellow); }

/* ── MINI HEADER (appears once the main header scrolls out of view) ── */
.mini-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--light-gray);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mini-header.is-visible { transform: translateY(0); }
.mini-logo {
    font-family: 'JoeLouis', serif;
    /* 30% of the full logo's 24px size */
    font-size: calc(24px * 0.6);
    font-weight: 600;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hamburger-btn {
    width: 30px; height: 22px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: none; border: none; padding: 0; cursor: pointer;
    flex-shrink: 0;
}
.hamburger-btn span { display: block; height: 2px; width: 100%; background: var(--deep-charcoal); transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-nav-panel {
    position: fixed;
    top: 0; right: 0;
    z-index: 55;
    width: min(280px, 80vw);
    height: 100%;
    background: white;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    padding: 90px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav-panel.is-open { transform: translateX(0); }
.mobile-nav-panel ul { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.mobile-nav-panel a { text-decoration: none; color: var(--deep-charcoal); font-size: 15px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.mobile-nav-panel a:hover { color: var(--accent-orange); }

/* ── BACK TO TOP CIRCLE ── */
.top-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 60;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--primary-yellow);
    color: var(--deep-charcoal);
    border: none;
    font-family: 'TeX Gyre Adventor', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.top-fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.top-fab:hover { background: var(--accent-orange); }

@media (prefers-reduced-motion: reduce) {
    .mini-header, .top-fab, .mobile-nav-panel, .hamburger-btn span { transition: none; }
}

/* ── KICKER TITLES (▸▸▸ Heading) ── */
.kicker-arrows { color: var(--primary-yellow); font-size: 0.55em; letter-spacing: 2px; margin-right: 14px; vertical-align: middle; }
.kicker-title { display: flex; align-items: center; justify-content: center; gap: 4px; }
.kicker-title.light { color: white; }

/* ── HERO ROTATING CAROUSEL ── */
.hero-carousel { position: relative; width: 100%; height: clamp(260px, 42vw, 560px); overflow: hidden; background: #2a2520; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-triangle { position: absolute; bottom: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 0 110px 130px; border-color: transparent transparent var(--primary-yellow) transparent; z-index: 3; }
.hero-triangle.small { border-width: 0 0 70px 84px; }
.hero-dots { position: absolute; bottom: 20px; left: 32px; display: flex; gap: 10px; z-index: 4; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.45); cursor: pointer; padding: 0; transition: background 0.3s ease, transform 0.3s ease; }
.hero-dots button.is-active { background: var(--primary-yellow); transform: scale(1.25); }

/* ── HERO TEXT PANEL ── */
.hero-text-panel { background: var(--warm-cream); max-width: 900px; margin: 0 auto; padding: 70px 40px;  box-shadow: 0 0 0 100vmax var(--warm-cream); clip-path: inset(0 -100vmax); }
.announcement-badge { display: inline-block; background: var(--primary-yellow); color: var(--deep-charcoal); padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 26px; }
h1 { font-family: 'JoeLouis', serif; font-size: 48px; font-weight: 400; color: var(--deep-charcoal); line-height: 1.15; margin-bottom: 0px; text-transform: uppercase; letter-spacing: 1.5px; }
h1 strong { font-weight: 600; color: var(--primary-yellow); white-space: nowrap;}
.hero-subtitle { font-size: 19px; color: var(--soft-gray); max-width: 620px; margin-bottom: 32px; }
.cta-button { display: inline-block; background: var(--primary-yellow); color: var(--deep-charcoal); padding: 16px 40px; text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; }
.cta-button:hover { background: var(--accent-orange); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(244,196,48,0.3); }

/* ── INFO SECTION ── */
.info-section { max-width: 1200px; margin: var(--section-gap) auto; padding: 0 40px; position: relative; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-title { font-family: 'JoeLouis', serif; font-size: 40px; font-weight: 400; color: var(--deep-charcoal); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px; }
.section-description { font-size: 18px; color: var(--soft-gray); max-width: 700px; margin: 0 auto; }

/* ── VISION ROWS (scroll-reveal illustration + text pairs) ── */
.vision-rows { display: flex; flex-direction: column; gap: 90px; margin-top: 20px; }
.vision-row { display: flex; align-items: center; gap: 60px; }
.vision-row.reverse { flex-direction: row-reverse; }
.vision-text { flex: 1; font-family: 'TeX Gyre Adventor', serif; font-style: italic; font-size: 26px; line-height: 1.5; color: var(--deep-charcoal); }
.vision-image { flex: 1; position: relative; }
.vision-image img { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.vision-row-floorplan { margin-top: -30px; }
.vision-row-floorplan img { width: 70%; max-width: 640px; display: block; }

/* ── CIRCLE ACCENTS (yellow, mostly static, some gently drifting) ── */
.circle-accent { position: absolute; border-radius: 50%; background-color: var(--primary-yellow); opacity: 0.75; z-index: 5; pointer-events: none; }


.circle-sm { width: 40px; height: 40px; }
.circle-md { width: 90px; height: 90px; }
.circle-lg { width: 150px; height: 150px; }

/* Each circle gets its own random waypoints (--dx1/--dy1 etc.), duration,
   and direction assigned by script.js on load, so no two circles trace
   the same path. The px fallbacks below only apply if JS hasn't run yet. */
.circle-drift {
    animation-name: circleDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: var(--drift-duration, 7s);
    animation-delay: var(--drift-delay, 0s);
    animation-direction: var(--drift-direction, normal);
}

@keyframes circleDrift {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(var(--dx1, 34px), var(--dy1, -26px)); }
    50%  { transform: translate(var(--dx2, 10px), var(--dy2, 32px)); }
    75%  { transform: translate(var(--dx3, -28px), var(--dy3, -14px)); }
    100% { transform: translate(0, 0); }
}

/* ── QUOTE / SILHOUETTE SECTION ── */
.quote-section { max-width: 1100px; margin: var(--section-gap) auto; padding: 0 40px; position: relative; text-align: center; }
.quote-text { font-family: 'TeX Gyre Adventor', serif; font-style: italic; font-size: 30px; color: var(--deep-charcoal); margin-bottom: 50px; }
.silhouette-row { position: relative; margin: 0 auto 60px; max-width: 240px; }
.silhouette-row img { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.brand-recap h3 { font-family: 'JoeLouis', serif; font-size: 30px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
.brand-recap p { color: var(--soft-gray); font-size: 17px; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; margin-top: 60px; align-items: start; }
.feature-card { background: var(--warm-cream); padding: 50px 40px; transition: transform 0.35s ease, box-shadow 0.35s ease; position: relative; overflow: hidden; cursor: pointer; user-select: none; outline: none; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary-yellow); transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-card:hover::before, .feature-card.expanded::before { transform: scaleY(1); }
.feature-card.expanded { transform: scale(1.03); box-shadow: 0 30px 60px rgba(0,0,0,0.13); z-index: 10; }

.feature-icon { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin-bottom: 25px; border: 3px solid var(--primary-yellow); background: var(--light-gray); }
.feature-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.feature-title { font-family: 'JoeLouis', serif; font-size: 28px; font-weight: 600; color: var(--deep-charcoal); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.feature-description { color: var(--soft-gray); font-size: 16px; line-height: 1.7; }

.expand-toggle { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--accent-orange); }
.expand-arrow { display: inline-block; width: 14px; height: 14px; border-right: 2px solid var(--accent-orange); border-bottom: 2px solid var(--accent-orange); transform: rotate(45deg); transition: transform 0.35s ease; margin-top: -4px; }
.feature-card.expanded .expand-arrow { transform: rotate(225deg); margin-top: 4px; }

.feature-expand { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, margin-top 0.4s ease; opacity: 0; margin-top: 0; }
.feature-card.expanded .feature-expand { max-height: 640px; opacity: 1; margin-top: 28px; }
.expand-image { width: 100%; height: 190px; border-radius: 4px; overflow: hidden; margin-bottom: 20px; background: var(--light-gray); }
.expand-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expand-text { font-size: 15px; color: var(--soft-gray); line-height: 1.8; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.expand-text strong { color: var(--deep-charcoal); }

/* ── TIMELINE ── */
.timeline-section { background: var(--deep-charcoal); color: white; padding: 120px 40px; margin: var(--section-gap) 0; }
.timeline-container { max-width: 900px; margin: 0 auto; }
.timeline-section .section-title { color: white; text-align: center; margin-bottom: 80px; }
.timeline-items { position: relative; --timeline-pad: 50px; padding-left: var(--timeline-pad); }
.timeline-item { position: relative; margin-bottom: 60px; padding-left: 40px; }
.timeline-item::before { content: ''; position: absolute; left: calc(-1 * var(--timeline-pad) + 0.5px - 5.5px); top: 6px; width: 11px; height: 11px; background: var(--primary-yellow); border-radius: 50%; box-shadow: 0 0 0 4px var(--deep-charcoal), 0 0 0 5px rgba(244,196,48,0.25); z-index: 1; }
/* Connector segment from this item's circle down to the next item's circle.
   Omitted on the last item so the line stops exactly at the final circle
   instead of continuing past it. */
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: calc(-1 * var(--timeline-pad) + 0.5px); top: 6px; width: 1px; height: calc(100% + 60px); background: rgba(255,255,255,0.14); }
.timeline-date { font-family: 'JoeLouis', serif; font-size: 24px; font-weight: 600; color: var(--primary-yellow); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.timeline-title { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.timeline-description { color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ── PROGRAM DETAILS ── */
.program-details { max-width: 1200px; margin: var(--section-gap) auto; padding: 0 40px; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.detail-block h3 { font-family: 'JoeLouis', serif; font-size: 32px; color: var(--primary-yellow); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.detail-list { list-style: none; }
.detail-list li { padding: 15px 0; border-bottom: 1px solid var(--light-gray); color: var(--soft-gray); font-size: 16px; }
.detail-list li:last-child { border-bottom: none; }
.detail-list strong { color: var(--deep-charcoal); font-weight: 500; }

/* ── NEIGHBOURHOOD CAROUSEL ── */
.neighbourhood-carousel-wrap { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); display: flex; justify-content: flex-end; padding-right: 24px; margin-top: 70px; }
.neighbourhood-carousel { position: relative; width: 33.333vw; height: clamp(200px, 18vw, 320px); overflow: hidden; background: #d8d8d8; }
.nc-slides { position: relative; width: 100%; height: 100%; }
.nc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.nc-slide.is-active { opacity: 1; }
.nc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nc-slide.placeholder-slide { display: flex; align-items: center; justify-content: center; background: var(--warm-cream); color: var(--soft-gray); font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; border: 2px dashed var(--light-gray); }
.nc-dots { position: absolute; bottom: 18px; left: 28px; display: flex; gap: 10px; z-index: 4; }
.nc-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(80,80,80,0.35); cursor: pointer; padding: 0; transition: background 0.3s ease, transform 0.3s ease; }
.nc-dots button.is-active { background: var(--primary-yellow); transform: scale(1.25); }

/* ── VIDEO EMBED FILL (used by the community-video test page to drop a
   background video into the same slot/size as the photo carousel) ── */
.video-embed-fill { position: absolute; inset: 0; }
.video-embed-fill iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── SHIMOKITAZAWA SECTION ── */
.shimo-section { max-width: 1200px; margin: var(--section-gap) auto; padding: 0 40px; }
.shimo-intro { text-align: center; margin-bottom: 80px; }
.shimo-intro .section-description { font-size: 18px; color: var(--soft-gray); max-width: 700px; margin: 0 auto 16px; }
.shimo-kicker { display: inline-block; background: var(--primary-yellow); color: var(--deep-charcoal); padding: 6px 18px; border-radius: 20px; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 28px; }

.shimo-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--light-gray); margin-bottom: 80px; }
.shimo-pillar { padding: 50px 40px; border-right: 1px solid var(--light-gray); position: relative; }
.shimo-pillar:last-child { border-right: none; }
.pillar-number { font-family: 'Crimson Pro', serif; font-size: 72px; font-weight: 300; color: var(--primary-yellow); opacity: 0.35; line-height: 1; margin-bottom: 8px; }
.pillar-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-orange); font-weight: 500; margin-bottom: 14px; }
.pillar-title { font-family: 'JoeLouis', serif; font-size: 26px; font-weight: 600; color: var(--deep-charcoal); margin-bottom: 16px; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }
.pillar-text { font-size: 15px; color: var(--soft-gray); line-height: 1.8; }

/* ── ACCESS CARDS ── */
.access-cards { display: flex; flex-direction: column; gap: 24px; }
.access-card { background: var(--warm-cream); border-left: 4px solid var(--primary-yellow); padding: 40px 48px; }
.access-card.with-image { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; padding: 0; }
.access-card-body { flex: 1; min-width: 240px; padding: 40px 0 40px 48px; }
.access-card-image { width: clamp(140px, 24vw, 260px); flex-shrink: 1; min-width: 140px; overflow: hidden; }
.access-card-image img { width: 100%; height: auto; display: block; }
.access-card svg { flex-shrink: 0; margin-bottom: 16px; display: block; }
.access-card h4 { font-family: 'JoeLouis', serif; font-size: 22px; color: var(--deep-charcoal); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.access-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.access-list li { display: flex; align-items: baseline; gap: 12px; font-size: 15px; color: var(--soft-gray); }
.access-list li strong { color: var(--deep-charcoal); font-weight: 500; white-space: nowrap; }
.access-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-yellow); flex-shrink: 0; margin-top: 5px; }

/* ── CONTACT CTA ── */
.contact-cta { background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-orange) 100%); color: var(--deep-charcoal); padding: 100px 40px; text-align: center; }
.contact-cta h2 { font-family: 'JoeLouis', serif; font-size: 44px; font-weight: 400; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-cta p { font-size: 19px; margin-bottom: 36px; opacity: 0.95; }
.mailing-form { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.mailing-form input { flex: 1; min-width: 220px; padding: 16px 20px; border: 2px solid var(--deep-charcoal); background: white; font-family: inherit; font-size: 15px; }
.mailing-form input::placeholder { color: #b9b9b9; font-style: italic; }
.mailing-form button { background: var(--deep-charcoal); color: white; border: none; padding: 16px 28px; font-family: inherit; font-style: italic; font-size: 15px; cursor: pointer; transition: background 0.3s ease; white-space: nowrap; }
.mailing-form button:hover { background: #1a1a1a; }

.contact-email {    margin-top: 24px; font-size: 16px; color: var(--deep-charcoal);}
.contact-email a {    color: var(--deep-charcoal); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease;}
.contact-email a:hover {    border-bottom-color: var(--deep-charcoal);}

#mailingMessage { margin-top: 18px; font-size: 15px; min-height: 24px; }
#mailingMessage.success { color: #2e7d32; }
#mailingMessage.error { color: #c62828; }


/* ── FOOTER ── */
footer { background: var(--deep-charcoal); color: white; padding: 60px 40px 40px; text-align: center; }
.footer-logo { font-family: 'JoeLouis', serif; font-size: 28px; margin-bottom: 30px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.footer-nav { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-nav a:hover { color: white; }
.footer-bottom { color: rgba(255,255,255,0.5); font-size: 13px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
    .circle-drift { animation: none; }
    .hero-slide, .nc-slide { transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
    h1 { font-size: 40px; } .hero-subtitle { font-size: 18px; }
    .details-grid { grid-template-columns: 1fr; gap: 50px; }
    .nav-links { display: none; }
    .timeline-items { --timeline-pad: 30px; padding-left: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .vision-row, .vision-row.reverse { flex-direction: column; gap: 30px; }
    .shimo-pillars { grid-template-columns: 1fr; }
    .shimo-pillar { border-right: none; border-bottom: 1px solid var(--light-gray); }
    .shimo-pillar:last-child { border-bottom: none; }
    .access-card { padding: 30px 24px; }
    .access-card-body { padding: 30px 0 30px 24px; }
    .vision-row-floorplan img { width: 100%; }
    .neighbourhood-carousel { width: 60vw; }
}
@media (max-width: 640px) {
    h1 { font-size: 32px; } .section-title { font-size: 32px; }
    .hero-text-panel { padding: 50px 24px; }
    nav { padding: 0 20px; }
    :root { --section-gap: 100px; }
    .info-section, .program-details, .shimo-section, .quote-section { padding: 0 20px; }
    .timeline-section { padding: 80px 20px; }
    .contact-cta h2 { font-size: 30px; }
    .mailing-form { flex-direction: column; align-items: stretch; }
    .quote-text { font-size: 22px; }
    .vision-text { font-size: 20px; }
    .neighbourhood-carousel { width: 100vw; height: clamp(200px, 55vw, 300px); }
}
