*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #e8dfd0;
  --bg-warm: #efe7da;
  --panel: rgba(252, 248, 240, 0.88);
  --panel-strong: #f7f0e4;
  --ink: #1f2219;
  --muted: rgba(31, 34, 25, 0.68);
  --line: rgba(56, 50, 37, 0.12);
  --olive: #2d3526;
  --olive-soft: #4f5d44;
  --sand: #d8c6a8;
  --pin: #b28f52;
  --shadow: 0 24px 60px rgba(36, 30, 18, 0.11);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: min(1320px, calc(100vw - 48px));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 32%),
    radial-gradient(circle at bottom right, rgba(102, 120, 88, 0.09), transparent 30%),
    linear-gradient(180deg, #e9e0d3 0%, #e3d8ca 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(39, 34, 24, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(39, 34, 24, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.35;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-shell {
  position: relative;
  padding: 24px 0 60px;
}

.site-header,
.section-frame {
  width: var(--content-width);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 0 12px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.header-note,
.section-kicker,
.eyebrow,
.card-label,
.footer-credit {
  color: var(--muted);
}

.header-note {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 18px 0;
}

.section-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.42), rgba(255, 247, 237, 0.24));
  border: 1px solid rgba(72, 58, 36, 0.1);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.section-kicker,
.eyebrow,
.card-label {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
.cta-message {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.2rem);
  max-width: 7ch;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  max-width: 10ch;
}

.lede,
.section-copy p,
.quote-meta,
.micro-copy,
.detail-card,
.cta-preface p,
.site-footer {
  font-size: 1rem;
  line-height: 1.72;
}

.lede,
.section-copy p {
  color: rgba(31, 34, 25, 0.8);
  max-width: 36rem;
}

.hero-layout,
.offerings-layout,
.location-layout,
.reviews-layout,
.visit-layout {
  position: relative;
  display: grid;
  gap: 22px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 840px;
  padding: 34px 12px 8px;
}

.hero-copy {
  align-self: start;
  padding: 50px 0 0 18px;
  max-width: 48rem;
}

.hero-strip,
.rating-bar,
.horizontal-note,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-strip {
  margin-top: 34px;
  gap: 0;
  width: fit-content;
  border: 1px solid rgba(46, 53, 38, 0.3);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 26px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--olive);
  color: #f7f2e9;
}

.button-secondary {
  background: rgba(248, 241, 231, 0.96);
}

.pinned-card,
.info-rail,
.detail-card,
.quote-block {
  background: linear-gradient(180deg, rgba(253, 249, 242, 0.97), rgba(244, 235, 222, 0.94));
  border: 1px solid rgba(58, 46, 29, 0.12);
  box-shadow: var(--shadow);
}

.pinned-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #dbc487, #8a6d3a 72%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.proof-card {
  position: absolute;
  top: 88px;
  left: 41%;
  width: 270px;
  padding: 26px;
  border-radius: 20px;
  transform: rotate(-5deg);
  z-index: 2;
}

.card-address {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-stats strong,
.proof-tally strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  line-height: 0.9;
}

.proof-stats span,
.proof-tally span {
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visuals {
  position: relative;
  min-height: 740px;
  padding-right: 18px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: #e3d7c5;
  border-radius: 30px;
  border: 1px solid rgba(56, 50, 37, 0.14);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.hero-main-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 560px);
  height: 620px;
}

.hero-support-photo {
  position: absolute;
  left: 54px;
  bottom: 42px;
  width: 240px;
  height: 290px;
}

.visual-rail {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(248, 241, 231, 0.92);
  border: 1px solid rgba(56, 50, 37, 0.14);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.offerings-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.66fr) minmax(200px, 0.42fr);
  grid-template-areas:
    "copy portrait rail"
    "note portrait rail"
    "wide detail rail"
    "band band band";
  align-items: start;
  padding: 22px 12px 4px;
}

.section-copy {
  grid-area: copy;
  padding: 18px 12px 0 10px;
}

.offerings-portrait {
  grid-area: portrait;
  height: 620px;
}

.offerings-wide {
  grid-area: wide;
  height: 340px;
}

.offerings-detail {
  grid-area: detail;
  height: 340px;
}

.offerings-rail {
  grid-area: rail;
  padding: 24px;
  border-radius: 28px;
  position: sticky;
  top: 28px;
}

.offerings-rail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.offerings-rail li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.offerings-note {
  grid-area: note;
  position: relative;
  padding: 28px;
  border-radius: 22px;
  transform: rotate(-2deg);
  max-width: 470px;
  margin: 20px 0 10px 38px;
}

.horizontal-note {
  grid-area: band;
  justify-content: space-between;
  padding: 16px 4px 6px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-layout {
  grid-template-columns: minmax(240px, 0.58fr) minmax(300px, 0.82fr) minmax(220px, 0.5fr);
  grid-template-areas: "copy map photos";
  align-items: start;
  min-height: 760px;
  padding: 24px 10px 20px;
}

.location-copy {
  grid-area: copy;
  max-width: 320px;
  padding: 54px 20px 0 12px;
}

.map-panel {
  grid-area: map;
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(102, 120, 88, 0.18), transparent 32%),
    linear-gradient(180deg, #e9decd, #dccdb8);
  border: 1px solid rgba(56, 50, 37, 0.14);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(79, 93, 68, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 93, 68, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.56), transparent 18%);
  background-size: 92px 92px, 92px 92px, auto;
}

.map-marker {
  position: absolute;
  top: 46%;
  left: 52%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  padding: 14px 18px;
  background: rgba(252, 247, 238, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(56, 50, 37, 0.16);
}

.marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 0 6px rgba(45, 53, 38, 0.12);
}

.marker-text {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(252, 247, 238, 0.9);
  border: 1px solid rgba(56, 50, 37, 0.12);
}

.map-caption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.location-photos {
  grid-area: photos;
  display: grid;
  gap: 18px;
  align-self: start;
  width: min(100%, 230px);
  justify-self: end;
  margin-top: 52px;
}

.location-front {
  height: 360px;
}

.location-street {
  height: 240px;
}

.hours-card {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 265px;
  padding: 26px;
  border-radius: 20px;
  transform: rotate(3deg);
}

.hours-card dl,
.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dl {
  display: grid;
  gap: 14px;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hours-card dd {
  font-size: 0.95rem;
}

.reviews-layout {
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  grid-template-areas:
    "proof main side"
    "proof strip side"
    "bar bar bar";
  gap: 20px;
  padding: 24px 8px 12px;
}

.proof-column {
  grid-area: proof;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 10px 12px;
}

.proof-tally {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-block {
  padding: 28px;
  border-radius: 26px;
}

.quote-main {
  grid-area: main;
  min-height: 320px;
  display: grid;
  align-content: center;
}

.quote-secondary {
  min-height: 150px;
  align-content: end;
}

.quote-left {
  grid-area: side;
  transform: rotate(-2deg);
}

.quote-right {
  grid-area: side;
  align-self: end;
  transform: rotate(2.8deg) translateY(172px);
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.quote-secondary blockquote {
  font-size: 2rem;
}

.quote-meta {
  margin: 14px 0 0;
  color: var(--muted);
}

.photo-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strip-photo {
  height: 220px;
}

.rating-bar {
  grid-area: bar;
  justify-content: space-between;
  padding: 18px 12px 4px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 26px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a4530, #252f1f);
  color: #f4ecdf;
  box-shadow: var(--shadow);
}

.cta-preface p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(244, 236, 223, 0.8);
}

.cta-preface .card-label {
  color: rgba(244, 236, 223, 0.55);
  margin-bottom: 8px;
}

.cta-message {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  text-align: center;
}

.cta-link {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(248, 241, 231, 0.94);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.9fr) minmax(0, 0.74fr);
  align-items: start;
  padding: 8px 10px 6px;
}

.visit-copy {
  padding: 10px 20px 0 12px;
}

.details-cluster {
  display: grid;
  gap: 16px;
}

.detail-card {
  padding: 24px;
  border-radius: 22px;
}

.detail-card p,
.detail-card a {
  margin: 0;
  display: block;
}

.visit-side {
  display: grid;
  gap: 18px;
}

.mini-map-card {
  position: relative;
  min-height: 180px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(102, 120, 88, 0.18), transparent 30%),
    linear-gradient(180deg, #e9decd, #dcccbb);
  border: 1px solid rgba(56, 50, 37, 0.14);
  box-shadow: var(--shadow);
}

.mini-map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(79, 93, 68, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 93, 68, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
}

.mini-map-marker {
  position: absolute;
  top: 42%;
  left: 58%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 0 8px rgba(45, 53, 38, 0.12);
}

.mini-map-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(252, 247, 238, 0.9);
  border: 1px solid rgba(56, 50, 37, 0.12);
}

.mini-map-caption p,
.mini-map-caption span {
  margin: 0;
}

.mini-map-caption p:last-of-type {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  margin-bottom: 6px;
}

.mini-map-caption span {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stacked-cards {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
}

.mini-card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  width: 170px;
  transform: rotate(-3deg);
}

.mini-card-accent {
  transform: rotate(4deg);
}

.footer-photo {
  height: 300px;
}

.site-footer {
  justify-content: space-between;
  align-items: center;
  padding: 22px 6px 4px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-credit {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --content-width: min(100vw - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-layout,
  .offerings-layout,
  .location-layout,
  .reviews-layout,
  .visit-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    padding-inline: 0;
  }

  .proof-card,
  .hours-card {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    transform: rotate(-2deg);
    margin: 0 0 18px auto;
  }

  .hero-visuals {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding-right: 0;
  }

  .hero-main-photo,
  .hero-support-photo,
  .visual-rail {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-main-photo,
  .offerings-portrait,
  .location-front,
  .footer-photo {
    aspect-ratio: 1 / 1.1;
  }

  .hero-support-photo,
  .offerings-wide,
  .offerings-detail,
  .location-street,
  .strip-photo {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .offerings-layout {
    grid-template-areas:
      "copy"
      "rail"
      "portrait"
      "note"
      "wide"
      "detail"
      "band";
  }

  .offerings-rail {
    position: relative;
    top: auto;
  }

  .offerings-note {
    margin: 0;
  }

  .reviews-layout {
    grid-template-areas:
      "proof"
      "main"
      "side"
      "strip"
      "bar";
  }

  .quote-left,
  .quote-right {
    grid-area: auto;
    transform: none;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    border-radius: 36px;
    text-align: left;
  }

  .cta-message {
    text-align: left;
  }

  .stacked-cards {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer {
    gap: 14px;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 14px;
  }

  .section-frame {
    padding: 22px;
    border-radius: 28px;
  }

  .section-frame::before {
    inset: 12px;
    border-radius: 20px;
  }

  .hero-copy,
  .section-copy,
  .visit-copy,
  .location-copy {
    padding: 4px 0 0;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.9rem);
  }

  h2,
  blockquote,
  .cta-message {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .hero-strip {
    width: 100%;
    flex-direction: column;
    border-radius: 22px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .map-panel {
    min-height: 420px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .rating-bar,
  .horizontal-note {
    gap: 10px 18px;
  }
}
