:root {
  --cream: #f6f1e8;
  --sand: #e6d7c1;
  --ink: #111111;
  --slate: #3c3b42;
  --olive: #5e6b52;
  --copper: #b86b3a;
  --clay: #d3905d;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #efe3cf 0%, #f7f1e7 26%, #fffaf3 100%);
}

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

.site-frame {
  position: relative;
  overflow: hidden;
}

.site-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  background: rgba(184, 107, 58, 0.12);
  transform: translate(-20%, -20%);
  pointer-events: none;
}

.site-frame::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 280px;
  width: 320px;
  height: 320px;
  border-radius: 28% 72% 56% 44% / 35% 40% 60% 65%;
  background: rgba(94, 107, 82, 0.12);
  pointer-events: none;
}

body.inner-page .site-frame::before,
body.inner-page .site-frame::after {
  content: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.wordmark-top,
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

.wordmark-top {
  font-size: 1.35rem;
  font-weight: 600;
}

.wordmark-bottom {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
}

.main-nav,
.hero-actions,
.footer-layout,
.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.main-nav {
  justify-content: center;
}

.main-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--slate);
  font-weight: 500;
}

.main-nav a.is-active {
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(17, 17, 17, 0.06);
}

.header-call {
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
}

.hero-block {
  padding: 5rem 0 3.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: end;
}

.eyebrow,
.section-tag,
.card-label,
.info-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow,
.section-tag,
.card-label {
  color: var(--copper);
}

h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.92;
  max-width: 10ch;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.95;
  max-width: 16ch;
}

h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.intro,
.section-copy,
.proof-note {
  color: var(--slate);
}

.intro {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.6rem;
}

.social-inline {
  margin-top: 1rem;
}

.social-inline a {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-light {
  background: transparent;
  border-color: var(--ink);
}

.hero-right {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-card {
  position: absolute;
  width: min(100%, 290px);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spotlight-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 2.4rem;
  line-height: 1;
}

.angle-one {
  top: 8%;
  left: 6%;
  transform: rotate(-8deg);
}

.angle-two {
  right: 2%;
  bottom: 18%;
  transform: rotate(7deg);
}

.dark-card {
  background: #20201f;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-card .card-label {
  color: var(--sand);
}

.hero-marquee {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.hero-marquee span {
  padding: 0.9rem 0.7rem;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-weight: 700;
}

.story-band,
.overview-grid-block,
.reasons-block,
.proof-block,
.social-block,
.faq-block,
.page-content-block,
.visit-block {
  padding: 2rem 0 4.5rem;
}

.cards-3,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-card h3 {
  margin-top: 0.5rem;
}

.dark-slab {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.dark-slab .section-tag,
.dark-slab .text-link {
  color: var(--sand);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--copper);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.story-panel,
.reason-tile,
.proof-sidebar,
.quote-card,
.visit-info,
.map-shell {
  border-radius: var(--radius-xl);
}

.story-panel {
  padding: 1.5rem;
}

.story-panel.solid {
  background: var(--ink);
  color: var(--white);
}

.story-panel.outline {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: 1rem;
  align-items: end;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}

.reason-tile {
  min-height: 220px;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.reason-tile.tall {
  grid-row: span 2;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(94, 107, 82, 0.08), rgba(184, 107, 58, 0.12)),
    var(--paper);
}

.reason-tile.wide {
  grid-column: span 2;
}

.accent-tile {
  background: linear-gradient(135deg, #b86b3a, #d3905d);
  color: var(--white);
  border-color: transparent;
}

.reason-index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--copper);
}

.accent-tile .reason-index {
  color: rgba(255, 255, 255, 0.8);
}

.proof-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.proof-sidebar {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.08);
  position: sticky;
  top: 92px;
}

.proof-sidebar h2 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 0.98;
  max-width: 10ch;
}

.score-chip {
  display: inline-flex;
  margin: 1rem 0 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.quote-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--slate);
}

.highlight-quote {
  background: #e6d7c1;
}

.social-layout {
  display: grid;
  gap: 1.5rem;
}


.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  min-height: 250px;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
}

.social-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.social-card p {
  margin: 0.8rem 0 0;
  color: var(--slate);
}

.social-name {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card.nextdoor {
  background: linear-gradient(180deg, rgba(94, 107, 82, 0.12), rgba(255, 255, 255, 0.78));
}

.social-card.instagram {
  background: linear-gradient(135deg, rgba(184, 107, 58, 0.18), rgba(255, 255, 255, 0.85) 40%, rgba(211, 144, 93, 0.22));
}

.social-card.facebook {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(255, 255, 255, 0.82));
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.page-hero {
  padding: 2.2rem 0 1.2rem;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 1rem;
  align-items: end;
}

.page-intro {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
}

.visit-hero .page-hero-layout {
  grid-template-columns: 1fr;
}

.visit-hero h1 {
  max-width: 16ch;
}

.reviews-hero {
  padding-bottom: 0.75rem;
}

.reviews-hero .page-hero-layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.reviews-hero h1 {
  max-width: 15ch;
}

.reviews-proof {
  padding-top: 0;
}

.prose-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}

.visit-info {
  padding: 1.6rem;
  background: #1f241d;
  color: var(--white);
}

.visit-info .section-tag,
.visit-info .info-label {
  color: var(--sand);
}

.info-lines {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.info-label {
  margin-bottom: 0.2rem;
}

.info-lines p {
  margin: 0;
}

.map-shell {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow);
}

.map-shell iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

body.inner-page .site-footer {
  padding: 0 0 0.95rem;
  border-top: 0;
  margin-top: 0;
}

body.inner-page main > section:last-of-type {
  padding-bottom: 0.75rem;
}

.mobile-inquiry-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-inquiry-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  font-weight: 700;
}

.footer-layout {
  justify-content: space-between;
}

body.inner-page .footer-layout {
  width: min(100%, 760px);
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-layout strong,
.footer-layout span,
.footer-layout a {
  display: block;
}

body.inner-page .footer-layout strong,
body.inner-page .footer-layout span,
body.inner-page .footer-layout a {
  font-size: 0.92rem;
  line-height: 1.3;
}

body.inner-page .footer-layout strong {
  font-size: 0.98rem;
}

.footer-layout span,
.footer-layout a {
  color: var(--slate);
}

@media (max-width: 1100px) {
  .header-row,
  .hero-layout,
  .story-layout,
  .split-heading,
  .proof-layout,
  .page-hero-layout,
  .prose-grid,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .footer-layout {
    justify-content: center;
  }

  body.inner-page .footer-layout {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .header-row {
    text-align: center;
  }

  .header-call,
  .wordmark {
    justify-self: center;
  }

  .proof-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .reason-grid,
  .quote-stack,
  .social-grid,
  .cards-3,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .reason-tile.tall,
  .reason-tile.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 220px;
  }

  .hero-right {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .spotlight-card,
  .angle-one,
  .angle-two {
    position: static;
    transform: none;
    width: 100%;
  }

  .hero-marquee {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .main-nav a,
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .social-inline {
    justify-content: stretch;
  }

  .social-inline a {
    width: 100%;
    text-align: center;
  }

  .hero-marquee {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  body {
    padding-bottom: 56px;
  }

  .mobile-inquiry-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .main-nav {
    grid-template-columns: 1fr;
  }
}
