:root {
  --ink: #17201e;
  --green: #1d3d37;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --lime: #d9ed79;
  --line: rgba(23,32,30,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
img { width: 100%; display: block; }
.site-header {
  height: 84px;
  max-width: 1440px;
  margin: auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: Manrope, sans-serif; font-weight: 700; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: var(--cream); font-size: .72rem; letter-spacing: .06em;
}
nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
nav a { text-decoration: none; font-weight: 500; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 18px; }
.hero {
  max-width: 1440px;
  min-height: 720px;
  margin: auto;
  padding: 36px clamp(24px, 5vw, 72px) 72px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.eyebrow { margin: 0 0 22px; text-transform: uppercase; font-size: .76rem; letter-spacing: .17em; font-weight: 600; }
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(3.4rem, 6.4vw, 6.7rem); letter-spacing: -.065em; margin-bottom: 30px; }
h2 { font-size: clamp(2.6rem, 4.4vw, 4.8rem); letter-spacing: -.055em; margin-bottom: 28px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
.intro { max-width: 620px; font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 42px; }
.button { min-height: 52px; padding: 13px 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 600; }
.button-primary { background: var(--green); color: white; }
.button-secondary { border: 1px solid var(--line); }
.price { padding-top: 24px; border-top: 1px solid var(--line); }
.price strong { font-family: Manrope, sans-serif; font-size: 1.65rem; margin-right: 6px; }
.hero-image { position: relative; height: min(72vh, 720px); min-height: 560px; overflow: hidden; border-radius: 4px 120px 4px 4px; }
.hero-image img { height: 100%; object-fit: cover; }
.image-note { position: absolute; left: 18px; bottom: 18px; background: var(--lime); padding: 10px 15px; border-radius: 999px; font-weight: 600; font-size: .85rem; }
.ticker { background: var(--green); color: white; padding: 20px 4vw; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px 32px; }
.ticker span::before { content: "✦"; color: var(--lime); margin-right: 18px; }
.section { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.section-heading { max-width: 920px; margin-bottom: 64px; }
.space { background: var(--cream); }
.space-grid { display: grid; grid-template-columns: 1fr .88fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.feature-list article { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.feature-list article > span { color: var(--green); font-weight: 600; }
.feature-list p { margin: 0; max-width: 580px; }
figure { margin: 0; }
figure img { max-height: 760px; object-fit: cover; border-radius: 80px 4px 4px; }
.find { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.map-wrap { height: 560px; background: var(--cream); overflow: hidden; border-radius: 4px 80px 4px 4px; }
.map-wrap iframe { border: 0; width: 100%; height: 100%; filter: saturate(.7) contrast(.95); }
.find-copy address { font-style: normal; font-size: 1.22rem; margin-bottom: 24px; }
.find-copy > p:not(.eyebrow) { max-width: 440px; }
.text-link { display: inline-block; margin-top: 14px; text-underline-offset: 6px; font-weight: 600; }
.contact { margin: 0 clamp(16px, 3vw, 42px) 42px; padding-inline: clamp(24px, 5vw, 80px); background: var(--green); color: white; border-radius: 60px 4px 60px 4px; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: end; }
.contact > div > p:not(.eyebrow) { max-width: 560px; font-size: 1.15rem; color: rgba(255,255,255,.78); }
.contact-card { display: grid; gap: 12px; }
.contact-card > a:not(.button) { display: flex; justify-content: space-between; gap: 20px; text-decoration: none; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-card span { color: rgba(255,255,255,.64); }
.button-light { margin-top: 18px; background: var(--lime); color: var(--ink); }
footer { padding: 30px clamp(24px, 5vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
footer p { font-size: .9rem; color: #5b625f; }
@media (max-width: 840px) {
  .site-header { height: 72px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 44px; }
  h1 { font-size: clamp(3.25rem, 15vw, 5.6rem); }
  .hero-image { height: 75vh; min-height: 480px; border-radius: 4px 72px 4px 4px; }
  .space-grid, .find, .contact { grid-template-columns: 1fr; }
  .space-grid figure { order: -1; }
  figure img { max-height: 600px; border-radius: 55px 4px 4px; }
  .map-wrap { height: 440px; border-radius: 4px 55px 4px 4px; }
  .contact { gap: 34px; border-radius: 40px 4px 40px 4px; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .section { padding-top: 76px; padding-bottom: 76px; }
  .hero-actions .button { width: 100%; }
  .contact-card > a:not(.button) { flex-direction: column; gap: 0; overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
