/* ============================================
   Prepared & Polished — Homepage v3 styles
   Mirrors HHH structure with refined warm palette
   Builds on /assets/css/styles.css tokens
   ============================================ */

/* ===== Header — prominent phone CTA ===== */
.header-call-strong {
  background: var(--emerald);
  color: var(--bg-cream);
  border-color: var(--emerald);
}
.header-call-strong:hover {
  background: var(--emerald-hover);
  color: var(--bg-cream);
}
@media (max-width: 1100px) {
  .header-call-strong span { display: none; }
  .header-call-strong { padding: 0.55rem 0.75rem; min-width: 40px; }
}
@media (max-width: 880px) {
  .header-cta { gap: 0.4rem; margin-left: auto; }
  .header-cta .btn-sm { padding: 0.5rem 0.75rem; }
}

/* ===== HERO v3 — full-bleed photo + form card ===== */
.hero-v3 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: var(--s-12) 0 var(--s-16);
  overflow: hidden;
}
.hero-v3 .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-v3 .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--border-subtle);
}
.hero-v3 .hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(245, 239, 226, 1.0) 0%,
      rgba(245, 239, 226, 0.99) 38%,
      rgba(245, 239, 226, 0.95) 50%,
      rgba(245, 239, 226, 0.5) 75%,
      rgba(245, 239, 226, 0.12) 100%);
  z-index: -1;
}
.hero-v3 .hero-text {
  position: relative;
}
.hero-v3 .hero-text::before {
  content: '';
  position: absolute;
  inset: -2rem -2rem -1.5rem -2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 239, 226, 0.95) 0%, rgba(245, 239, 226, 0.6) 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-v3 .hero-text > * { position: relative; }
@media (max-width: 880px) {
  .hero-v3 .hero-photo::after {
    background: linear-gradient(180deg,
      rgba(245, 239, 226, 0.85) 0%,
      rgba(245, 239, 226, 0.6) 45%,
      rgba(245, 239, 226, 0.8) 100%);
  }
  /* Mobile/tablet stacks the hero form directly below the headline, so
     the secondary "Request a Quote" button in the CTA row is redundant.
     Keep the Call/Text button visible. */
  .hero-v3 .hero-cta-row .btn-secondary { display: none; }
  /* Center the remaining Call/Text CTA on mobile. */
  .hero-v3 .hero-cta-row { justify-content: center; }
}

.hero-v3 .hero-content {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-v3 .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-16);
  }
}

.hero-v3 .hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw + 0.25rem, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  color: var(--charcoal);
  font-weight: 700;
}
.hero-v3 .hero-sub {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 38ch;
  margin-bottom: var(--s-6);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 0 rgba(245, 239, 226, 0.8);
}
.hero-v3 .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ===== TRUST STRIP v3 — major selling-points block ===== */
.trust-strip-v3 {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--s-24) 0;
}
.trust-strip-header {
  text-align: center;
  margin: 0 auto var(--s-16);
  max-width: 720px;
}
.trust-strip-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.trust-strip-header h2 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 800;
  font-family: var(--font-display);
}
.trust-strip-header p {
  font-size: 1.15rem;
  color: var(--slate);
  margin-top: var(--s-3);
  font-weight: 500;
}
.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-8);
}
@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-8);
  }
}
@media (min-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
  }
}
.trust-grid li {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: visible;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(14, 22, 20, 0.04);
  transition: transform var(--d-med) var(--ease), box-shadow var(--d-med) var(--ease), border-color var(--d-med) var(--ease);
}
.trust-grid li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brass);
}

/* Top decorative band */
.trust-card-top {
  height: 140px;
  background: linear-gradient(135deg, var(--emerald) 0%, #225244 60%, var(--emerald-hover) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  /* overflow visible so the badge can overlap the body section */
}
.trust-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(184, 153, 104, 0.4), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(245, 239, 226, 0.08), transparent 55%);
  pointer-events: none;
}
.trust-card-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.5), transparent);
}

/* Large circular brass badge — overlaps card-top bottom */
.trust-badge {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(14, 22, 20, 0.22), inset 0 -2px 4px rgba(14, 22, 20, 0.12);
  border: 6px solid var(--surface);
  z-index: 2;
  background: radial-gradient(circle at 30% 30%, #d4ad7e, var(--brass) 60%, var(--brass-hover));
  transition: transform var(--d-fast) var(--ease);
}
.trust-grid li:hover .trust-badge {
  transform: translateX(-50%) scale(1.06);
}
.trust-badge svg {
  width: 36px;
  height: 36px;
  color: var(--charcoal);
  stroke-width: 2;
}

/* Brass accent stripe at top of each card */
.trust-grid li::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--brass), #d4ad7e, var(--brass));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 3;
}

/* Card body */
.trust-card-body {
  padding: var(--s-12) var(--s-6) var(--s-8);
  text-align: center;
  flex-grow: 1;
}
.trust-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.trust-card-body p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}
.trust-card-body p strong {
  color: var(--charcoal);
  font-weight: 700;
}

@media (max-width: 720px) {
  .trust-strip-v3 { padding: var(--s-16) 0; }
  .trust-strip-header { margin-bottom: var(--s-10); }
  .trust-card-top { height: 120px; }
  .trust-badge { width: 68px; height: 68px; bottom: -32px; }
  .trust-badge svg { width: 26px; height: 26px; }
  .trust-card-body { padding: var(--s-10) var(--s-5) var(--s-6); }
}

/* ===== FEATURE BLOCKS (Airbnb + Residential) ===== */
.feature-block {
  padding: var(--s-20) 0;
}
.feature-airbnb {
  background: var(--bg-cream);
}
.feature-residential {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.feature-grid {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}
@media (min-width: 880px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-16);
  }
  .feature-grid-reverse > .feature-photo {
    order: 2;
  }
}
.feature-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.3rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.feature-text .eyebrow + h2 {
  margin-top: var(--s-2);
}
.feature-text .lede {
  margin-bottom: var(--s-5);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: grid;
  gap: var(--s-2);
}
.feature-list li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--slate);
  font-size: 0.98rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 1px;
  background: var(--emerald);
}
.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ===== SERVICES GRID v3 — 5 cards ===== */
.services-grid-section {
  padding: var(--s-20) 0;
  background: var(--bg-cream);
}
.service-grid {
  display: grid;
  gap: var(--s-6);
}
@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-8);
  }
}
@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--d-fast) var(--ease),
              box-shadow var(--d-fast) var(--ease),
              border-color var(--d-fast) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}
.service-card-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--border-subtle);
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease);
}
.service-card:hover .service-card-photo img {
  transform: scale(1.04);
}
.service-card-body {
  padding: var(--s-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--brass-bright) 0%, var(--brass) 50%, var(--brass-hover) 100%);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  margin-bottom: var(--s-3);
  box-shadow: 0 3px 8px rgba(201, 160, 95, 0.5);
}

/* "Most Popular" badge — diagonal ribbon-style on top of card */
.service-popular-badge {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 5;
  background: linear-gradient(135deg, #2a5d44 0%, var(--emerald) 100%);
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(14, 22, 20, 0.4);
  border: 1px solid rgba(221, 179, 111, 0.5);
}
.service-card { position: relative; }
.service-card-featured {
  border: 2px solid var(--brass);
  box-shadow: 0 8px 24px rgba(201, 160, 95, 0.25), 0 2px 6px rgba(14, 22, 20, 0.08);
}
.service-card-featured:hover {
  border-color: var(--brass-bright);
  box-shadow: 0 16px 36px rgba(201, 160, 95, 0.35), 0 4px 12px rgba(14, 22, 20, 0.12);
}
.service-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--s-2);
}
.service-card-body p {
  color: var(--slate);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: var(--s-4);
  line-height: 1.55;
}
.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--charcoal);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.link-arrow:hover {
  color: var(--emerald);
  border-color: var(--emerald);
}

/* ===== GIFT CARDS ===== */
.gift-cards-section {
  padding: var(--s-16) 0;
  background: var(--surface);
}
.gift-card-block {
  background: var(--charcoal);
  color: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: var(--s-12);
  display: grid;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gift-card-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.25), transparent 70%);
  pointer-events: none;
}
@media (min-width: 720px) {
  .gift-card-block {
    grid-template-columns: 1.5fr auto;
    gap: var(--s-12);
  }
}
.gift-card-text .eyebrow {
  color: var(--brass);
}
.gift-card-text h2 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bg-cream);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.2rem);
  margin-bottom: var(--s-3);
}
.gift-card-text p {
  color: rgba(245, 239, 226, 0.85);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}
.gift-card-actions {
  position: relative;
  z-index: 2;
}
.gift-card-actions .btn-primary {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}
.gift-card-actions .btn-primary:hover {
  background: #a08654;
  color: var(--charcoal);
}

/* ===== ABOUT v3 ===== */
.about-section {
  padding: var(--s-20) 0;
  background: var(--bg-cream);
}
.about-values {
  display: grid;
  gap: var(--s-8);
  margin-top: var(--s-8);
}
@media (min-width: 720px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-10) var(--s-12);
  }
}
@media (min-width: 1024px) {
  .about-values {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-value {
  border-top: 1px solid var(--charcoal);
  padding-top: var(--s-4);
}
.about-value h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.about-value p {
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}

/* ===== FAQ v3 ===== */
.faq-section {
  padding: var(--s-20) 0;
  background: var(--surface);
}
.faq-section .section-header {
  margin-bottom: var(--s-8);
}
.faq-section .faq-list {
  max-width: 920px;
}

/* ===== AREAS v3 ===== */
.areas-section-v3 {
  padding: var(--s-20) 0;
  background: var(--charcoal);
  color: var(--bg-cream);
}
.areas-section-v3 .section-header h2 {
  color: var(--bg-cream);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.2rem);
}
.areas-section-v3 .section-header .eyebrow {
  color: var(--brass);
}
.areas-section-v3 .section-header p {
  color: rgba(245, 239, 226, 0.75);
  max-width: 60ch;
}
.areas-grid-v3 {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
}
@media (min-width: 720px) {
  .areas-grid-v3 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.area-tile-v3 {
  background: rgba(245, 239, 226, 0.04);
  border: 1px solid rgba(245, 239, 226, 0.12);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: background var(--d-fast) var(--ease),
              border-color var(--d-fast) var(--ease),
              transform var(--d-fast) var(--ease);
}
.area-tile-v3:hover {
  background: rgba(245, 239, 226, 0.08);
  border-color: var(--brass);
  transform: translateY(-2px);
}
.area-tile-v3 h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bg-cream);
  margin-bottom: var(--s-2);
}
.area-tile-v3 p {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.7);
  margin: 0;
  line-height: 1.5;
}
.areas-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: flex-start;
}
.areas-section-v3 .btn-primary {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}
.areas-section-v3 .btn-primary:hover {
  background: #a08654;
  color: var(--charcoal);
}
.areas-section-v3 .btn-secondary {
  background: transparent;
  color: var(--bg-cream);
  border-color: rgba(245, 239, 226, 0.4);
}
.areas-section-v3 .btn-secondary:hover {
  background: rgba(245, 239, 226, 0.1);
  border-color: var(--bg-cream);
  color: var(--bg-cream);
}

/* ===== FINAL CTA v3 ===== */
.final-cta-v3 {
  position: relative;
  padding: var(--s-24) 0;
  overflow: hidden;
  text-align: center;
}
.final-cta-v3 .final-cta-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.final-cta-v3 .final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta-v3 .final-cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 14, 12, 0.65) 0%,
    rgba(15, 14, 12, 0.5) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  color: var(--bg-cream);
}
.final-cta-content .eyebrow {
  color: var(--brass);
}
.final-cta-content h2 {
  color: var(--bg-cream);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  margin-bottom: var(--s-4);
}
.final-cta-content p {
  color: rgba(245, 239, 226, 0.9);
  font-size: 1.15rem;
  margin-bottom: var(--s-8);
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}
.final-cta-v3 .btn-primary {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}
.final-cta-v3 .btn-primary:hover {
  background: #a08654;
  color: var(--charcoal);
}

/* ===== Footer adjustments ===== */
.footer-bottom .footer-contact {
  font-size: 0.8rem;
  color: rgba(245, 239, 226, 0.5);
}

/* ===== Turnstile widget container ===== */
.turnstile-wrap {
  margin: var(--s-2) 0;
  min-height: 65px;
  display: flex;
  justify-content: center;
}
.turnstile-wrap .cf-turnstile {
  width: 100%;
}
/* Collapse the Turnstile container while sitekey is still the placeholder
   so it doesn't reserve empty space below the terms checkbox. Selector
   auto-unhides as soon as a real sitekey replaces [INSERT_TURNSTILE_SITE_KEY]. */
.turnstile-wrap:has(.cf-turnstile[data-sitekey^="[INSERT_"]) {
  display: none;
}

/* ============================================
   STATS STRIP — bold horizontal value-anchor bar
   ============================================ */
.stats-strip {
  background: var(--charcoal);
  padding: var(--s-6) 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(201, 160, 95, 0.25), transparent 60%),
    radial-gradient(circle at 90% 50%, rgba(26, 59, 46, 0.4), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
  }
}
.stats-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: var(--s-2) var(--s-2);
}
@media (min-width: 720px) {
  .stats-grid li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(201, 160, 95, 0.5), transparent);
  }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--brass-bright);
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.stat-icon {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  color: var(--brass-bright);
  line-height: 1;
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-cream);
  line-height: 1.3;
}

/* ============================================
   AIRBNB DRAMATIC BANNER — major profit point
   Full-bleed dark photo with brass accents
   ============================================ */
.airbnb-banner {
  position: relative;
  padding: var(--s-32) 0;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--bg-cream);
}
.airbnb-banner-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.airbnb-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.airbnb-banner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 153, 104, 0.3), transparent 55%),
    linear-gradient(120deg, rgba(15, 14, 12, 0.9) 0%, rgba(15, 14, 12, 0.7) 50%, rgba(26, 59, 46, 0.55) 100%);
}
.airbnb-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
  z-index: 3;
}
.airbnb-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
  z-index: 3;
}
.airbnb-banner-content {
  position: relative;
  z-index: 2;
}
.airbnb-banner-text { max-width: 760px; }
.airbnb-eyebrow {
  display: inline-block;
  background: var(--brass);
  color: var(--charcoal);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
  box-shadow: 0 4px 12px rgba(184, 153, 104, 0.4);
}
.airbnb-banner h2 {
  font-family: var(--font-display);
  color: var(--bg-cream);
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-6);
}
.airbnb-banner h2 em {
  color: var(--brass);
  font-style: italic;
}
.airbnb-lede {
  font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.35rem);
  color: rgba(245, 239, 226, 0.9);
  line-height: 1.5;
  max-width: 64ch;
  margin: 0 0 var(--s-8);
  font-weight: 500;
}
.airbnb-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-10);
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 720px) {
  .airbnb-features { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-8); }
}
.airbnb-features li {
  position: relative;
  padding-left: var(--s-6);
  color: rgba(245, 239, 226, 0.92);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}
.airbnb-features li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: -0.05em;
  color: var(--brass);
  font-size: 1.1rem;
}
.airbnb-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ============================================
   SUB-PAGE TEMPLATE (services, areas, faq, etc.)
   ============================================ */

.sub-hero {
  position: relative;
  padding: var(--s-16) 0 var(--s-12);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 280px;
  display: flex;
  align-items: center;
}
.sub-hero-photo {
  position: absolute; inset: 0; z-index: -2;
}
.sub-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--border-subtle);
}
.sub-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 239, 226, 0.97);
  z-index: 1;
}
.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  margin-bottom: var(--s-4);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.sub-hero .lede {
  font-size: 1.1rem;
  max-width: 60ch;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.55;
}
.sub-hero .hero-cta-row { margin-top: var(--s-6); }

/* Generic content section */
.content-section { padding: var(--s-16) 0; }
.content-section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.content-section.tinted { background: var(--bg-cream); }
.content-section.dark { background: var(--charcoal); color: var(--bg-cream); }
.content-section.dark h2,
.content-section.dark h3 { color: var(--bg-cream); }
.content-section.dark .eyebrow { color: var(--brass); }
.content-section.dark p { color: rgba(245, 239, 226, 0.85); }

.content-grid {
  display: grid; gap: var(--s-10);
}
@media (min-width: 880px) {
  .content-grid.cols-2 { grid-template-columns: 1fr 1fr; gap: var(--s-12); }
  .content-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
}

.content-block h2 {
  margin-bottom: var(--s-4);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
}
.content-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
}
.content-block ul.checklist,
.content-block ul.bulletlist { margin-bottom: var(--s-5); }

/* End-of-page CTA card */
.eop-cta-section { padding: var(--s-16) 0; background: var(--bg-cream); }
.eop-cta {
  background: var(--charcoal);
  color: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: var(--s-12) var(--s-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eop-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.2), transparent 70%);
  pointer-events: none;
}
.eop-cta .eyebrow { color: var(--brass); position: relative; }
.eop-cta h2 {
  color: var(--bg-cream);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  margin-bottom: var(--s-3);
  position: relative;
}
.eop-cta p {
  color: rgba(245, 239, 226, 0.85);
  max-width: 56ch;
  margin: 0 auto var(--s-6);
  font-size: 1.05rem;
  position: relative;
}
.eop-cta .hero-cta-row {
  justify-content: center;
  position: relative;
}
.eop-cta .btn-primary {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}
.eop-cta .btn-primary:hover {
  background: var(--brass-hover);
  color: var(--charcoal);
}
.eop-cta .btn-secondary {
  background: transparent;
  color: var(--bg-cream);
  border-color: rgba(245, 239, 226, 0.4);
}
.eop-cta .btn-secondary:hover {
  background: rgba(245, 239, 226, 0.1);
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}

/* Long-form prose (terms / privacy) */
.prose-page .sub-hero { padding-bottom: var(--s-10); }
.prose-page .prose-body {
  max-width: 760px;
  padding: var(--s-12) 0;
}
.prose-page .prose-body h2 {
  margin-top: var(--s-10);
  margin-bottom: var(--s-3);
  font-size: 1.4rem;
}
.prose-page .prose-body h2:first-of-type { margin-top: 0; }
.prose-page .prose-body p,
.prose-page .prose-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* FAQ on sub-pages — uses same .faq-list / .faq-item from styles.css */
.faq-page .faq-list { max-width: 920px; }

/* Service detail page bits */
.service-detail-meta {
  display: flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-3);
}
.service-detail-meta .tag {
  background: var(--bg-cream);
  border-color: var(--border-subtle);
}

/* Compact quote form on sub-pages (mirrors hero form, slimmer) */
.compact-quote {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
}
.compact-quote h3 { margin-bottom: var(--s-3); font-size: 1.3rem; }

/* Areas grid on /service-areas.html */
.areas-overview-grid {
  display: grid; gap: var(--s-6);
}
@media (min-width: 720px) {
  .areas-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .areas-overview-grid { grid-template-columns: repeat(4, 1fr); }
}
.area-overview-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  display: block;
  transition: transform var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.area-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
  text-decoration: none;
}
.area-overview-card h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--s-2);
}
.area-overview-card p {
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0 0 var(--s-3);
  line-height: 1.55;
}
.area-overview-card .link-arrow {
  color: var(--charcoal);
}
