/* ─────────────────────────────────────────────
   A Place Called Home — shared stylesheet (v2)
   ───────────────────────────────────────────── */

:root {
  --cream: #faf6ef;
  --cream-deep: #f1ead9;
  --bone: #ece4d0;
  --ink: #2a2622;
  --ink-soft: #5a5249;
  --ink-mute: #8a8276;
  --sage: #6b7a5a;
  --sage-deep: #4d5a3f;
  --terracotta: #b8654a;
  --terracotta-deep: #9a4f37;
  --gold: #b89968;
  --line: #d9cfb8;
  --shadow: 0 1px 2px rgba(42,38,34,.04), 0 8px 24px rgba(42,38,34,.06);
  --shadow-lift: 0 2px 4px rgba(42,38,34,.06), 0 24px 48px rgba(42,38,34,.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ─── Top bar ─── */
.top-bar {
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.02em;
}
.top-bar strong { font-weight: 500; color: #f5e6c8; }

/* ─── Header ─── */
header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
nav.primary { display: flex; gap: 32px; align-items: center; }
nav.primary a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s;
  font-weight: 400;
}
nav.primary a:hover, nav.primary a.active { color: var(--terracotta); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(184,101,74,.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(107,122,90,.08), transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-ctas .btn { padding: 16px 28px; font-size: 15px; }
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .label {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual { position: relative; height: 580px; }
.hero-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background-size: cover;
  background-position: center;
  display: block;
}
.hero-img.main {
  width: 78%;
  height: 70%;
  top: 0; right: 0;
}
.hero-img.accent {
  width: 50%;
  height: 50%;
  bottom: 0; left: 0;
  border: 8px solid var(--cream);
  object-fit: cover;
}
img.hero-img.main, img.hero-img.accent {
  object-fit: cover;
}

/* Hero video (replaces .hero-img.main when video is used) */
.hero-video {
  position: absolute;
  width: 78%;
  height: 70%;
  top: 0; right: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  object-fit: cover;
  background-color: var(--cream-deep);
}

/* Luxury page hero video */
.luxury-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  color: var(--cream);
  text-align: center;
}
.luxury-hero .page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.luxury-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42,38,34,0.65), rgba(42,38,34,0.75));
  z-index: 1;
}
.luxury-hero .container {
  position: relative;
  z-index: 2;
}
.luxury-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 16px auto 20px;
  max-width: 800px;
  font-weight: 500;
  color: var(--cream);
}
.luxury-hero h1 em { font-style: italic; font-weight: 400; }
.luxury-hero .sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
}
.hero-badge {
  position: absolute;
  top: 30%;
  left: -20px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
  border-left: 3px solid var(--gold);
  z-index: 5;
  max-width: 220px;
}
.hero-badge .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.hero-badge .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

/* Luxury Living — full-width bright video banner (Option B) */
.luxury-banner {
  position: relative;
  width: 100%;
  height: clamp(300px, 52vh, 520px);
  overflow: hidden;
  background: #1a1714;
}
.luxury-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.02) saturate(1.04);
}

/* Page hero */
.page-hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse at top right, rgba(184,101,74,.06), transparent 50%),
    var(--cream);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 16px auto 20px;
  max-width: 800px;
  font-weight: 500;
}
.page-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.page-hero .sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 18px;
}

/* ─── Section base ─── */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 { font-size: clamp(34px, 4vw, 48px); margin: 14px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* ─── Pillars ─── */
.pillars-section { background: var(--cream-deep); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pillar {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: 2px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--terracotta);
}
.pillar h3 { font-size: 22px; margin-bottom: 10px; font-weight: 600; }
.pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ─── Neighborhoods (homepage grid) ─── */
.neighborhoods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.neighborhoods .featured { grid-column: span 3; display: grid; grid-template-columns: 1.4fr 1fr; }
.neighborhood-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.neighborhood-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.neighborhood-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.neighborhood-card.featured .neighborhood-img { height: 100%; min-height: 320px; }
.neighborhood-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,38,34,.4), transparent 50%);
}
.neighborhood-img .home-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(250,246,239,0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}
.neighborhood-img .luxury-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}
.neighborhood-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.neighborhood-body .eyebrow { margin-bottom: 8px; }
.neighborhood-body h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}
.neighborhood-body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.neighborhood-body .link {
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── Neighborhoods page (expandable) ─── */
.nh-section {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.nh-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.nh-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}
.nh-header.reverse { direction: rtl; }
.nh-header.reverse > * { direction: ltr; }
.nh-image {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.nh-header h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 16px; }
.nh-header p { color: var(--ink-soft); margin-bottom: 16px; }
.nh-meta {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--cream-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 2px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.address-card {
  background: var(--cream);
  padding: 24px 26px;
  border-radius: 2px;
  border-left: 3px solid var(--terracotta);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.address-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.address-card .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.address-card .addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.3;
}
.address-card .city { font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.address-card .license {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.address-card .license::before {
  content: "RCFE License #";
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-right: 4px;
}
.page-hero .license-line {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.page-hero .license-line::before {
  content: "RCFE License #";
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-right: 4px;
}
.address-card .phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
}
.address-card .since {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,153,104,0.12);
  padding: 3px 8px;
  border-radius: 2px;
  vertical-align: middle;
}

/* ─── Testimonials ─── */
.testimonial-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.4;
}
.testimonial-section h2,
.testimonial-section h3 { color: var(--cream); }
.testimonial-section .section-head p { color: rgba(250,246,239,0.75); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.testimonial { padding: 24px 0; }
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 20px;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
}
.testimonial cite .name {
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
  display: block;
  font-size: 14px;
}

/* ─── Pricing ─── */
.pricing-section { background: var(--cream-deep); }
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  padding: 56px 64px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--terracotta);
}
.pricing-card .eyebrow { margin-bottom: 16px; }
.pricing-card h3 { font-size: 36px; margin-bottom: 14px; }
.pricing-card .price-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-style: italic;
}
.price-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 36px;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.price-feature svg { flex-shrink: 0; margin-top: 4px; color: var(--sage); }

/* ─── Tour form ─── */
.form-section {
  background:
    linear-gradient(rgba(77, 90, 63, 0.92), rgba(77, 90, 63, 0.96)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.form-section .section-head h2 { color: var(--cream); }
.form-section .section-head p { color: rgba(250,246,239,0.85); }
.form-section .eyebrow { color: var(--gold); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.form-side h3 { color: var(--cream); font-size: 28px; margin-bottom: 20px; }
.form-side p { color: rgba(250,246,239,0.85); margin-bottom: 28px; font-size: 15px; }
.contact-direct {
  background: rgba(0,0,0,0.18);
  padding: 24px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.contact-direct .who {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-direct .role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-direct a { display: block; font-size: 15px; margin-bottom: 6px; color: var(--cream); }
.contact-direct a:hover { color: var(--gold); }

form.tour-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 2px;
  color: var(--ink);
  box-shadow: var(--shadow-lift);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--terracotta); }
textarea { resize: vertical; min-height: 90px; }
form.tour-form .btn-primary { width: 100%; padding: 16px; font-size: 15px; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--ink-mute); text-align: center; margin-top: 14px; }

/* ─── Generic content blocks ─── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block .text h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 20px; }
.content-block .text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.content-block .text .eyebrow { margin-bottom: 12px; display: inline-block; }
.content-block .image {
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* Modifier — for portrait photos where heads-near-the-top must stay visible.
   Anchors the image to its top edge so cover-cropping trims the bottom, not
   the top. Used on the About "Care that looks like love" philosophy photo. */
.content-block .image.image-anchor-top { background-position: center top; }
.content-block .image.image-anchor-bottom { background-position: center bottom; }

.check-list { list-style: none; margin: 16px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: 2px;
  border-top: 3px solid var(--terracotta);
  box-shadow: var(--shadow);
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; }
.service-card p { font-size: 14px; color: var(--ink-soft); }

.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.activity {
  background: var(--cream);
  padding: 28px;
  border-radius: 2px;
  border-left: 3px solid var(--sage);
}
.activity h4 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.activity p { font-size: 14px; color: var(--ink-soft); }

.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform .25s;
  font-family: 'Inter', sans-serif;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-member { text-align: center; }
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
}
.team-member h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.team-member .role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.team-member p { font-size: 14px; color: var(--ink-soft); max-width: 280px; margin: 0 auto; }

.cta-strip {
  background: var(--terracotta);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--cream); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.cta-strip p { color: rgba(250,246,239,0.9); margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-ghost-light { font-size: 15px; padding: 14px 28px; }

/* ─── Footer ─── */
footer {
  background: var(--ink);
  color: rgba(250,246,239,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer h4 {
  color: var(--cream);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { transition: color .2s; }
footer a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250,246,239,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,246,239,0.5);
}
footer .logo { color: var(--cream); margin-bottom: 16px; }
footer .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250,246,239,0.85);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 2px;
  color: var(--ink);
}
.form-success.visible { display: block; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; color: var(--sage-deep); }
.form-success p { color: var(--ink-soft); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  nav.primary { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; }
  .hero-trust { flex-wrap: wrap; gap: 24px; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .neighborhoods { grid-template-columns: 1fr; }
  .neighborhoods .featured { grid-column: span 1; grid-template-columns: 1fr; }
  .neighborhoods .featured .neighborhood-img { min-height: 240px; height: 240px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 64px; }
  .pricing-card { padding: 40px 28px; }
  .price-features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  form.tour-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .header-inner { padding: 14px 24px; }
  .header-cta .phone-link span { display: none; }
  .content-block { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .content-block .image { height: 320px; }
  .content-block.reverse { direction: ltr; }
  .nh-header { grid-template-columns: 1fr; gap: 32px; }
  .nh-header.reverse { direction: ltr; }
  .nh-image { height: 280px; }
  .service-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero { padding: 56px 0 48px; }
  .testimonial-section::before { font-size: 140px; top: 24px; }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .pricing-card { padding: 32px 20px; }
  form.tour-form { padding: 24px 20px; }
  .hero h1 { font-size: 38px; }
  .hero-trust { gap: 18px; }
  .trust-item .num { font-size: 26px; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-ctas, .hero-trust, .hero-visual {
  animation: rise .8s ease both;
}
.hero-sub { animation-delay: .1s; }
.hero-ctas { animation-delay: .2s; }
.hero-trust { animation-delay: .3s; }
.hero-visual { animation-delay: .15s; }

/* Respect the OS "reduce motion" setting: drop entrance animations,
   smooth scrolling, and hover lifts/transforms for motion-sensitive users. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1, .hero-sub, .hero-ctas, .hero-trust, .hero-visual { animation: none; }
  .pillar:hover,
  .neighborhood-card:hover,
  .address-card:hover,
  .address-card-link:hover,
  .btn-primary:hover,
  .footer-social a:hover,
  .video-sound-toggle:hover { transform: none; }
}

/* ─────────────────────────────────────────────
   Clickable address cards (homes.html, luxury.html)
   ───────────────────────────────────────────── */
.address-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.address-card-link:hover,
.address-card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-left-color: var(--gold);
}
.address-card-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}
.address-cta {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  display: inline-block;
}

/* ─────────────────────────────────────────────
   Breadcrumb (per-home gallery pages)
   ───────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.breadcrumb a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   Per-home gallery placeholder
   ───────────────────────────────────────────── */
.gallery-placeholder {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  background: var(--cream-deep);
  border-radius: 4px;
  border: 1px dashed var(--line);
}
.gallery-placeholder .eyebrow { color: var(--terracotta); margin-bottom: 12px; display: inline-block; }
.gallery-placeholder h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
}
.gallery-placeholder p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* When real photos arrive, drop them into a grid like this. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-grid .gallery-tile {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   Luxury video sound toggle (bottom-right corner)
   ───────────────────────────────────────────── */
.video-sound-toggle {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream);
  border: 1px solid rgba(250, 246, 239, 0.3);
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background .15s, border-color .15s, transform .15s;
}
.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  background: rgba(20, 16, 12, 0.75);
  border-color: var(--gold);
  transform: scale(1.02);
}
.video-sound-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.video-sound-toggle .sound-label { line-height: 1; }
@media (max-width: 600px) {
  .video-sound-toggle { right: 14px; bottom: 14px; padding: 8px 12px; }
  .video-sound-toggle .sound-label { display: none; }
}

/* ─────────────────────────────────────────────
   v5 HERO — Castillo panorama (wide horizontal main)
   + singing video accent (smaller, with sound toggle)
   ───────────────────────────────────────────── */
.hero-img.main {
  /* Override the earlier rule — panorama is wide horizontal, not portrait */
  width: 100%;
  height: auto;
  max-height: 70%;
  top: 0; right: 0;
  object-fit: cover;
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
}
.hero-accent-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border: 8px solid var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--cream-deep);
  z-index: 2;
}
.hero-video-accent {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-accent > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Sound toggle on the hero accent video — smaller than the luxury one */
.video-sound-toggle.hero-toggle {
  bottom: 12px;
  right: 12px;
  padding: 7px 10px;
  font-size: 11px;
  border-radius: 100px;
}
@media (max-width: 600px) {
  .video-sound-toggle.hero-toggle .sound-label { display: none; }
  .video-sound-toggle.hero-toggle { padding: 6px; }
}

/* ─────────────────────────────────────────────
   Video inside a .content-block (Luxury Visit either home)
   ───────────────────────────────────────────── */
.content-block .image.content-block-video {
  background: var(--cream-deep);
  padding: 0;
  overflow: hidden;
  display: block;
}
.content-block .image.content-block-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-block .image.content-block-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────────
   Meet the Team section
   ───────────────────────────────────────────── */
.team-section {
  background: var(--cream-deep);
  padding: 96px 0;
}
.team-section .section-head { margin-bottom: 56px; }
.team-section .team-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--terracotta);
  margin: 4px 0 16px;
  font-weight: 500;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-color: var(--cream);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}
/* Placeholder until real headshots arrive — initials on a soft tinted disk */
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #ead7c0 100%);
  border: 1px solid var(--line);
}
.team-photo-init {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.team-card .team-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.team-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 320px;
}
@media (max-width: 600px) {
  .team-section { padding: 64px 0; }
  .team-grid { gap: 56px; }
  .team-photo { width: 180px; height: 180px; }
  .team-photo-init { font-size: 52px; }
}

/* ─────────────────────────────────────────────
   v6 HERO — Singing video as MAIN (large slot)
   + Pergola group photo as ACCENT (small slot)
   ───────────────────────────────────────────── */

/* The video sits in the same big slot a photo would. The .hero-video-main
   element is full-width inside the wrapper, with padding/border styling
   identical to the panorama version's .hero-img.main rule we used before. */
.hero-main-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-height: 70%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--cream-deep);
}
.hero-video-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Anchor to the top so the singer's face stays in frame when the video
     gets cropped to the wider hero ratio */
  object-position: center top;
}
.hero-video-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sound toggle on the hero MAIN video — visible bottom-right of the video */
.video-sound-toggle.hero-toggle {
  bottom: 12px;
  right: 12px;
  padding: 7px 10px;
  font-size: 11px;
  border-radius: 100px;
}
@media (max-width: 600px) {
  .video-sound-toggle.hero-toggle .sound-label { display: none; }
  .video-sound-toggle.hero-toggle { padding: 6px; }
}

/* ─────────────────────────────────────────────
   Address cards — two action links (gallery + directions)
   ───────────────────────────────────────────── */
.address-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.address-action {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .15s, color .15s;
}
.address-action-primary {
  color: var(--terracotta);
}
.address-action-primary:hover,
.address-action-primary:focus-visible {
  border-bottom-color: var(--terracotta);
}
.address-action-secondary {
  color: var(--ink-soft);
}
.address-action-secondary:hover,
.address-action-secondary:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ─────────────────────────────────────────────
   Footer social media links
   ───────────────────────────────────────────── */
.footer-social {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-social-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.5);
  margin-right: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.08);
  color: rgba(250, 246, 239, 0.85);
  transition: background .15s, color .15s, transform .15s;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   Map section on Contact page
   ───────────────────────────────────────────── */
.map-section {
  background: var(--cream-deep);
  padding: 80px 0 96px;
}
.map-embed {
  margin-top: 48px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #1a1614;
}
.map-embed iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-embed iframe { height: 420px; }
  .map-section { padding: 56px 0 72px; }
}

/* ─────────────────────────────────────────────
   v6 HERO — OPTION D
   Video LEFT (tall portrait, native 9:16, both faces visible)
   Pergola TOP-RIGHT (smaller landscape)
   Hero TEXT below pergola in the right column
   ───────────────────────────────────────────── */
.hero-grid-d {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}
.hero-visual-d {
  position: static;
  width: 100%;
}
.hero-video-tall {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;  /* slightly less tall than full 9:16 so it fits */
  max-height: 720px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-lift);
}
.hero-video-tall video,
.hero-video-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-grid-d .hero-content {
  position: relative;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.hero-pergola-top {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lift);
}
.hero-grid-d .hero-badge {
  position: static;
  display: inline-block;
  width: max-content;
  margin: 0 0 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.hero-grid-d h1 {
  margin-top: 8px;
}
@media (max-width: 900px) {
  .hero-grid-d {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-video-tall {
    aspect-ratio: 9 / 13;
    max-height: 560px;
  }
  .hero-pergola-top {
    height: 200px;
  }
}

/* ─────────────────────────────────────────────
   Team grid 2x2 with 4 cards
   ───────────────────────────────────────────── */
.team-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 56px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .team-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.team-footnote {
  text-align: center;
  margin: 56px auto 0;
  max-width: 640px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ─────────────────────────────────────────────
   Founder section — wraps a content-block but with extra padding
   so it reads as its own moment, not just another stripe.
   ───────────────────────────────────────────── */
.founder-section {
  background: var(--cream-deep);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 96px 0;
  position: relative;
}
.founder-section > .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.founder-section > .content-block {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.founder-section .content-block {
  margin-bottom: 0;
}
/* Founder photo is a portrait aspect (3:4), full body, so give it a taller
   slot than the default content-block image (480px square-ish). */
.founder-section .content-block .image {
  height: 640px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--cream-deep);
  box-shadow: none;
}
@media (max-width: 600px) {
  .founder-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .founder-section .content-block .image {
    height: 480px;
  }
}

/* ---- Accessibility: skip-to-content link ---- */
.skip-link { position: absolute; left: 8px; top: -48px; z-index: 1000; background: var(--terracotta); color: #fff; padding: 10px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: top .15s ease; }
.skip-link:focus { top: 8px; outline: 2px solid #fff; outline-offset: 2px; }
main:focus { outline: none; }

/* ---- Sticky click-to-call bar (mobile only) ---- */
.mobile-call-bar { display: none; }
@media (max-width: 768px) {
  .mobile-call-bar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: var(--terracotta); color: #fff; text-decoration: none;
    font-weight: 600; font-size: 16px; letter-spacing: .01em;
    padding: 14px 16px; padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 12px rgba(0,0,0,.18);
  }
  .mobile-call-bar svg { flex: none; }
  body { padding-bottom: 64px; } /* keep footer clear of the fixed bar */
}

/* ---- Google reviews trust link (hero) ---- */
.hero-reviews { display: inline-flex; align-items: center; gap: 10px; margin: 18px 0 6px; text-decoration: none; color: var(--ink-soft); font-size: 15px; }
.hero-reviews .hr-stars { color: #f5a623; letter-spacing: 2px; font-size: 16px; }
.hero-reviews .hr-rating strong { color: var(--ink); font-weight: 600; }
.hero-reviews .hr-arrow { color: var(--terracotta); transition: transform .15s ease; }
.hero-reviews:hover { color: var(--ink); }
.hero-reviews:hover .hr-arrow { transform: translateX(3px); }

/* ---- Google reviews line in CTA strip (light text on colored band) ---- */
.cta-reviews { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #fff; text-decoration: none; font-size: 15px; opacity: .96; }
.cta-reviews .cr-stars { color: #ffd166; letter-spacing: 2px; font-size: 16px; }
.cta-reviews strong { color: #fff; font-weight: 700; }
.cta-reviews:hover { opacity: 1; text-decoration: underline; }

/* ---- Video feature (split video + story) ---- */
.video-feature { background: var(--cream); padding: 64px 0; }
.video-feature .vf-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: center; }
.video-player { position: relative; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 16/9; background: #000; }
.video-player video { display: block; width: 100%; height: 100%; object-fit: cover; }
.vf-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(20,16,14,.18); border: 0; cursor: pointer; transition: background .2s, opacity .2s; }
.vf-play:hover { background: rgba(20,16,14,.30); }
.vf-circle { width: 84px; height: 84px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.vf-circle svg { margin-left: 5px; }
.vf-runtime { position: absolute; bottom: 14px; right: 16px; background: rgba(0,0,0,.55); color: #fff; font: 600 12px Inter, sans-serif; padding: 3px 9px; border-radius: 4px; letter-spacing: .04em; }
.video-player.playing .vf-play, .video-player.playing .vf-runtime { opacity: 0; pointer-events: none; }
.vf-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; color: var(--ink); margin: 8px 0 14px; line-height: 1.1; }
.vf-copy h2 em { color: var(--terracotta); font-style: italic; }
.vf-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0 0 22px; }
@media (max-width: 760px) { .video-feature .vf-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---- Full-width drone banner (neighborhood aerials) ---- */
.drone-banner { position: relative; width: 100%; height: 60vh; min-height: 340px; max-height: 600px; overflow: hidden; background: #000; }
.drone-banner video, .drone-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .drone-banner { height: 44vh; min-height: 240px; } }
.drone-banner.contained { height: 340px; min-height: 0; max-height: none; border-radius: 10px; margin-bottom: 28px; box-shadow: var(--shadow); }
@media (max-width: 760px) { .drone-banner.contained { height: 220px; } }

/* ---- Per-home photo gallery + lightbox ---- */
.home-gallery { text-align: center; }
.home-gallery .hg-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--ink); margin: 6px 0 28px; }
.hg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.hg-item { display: block; overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; cursor: zoom-in; }
.hg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.hg-item:hover img { transform: scale(1.05); }
.hg-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(10,8,6,.92); display: none; align-items: center; justify-content: center; }
.hg-lightbox.open { display: flex; }
.hg-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 10px 50px rgba(0,0,0,.6); }
.hg-close, .hg-prev, .hg-next { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer; font-size: 28px; line-height: 1; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hg-close:hover, .hg-prev:hover, .hg-next:hover { background: rgba(255,255,255,.28); }
.hg-close { top: 20px; right: 20px; }
.hg-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.hg-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 760px) { .hg-prev, .hg-next { bottom: 20px; top: auto; transform: none; } .hg-prev { left: 20px; } .hg-next { right: 20px; } }

/* ---- Gallery video tiles + lightbox video ---- */
.hg-item { position: relative; }
.hg-playbadge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hg-playbadge > span { width: 54px; height: 54px; border-radius: 50%; background: rgba(184,101,74,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.35); }
.hg-playbadge > span::after { content: ''; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.hg-lightbox .hg-media img, .hg-lightbox .hg-media video { max-width: 92vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 10px 50px rgba(0,0,0,.6); display: block; }

/* ---- Calimyrna (Our Homes): activities strip on top + drone in the side slot ---- */
.nh-activities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 48px; }
.nh-activities img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (max-width: 700px) { .nh-activities { grid-template-columns: 1fr 1fr; } }
.nh-image.nh-image-video { background: #000; overflow: hidden; position: relative; }
.nh-image.nh-image-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Calimyrna feature — full-width drone banner with the title overlaid (Option C) */
.nh-feature { margin-bottom: 48px; }
.nh-feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nh-feature-media video,
.nh-feature-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-feature-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 72px 40px 28px;
  background: linear-gradient(to top, rgba(20,16,12,.64) 0%, rgba(20,16,12,.30) 45%, rgba(20,16,12,0) 100%);
}
.nh-feature-overlay .eyebrow { display: block; margin-bottom: 8px; color: rgba(255,255,255,.9); text-shadow: 0 1px 6px rgba(0,0,0,.45); }
.nh-feature-overlay h2 { margin: 0; color: #fff; font-size: clamp(32px, 4vw, 44px); text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.nh-feature-body { max-width: 900px; margin: 24px 0 0; }
.nh-feature-body p { color: var(--ink-soft); margin-bottom: 16px; }

/* Quail Lake — full-width intro, then each home's photo above its address card */
.nh-intro { max-width: 820px; margin: 0 0 32px; }
.nh-intro h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 16px; }
.nh-intro p { color: var(--ink-soft); margin-bottom: 16px; }
.nh-home { display: flex; flex-direction: column; }
.nh-home-photo {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.nh-home .address-card { flex: 1; }
/* Option 2 variant — photo as the header of one unified listing card */
.nh-home--card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  transition: transform .2s, box-shadow .2s;
}
.nh-home--card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.nh-home--card .nh-home-photo { margin-bottom: 0; border-radius: 0; box-shadow: none; }
.nh-home--card .address-card { box-shadow: none; border-radius: 0; }
.nh-home--card .address-card:hover { transform: none; box-shadow: none; }
@media (max-width: 700px) {
  .nh-feature-media { aspect-ratio: 3 / 2; }
  .nh-feature-overlay { padding: 52px 20px 18px; }
}

/* ---- Community / "Life at APCH" social page ---- */
.social-follow { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 8px 0; }
.social-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; border-radius: 10px; background: var(--cream-deep, #f3ece2); color: var(--ink); text-decoration: none; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift, 0 12px 30px rgba(0,0,0,.14)); }
.social-btn svg { flex: none; }
.social-btn span { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.social-btn strong { font-size: 16px; }
.social-btn small { color: var(--ink-soft); font-size: 12px; margin-top: 2px; }
.social-btn-ig { background: linear-gradient(120deg, #fdeffb, #fff3ea); border: 1px solid rgba(193,53,132,.25); }
.social-btn-ig svg { color: #C13584; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.social-grid .hg-item { aspect-ratio: 1 / 1; }

/* ---- Footer crest logo (on a light chip, since footer is dark) ---- */
.footer-crest { display: block; width: 240px; max-width: 100%; height: auto; background: var(--cream); padding: 12px 16px; border-radius: 8px; }

/* ---- Header shield logomark ---- */
.logo .logo-mark-img { height: 42px; width: auto; display: block; }

/* ---- Header full crest logo ---- */
.logo .logo-crest { height: 52px; width: auto; display: block; }
@media (max-width: 600px){ .logo .logo-crest { height: 44px; } }
/* The header crest is a nav tab in reverse: it rests orange and recolors to the
   nav-tab ink tone (--ink-soft) on hover and on the current page. A second crest,
   recolored to ink but keeping the light lion/pineapple/scallop detail, is
   crossfaded over the orange one. */
header .logo { position: relative; }
header .logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/logo-crest-ink.png') left center / contain no-repeat;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
header .logo:hover::after,
header .logo[aria-current="page"]::after { opacity: 1; }
/* The reciprocal of a tab highlighting: when the crest is selected (hovered, or
   on its own page) the nav tabs turn orange, just as the tabs do on hover. */
header .logo:hover ~ nav.primary a,
header .logo[aria-current="page"] ~ nav.primary a { color: var(--terracotta); }
