/* ============================================================
   ALLISON CLICK — HUNTSVILLE ALABAMA REAL ESTATE
   AllisonClickSellingYourHuntsvilleAlabamaHome.com
   Aesthetic: Southern Luxury Editorial
   Fonts: Cormorant Garamond + Jost
   ============================================================ */

:root {
  --navy:       #0b1f33;
  --navy-mid:   #162d47;
  --navy-light: #1e3a5a;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --gold-pale:  #f5ede0;
  --cream:      #faf7f3;
  --white:      #ffffff;
  --text:       #2d2d2d;
  --text-mid:   #5a5a6a;
  --text-light: #8a8a9a;
  --border:     rgba(184,150,90,0.18);
  --border-light: rgba(184,150,90,0.10);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --max-w: 1160px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--white); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
em { font-style: italic; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.bg-dark  { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-gold  { background: var(--gold-pale); }
.text-center { text-align: center; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-gold { color: var(--gold-light); }
.eyebrow-dark { color: var(--navy); }

/* ── SECTION INTRO ── */
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p  { font-size: 1.05rem; }
.section-intro.light h2 { color: var(--white); }
.section-intro.light p  { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,90,0.3);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-gold-form {
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-gold-form:hover { background: var(--gold-light); }
.btn-gold-lg {
  display: inline-flex; align-items: center;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,150,90,0.35); }
.btn-dark {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(11, 31, 51, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,150,90,0.12);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; gap: 0.1rem; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 40%, rgba(184,150,90,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,58,90,0.6) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0e2840 50%, #0a1a28 100%);
}
/* Subtle geometric overlay */
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(184,150,90,0.015) 60px,
      rgba(184,150,90,0.015) 61px
    );
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,51,0.5) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  width: 100%;
}
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeUp 0.8s var(--ease) both;
}
.location-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.25);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,150,90,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(184,150,90,0.08); }
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 700px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.75rem;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s both;
}
.trust-item { flex: 1; max-width: 180px; }
.trust-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-div { width: 1px; height: 44px; background: rgba(184,150,90,0.2); margin: 0 2rem; flex-shrink: 0; }
.hero-scroll-cue {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0 2.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  animation: fadeUp 1s var(--ease) 0.8s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,150,90,0.4), transparent);
  animation: grow 2s ease infinite;
}
@keyframes grow {
  0%, 100% { height: 32px; opacity: 0.5; }
  50%       { height: 48px; opacity: 1; }
}

/* ── MARKET TICKER ── */
.market-banner {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(184,150,90,0.12);
  overflow: hidden;
  padding: 0.85rem 0;
}
.market-ticker { position: relative; overflow: hidden; }
.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.ticker-track strong { color: var(--gold-light); font-weight: 600; }
.ticker-sep { color: rgba(184,150,90,0.3); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,31,51,0.08);
  border-color: var(--border);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--navy); }
.why-card p  { font-size: 0.92rem; line-height: 1.75; }

/* ── NEIGHBORHOODS PREVIEW ── */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184,150,90,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.neighborhood-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.neighborhood-card:hover { z-index: 2; transform: scale(1.02); }
.neighborhood-card:hover .nbhd-content { background: rgba(11,31,51,0.8); }
.neighborhood-card:hover .nbhd-arrow { opacity: 1; transform: translateX(0); }
.nbhd-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s var(--ease);
}
.neighborhood-card:hover .nbhd-bg { transform: scale(1.06); }
.nbhd-content {
  position: relative; z-index: 2;
  padding: 1.5rem;
  background: rgba(11,31,51,0.65);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}
.nbhd-content h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.nbhd-content p  { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin: 0; }
.nbhd-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
  font-size: 1.25rem;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.neighborhood-all {
  background: var(--navy);
  border: 2px dashed rgba(184,150,90,0.2);
}
.neighborhood-all .nbhd-content {
  background: transparent;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.neighborhood-all:hover .nbhd-content { background: rgba(184,150,90,0.05); }

/* ── PROCESS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 22px; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.process-step {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.75rem 0;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.step-num {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  background: var(--cream);
  border: 1px solid var(--border);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 2;
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.step-content { padding-top: 0.6rem; }
.step-content h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--navy); }
.step-content p  { font-size: 0.95rem; }

/* ── BOOK CTA ── */
.book-cta-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}
.book-cta-text .eyebrow { margin-bottom: 0.75rem; }
.book-cta-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.25rem; color: var(--navy); }
.book-cta-desc { font-size: 1.05rem; color: var(--text); margin-bottom: 2rem; max-width: 500px; }
.book-cta-desc em { font-style: italic; color: var(--navy); font-weight: 500; }
.book-float {
  display: flex; justify-content: center; align-items: center;
  transform: perspective(800px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 30px 50px rgba(11,31,51,0.18));
}
.book-float:hover { transform: perspective(800px) rotateY(-10deg) rotateX(3deg) translateY(-6px); }
.book-cover-placeholder {
  width: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 2px 10px 10px 2px;
  padding: 2.5rem 1.75rem;
  color: var(--white);
  text-align: center;
  font-family: var(--ff-display);
  box-shadow: -8px 0 20px rgba(0,0,0,0.4);
  border-left: 4px solid var(--gold);
}
.book-cover-placeholder span { display: block; font-size: 1.15rem; font-weight: 600; line-height: 1.3; margin-bottom: 1.75rem; }
.book-cover-placeholder em  { display: block; font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.06em; }

/* ── BOOK COVER IMAGE VERSION ── */
.book-cover-img {
  width: 220px;
  border-radius: 2px 10px 10px 2px;
  box-shadow: -8px 0 20px rgba(0,0,0,0.45);
  display: block;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,31,51,0.07); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.75rem;
  border: none; padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; margin-bottom: 0.1rem; }
.testimonial-author span  { font-size: 0.75rem; color: var(--text-light); }

/* ── VALUATION CTA ── */
.valuation-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.valuation-cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.valuation-cta-inner h2 em { color: var(--gold); }
.valuation-cta-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 2.25rem; font-size: 1.05rem; }
.valuation-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.valuation-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  outline: none;
}
.valuation-form input::placeholder { color: rgba(255,255,255,0.35); }
.valuation-form input:focus { background: rgba(255,255,255,0.1); }
.form-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,150,90,0.1);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer-logo span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-links-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--ff-body);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(184,150,90,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(184,150,90,0.06) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero-content p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; }

/* ── TWO COL LAYOUT ── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-layout.reverse .col-text { order: 2; }
.two-col-layout.reverse .col-visual { order: 1; }
.col-text .eyebrow { margin-bottom: 0.75rem; }
.col-text h2 { margin-bottom: 1.25rem; }
.col-text p  { margin-bottom: 1rem; }
.col-text p:last-of-type { margin-bottom: 1.75rem; }

/* ── PRICING VISUAL ── */
.pricing-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.price-scenario {
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.price-scenario.optimal {
  background: linear-gradient(135deg, #0b2a1a 0%, #0d3a22 100%);
  border: 1px solid rgba(50,180,80,0.25);
}
.price-scenario.overpriced {
  background: linear-gradient(135deg, #2a0b0b 0%, #3a0d0d 100%);
  border: 1px solid rgba(200,60,60,0.2);
}
.scenario-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.scenario-result { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.6rem; }
.result-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.price-scenario.optimal .result-num { color: #5de090; }
.price-scenario.overpriced .result-num { color: #e05d5d; }
.result-unit { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.price-scenario.optimal .result-unit { color: rgba(93,224,144,0.7); }
.price-scenario.overpriced .result-unit { color: rgba(224,93,93,0.7); }
.scenario-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.visual-caption { font-size: 0.72rem; text-align: center; color: var(--text-light); font-style: italic; }

/* ── MARKETING GRID ── */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.marketing-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.marketing-item:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(11,31,51,0.07); border-color: var(--border); }
.mkt-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.marketing-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.marketing-item p  { font-size: 0.9rem; }

/* ── NEGOTIATION STATS ── */
.negotiation-stats {
  display: flex; flex-direction: column; gap: 1.5px;
  background: var(--border-light);
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
}
.neg-stat {
  background: var(--white);
  padding: 1.75rem 2rem;
}
.neg-num { display: block; font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.neg-label { display: block; font-size: 0.8rem; color: var(--text-light); }

/* ── NEIGHBORHOOD DETAIL CARDS ── */
.nbhd-detail-card {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.nbhd-detail-card:hover { box-shadow: 0 20px 60px rgba(11,31,51,0.1); }
.nbhd-detail-header {
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.nbhd-header-content h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.4rem; }
.nbhd-header-content p  { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.9rem; }
.nbhd-price-badge {
  background: rgba(184,150,90,0.2);
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.nbhd-detail-body { background: var(--white); padding: 2.5rem; }
.nbhd-stats-row {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-bottom: 2rem;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.nbhd-stat {
  flex: 1; min-width: 120px;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border-light);
}
.nbhd-stat:last-child { border-right: none; }
.ns-num { display: block; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.ns-label { display: block; font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.05em; }
.nbhd-description p { margin-bottom: 0.9rem; font-size: 0.95rem; }
.nbhd-description p:last-child { margin-bottom: 1.75rem; }

/* ── ABOUT PAGE ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,150,90,0.02) 40px, rgba(184,150,90,0.02) 41px);
}
.about-photo-text { position: relative; z-index: 2; text-align: center; }
.about-photo-text strong { display: block; font-size: 1.4rem; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
.about-photo-text span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.5; }
.about-creds { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-light); border-radius: 4px; overflow: hidden; margin: 2rem 0; }
.cred-row { display: flex; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border-bottom: 1px solid var(--border-light); }
.cred-row:last-child { border-bottom: none; }
.cred-key { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); min-width: 80px; padding-top: 0.15rem; }
.cred-val { font-size: 0.9rem; color: var(--navy); font-weight: 500; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.5rem;
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.contact-info-block { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: rgba(184,150,90,0.1); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.ci-val { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.ci-val a { color: var(--navy); transition: color 0.2s; }
.ci-val a:hover { color: var(--gold); }

/* ── BOOK PAGE ── */
.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: center;
}
.book-hero-img {
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  transition: transform 0.6s var(--ease);
}
.book-hero-img:hover { transform: perspective(900px) rotateY(-12deg) rotateX(3deg) translateY(-6px); }
.chapter-list { display: flex; flex-direction: column; gap: 0; }
.ch-row {
  display: flex; gap: 1.25rem; align-items: baseline;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
  transition: background 0.2s;
  cursor: default;
}
.ch-row:hover { background: var(--cream); }
.ch-row:last-child { border-bottom: none; }
.ch-n { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; min-width: 1.6rem; }
.ch-row span { font-size: 0.88rem; color: var(--text); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.revealed { opacity: 1; transform: none; }

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

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none;
  background: linear-gradient(135deg, #0b2a1a, #0d3a22);
  border: 1px solid rgba(50,180,80,0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.form-success h4 { font-size: 1.3rem; color: #5de090; margin-bottom: 0.5rem; }
.form-success p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .book-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-float { justify-content: flex-start; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-layout { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-layout.reverse .col-text { order: 1; }
  .two-col-layout.reverse .col-visual { order: 2; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav .nav-links { display: none; }
  .site-nav .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(184,150,90,0.12);
  }
  .site-nav .nav-links.open a { font-size: 0.88rem; padding: 0.25rem 0; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust-row { flex-wrap: wrap; gap: 1.5rem; }
  .trust-div { display: none; }
  .trust-item { flex: 1 1 100px; }
  .neighborhoods-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nbhd-detail-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .nbhd-stats-row { flex-wrap: wrap; }
  .nbhd-stat { flex: 1 1 120px; }
  .section-pad { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
