:root {
  --ink: #17201d;
  --muted: #5f6b66;
  --paper: #fffaf2;
  --surface: #ffffff;
  --sun: #f3b23c;
  --sun-deep: #d98124;
  --leaf: #2f7467;
  --mint: #e7f3ef;
  --line: rgba(23, 32, 29, 0.12);
  --shadow: 0 24px 70px rgba(30, 41, 37, 0.16);
  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.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: .5rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--leaf));
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  text-decoration: none;
  padding: .65rem .9rem;
  border-radius: .45rem;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  max-height: 840px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9rem;
  background: linear-gradient(to bottom, transparent, var(--paper));
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(23, 32, 29, .82) 0%, rgba(23, 32, 29, .55) 40%, rgba(23, 32, 29, .1) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd58e;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, .9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: .55rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--sun);
  color: #26170a;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.band,
.features,
.split-band,
.page,
.site-footer {
  padding-left: clamp(1rem, 5vw, 5rem);
  padding-right: clamp(1rem, 5vw, 5rem);
}

.band {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.features {
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.feature-grid,
.content-grid,
.price-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.info-block,
.price-card,
.contact-list,
.route-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 10px 30px rgba(30, 41, 37, .06);
}

.feature-card p,
.info-block p,
.price-card p,
.route-box p,
.legal-page p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf);
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 2rem;
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: #17332e;
  color: #fff;
}

.split-band p {
  color: rgba(255, 255, 255, .78);
  max-width: 700px;
}

.contact-panel {
  display: grid;
  gap: .75rem;
}

.contact-panel a,
.contact-list a {
  display: block;
  padding: .85rem 1rem;
  border-radius: .5rem;
  text-decoration: none;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 800;
}

.page {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.page-hero {
  max-width: 980px;
  margin: 0 auto clamp(2rem, 6vw, 4rem);
}

.page-hero.compact {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.notice,
.mail-band {
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: .5rem;
  background: var(--mint);
  border: 1px solid rgba(47, 116, 103, .18);
}

.notice p,
.mail-band p {
  color: #33524b;
}

.price-card.highlight {
  background: #17332e;
  color: #fff;
}

.price-card.highlight p {
  color: rgba(255, 255, 255, .78);
}

.text-link {
  display: inline-flex;
  margin-top: .75rem;
  font-weight: 850;
  color: var(--leaf);
}

.highlight .text-link {
  color: #ffd58e;
}

.contact-grid {
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
}

address {
  font-style: normal;
  color: var(--muted);
  margin: 1rem 0;
}

.contact-list a {
  color: var(--ink);
  background: var(--mint);
  border-color: rgba(47, 116, 103, .16);
  margin-top: .7rem;
}

.legal-page {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.legal-page section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: .2rem 0 0;
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: .6rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(23, 32, 29, .83), rgba(23, 32, 29, .42));
  }

  .section-grid,
  .split-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .content-grid,
  .price-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 3rem;
    min-height: 680px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
