:root {
  --ink: #17201b;
  --muted: #5e6a63;
  --paper: #f6f3ec;
  --white: #ffffff;
  --moss: #315946;
  --moss-dark: #213f34;
  --clay: #b86d3e;
  --sky: #d9e8ed;
  --line: rgba(23, 32, 27, 0.12);
  --shadow: 0 18px 60px rgba(23, 32, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 22, 17, 0.7), rgba(12, 22, 17, 0));
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.site-nav {
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 6px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 20, 15, 0.84) 0%, rgba(9, 20, 15, 0.52) 43%, rgba(9, 20, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 20, 15, 0.42), rgba(9, 20, 15, 0.02) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd0a8;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--clay);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stat {
  padding: 28px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 5px;
  color: var(--moss-dark);
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
  font-weight: 600;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.booking-copy p,
.split-section p,
.details-section p,
.faq-section p,
.tour-card p {
  color: var(--muted);
}

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

.tour-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.tour-image {
  width: calc(100% + 48px);
  height: 150px;
  margin: -24px -24px 22px;
  object-fit: cover;
  background: var(--sky);
}

.tour-card.featured {
  color: var(--white);
  border-color: var(--moss);
  background: var(--moss);
  box-shadow: var(--shadow);
}

.tour-card.featured p,
.tour-card.featured .tour-meta,
.tour-card.featured .price-list,
.tour-card.featured .meal-note {
  color: rgba(255, 255, 255, 0.78);
}

.meal-note {
  border-left: 3px solid var(--clay);
  margin: 18px 0 0;
  padding-left: 12px;
  color: var(--moss-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(23, 32, 27, 0.1);
  padding-top: 8px;
}

.tour-card.featured .price-list li {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.price-list strong {
  color: var(--ink);
  font-size: 0.9rem;
  text-align: right;
  white-space: nowrap;
}

.tour-card.featured .price-list strong {
  color: var(--white);
}

.tour-meta,
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tour-meta {
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.tour-footer {
  margin-top: 30px;
}

.tour-footer span {
  font-size: 1.35rem;
  font-weight: 800;
}

.tour-footer a {
  color: var(--clay);
  font-weight: 800;
}

.tour-card.featured .tour-footer a {
  color: #ffd0a8;
}

.details-section {
  border-top: 1px solid var(--line);
}

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

.detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.detail-grid ul,
.booking-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--moss-dark);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-copy {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 26px;
}

.feature-list div {
  padding-left: 22px;
  border-left: 4px solid var(--clay);
}

.faq-section {
  border-bottom: 1px solid var(--line);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

summary {
  cursor: pointer;
  color: var(--moss-dark);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.contact-note {
  margin-top: 30px;
  border-left: 4px solid var(--clay);
  padding-left: 20px;
}

.contact-note h3 {
  margin-bottom: 6px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 32, 27, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--moss-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 27, 0.18);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--moss-dark);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .tour-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    gap: 8px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 20, 15, 0.86), rgba(9, 20, 15, 0.34));
  }

  .intro-band,
  .detail-grid,
  .split-section,
  .faq-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .intro-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-bottom: 1px solid var(--line);
  }

  .tour-card {
    min-height: 270px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 10px;
  }

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

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 130px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .tour-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
  }
}
