/* Auto Lofts Nevada — Modern Static Site */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0c0e14;
  --surface: #141820;
  --surface-2: #1c2130;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f2f2;
  --muted: #9aa3b2;
  --accent: #c9a227;
  --accent-light: #e4c04a;
  --accent-dark: #9a7b1a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --max-w: 1140px;
  --section-pad: clamp(4rem, 8vw, 6rem);
  --gap-lg: clamp(2rem, 4vw, 4rem);
  --gap-md: 1.5rem;
  --transition: 0.25s ease;
  --media-max-h: clamp(220px, 32vw, 380px);
  --media-max-h-sm: clamp(180px, 28vw, 260px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 162, 39, 0.35);
  color: var(--text);
}

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

a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 14, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(12, 14, 20, 0.97);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
}

.logo img { height: 40px; width: auto; border-radius: 4px; }

.nav-desktop { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-desktop a { color: var(--muted); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--text); }
.nav-desktop a.active { position: relative; }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.35rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-desktop .btn { margin-left: 0.25rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(12, 14, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 99;
}

.nav-mobile.open { display: flex; flex-direction: column; gap: 1.5rem; }
.nav-mobile a { color: var(--text); font-size: 1.25rem; font-family: 'DM Serif Display', serif; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0c0e14;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #0c0e14; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(12, 14, 20, 0.7) 40%,
    rgba(12, 14, 20, 0.35) 100%
  );
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

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

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* ── Section intro ── */
.section-intro {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Video showcase ── */
.video-showcase,
.gallery-videos {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.gallery-videos {
  margin-bottom: 2.75rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-card-info {
  padding: 1.15rem 1.35rem 1.35rem;
}

.video-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.video-card-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Home page — compact centered media */
.video-showcase--home {
  width: min(100% - 1rem, 480px);
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.video-showcase--home .video-card {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.video-showcase--home .video-frame {
  max-height: 270px;
}

.video-showcase--home .video-frame video {
  max-height: 270px;
}

.video-showcase--home .video-card-info {
  padding: 0.7rem 0.85rem 0.85rem;
  text-align: center;
}

.video-showcase--home .video-card-info h3 {
  font-size: 0.9rem;
}

.video-showcase--home .video-card-info p {
  font-size: 0.76rem;
  line-height: 1.4;
}

/* ── Lifestyle strip ── */
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

.lifestyle-strip--home {
  width: min(100% - 1rem, 480px);
  gap: 0.75rem;
}

.lifestyle-strip--home .lifestyle-card img {
  max-height: 120px;
}

.lifestyle-strip--home .lifestyle-card figcaption {
  text-align: center;
  padding: 0.65rem 0.5rem;
  font-size: 0.8rem;
}

.lifestyle-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.lifestyle-card img {
  width: 100%;
  height: var(--media-max-h-sm);
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.lifestyle-card:hover img { transform: scale(1.03); }

.lifestyle-card figcaption {
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-light);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  text-align: center;
}

.stats-grid > div {
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
}

.stats-grid > div:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */
.section {
  padding: var(--section-pad) 0;
}

.section-alt { background: var(--surface); }

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 580px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Highlights grid ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.highlight-card {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.highlight-card::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.1rem;
}

.highlight-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: inherit;
}

.highlight-icon {
  width: 44px; height: 44px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.split-reverse .split-image { order: -1; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-2);
  max-height: var(--media-max-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  max-height: var(--media-max-h);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.split-image--contain {
  max-height: var(--media-max-h);
}

.split-image--contain img {
  width: 100%;
  height: auto;
  max-height: calc(var(--media-max-h) - 1.5rem);
  aspect-ratio: unset;
  object-fit: contain;
  padding: 0.75rem;
}

.split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 0.875rem;
  line-height: 1.7;
  font-size: 0.975rem;
}

.split-content p:last-of-type { margin-bottom: 0; }

.split-cta { margin-top: 1.5rem; }

.feature-list {
  color: var(--muted);
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.feature-list li + li { margin-top: 0.35rem; }

.cta-actions--left {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 820px;
}

.accordion-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: rgba(255,255,255,0.03); }

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body { max-height: 600px; }

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* Gallery page */
.gallery-section { padding-top: clamp(2.5rem, 5vw, 3.5rem); }

.gallery-intro {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.gallery-filter:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.gallery-filter.active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-filter-count {
  font-size: 0.75rem;
  opacity: 0.75;
}

.gallery-grid--page {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--surface);
  cursor: zoom-in;
  text-align: left;
  content-visibility: auto;
  contain-intrinsic-size: 320px 213px;
  transition: border-color var(--transition), box-shadow var(--transition), opacity 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.gallery-card--contain {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.gallery-card--contain img {
  object-fit: contain;
  padding: 0.5rem;
}

.gallery-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.75rem 0.9rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  background: linear-gradient(to top, rgba(12, 14, 20, 0.92) 0%, rgba(12, 14, 20, 0.45) 55%, transparent 100%);
  line-height: 1.35;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  outline: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
}

.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.gallery-note a { color: var(--accent-light); }

/* Lightbox */
body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: calc(100vh - 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.lightbox-img--contain {
  object-fit: contain;
  background: var(--surface-2);
  padding: 0.5rem;
}

.lightbox-caption {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-counter {
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.lightbox-close:hover { border-color: var(--accent); color: var(--accent-light); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(20, 24, 32, 0.9);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.lightbox-nav:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.lightbox-prev { left: -1.25rem; }
.lightbox-next { right: -1.25rem; }

/* ── Bounded content images ── */
.media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: auto;
  max-height: min(68vh, 620px);
  object-fit: contain;
  display: block;
}

/* ── Map / plan ── */
.plan-section {
  max-width: 820px;
  margin-inline: auto;
}

.plan-section img,
.plan-map {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: min(68vh, 620px);
  height: auto;
  object-fit: contain;
}

.plan-map {
  background: var(--surface-2);
  padding: 0.75rem;
}

.plan-section .section-header { max-width: 640px; }

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* ── Developer card ── */
.dev-card {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin-inline: auto;
}

.dev-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.dev-info h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.dev-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.dev-info p { color: var(--muted); font-size: 0.95rem; }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.875rem;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-item h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text); }

/* ── Form ── */
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success { display: block; background: rgba(34, 197, 94, 0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

/* ── Units page ── */
.pricing-img {
  width: 100%;
  max-width: 720px;
  max-height: min(65vh, 560px);
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  margin-bottom: 2rem;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--surface-2);
}

.phone-banner {
  background: var(--surface-2);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.phone-banner h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.phone-banner-text { color: var(--muted); font-size: 0.95rem; }
.phone-banner .phones { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 1.25rem; }
.phone-banner a { font-size: 1.35rem; font-family: 'DM Serif Display', serif; color: var(--accent-light); }

.split-spaced { margin-top: clamp(2.5rem, 5vw, 4rem); }

.highlights-grid--spaced { margin-top: clamp(2.5rem, 5vw, 4rem); }

.highlights-grid--spaced { grid-template-columns: repeat(3, 1fr); }

.contact-info-sub { margin-top: 0.25rem; }

.contact-map {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 220px;
  background: var(--surface-2);
}

.contact-map img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.form-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.btn-full { width: 100%; }

/* ── Footer ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ── Animations (content visible by default; JS adds motion) ── */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-ready .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

body.js-ready .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
  .stats-grid > div:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0.5rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-reverse .split-image { order: 0; }
  .video-showcase,
  .gallery-videos { grid-template-columns: 1fr; }
  .video-showcase--home { width: min(100% - 1rem, 400px); }
  .video-showcase--home .video-frame,
  .video-showcase--home .video-frame video { max-height: 225px; }
  .lifestyle-strip { grid-template-columns: 1fr; }
  .lifestyle-strip--home { width: min(100% - 1rem, 400px); grid-template-columns: 1fr; }
  .lifestyle-strip--home .lifestyle-card img { max-height: 140px; }
  .lifestyle-card img { max-height: 200px; }
  .split-image { max-height: 280px; }
  .split-image img,
  .split-image--contain img { max-height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--page { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dev-card { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 1.5rem, var(--max-w)); }
  .highlights-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stats-grid > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stats-grid > div:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid--page { grid-template-columns: 1fr; }
  .gallery-filters { gap: 0.5rem; }
  .gallery-filter { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}