:root {
  --ink: #18201d;
  --muted: #5d6862;
  --paper: #fffaf1;
  --surface: #f4f7f1;
  --line: rgba(24, 32, 29, 0.14);
  --green: #173e35;
  --moss: #69824d;
  --coral: #dd603c;
  --gold: #d69c35;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 32, 29, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--green);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
  font-family: Georgia, serif;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle,
.icon-button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
}

.icon-button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: min(820px, 100svh);
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 7rem clamp(1rem, 5vw, 5rem) 4rem;
  overflow: hidden;
}

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

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 28, 24, 0.82), rgba(14, 28, 24, 0.52) 42%, rgba(14, 28, 24, 0.04) 78%),
    linear-gradient(0deg, rgba(14, 28, 24, 0.42), rgba(14, 28, 24, 0.04) 45%);
}

.hero-content {
  width: min(780px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-ctas,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--coral);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  width: min(820px, 100%);
}

.quick-facts div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.quick-facts dt,
.quick-facts dd {
  margin: 0;
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.quick-facts dd {
  margin-top: 0.35rem;
  font-weight: 800;
}

.notice-band {
  padding: 0.9rem clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: var(--green);
}

.notice-band p {
  width: min(1040px, 100%);
  margin: 0 auto;
  font-size: 0.95rem;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.8rem, 8vw, 6rem) 0;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.offer-list {
  display: grid;
  gap: 0.85rem;
}

.offer-list article,
.proof-grid article,
.hours-panel,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 26px rgba(24, 32, 29, 0.06);
}

.offer-list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.1rem;
}

.offer-list span {
  grid-row: span 2;
  color: var(--coral);
  font-weight: 900;
}

.offer-list h3 {
  margin: 0;
  font-size: 1.15rem;
}

.offer-list p {
  margin: 0.3rem 0 0;
}

.split {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1120px) / 2));
  background: var(--surface);
}

.feature-panel,
.hours-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--moss);
}

.info-row,
.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.info-row span,
.hours-table span {
  color: var(--muted);
}

.source-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.proof-grid article {
  padding: 1.1rem;
}

.proof-grid strong {
  display: block;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.proof-grid p {
  margin: 0.45rem 0 0;
  font-size: 0.94rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #285b45);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.final-cta .section-kicker {
  color: #ffd889;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.4rem clamp(1rem, 5vw, 5rem) 5.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.mobile-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 32, 29, 0.22);
}

.mobile-bar a {
  display: grid;
  min-height: 3rem;
  place-items: center;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.mobile-bar a + a {
  border-left: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 6rem 1rem 2rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 28, 24, 0.4), rgba(14, 28, 24, 0.9)),
      linear-gradient(90deg, rgba(14, 28, 24, 0.72), rgba(14, 28, 24, 0.2));
  }

  .quick-facts,
  .intro-grid,
  .split,
  .reviews,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 1.2rem;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand strong {
    max-width: 14rem;
  }

  .brand small {
    max-width: 12rem;
  }

  .icon-button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero {
    padding-bottom: 5.75rem;
  }

  .hero-ctas .button {
    flex: 1 1 9rem;
  }

  .quick-facts div {
    padding: 0.85rem;
  }

  .offer-list article {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .mobile-bar {
    display: grid;
  }
}
