:root {
  color-scheme: light;
  --ink: #17221f;
  --muted: #60716b;
  --paper: #fbfaf6;
  --line: #dfe7df;
  --green: #123329;
  --green-2: #1f5a45;
  --clay: #a84d2f;
  --sun: #f2b84b;
  --sea: #1f6f8b;
  --white: #fff;
  --shadow: 0 24px 70px rgba(18, 40, 33, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(18, 51, 41, .12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 15px;
  font-weight: 700;
}

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

.nav-cta {
  color: var(--clay);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(88px, 10vw, 148px) clamp(18px, 5vw, 72px) clamp(24px, 5vw, 64px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--green);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 26, 20, .88), rgba(9, 26, 20, .44) 50%, rgba(9, 26, 20, .16)),
    linear-gradient(0deg, rgba(9, 26, 20, .74), rgba(9, 26, 20, 0) 48%);
}

.hero-content {
  max-width: 780px;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, .88);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--sun);
  color: #251b09;
}

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

.button.ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: var(--white);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: clamp(40px, 9vh, 96px);
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-height: 132px;
  padding: 18px;
  background: rgba(251, 250, 246, .94);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.08;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--green);
}

.quick-strip a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.visit h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.visit-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 112px);
}

.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid div {
  padding: clamp(18px, 3vw, 30px);
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.08;
}

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

.menus {
  background:
    linear-gradient(90deg, rgba(18, 51, 41, .94), rgba(31, 111, 139, .88)),
    var(--green);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
}

.section-heading p {
  color: rgba(255, 255, 255, .78);
  margin-top: 18px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.menu-list a {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.menu-list a:hover,
.menu-list a:focus {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .18);
}

.menu-list span {
  font-size: 21px;
  font-weight: 900;
}

.menu-list small {
  color: var(--sun);
  font-weight: 900;
}

.visit {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, .8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.contact-box {
  display: grid;
  gap: 10px;
}

.contact-box a {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.contact-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-box strong {
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(18px, 5vw, 72px) 96px;
  background: #101b18;
  color: var(--white);
}

.site-footer p {
  max-width: 660px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
}

.site-footer a {
  font-weight: 900;
}

.mobile-actions {
  position: static;
  left: 10px;
  right: 10px;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(251, 250, 246, .94);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.mobile-actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 900;
}

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

  .site-nav {
    display: none;
  }

  .language-switch {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-panel,
  .intro,
  .feature-grid,
  .visit,
  .quick-strip,
  .menu-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 34px;
  }

  .quick-strip a {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switch {
    grid-template-columns: repeat(2, 38px);
  }

  .language-switch button {
    height: 32px;
  }

  .hero {
    padding: 96px 16px 22px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(9, 26, 20, .9), rgba(9, 26, 20, .42) 72%, rgba(9, 26, 20, .18)),
      linear-gradient(90deg, rgba(9, 26, 20, .72), rgba(9, 26, 20, .18));
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel div {
    min-height: auto;
  }

  .section,
  .visit {
    padding: 48px 16px;
  }

  .feature-grid {
    padding: 0 16px 48px;
  }

  .site-footer {
    display: block;
    padding: 28px 16px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 18px;
  }

  .mobile-actions {
    display: grid;
    margin: 0 10px 10px;
  }
}
