/* ====================================================
   OYO BREWING CO. — Landing Page Styles
   ==================================================== */

/* ---- base.css ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body, sans-serif);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; }

::selection { background: color-mix(in oklab, var(--color-primary) 30%, transparent); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

a, button, [role="button"], [role="link"], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* ---- design tokens ---- */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1.25rem; --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'General Sans', sans-serif;
  --font-body: 'General Sans', 'Satoshi', sans-serif;

  /* ---- OYO Brand Palette (from logo) ---- */
  --color-bg: #FBF6EC;
  --color-surface: #FFFFFF;
  --color-surface-2: #FDFAF2;
  --color-surface-offset: #F3EBD8;
  --color-surface-offset-2: #EBE0C6;
  --color-divider: #E4D9BE;
  --color-border: #D8CBA8;

  --color-text: #241C10;
  --color-text-muted: #6B5F49;
  --color-text-faint: #A79876;
  --color-text-inverse: #FBF6EC;

  /* Primary Accent — OYO Orange */
  --color-primary: #E07C10;
  --color-primary-hover: #C4680A;
  --color-primary-active: #9E5407;
  --color-primary-highlight: #F6DDB8;

  /* River Blues */
  --color-navy: #283891;
  --color-river: #0F75BC;
  --color-sky: #23AAE1;
  --color-river-highlight: #CFE4F3;

  --shadow-sm: 0 1px 2px rgba(36, 28, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(36, 28, 16, 0.12);
  --shadow-lg: 0 20px 48px rgba(36, 28, 16, 0.18);
}

[data-theme='dark'] {
  --color-bg: #191309;
  --color-surface: #211a0f;
  --color-surface-2: #241d11;
  --color-surface-offset: #2b2213;
  --color-surface-offset-2: #342a17;
  --color-divider: #3a2f1a;
  --color-border: #4a3d22;

  --color-text: #F3E9D4;
  --color-text-muted: #BBA983;
  --color-text-faint: #7E6F4F;
  --color-text-inverse: #201808;

  --color-primary: #F3941F;
  --color-primary-hover: #FFAB48;
  --color-primary-active: #FFC072;
  --color-primary-highlight: #4A3A1C;

  --color-navy: #5E71D6;
  --color-river: #3E9CDE;
  --color-sky: #5FC3EE;
  --color-river-highlight: #1E2C4A;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
}

/* ================= LAYOUT UTILITIES ================= */
.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}
.section--tight { padding-block: clamp(var(--space-10), 6vw, var(--space-20)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; }
.section-title {
  font-size: var(--text-xl);
  max-width: 30ch;
  margin-bottom: var(--space-4);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 62ch;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.header--scrolled { border-color: var(--color-divider); box-shadow: var(--shadow-sm); }
.header--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}
.header__logo { display: flex; align-items: center; gap: var(--space-2); }
.header__logo img { height: 42px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__links { display: flex; gap: var(--space-6); list-style: none; }
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav__links a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.icon-btn:hover { background: var(--color-surface-offset); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #2b1400;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: var(--color-text-inverse); }
.btn--on-dark { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--on-dark:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,4,0.35) 0%, rgba(20,13,4,0.35) 35%, rgba(15,10,3,0.88) 100%),
              linear-gradient(90deg, rgba(15,10,3,0.55) 0%, rgba(15,10,3,0.05) 55%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24)) clamp(var(--space-12), 6vw, var(--space-20));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-bottom: var(--space-5);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(224,124,16,0.25);
}
.hero h1 {
  font-size: var(--text-hero);
  max-width: 16ch;
  margin-bottom: var(--space-6);
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}
.hero__sub {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}
.hero__ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-10); }
.hero__meta {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 720px;
}
.hero__meta-item { display: flex; flex-direction: column; gap: var(--space-1); }
.hero__meta-item .label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); font-weight: 600; }
.hero__meta-item .value { font-size: var(--text-sm); font-weight: 600; color: #fff; }

/* ================= WAVE DIVIDER ================= */
.wave-divider { display: block; width: 100%; height: 48px; }

/* ================= STORY SECTION ================= */
.story {
  background: var(--color-surface);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-16);
  align-items: center;
}
.story__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-navy);
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-6);
  margin-block: var(--space-8);
}
.story__body p { color: var(--color-text-muted); margin-bottom: var(--space-4); font-size: var(--text-base); max-width: 60ch; }
.story__body p:last-child { margin-bottom: 0; }
.story__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story__visual img { width: 100%; height: 100%; object-fit: cover; }
.story__badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: rgba(20,13,4,0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.story__badge svg { flex-shrink: 0; color: var(--color-primary); }
.story__badge strong { font-size: var(--text-sm); display: block; }
.story__badge span { font-size: var(--text-xs); color: rgba(255,255,255,0.75); }

/* ================= FOUNDER SECTION ================= */
.founder { background: var(--color-surface); }
.founder__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-16);
  align-items: center;
}
.founder__photos { position: relative; padding-bottom: var(--space-8); padding-right: var(--space-8); }
.founder__photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.founder__photo-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  aspect-ratio: 4/3;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-surface);
}
.founder__photo-inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder__caption {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  font-style: italic;
  margin-top: var(--space-6);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-primary);
}

/* ================= DEVELOPMENT / PROPERTY SECTION ================= */
.development { background: var(--color-surface-offset); }
.dev-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.dev-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.dev-card__img { aspect-ratio: 16/10; overflow: hidden; }
.dev-card__img img { width: 100%; height: 100%; object-fit: cover; }
.dev-card__body { padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }
.dev-card__tag {
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-river);
  background: var(--color-river-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.dev-card__title { font-size: var(--text-lg); font-family: var(--font-display); }
.dev-card__address { font-size: var(--text-sm); color: var(--color-text-faint); font-weight: 600; }
.floor-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-2); }
.floor-item { display: flex; gap: var(--space-3); }
.floor-item__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  color: var(--color-primary-active);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex; align-items: center; justify-content: center;
}
.floor-item__text strong { display: block; font-size: var(--text-sm); margin-bottom: var(--space-1); }
.floor-item__text p { font-size: var(--text-sm); color: var(--color-text-muted); }
.dev-card__note { font-size: var(--text-sm); color: var(--color-text-muted); }

.register-strip {
  margin-top: var(--space-12);
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.register-strip svg { flex-shrink: 0; color: var(--color-sky); }
.register-strip__text strong { display: block; font-size: var(--text-base); margin-bottom: var(--space-1); }
.register-strip__text span { font-size: var(--text-sm); color: rgba(255,255,255,0.75); }

/* ================= VISION / STATS SECTION ================= */
.vision {
  background: var(--color-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(35,170,225,0.25), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(224,124,16,0.18), transparent 45%);
  pointer-events: none;
}
.vision__inner { position: relative; z-index: 1; }
.vision .eyebrow { color: var(--color-sky); }
.vision .eyebrow::before { background: var(--color-sky); }
.vision .section-title { color: #fff; }
.vision .section-lede { color: rgba(255,255,255,0.75); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}
.stat-card__num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-primary); margin-bottom: var(--space-2); }
.stat-card__label { font-size: var(--text-sm); color: rgba(255,255,255,0.78); font-weight: 600; }

/* ================= AMENITIES ================= */
.amenities { background: var(--color-surface); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.amenity-card {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
}
.amenity-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary-active);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.amenity-card h3 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 700; margin-bottom: var(--space-2); }
.amenity-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ================= LOCATION ================= */
.location { background: var(--color-surface-offset); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.location-list { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-8); }
.location-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.location-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-river);
  display: flex; align-items: center; justify-content: center;
}
.location-item strong { display: block; font-size: var(--text-sm); }
.location-item span { font-size: var(--text-sm); color: var(--color-text-muted); }
.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3.4;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ================= CTA / NEWSLETTER ================= */
.cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c4680a 100%);
  color: #2b1400;
  text-align: center;
}
.cta__inner { max-width: 640px; margin-inline: auto; }
.cta h2 { font-size: var(--text-xl); color: #2b1400; margin-bottom: var(--space-4); }
.cta p { font-size: var(--text-base); color: rgba(43,20,0,0.82); margin-bottom: var(--space-8); }
.cta-form { display: flex; gap: var(--space-3); max-width: 460px; margin-inline: auto; flex-wrap: wrap; justify-content: center; }
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(43,20,0,0.25);
  background: rgba(255,255,255,0.92);
  font-size: var(--text-sm);
}
.cta-form input::placeholder { color: var(--color-text-faint); }
.cta-form .btn--primary { background: #241C10; color: #fff; }
.cta-form .btn--primary:hover { background: #000; }
.cta__fine { font-size: var(--text-xs); color: rgba(43,20,0,0.65); margin-top: var(--space-4); margin-bottom: 0; }

/* ================= FOOTER ================= */
.footer { background: #17110a; color: rgba(255,255,255,0.72); }
[data-theme='dark'] .footer { background: #100c06; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-block: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 40px; margin-bottom: var(--space-4); }
.footer__brand p { font-size: var(--text-sm); max-width: 32ch; color: rgba(255,255,255,0.55); }
.footer h4 { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: var(--space-4); font-family: var(--font-body); font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); list-style: none; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: var(--text-sm); }
.footer a:hover { color: var(--color-primary); }
.footer__bottom {
  padding-block: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}
.footer__socials { display: flex; gap: var(--space-3); }
.footer__socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer__socials a:hover { border-color: var(--color-primary); color: var(--color-primary); }

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

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .story__grid, .location__grid, .founder__grid { grid-template-columns: 1fr; }
  .story__visual { order: -1; aspect-ratio: 16/10; }
  .founder__photos { order: -1; padding-right: 0; margin-bottom: var(--space-6); max-width: 420px; margin-left: auto; margin-right: auto; }
  .dev-cards { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .header__actions .btn--outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
    padding: var(--space-6);
    gap: var(--space-4);
  }
  .hero { min-height: 100vh; }
  .hero__meta { gap: var(--space-6); }
  .amenity-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .register-strip { flex-direction: column; text-align: center; }
  .cta-form { flex-direction: column; }
  .cta-form input, .cta-form button { width: 100%; }
}
