:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6862;
  --line: #dbe3df;
  --green: #143d2f;
  --green-2: #0f2d25;
  --gold: #f2a51a;
  --gold-dark: #b45f08;
  --cream: #f7f5ef;
  --white: #ffffff;
  --danger: #b42318;
  --focus: #ffd166;
  --shadow: 0 18px 46px rgba(15, 45, 37, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  padding-bottom: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
code { font-size: .92em; }
.container { width: min(1140px, calc(100% - 32px)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--gold);
  color: #1b1607;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, .94);
  border-bottom: 1px solid rgba(20, 61, 47, .14);
  backdrop-filter: blur(14px);
}
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 20px;
}
.brand span span, .footer-brand span { color: var(--gold-dark); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #1b1607;
  background: var(--gold);
  font-size: 14px;
}
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: #26352f;
}
.nav-links a:hover { color: var(--gold-dark); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
}
.lang-switch a {
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 12px;
}
.lang-switch a[aria-current="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #201600;
}
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0 16px;
  border-radius: 8px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  content: "";
}
.menu-toggle span[aria-hidden="true"]::before { transform: translateY(-7px); }
.menu-toggle span[aria-hidden="true"]::after { transform: translateY(5px); }

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(11, 25, 21, .86), rgba(11, 25, 21, .52) 48%, rgba(11, 25, 21, .22)); }
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 46px;
  max-width: 1140px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  font-size: clamp(40px, 8vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  margin-bottom: 18px;
}
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: 0; margin-bottom: 14px; }
h3 { font-size: 23px; line-height: 1.15; margin-bottom: 12px; }
.hero-copy { max-width: 720px; color: #f1f5f2; font-size: clamp(18px, 2.3vw, 24px); margin-bottom: 18px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; max-width: 780px; margin-bottom: 24px; }
.hero-points span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: 13px;
}
.hero-actions, .card-actions, .contact-actions, .booking-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #201600; }
.btn-primary:hover { background: #ffc247; }
.btn-secondary { background: var(--white); color: var(--green-2); }
.btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .08); }
.btn-outline { background: var(--white); color: var(--green); border-color: var(--green); }
.btn-muted { background: #eef2ef; color: #26352f; border-color: var(--line); }
.btn-small { min-height: 44px; padding: 9px 13px; font-size: 14px; }

.trust-panel { background: var(--green-2); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .14); }
.trust-grid div { background: var(--green-2); padding: 18px; min-height: 96px; }
.trust-grid strong { display: block; color: var(--gold); line-height: 1.2; }
.trust-grid span { display: block; color: #dce5df; font-size: 13px; margin-top: 4px; }

.section { padding: clamp(56px, 8vw, 92px) 0; background: var(--white); }
.section.soft { background: var(--cream); }
.section.dark { background: var(--green-2); color: var(--white); }
.section.dark p { color: #dce5df; }
.section-head { max-width: 780px; margin-bottom: 30px; }
.section-head p { color: var(--muted); font-size: 18px; }
.tour-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.tour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tour-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tour-body { padding: 22px; }
.tag { display: inline-block; color: var(--gold-dark); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.tour-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.tour-details div, .info-card, .price-grid article {
  border: 1px solid var(--line);
  background: #fbfcfa;
  border-radius: 8px;
  padding: 14px;
}
dt { color: var(--muted); font-size: 13px; font-weight: 800; }
dd { margin: 0; font-weight: 900; }
.check-list { list-style: none; padding: 0; margin: 0 0 20px; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 9px; }
.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "+";
  color: var(--gold-dark);
  font-weight: 900;
}
.columns { columns: 2; column-gap: 32px; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.price-line { font-size: 24px; line-height: 1.2; font-weight: 900; color: var(--green); }
.price-line span { display: block; color: var(--gold-dark); font-size: 18px; margin-top: 5px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 34px; align-items: center; }
.rounded-media { border-radius: 8px; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery-grid img { border-radius: 8px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.reviews .two-col { align-items: center; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fbfcfa;
}
.faq-list summary { cursor: pointer; font-weight: 900; }
.faq-list p { margin: 10px 0 0; color: var(--muted); }
.backup-note { color: var(--muted); font-size: 14px; margin: 14px 0 8px; }

.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fbfcfa;
  box-shadow: var(--shadow);
}
.netlify-field { display: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 7px; font-weight: 900; }
.send-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin: 0;
  background: var(--white);
}
.send-choice legend {
  padding: 0 6px;
  font-weight: 900;
}
.send-choice label {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfcfa;
  cursor: pointer;
  text-align: center;
}
.send-choice label:hover { border-color: #9eaca5; }
.send-choice label:has(input:checked) {
  border-color: var(--gold-dark);
  background: #fff8e7;
  box-shadow: 0 0 0 1px var(--gold-dark);
}
.send-choice input { width: auto; min-height: auto; accent-color: var(--green); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9c5bf;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
textarea { resize: vertical; min-height: 112px; }
.wide { grid-column: 1 / -1; }
.form-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .75fr);
  gap: 14px;
  margin: 16px 0;
}
.estimate, .errors {
  min-height: 72px;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}
.estimate strong { display: block; font-size: 18px; color: var(--green); }
.estimate span { display: block; }
.errors { color: var(--danger); }
.errors:empty { color: var(--muted); }
.errors.ready { color: var(--green); }
.hidden { display: none !important; }
.final-cta {
  background: linear-gradient(135deg, var(--green), #245b42);
  color: var(--white);
  padding: 58px 0;
  text-align: center;
}
.final-cta p { color: #e9f0ec; max-width: 620px; margin: 0 auto 20px; }
.site-footer { background: #111a17; color: #eaf0ed; padding: 36px 0; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-end; }
.site-footer a { color: #eaf0ed; text-decoration: none; font-weight: 800; }
.site-footer p { color: #b9c5bf; margin: 10px 0 0; }
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 8px;
  background: rgba(17, 26, 23, .94);
  backdrop-filter: blur(12px);
}
.mobile-sticky a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #201600;
  font-weight: 900;
  text-decoration: none;
}
.mobile-sticky a:first-child { background: var(--white); color: var(--green); }

.breadcrumbs {
  padding: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--green); font-weight: 800; text-decoration: none; }
.page-hero {
  background: var(--green-2);
  color: var(--white);
  padding: 54px 0;
}
.page-hero p { color: #dce5df; max-width: 760px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; align-items: start; }
.side-panel { position: sticky; top: 92px; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-bottom: 1px solid var(--line); }
  .lang-switch { padding-top: 12px; }
  .lang-switch a { border-bottom: 1px solid var(--line); }
  .nav-cta { justify-content: center; margin-top: 10px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-cards, .price-grid, .two-col, .form-status, .footer-grid, .content-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer nav { justify-content: flex-start; }
  .side-panel { position: static; }
}

@media (max-width: 560px) {
  body { padding-bottom: 78px; }
  .container { width: min(100% - 24px, 1140px); }
  .hero { min-height: 650px; }
  .hero-content { padding: 56px 0 28px; }
  h1 { font-size: clamp(38px, 13vw, 54px); }
  .hero-actions .btn, .card-actions .btn, .booking-actions .btn { width: 100%; }
  .hero-points span { font-size: 12px; padding: 7px 9px; }
  .trust-grid { grid-template-columns: 1fr; }
  .tour-details, .form-grid { grid-template-columns: 1fr; }
  .columns { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
