/* ==========================================================================
   Urban Nest — stylesheet
   Palette lifted from the brochure: warm cream, charcoal ink, terracotta rust,
   soft gold hairlines.
   ========================================================================== */

:root {
  --cream:        #F5EEE3;
  --cream-soft:   #FBF7F0;
  --cream-deep:   #ECE1D1;
  --ink:          #332821;
  --ink-soft:     #766655;
  --ink-faint:    #A5977F;
  --rust:         #AE5A2E;
  --rust-dark:    #8E4823;
  --rust-tint:    #F1DFCF;
  --gold:         #BE9A5D;
  --border:       #E3D5C0;
  --white:        #FFFEFC;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow-soft: 0 20px 60px -25px rgba(51, 40, 33, 0.35);
  --shadow-card: 0 12px 32px -18px rgba(51, 40, 33, 0.25);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--rust); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.divider-flourish {
  width: 92px;
  height: 14px;
  margin: 20px 0 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 14'><line x1='0' y1='7' x2='36' y2='7' stroke='%23BE9A5D' stroke-width='1'/><line x1='56' y1='7' x2='92' y2='7' stroke='%23BE9A5D' stroke-width='1'/><path d='M46 2 L49 7 L46 12 L43 7 Z' fill='%23AE5A2E'/></svg>") no-repeat center / contain;
}
.divider-flourish.center { margin-left: auto; margin-right: auto; }

.section {
  padding: 108px 0;
}
.section.tight { padding: 72px 0; }
.section.alt { background: var(--cream-deep); }
.section.dark {
  background: var(--ink);
  color: var(--cream);
}
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--cream); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--rust);
  color: var(--white);
}
.btn-primary:hover { background: var(--rust-dark); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--rust);
  color: var(--rust);
}
.btn-outline.on-dark {
  border-color: rgba(245,238,227,0.5);
  color: var(--cream);
}
.btn-outline.on-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-arrow::after {
  content: "→";
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 238, 227, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.5px;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--rust); }

.nav-cta { display: flex; align-items: center; gap: 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,29,22,0.35) 0%, rgba(30,23,17,0.35) 45%, rgba(23,17,13,0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 90px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  color: var(--white);
  max-width: 820px;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  max-width: 560px;
  color: rgba(245,238,227,0.85);
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  right: 32px;
  bottom: 90px;
  z-index: 1;
  background: var(--rust);
  color: var(--white);
  padding: 20px 26px;
  border-radius: 3px;
  max-width: 240px;
  box-shadow: var(--shadow-soft);
}
.hero-badge .label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  display: block;
}
.hero-badge .value {
  font-family: var(--font-display);
  font-size: 16.5px;
  line-height: 1.4;
}

.page-hero {
  position: relative;
  padding: 200px 0 90px;
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-media::after { background: linear-gradient(180deg, rgba(25,19,14,0.55) 0%, rgba(25,19,14,0.75) 100%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(38px, 5.5vw, 58px); }
.page-hero p { color: rgba(245,238,227,0.85); margin-top: 16px; max-width: 620px; font-size: 17px; }
.breadcrumb {
  margin-top: 28px;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: rgba(245,238,227,0.65);
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Intro / About blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.split-media { position: relative; }
.split-media .frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split-text p { color: var(--ink-soft); font-size: 16.5px; margin-top: 18px; }
.split-text p + p { margin-top: 14px; }

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 60px;
}
.stat {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--rust);
}
.stat .label {
  margin-top: 8px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
}

/* ---------- Spec table (Project Advantages) ---------- */
.spec-table {
  border-top: 1px solid var(--border);
}
.spec-row {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust-tint);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-icon svg { width: 20px; height: 20px; }
.spec-label {
  font-family: var(--font-display);
  font-size: 17.5px;
}
.spec-value { color: var(--ink-soft); font-size: 15.5px; }
.spec-value strong { color: var(--ink); font-weight: 600; }
.spec-value .tag {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 10px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 12px;
  color: var(--rust-dark);
  letter-spacing: 0.4px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rust-tint);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card .icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Location tabs ---------- */
.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.loc-tab {
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-soft);
  transition: all 0.2s ease;
}
.loc-tab:hover { border-color: var(--rust); color: var(--rust); }
.loc-tab.active {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

.loc-panels { position: relative; }
.loc-panel { display: none; }
.loc-panel.active { display: block; animation: fadeUp 0.45s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.loc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.loc-item .name { flex: 1; font-size: 15.5px; }
.loc-item .bar-wrap {
  width: 120px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.loc-item .bar {
  height: 100%;
  background: var(--rust);
  border-radius: 4px;
  transform-origin: left;
}
.loc-item .dist {
  width: 56px;
  text-align: right;
  font-size: 13px;
  color: var(--rust-dark);
  font-weight: 600;
}

/* ---------- Floor plan tabs ---------- */
.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.plan-tab {
  padding: 16px 4px;
  margin-right: 30px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink-faint);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.plan-tab:hover { color: var(--ink); }
.plan-tab.active {
  color: var(--rust);
  border-color: var(--rust);
}
.plan-panel { display: none; }
.plan-panel.active { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; animation: fadeUp 0.45s ease; align-items: flex-start; }
.plan-image {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.plan-info h3 { font-size: 26px; margin-bottom: 6px; }
.plan-info .plan-area {
  color: var(--rust);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 20px;
  display: block;
}
.plan-info p.desc { color: var(--ink-soft); margin-bottom: 26px; }
.plan-facts { border-top: 1px solid var(--border); }
.plan-fact {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.plan-fact span:first-child { color: var(--ink-soft); }
.plan-fact span:last-child { font-weight: 600; }
.plan-features { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.plan-features li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.plan-features li::before { content: "—"; color: var(--rust); flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery-tabs { display: flex; gap: 10px; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid.hero-2 { grid-template-columns: 2fr 1fr; grid-auto-rows: 220px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-deep);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(20,15,11,0.75), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; animation: fadeUp 0.45s ease; }

.gallery-tall { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,15,11,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-cap {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(245,238,227,0.35);
  color: var(--cream);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close { top: 30px; right: 32px; }
.lightbox-nav.prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 32px; top: 50%; transform: translateY(-50%); }

/* ---------- Map / Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact-list { margin-top: 34px; display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 18px; }
.contact-item .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rust-tint);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 18px; height: 18px; }
.contact-item .t { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-soft); margin-bottom: 4px; }
.contact-item .v { font-size: 16px; }
.contact-item a:hover { color: var(--rust); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.form-card {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 90px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(30px, 4vw, 42px); max-width: 700px; margin: 0 auto; }
.cta-band p { color: rgba(245,238,227,0.75); margin-top: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand p { color: var(--ink-soft); margin-top: 18px; font-size: 14.5px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--ink); }
.footer-col a:hover { color: var(--rust); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utilities ---------- */
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--border); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-list { grid-template-columns: 1fr; }
  .plan-panel.active { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .section { padding: 72px 0; }
  .section.tight { padding: 52px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.hero-2 { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-tall { grid-row: auto; }
  .spec-row { grid-template-columns: 44px 1fr; }
  .spec-row .spec-label { grid-column: 2; }
  .spec-row .spec-value { grid-column: 2; }
  .hero-badge { left: 20px; right: 20px; max-width: none; bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 150px 0 70px; }
}
