:root {
  --bg: #f7f1e5;
  --bg-soft: #fbf7ef;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf9;
  --surface-deep: #f1e4cc;
  --text: #1c2b26;
  --muted: #617068;
  --line: rgba(28, 43, 38, 0.11);
  --brand: #1f5b48;
  --brand-strong: #144132;
  --olive: #738b46;
  --accent: #c8892e;
  --terracotta: #bc6442;
  --cream: #f4e6c8;
  --shadow: 0 24px 70px rgba(35, 40, 25, 0.14);
  --shadow-soft: 0 16px 38px rgba(35, 40, 25, 0.1);
  --radius: 30px;
  --radius-sm: 20px;
  --max-width: 1200px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(200, 137, 46, 0.16), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(31, 91, 72, 0.11), transparent 26%),
    linear-gradient(180deg, #fcf8f0 0%, #f7f1e5 48%, #f4ebda 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  opacity: 0.18;
}

body::after {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.45), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.32), transparent 24%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(251, 247, 239, 0.82);
  border-bottom: 1px solid rgba(28, 43, 38, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(200, 137, 46, 0.98), rgba(188, 100, 66, 0.98));
  color: #fff;
  font-family: "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 34px rgba(188, 100, 66, 0.25);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.brand-copy small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a[aria-current="page"] {
  color: var(--brand-strong);
  background: rgba(31, 91, 72, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 18px;
  background: rgba(28, 43, 38, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(31, 91, 72, 0.24);
}

.button--secondary {
  color: var(--text);
  background: rgba(28, 43, 38, 0.06);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(28, 43, 38, 0.12);
}

.button--light {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.94);
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
}

main {
  overflow-x: clip;
}

.page-hero {
  position: relative;
  padding: 42px 0 26px;
}

.page-section {
  position: relative;
  padding: 40px 0;
}

.page-hero + .page-section {
  padding-top: 18px;
}

.hero-grid,
.section-grid,
.contact-layout,
.story-layout,
.cta-band__inner {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
}

.section-grid--2,
.contact-layout,
.story-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.section-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.12rem;
  max-width: 64ch;
}

.hero-copy > * + *,
.stack > * + * {
  margin-top: 16px;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.metric-card,
.lift-card,
.panel,
.photo-frame,
.accent-card,
.legal-card,
.notice,
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 43, 38, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.metric-card,
.lift-card,
.panel,
.accent-card,
.legal-card,
.notice,
.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.metric-card,
.lift-card,
.panel,
.accent-card,
.legal-card,
.notice {
  padding: 24px;
}

.metric-card strong,
.detail-list strong,
.accent-card strong,
.review-meta strong {
  color: var(--text);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.lift-card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lift-card::after,
.photo-frame::after,
.accent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.tilt-card {
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .lift-card:hover,
  .lift-card:focus-within {
    transform:
      perspective(1200px)
      translateY(-8px)
      rotateX(var(--tilt-rotate-x, 0deg))
      rotateY(var(--tilt-rotate-y, 0deg));
    box-shadow: var(--shadow);
    border-color: rgba(31, 91, 72, 0.16);
  }

  .button--primary:hover {
    box-shadow: 0 18px 32px rgba(31, 91, 72, 0.28);
  }
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.photo-frame {
  padding: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(244, 230, 200, 0.92)),
    radial-gradient(circle at top right, rgba(200, 137, 46, 0.16), transparent 34%);
  box-shadow: var(--shadow);
}

.photo-frame img,
.gallery-card img,
.media-card img,
.wide-photo img {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
}

.photo-frame--hero {
  width: min(100%, 520px);
  margin-left: auto;
}

.photo-frame--hero img {
  aspect-ratio: 4 / 5;
}

.photo-frame--float {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(48%, 280px);
}

.photo-frame--float img {
  aspect-ratio: 1 / 1;
}

.hero-note,
.spotlight-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-note {
  position: absolute;
  top: 24px;
  left: 18px;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.spotlight-pill {
  background: rgba(31, 91, 72, 0.09);
  color: var(--brand-strong);
}

.status-badge {
  background: rgba(188, 100, 66, 0.12);
  color: var(--terracotta);
}

.status-badge[data-state="open"] {
  background: rgba(31, 91, 72, 0.1);
  color: var(--brand-strong);
}

.hero-orbit {
  position: absolute;
  right: -30px;
  bottom: 32px;
  width: 152px;
  height: 152px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(145deg, rgba(200, 137, 46, 0.24), rgba(31, 91, 72, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.data-orbit-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.card-kicker,
.micro-label {
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-copy {
  display: grid;
  gap: 12px;
}

.card-copy p,
.accent-card p,
.legal-card p {
  color: var(--muted);
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-card img {
  aspect-ratio: 4 / 3;
}

.media-card__body {
  display: grid;
  gap: 12px;
  padding: 20px 22px 24px;
}

.media-card__body ul,
.detail-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list,
.bullet-list {
  display: grid;
  gap: 10px;
}

.detail-list li,
.bullet-list li,
.review-facts li {
  padding: 12px 14px;
  border: 1px solid rgba(28, 43, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.review-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.surface-dark {
  background:
    linear-gradient(145deg, rgba(20, 65, 50, 0.98), rgba(31, 91, 72, 0.96));
  color: #fff;
  box-shadow: 0 24px 54px rgba(20, 65, 50, 0.24);
}

.surface-dark p,
.surface-dark li,
.surface-dark .microcopy {
  color: rgba(255, 255, 255, 0.82);
}

.surface-dark .button--secondary,
.surface-dark .button--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.surface-dark .button--light {
  color: var(--brand-strong);
}

.quote-grid,
.review-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.quote-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.98rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(31, 91, 72, 0.09);
  color: var(--brand-strong);
  font-weight: 700;
}

.review-card details {
  margin-top: 14px;
}

.review-card summary {
  cursor: pointer;
  color: var(--brand-strong);
  font-weight: 700;
}

.review-card summary::-webkit-details-marker {
  display: none;
}

.review-card summary::after {
  content: " +";
}

.review-card details[open] summary::after {
  content: " -";
}

.review-google {
  display: grid;
  gap: 18px;
}

.review-google__score {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}

.review-google__score strong {
  font-size: clamp(2.9rem, 5vw, 4rem);
  line-height: 1;
}

.review-google__score span {
  font-size: 1rem;
}

.notice {
  padding: 18px 20px;
  color: #72412f;
  background: rgba(188, 100, 66, 0.08);
  border-color: rgba(188, 100, 66, 0.18);
}

.notice--soft {
  color: var(--brand-strong);
  background: rgba(31, 91, 72, 0.08);
  border-color: rgba(31, 91, 72, 0.14);
}

.wide-photo img {
  aspect-ratio: 16 / 9;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  padding: 12px;
  background: rgba(255, 253, 249, 0.84);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  padding: 14px 10px 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-card__value {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
}

.hours-grid {
  display: grid;
  gap: 12px;
}

.hours-grid dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
}

.hours-grid dt {
  color: var(--text);
  font-weight: 700;
}

.hours-grid dd {
  margin: 0;
  color: var(--muted);
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 10px;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta-band {
  padding: 6px 0 24px;
}

.cta-band__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 65, 50, 0.98), rgba(31, 91, 72, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band__inner p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 28px 0 28px;
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(28, 43, 38, 0.1);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.site-footer__links,
.site-footer__legal,
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__links a,
.site-footer__legal a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  background: rgba(28, 43, 38, 0.06);
  color: var(--text);
}

.site-footer__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-dock {
  display: none;
}

.microcopy {
  color: var(--muted);
  font-size: 0.94rem;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

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

[data-parallax] {
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

:focus-visible {
  outline: 3px solid rgba(200, 137, 46, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid--2,
  .contact-layout,
  .story-layout,
  .cta-band__inner,
  .site-footer__top,
  .quote-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section-grid--4,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 0;
  }

  .photo-frame--hero {
    margin: 0;
  }
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(16, 22, 20, 0.24);
    z-index: 24;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 31;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    z-index: 30;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(28, 43, 38, 0.08);
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links,
  .site-nav__actions {
    display: grid;
    gap: 8px;
  }

  .site-nav__links a,
  .site-nav__actions .button {
    width: 100%;
    justify-content: center;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 780px) {
  .page-hero,
  .page-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.75rem);
  }

  .shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-metrics,
  .section-grid--3,
  .section-grid--4,
  .contact-cards,
  .gallery-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame--float,
  .hero-note,
  .hero-orbit {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .hero-media {
    display: grid;
    gap: 16px;
  }

  .photo-frame--hero img,
  .photo-frame--float img {
    aspect-ratio: 4 / 3;
  }

  .metric-card,
  .lift-card,
  .panel,
  .accent-card,
  .legal-card,
  .notice {
    padding: 20px;
  }

  .media-card__body {
    padding: 18px 18px 20px;
  }

  .site-footer {
    padding-bottom: 98px;
  }

  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(28, 43, 38, 0.08);
    backdrop-filter: blur(14px);
    background: rgba(251, 247, 239, 0.94);
  }

  .mobile-dock__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-dock .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax] {
    transform: none !important;
  }
}
