:root {
  --forest: #1d281d;
  --forest-soft: #2a3828;
  --forest-deep: #141b14;
  --cream: #f7f2e8;
  --cream-soft: #efe7d9;
  --sand: #d7c8b1;
  --wheat: #d4a458;
  --wheat-deep: #b98637;
  --ink: #1e241e;
  --ink-soft: #5e665f;
  --line: rgba(30, 36, 30, 0.12);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(20, 27, 20, 0.14);
  --radius: 1.25rem;
  --site-max: 1220px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 164, 88, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(252, 249, 244, 0.98), rgba(247, 242, 232, 1));
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wheat);
}

.eyebrow-soft {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7b766d;
}

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-solid {
  background: rgba(247, 242, 232, 0.92);
  border-bottom-color: rgba(30, 36, 30, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #fff;
}

.site-header.is-solid .brand {
  color: var(--forest);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.85rem 0.2rem 0.85rem 0.2rem;
  background: currentColor;
  transform: rotate(-35deg);
}

.site-header.is-solid .brand-mark {
  background: rgba(29, 40, 29, 0.08);
  border-color: rgba(29, 40, 29, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 0.28rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-solid .brand-subtitle {
  color: rgba(29, 40, 29, 0.62);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-header.is-solid .main-nav a {
  color: var(--ink-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--wheat);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  position: relative;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  position: absolute;
  top: -0.35rem;
}

.menu-toggle span::after {
  position: absolute;
  top: 0.35rem;
}

.site-header.is-solid .menu-toggle {
  color: var(--forest);
  border-color: rgba(29, 40, 29, 0.12);
  background: rgba(29, 40, 29, 0.04);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background:
    radial-gradient(circle at 82% 10%, rgba(212, 164, 88, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(23, 31, 23, 0.98), rgba(29, 40, 29, 1));
  transform: translateY(-100%);
  transition: transform 0.34s cubic-bezier(0.7, 0, 0.25, 1);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__inner {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  padding: 7rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__inner a {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.65rem, 7vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.92rem 1.45rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button {
  background: var(--wheat);
  border: 1px solid var(--wheat);
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
}

.button:hover {
  background: var(--wheat-deep);
  border-color: var(--wheat-deep);
  color: #fff;
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.button-outline.dark {
  border-color: rgba(29, 40, 29, 0.14);
  background: transparent;
  color: var(--forest);
}

.button-outline.dark:hover {
  border-color: rgba(29, 40, 29, 0.26);
  background: rgba(29, 40, 29, 0.04);
}

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--forest);
  isolation: isolate;
  display: flex;
  align-items: stretch;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -3;
}

.hero-slide,
.page-hero-image {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.05) brightness(0.88);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(to right, rgba(20, 25, 19, 0.97) 0%, rgba(20, 25, 19, 0.88) 25%, rgba(20, 25, 19, 0.58) 55%, rgba(20, 25, 19, 0.18) 100%),
    linear-gradient(to bottom, rgba(11, 14, 10, 0.48) 0%, transparent 30%, transparent 70%, rgba(11, 14, 10, 0.82) 100%);
}

.page-hero {
  position: relative;
  min-height: 34rem;
  padding-top: 8rem;
  background: var(--forest);
  isolation: isolate;
  display: flex;
  align-items: end;
}

.page-hero-image {
  filter: saturate(1.04) contrast(1.05) brightness(0.82);
}

.page-hero-overlay {
  background:
    linear-gradient(to right, rgba(20, 25, 19, 0.92) 0%, rgba(20, 25, 19, 0.72) 52%, rgba(20, 25, 19, 0.36) 100%),
    linear-gradient(to bottom, rgba(20, 25, 19, 0.3) 0%, rgba(20, 25, 19, 0.76) 100%);
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 3rem;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.page-hero-grid {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  padding: 0 0 4rem;
}

.hero-copy,
.page-hero-copy {
  max-width: 45rem;
  padding-top: clamp(0.25rem, 1.2vh, 0.85rem);
}

.hero-copy .display,
.page-hero-copy .display {
  margin: 0.8rem 0 0;
  color: #fff;
}

.hero-copy .display {
  font-size: clamp(3.2rem, 9vw, 8rem);
}

.page-hero-copy .display {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero-sub,
.page-intro,
.body-copy p,
.lead-copy p {
  line-height: 1.8;
  font-size: 1rem;
}

.hero-sub {
  margin-top: 1.7rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.page-intro {
  margin-top: 1.4rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-side {
  align-self: end;
}

.fact-list,
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-list {
  margin-left: auto;
  max-width: 24rem;
  border-top: 1px solid var(--white-line);
}

.fact-list li {
  display: grid;
  grid-template-columns: 6.15rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.fact-list strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip {
  border-top: 1px solid rgba(30, 36, 30, 0.08);
  border-bottom: 1px solid rgba(30, 36, 30, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.proof-grid,
.stat-grid {
  display: grid;
  gap: 1.5rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.6rem 0;
}

.proof-grid strong,
.stat-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.proof-grid span,
.stat-grid span {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.94rem;
}

.section {
  padding: 6.85rem 0;
  scroll-margin-top: 6.75rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(239, 231, 217, 0.58));
}

.split,
.visit-grid,
.two-column,
.image-rail {
  display: grid;
  gap: 3rem;
}

.split,
.visit-grid,
.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

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

.body-copy p,
.lead-copy p {
  margin: 1.15rem 0 0;
  max-width: 42rem;
}

.frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.frame img {
  height: 100%;
  object-fit: cover;
}

.frame-caption {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  padding: 0.68rem 0.9rem;
  background: rgba(20, 25, 19, 0.78);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-list {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
}

.line-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.line-row span {
  font-family: var(--display);
  font-size: 1.38rem;
  color: var(--wheat-deep);
}

.line-row h3,
.feature-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.line-row p,
.feature-row p,
.detail-copy p {
  margin: 0;
  line-height: 1.72;
}

.feature-strip {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  margin-top: 2.9rem;
}

.gallery-stack {
  display: grid;
  gap: 1.2rem;
}

.gallery-panel {
  position: relative;
  overflow: hidden;
  min-height: 21rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-panel.tall {
  min-height: 38rem;
}

.gallery-panel.short {
  min-height: 18rem;
}

.gallery-panel img {
  height: 100%;
  object-fit: cover;
}

.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 25, 19, 0.74), rgba(20, 25, 19, 0.08) 55%, rgba(20, 25, 19, 0));
}

.panel-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.panel-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.panel-copy span {
  display: block;
  margin-top: 0.5rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
  align-items: start;
}

.reviews-embed {
  overflow: hidden;
  min-height: 40rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.reviews-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40rem;
  border: 0;
}

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

.review-card {
  padding: 1.35rem 1.25rem 1.15rem;
  border: 1px solid rgba(30, 36, 30, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(20, 27, 20, 0.08);
}

.review-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b766d;
}

.review-card p {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.review-foot {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.review-foot strong {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--forest);
}

.review-foot span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b766d;
}

.contact-list,
.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.9rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-row strong {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b766d;
}

.contact-row span,
.contact-row a {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.72;
}

.note-block {
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  line-height: 1.75;
}

.cta-band {
  background: linear-gradient(180deg, rgba(29, 40, 29, 0.98), rgba(20, 27, 20, 1));
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: end;
}

.cta-grid p {
  margin: 1.2rem 0 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.footer {
  padding: 2rem 0;
  background: #161d16;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-title {
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}

.footer-nav a {
  text-decoration: none;
}

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

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

@media (max-width: 980px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: inline-flex;
  }

  .hero-grid,
  .hero-grid--single,
  .split,
  .visit-grid,
  .two-column,
  .cta-grid,
  .gallery-mosaic,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: clamp(5.5rem, 10vh, 7rem);
    padding-bottom: 4.25rem;
  }

  .fact-list {
    margin-left: 0;
    max-width: 100%;
  }

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

  .image-rail {
    grid-template-columns: 1fr;
  }

  .gallery-panel.tall {
    min-height: 28rem;
  }

  .reviews-layout,
  .reviews-stack {
    grid-template-columns: 1fr;
  }

  .reviews-embed,
  .reviews-embed iframe {
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 5.75rem;
  }

  .nav-row {
    min-height: 4.6rem;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.64rem;
  }

  .section {
    padding: 5.4rem 0;
    scroll-margin-top: 5.75rem;
  }

  .hero-copy .display,
  .page-hero-copy .display {
    font-size: clamp(2.75rem, 14vw, 4.8rem);
  }

  .proof-grid,
  .line-row,
  .feature-row,
  .fact-list li,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .gallery-panel.tall,
  .gallery-panel.short,
  .gallery-panel {
    min-height: 18rem;
  }

  .reviews-embed,
  .reviews-embed iframe {
    min-height: 20rem;
  }

  .footer-grid {
    flex-direction: column;
  }
}
