:root {
  --ink: #15201d;
  --muted: #61706a;
  --paper: #f7f4ed;
  --paper-strong: #fffaf0;
  --forest: #16312d;
  --forest-2: #214942;
  --matcha: #8fae68;
  --citrus: #d9863d;
  --line: rgba(21, 32, 29, 0.16);
  --shadow: 0 24px 70px rgba(14, 28, 25, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-elevated {
  background: rgba(17, 36, 32, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  padding-block: 12px;
  backdrop-filter: blur(16px);
}

.brand,
.header-actions,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.nav a:hover,
.contact-list a:hover {
  color: #fff;
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.icon-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-toggle {
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 55% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 20, 18, 0.9) 0%, rgba(9, 20, 18, 0.67) 36%, rgba(9, 20, 18, 0.18) 72%),
    linear-gradient(0deg, rgba(9, 20, 18, 0.74), rgba(9, 20, 18, 0.1) 42%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f4c27b;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--citrus);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
}

.btn.primary {
  background: #f4c27b;
  color: #1b201e;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn.dark.secondary {
  border-color: rgba(21, 32, 29, 0.24);
  color: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 46px 0 0;
}

.quick-facts div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

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

.offer-card,
.proof-metric,
.location-panel,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.offer-card {
  min-height: 260px;
  padding: 26px;
}

.offer-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 900;
}

.offer-card p,
.hours-panel p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
}

.location-panel,
.hours-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 18px 0 4px;
}

.contact-list span,
.proof-metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-list strong {
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hours-panel {
  color: #fff;
  background: var(--forest);
}

.hours-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.hours-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hours-panel li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
}

.proof {
  border-block: 1px solid var(--line);
}

.proof-metric {
  min-height: 190px;
  padding: 26px;
}

.proof-metric strong {
  display: block;
  margin-bottom: 32px;
  color: var(--forest-2);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.86;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer {
  padding: 30px 18px 96px;
  text-align: center;
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 36, 32, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.mobile-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
}

.mobile-actions a:first-child {
  color: #1b201e;
  background: #f4c27b;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 20, 18, 0.93), rgba(9, 20, 18, 0.44)),
      linear-gradient(0deg, rgba(9, 20, 18, 0.82), rgba(9, 20, 18, 0.14) 54%);
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .quick-facts,
  .offer-grid,
  .proof-grid,
  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .proof-metric {
    min-height: auto;
  }

  .offer-icon {
    margin-bottom: 24px;
  }

  .final-cta {
    display: grid;
  }

  .mobile-actions {
    display: none;
  }

  .mobile-actions.is-visible {
    display: grid;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.6rem);
  }

  .hero-copy {
    max-width: 310px;
  }

  .quick-facts div {
    padding: 13px;
  }

  .btn {
    width: 100%;
  }
}
