/* ==========================================================================
   Atlanta House Nerds — plain CSS build (converted from Tailwind/Next.js)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700;800&display=swap');

:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --primary: #1f1f1f;
  --primary-foreground: #fbfbfb;
  --secondary: #f5f5f5;
  --secondary-foreground: #1f1f1f;
  --muted: #f5f5f5;
  --muted-foreground: #7a7a7a;
  --accent: #f5f5f5;
  --accent-foreground: #1f1f1f;
  --border: #e4e4e4;
  --input: #e4e4e4;
  --ring: oklch(0.577 0.22 27.5);

  --brand: oklch(0.577 0.22 27.5);        /* Atlanta House Nerds red */
  --brand-rgb: 214, 40, 40;               /* fallback approximation for rgba() use */
  --brand-foreground: #fbfbfb;

  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;

  --radius: 0.625rem;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) * 1.4);
  --radius-2xl: calc(var(--radius) * 1.8);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1, h2, h3, p {
  margin: 0;
}

.container {
  max-width: 72rem; /* 1152px, matches max-w-6xl */
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

/* ==========================================================================
   Buttons (shared)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
  border: none;
  transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-brand {
  background: var(--brand);
  color: var(--brand-foreground);
  padding: 0.875rem 1.5rem;
}
.btn-brand:hover { opacity: 0.9; }

.btn-outline-light {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.875rem 1.5rem;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Two-line hero buttons (icon + title + subtitle) */
.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  border: none;
  border-radius: 0.875rem;
  padding: 1rem 1.75rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  width: 100%;
}
@media (min-width: 640px) { .btn-hero { width: auto; } }

.btn-hero:hover { transform: translateY(-1px); }

.btn-hero .icon { flex-shrink: 0; }

.btn-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.25;
}

.btn-hero-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
}

.btn-hero-sub {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.9;
}

.btn-hero-brand {
  background: var(--brand);
  color: var(--brand-foreground);
  box-shadow: 0 8px 20px color-mix(in oklab, var(--brand) 35%, transparent);
}
.btn-hero-brand:hover {
  box-shadow: 0 10px 24px color-mix(in oklab, var(--brand) 45%, transparent);
}

.btn-hero-light {
  background: #fff;
  color: #4b4b4b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-hero-light .btn-hero-title { color: #2b2b2b; }
.btn-hero-light .btn-hero-sub { color: #8a8a8a; }
.btn-hero-light .icon { color: #b8b8b8; }
.btn-hero-light:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.2); }

.btn-dark {
  background: var(--foreground);
  color: var(--background);
  padding: 0.625rem 1.5rem;
}
.btn-dark:hover { opacity: 0.9; }

/* ==========================================================================
   Logo
   ========================================================================== */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--brand);
  color: var(--brand-foreground);
}
.logo-mark .icon { height: 1.25rem; width: 1.25rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}
.logo-name.dark-variant { color: var(--foreground); }
.logo-name .accent { color: var(--brand); }

.logo-tag {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: #fff; }

.header-cta {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  padding: 0.25rem;
  display: inline-flex;
}

@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .header-cta { display: block; }
  .menu-toggle { display: none; }
}

.mobile-menu {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #000;
}
.mobile-menu[hidden] { display: none; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
}

.mobile-nav a {
  border-radius: 0.375rem;
  padding: 0.625rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }

.mobile-nav .btn { margin-top: 0.5rem; width: 100%; }

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6) 50%, #000);
}

.hero-inner {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding: 6rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-inner { padding: 8rem 1.5rem; }
}
@media (min-width: 1024px) {
  .hero-inner { padding-block: 10rem; }
}

.hero-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  max-width: 40rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: stretch; } }

.hero-actions .btn { width: 100%; }
@media (min-width: 640px) { .hero-actions .btn { width: auto; } }

.hero-actions .btn-hero {
  width: 100%;
}
@media (min-width: 640px) {
  .hero-actions .btn-hero {
    flex: 1 1 0;
    width: auto;
  }
}

.hero-footnote {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 3rem;
}
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding-block: 3.5rem; }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .trust-item { align-items: flex-start; text-align: left; }
}

.icon-badge {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: var(--radius-xl);
  background: rgba(var(--brand-rgb), 0.1);
  background: color-mix(in oklab, var(--brand) 10%, transparent);
  color: var(--brand);
}
.icon-badge .icon { height: 1.5rem; width: 1.5rem; }

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.trust-item p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Quick links
   ========================================================================== */

.quick-links {
  background: var(--background);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .quick-links-grid { grid-template-columns: repeat(4, 1fr); }
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.quick-link-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.quick-link-card .icon-badge {
  background: color-mix(in oklab, var(--brand) 10%, transparent);
  color: var(--brand);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.quick-link-card:hover .icon-badge {
  background: var(--brand);
  color: var(--brand-foreground);
}

.quick-link-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quick-link-card p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.quick-link-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}
.quick-link-cta .icon { height: 1rem; width: 1rem; transition: transform 0.15s ease; }
.quick-link-card:hover .quick-link-cta .icon { transform: translateX(0.25rem); }

.quick-link-card.highlight {
  border: 2px solid var(--brand);
  background: color-mix(in oklab, var(--brand) 5%, transparent);
}
.quick-link-card.highlight:hover {
  background: var(--brand);
}
.quick-link-card.highlight:hover h3,
.quick-link-card.highlight:hover .quick-link-cta {
  color: var(--brand-foreground);
}
.quick-link-card.highlight:hover p {
  color: color-mix(in oklab, var(--brand-foreground) 80%, transparent);
}
.quick-link-card.highlight .icon-badge {
  background: var(--brand);
  color: var(--brand-foreground);
}
.quick-link-card.highlight:hover .icon-badge {
  background: var(--brand-foreground);
  color: var(--brand);
}

/* ==========================================================================
   Relocation section
   ========================================================================== */

.relocation {
  overflow: hidden;
  background: var(--foreground);
  color: var(--background);
}

.relocation-banner {
  position: relative;
  height: 16rem;
  width: 100%;
}
@media (min-width: 640px) { .relocation-banner { height: 20rem; } }

.relocation-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.relocation-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.4), transparent 60%, var(--foreground));
}

.relocation-banner-text {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0 1rem 2rem;
  text-align: center;
}
@media (min-width: 640px) { .relocation-banner-text { padding: 0 1.5rem 2rem; } }

.relocation-banner-text .eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
}

.relocation-banner-text h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--background);
}
@media (min-width: 640px) { .relocation-banner-text h2 { font-size: 3rem; } }
.relocation-banner-text .accent { color: var(--brand); }

.relocation-body {
  padding-block: 4rem;
}

.relocation-intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .relocation-intro { font-size: 1.125rem; } }

.steps-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
}

.step-number {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.05);
}

.step-card .icon-badge {
  background: rgba(var(--brand-rgb), 0.2);
  background: color-mix(in oklab, var(--brand) 20%, transparent);
  color: var(--brand);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.step-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.neighborhoods {
  margin-top: 4rem;
}

.neighborhoods h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .neighborhoods-grid { grid-template-columns: repeat(6, 1fr); } }

.neighborhood-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1rem 0.75rem;
  text-align: center;
}

.neighborhood-card .icon { margin-bottom: 0.5rem; height: 1rem; width: 1rem; color: var(--brand); }

.neighborhood-card .name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.neighborhood-card .tag {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.relocation-cta {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.relocation-cta .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

.relocation-cta .btn-brand {
  border-radius: var(--radius-xl);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.relocation-cta .fine-print {
  max-width: 24rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Meet agent
   ========================================================================== */

.meet-agent {
  background: var(--secondary);
}

.meet-agent-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .meet-agent-grid { grid-template-columns: repeat(2, 1fr); padding-block: 5rem; }
}

.agent-photo-wrap {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 24rem;
}

.agent-photo-frame {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.agent-badge {
  position: absolute;
  bottom: -0.75rem;
  left: 1rem;
  border-radius: var(--radius-lg);
  background: var(--brand);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brand-foreground);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.agent-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
}

.meet-agent h2 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) { .meet-agent h2 { font-size: 2.25rem; } }

.agent-role {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.agent-bio {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

.nerd-school-callout {
  margin-top: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}

.nerd-school-callout p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.nerd-school-callout strong {
  font-weight: 600;
  color: var(--foreground);
}

.nerd-school-callout a {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  font-weight: 600;
  color: var(--brand);
}
.nerd-school-callout a:hover { text-decoration: underline; }
.nerd-school-callout a .icon { height: 0.875rem; width: 0.875rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  background: #000;
}

.testimonials-inner {
  padding-block: 4rem;
}
@media (min-width: 768px) { .testimonials-inner { padding-block: 5rem; } }

.testimonials-head { text-align: center; }

.stars {
  display: flex;
  justify-content: center;
  gap: 0.125rem;
}
.stars .icon {
  height: 1rem;
  width: 1rem;
  fill: var(--brand);
  stroke: var(--brand);
}

.testimonials-head h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (min-width: 640px) { .testimonials-head h2 { font-size: 2.25rem; } }

.testimonials-head p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
}

.testimonial-card .stars { justify-content: flex-start; }

.testimonial-card blockquote {
  margin-top: 1rem;
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.testimonial-card figcaption {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
}

.review-links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.review-links span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.review-links a {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.review-links a:hover { border-color: var(--brand); color: var(--brand); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #000;
  color: #fff;
}

.footer-inner {
  padding-block: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-about p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.footer-socials a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--brand-foreground);
}
.footer-socials .icon { height: 1rem; width: 1rem; fill: currentColor; stroke: none; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
}

.footer-links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: #fff; }

.footer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact li {
  display: flex;
  gap: 0.625rem;
}

.footer-contact .icon {
  margin-top: 0.125rem;
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  color: var(--brand);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.15s ease;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Floating CTA
   ========================================================================== */

.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--brand);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brand-foreground);
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: opacity 0.15s ease;
}
.floating-cta:hover { opacity: 0.9; }
.floating-cta .icon { height: 1rem; width: 1rem; }

/* ==========================================================================
   Lead modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  cursor: default;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border: none;
  padding: 0;
}

.modal-panel {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
@media (min-width: 640px) { .modal-panel { padding: 2rem; } }

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 999px;
  padding: 0.25rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.modal-close:hover { background: var(--muted); color: var(--foreground); }
.modal-close .icon { height: 1.25rem; width: 1.25rem; }

.modal-head { margin-bottom: 1.5rem; padding-right: 1.5rem; }

.modal-head .eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
}

.modal-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intent-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  border-radius: var(--radius-lg);
  background: var(--muted);
  padding: 0.25rem;
}

.intent-tab {
  border-radius: var(--radius-md);
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.intent-tab:hover { color: var(--foreground); }
.intent-tab.active {
  background: var(--brand);
  color: var(--brand-foreground);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
}

.field input,
.field select {
  border-radius: var(--radius-lg);
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 30%, transparent);
}

.relocate-fields[hidden] { display: none; }

.form-submit {
  margin-top: 0.25rem;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.modal-success {
  padding-block: 1.5rem;
  text-align: center;
}

.modal-success h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-success p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.modal-success button {
  margin-top: 1.5rem;
}
