:root {
  --ink: #16231f;
  --body: #38423c;
  --muted: #667069;
  --paper: #fffdf6;
  --surface: #ffffff;
  --line: #d8ded7;
  --green: #214c38;
  --green-2: #3d7a52;
  --coral: #d46848;
  --gold: #d7a43a;
  --blue: #285a70;
  --soft-green: #eff6ef;
  --soft-coral: #fff1eb;
  --soft-blue: #edf5f8;
  --shadow: 0 16px 42px rgba(22, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid rgba(216, 222, 215, 0.82);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 218px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}

.brand span span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--body);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  background: var(--soft-green);
  color: var(--green);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 760;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(33, 76, 56, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #163f2c;
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.64);
}

.button.outline {
  color: var(--green);
  background: var(--surface);
  border-color: var(--line);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 34, 28, 0.91), rgba(18, 34, 28, 0.58)),
    url("assets/european-village-market.webp") center / cover;
}

.hero .wrap {
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: 86px 0 56px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #f8efe0;
  font-size: 14px;
  font-weight: 760;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.blue {
  background: var(--soft-blue);
  border-top: 1px solid #d2e3ea;
  border-bottom: 1px solid #d2e3ea;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lede {
  max-width: 730px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 19px;
}

.route-grid,
.package-grid,
.step-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-card,
.package-card,
.step-card,
.contact-card,
.note-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.route-card.accent,
.package-card.accent,
.note-card.accent {
  border-color: #efc9ba;
  background: var(--soft-coral);
}

.route-card h3,
.package-card h3,
.step-card h3,
.contact-card h3,
.note-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.route-card p,
.package-card p,
.step-card p,
.contact-card p,
.note-card p {
  color: var(--muted);
}

.step-card span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.fact-strip div {
  min-height: 62px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 720;
}

.fact-strip strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.18;
}

.join-fit-grid .route-card {
  box-shadow: 0 12px 34px rgba(22, 35, 31, 0.09);
}

.join-not-fit {
  border-color: #e7bba7;
  background: #fff7f2;
}

.join-proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card,
.faq-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.join-review .note-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-review .note-card .button {
  width: fit-content;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

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

.join-final-cta {
  background: var(--soft-green);
  border-top: 1px solid var(--line);
}

.join-final-cta .split {
  align-items: center;
}

.join-final-cta .section-lede {
  margin-bottom: 0;
}

.join-reference-sections[hidden] {
  display: none !important;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 124px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(61, 122, 82, 0.18);
}

.form-note {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  background: #111b18;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
}

.footer-grid p {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-grid a {
  width: fit-content;
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 1060px) {
  .nav {
    width: min(100% - 28px, 760px);
  }

  .menu-button {
    min-width: 44px;
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 76px 12px auto 12px;
    z-index: 220;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: min(72dvh, 520px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
    min-height: 50px;
  }

  .nav-action {
    display: none;
  }

  .route-grid,
  .package-grid,
  .package-grid.four,
  .step-grid,
  .check-grid,
  .faq-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav,
  .wrap {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span span {
    display: none;
  }

  .nav-links {
    inset: 68px 10px auto 10px;
  }

  .hero .wrap {
    min-height: auto;
    padding: 58px 0 42px;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .fact-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .route-card,
  .package-card,
  .step-card,
  .contact-card,
  .note-card,
  .proof-card,
  .faq-grid article {
    padding: 20px;
  }

  .join-review .note-card .button {
    width: 100%;
  }
}
