/* ============================================
   HANGAR FLEXSPACE — STYLES
   ============================================ */

/* ---------- RESET + ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Surfaces */
  --black:        #0a0908;
  --near-black:   #131210;
  --charcoal:     #1d1b17;
  --cream:        #f4efe5;
  --cream-soft:   #ece6d8;

  /* Accents */
  --gold:         #b8915a;
  --gold-deep:    #8a6a3e;
  --gold-soft:    #d4b889;

  /* Text */
  --text-on-dark:     rgba(244, 239, 229, 0.92);
  --text-on-dark-mut: rgba(244, 239, 229, 0.62);
  --text-on-light:    rgba(10, 9, 8, 0.88);
  --text-on-light-mut:rgba(10, 9, 8, 0.62);

  /* Lines */
  --line-light:  rgba(244, 239, 229, 0.12);
  --line-dark:   rgba(10, 9, 8, 0.10);

  /* Type */
  --font-sans:    "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Anton", "Archivo", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- TYPE PRIMITIVES ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400; /* Anton is intrinsically heavy at 400 */
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  font-size: clamp(60px, 10vw, 148px);
  letter-spacing: -0.005em;
  line-height: 0.9;
}

h2 {
  font-size: clamp(44px, 6.2vw, 88px);
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
}

p { margin: 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 12px;
  border: 1px solid var(--line-light);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--gold-deep);
  border-color: rgba(10, 9, 8, 0.18);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  z-index: 50;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 9, 8, 0.72);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.brand img { width: 180px; }

.nav {
  display: flex;
  gap: 34px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-mut);
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 18px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 24px 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184, 145, 90, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(184, 145, 90, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.7) 55%, rgba(5, 4, 3, 0.95) 100%),
    url("assets/hangarrenderingtwilight.jpg") center / cover no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 229, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, var(--black) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  text-align: center;
}

.hero-logo {
  width: min(720px, 92%);
  margin: 0 auto 48px;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.5));
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--gold);
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-on-dark-mut);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-caption {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.45);
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero-caption {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
    font-size: 9px;
  }
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.04);
  color: var(--text-on-dark-mut);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

/* ---------- BUTTONS ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.button.primary {
  background: var(--cream);
  color: var(--black);
}
.button.primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 145, 90, 0.35);
}
.button.secondary {
  border-color: rgba(244, 239, 229, 0.32);
  color: var(--cream);
  background: transparent;
}
.button.secondary:hover {
  border-color: var(--cream);
  background: rgba(244, 239, 229, 0.06);
}
.button.full { width: 100%; }

/* ---------- QUICK STATS ---------- */
.quick-stats {
  margin: 72px auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.quick-stats > div {
  padding: 48px 24px;
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 180px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.quick-stats > div:last-child { border-right: none; }
.quick-stats > div:hover { background: rgba(244, 239, 229, 0.02); }
.quick-stats strong {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}
.quick-stats > div > span {
  display: block;
  color: var(--text-on-dark-mut);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Status indicator (Pre-Leasing column) */
.stat-status strong { color: var(--gold); }
.status-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(184, 145, 90, 0.7);
  flex-shrink: 0;
}
.status-dot::before,
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: status-ping 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.status-dot::after { animation-delay: 1.3s; }
@keyframes status-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(4.5); opacity: 0; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 130px 7vw; }

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

/* SPLIT — vision */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  background: var(--cream);
  color: var(--black);
}
.split h2 { color: var(--black); }
.large-copy p {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--text-on-light);
}
.large-copy p + p { margin-top: 22px; }

/* DARK SECTION */
.dark-section { background: var(--near-black); }

/* USES GRID */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.use-grid article {
  background: var(--black);
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.use-grid article::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.use-grid article:hover {
  background: #100e0b;
}
.use-grid article:hover::before { transform: scaleX(1); }
.use-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.use-grid h3 {
  margin: 18px 0 14px;
  color: var(--cream);
}
.use-grid p {
  color: var(--text-on-dark-mut);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- SIZES TIERS ---------- */
.sizes {
  background: var(--cream);
  color: var(--black);
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.size-card {
  padding: 36px 28px;
  border: 1px solid rgba(10, 9, 8, 0.14);
  background: #fbf6ec;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.size-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -16px rgba(10, 9, 8, 0.18);
}
.size-card .tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.size-card .number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 18px 0 10px;
  color: var(--black);
}
.size-card .number small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-on-light-mut);
  margin-left: 4px;
}
.size-card .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-on-light-mut);
}

/* ---------- INSIDE (split image + copy) ---------- */
.inside {
  background: var(--near-black);
  padding: 0;
}
.inside-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 70vh;
}
.inside-image {
  background: url("assets/hangarrenderinginterior.jpg") center / cover no-repeat;
  position: relative;
  min-height: 380px;
}
.inside-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 9, 8, 0) 30%, rgba(10, 9, 8, 0.55) 100%);
  pointer-events: none;
}
.inside-copy {
  padding: clamp(50px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-light);
}
.inside-copy p {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--text-on-dark-mut);
  max-width: 520px;
}
.inside-copy .specs {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  max-width: 520px;
}
.inside-copy .specs div {
  font-size: 14px;
  color: var(--text-on-dark-mut);
  line-height: 1.5;
}
.inside-copy .specs strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ---------- AERIAL BANNER ---------- */
.aerial-banner {
  position: relative;
  height: 62vh;
  min-height: 440px;
  background: url("assets/hangarrenderingaerial.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.aerial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.05) 0%, rgba(10, 9, 8, 0.4) 60%, rgba(10, 9, 8, 0.92) 100%);
  pointer-events: none;
}
.aerial-overlay {
  position: relative;
  z-index: 2;
  padding: 60px 7vw 50px;
  width: 100%;
}
.aerial-overlay .eyebrow { margin-bottom: 18px; }
.aerial-overlay p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 64px);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  line-height: 1;
}

@media (max-width: 980px) {
  .inside-grid { grid-template-columns: 1fr; }
  .inside-image { min-height: 320px; }
  .inside-copy { border-left: none; border-top: 1px solid var(--line-light); }
  .aerial-banner { height: 50vh; min-height: 320px; }
}

/* ---------- STATEMENT ---------- */
.statement {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 130px 7vw;
  background:
    radial-gradient(ellipse at center, rgba(184, 145, 90, 0.16), transparent 50%),
    linear-gradient(180deg, #0a0908 0%, #050403 100%);
}
.statement h2 { max-width: 980px; }
.statement p:last-child {
  max-width: 660px;
  margin: 28px auto 0;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-on-dark-mut);
  line-height: 1.55;
}

/* ---------- FEATURES ---------- */
.features {
  background: var(--cream);
  color: var(--black);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
}
.feature-grid div {
  padding: 36px;
  min-height: 210px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s var(--ease);
}
.feature-grid div:hover {
  background: #fbf6ec;
}
.feature-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.feature-grid span {
  color: var(--text-on-light-mut);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- LOCATION + MAP ---------- */
.location {
  background:
    linear-gradient(rgba(10, 9, 8, 0.85), rgba(10, 9, 8, 0.92)),
    linear-gradient(135deg, #18160f, #0a0908);
}
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-card p {
  color: var(--text-on-dark-mut);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
}
.location-card p + p { margin-top: 18px; }
.location-meta {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.location-meta div {
  font-size: 14px;
  color: var(--text-on-dark-mut);
}
.location-meta strong {
  display: block;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold);
}

.map-frame {
  position: relative;
  aspect-ratio: 8 / 5;
  border: 1px solid var(--line-light);
  background: var(--near-black);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--near-black);
}
.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line-light);
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-soft); }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 28px;
  color: var(--text-on-dark-mut);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- INTEREST FORM ---------- */
.interest {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  background: var(--cream);
  color: var(--black);
}
.interest h2 { color: var(--black); }
.interest > div p {
  color: var(--text-on-light-mut);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  margin-top: 20px;
}

.lead-form {
  padding: 40px;
  border: 1px solid rgba(10, 9, 8, 0.12);
  background: #fbf6ec;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  margin-bottom: 18px;
  color: var(--text-on-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 11px;
}
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  border: 1px solid rgba(10, 9, 8, 0.16);
  background: var(--cream);
  color: var(--black);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: var(--text-on-light-mut);
  margin: 16px 0 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.form-success {
  display: none;
  padding: 28px;
  border: 1px solid var(--gold);
  background: rgba(184, 145, 90, 0.08);
  color: var(--black);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 56px 7vw 40px;
  border-top: 1px solid var(--line-light);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer img { width: 220px; margin-bottom: 18px; }
.footer-meta {
  font-size: 13px;
  color: var(--text-on-dark-mut);
  line-height: 1.7;
}
.footer-meta a:hover { color: var(--gold); }
.footer-right {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-mut);
}
.footer-right .small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* ---------- STICKY MOBILE CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mobile-cta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .use-grid, .size-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header { padding: 0 22px; }
  .brand img { width: 160px; }
  .split, .interest, .location-wrap { grid-template-columns: 1fr; gap: 48px; }
  .map-frame { aspect-ratio: 16 / 11; }
  .footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
}

@media (max-width: 640px) {
  .hero { padding-top: 110px; padding-bottom: 70px; }
  .hero-logo { margin-bottom: 32px; }
  .quick-stats { grid-template-columns: 1fr; }
  .quick-stats div {
    border-right: none;
    border-bottom: 1px solid var(--line-light);
  }
  .quick-stats div:last-child { border-bottom: none; }
  .section { padding: 80px 24px; }
  .use-grid, .size-grid, .feature-grid, .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

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

/* ============================================
   SUBTLE EFFECTS LAYER
   ============================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
  will-change: transform;
}

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: linear-gradient(180deg, #0a0908 0%, #0e0c08 50%, #0a0908 100%);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  padding: 26px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.005em;
}
.marquee-content .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
