@font-face {
  font-family: "Work Sans";
  src: url("/assets/work-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("/assets/work-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chango";
  src: url("/assets/chango-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #3f51b5;
  --purple: #673ab7;
  --deep-purple: #2f1954;
  --green: #347937;
  --cream: #f7f4f1;
  --ink: #17131f;
  --white: #fff;
  --shadow: 0 8px 24px rgba(30, 22, 42, .18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow { max-width: 760px; }
.section { padding: 76px 0; }

.site-header {
  background: var(--white);
  position: relative;
  z-index: 10;
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 68px);
  padding: 14px 20px;
}

.nav a {
  color: var(--deep-purple);
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding: 6px 0;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active { border-bottom-color: var(--blue); }

.brand-bar {
  display: block;
  background: var(--blue);
  color: #d9d9d1;
  font-family: "Chango", Georgia, serif;
  font-size: clamp(18px, 2.7vw, 31px);
  letter-spacing: .02em;
  line-height: 1.2;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 5px rgba(0,0,0,.35);
}

.hero {
  min-height: min(830px, calc(100vh - 140px));
  position: relative;
  overflow: hidden;
  background: var(--purple);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.32), transparent 46%);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  min-height: inherit;
  margin: auto;
  padding: 90px 0 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 430px;
  margin: 0 0 34px;
  color: #050505;
  font-family: "Chango", Georgia, serif;
  font-size: clamp(54px, 7.2vw, 98px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 34px;
  border: 2px solid transparent;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  background: #28662b;
  transform: translateY(-2px);
}

.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 64px;
  align-items: start;
}

.about h2,
.testimonials h2,
.booking-details h2,
.policy h1 {
  color: var(--green);
  font-family: "Chango", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 34px;
}

.about h2 span { display: inline-block; }
.about-copy p { max-width: 760px; }

.tour-card {
  background: var(--purple);
  color: var(--white);
  padding: 36px;
  box-shadow: var(--shadow);
}

.tour-card .button {
  margin-top: 10px;
  background: var(--white);
  color: var(--deep-purple);
}

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

.highlights-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.highlight-list { padding-right: 18px; }

.highlight-list h2 {
  margin: 0 0 24px;
  font-family: "Chango", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
}

.highlight-list ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.highlight-list li { margin: 8px 0; }
.highlight-list li::before { content: "✦"; margin-right: 10px; }
.highlight-list p { font-weight: 700; }

.highlight-card {
  margin: 0;
  background: rgba(47, 25, 84, .25);
  display: flex;
  flex-direction: column;
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.highlight-card h3 {
  margin: 0;
  padding: 22px 14px;
  color: var(--cream);
  font-family: "Chango", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.testimonials { background: var(--cream); }
.testimonials h2 { color: var(--purple); text-align: center; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--green);
}

.testimonial-grid cite {
  font-style: normal;
  font-weight: 700;
}

.photo-break {
  height: min(720px, 70vw);
  min-height: 430px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: var(--deep-purple);
  color: var(--white);
  padding: 62px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr .8fr;
  gap: 54px;
  padding-bottom: 52px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-family: "Chango", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.site-footer a { display: block; margin: 7px 0; }
.footer-action { align-self: center; }
.footer-action .button { display: inline-flex; }

.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 14px;
}

.footer-bottom a { margin: 0; }

.booking-hero {
  min-height: 880px;
  position: relative;
  overflow: hidden;
}

.booking-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,244,241,.74);
}

.booking-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(460px, 1.35fr);
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 72px;
  align-items: start;
}

.booking-copy,
.booking-widget {
  background: rgba(247,244,241,.92);
  padding: 34px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.booking-copy h1,
.booking-widget h2 {
  color: var(--deep-purple);
  font-family: "Chango", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
}

.booking-copy h1 { font-size: clamp(42px, 6vw, 72px); margin: 12px 0 30px; }
.booking-widget h2 { font-size: 32px; margin: 0 0 22px; }
.booking-widget { min-height: 650px; }
.booking-widget iframe { max-width: 100%; }

.booking-details { background: var(--cream); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
}
.booking-details h2 { font-size: 34px; }

.map { height: 420px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.policy { min-height: 60vh; background: var(--cream); }
.compact-footer { padding-top: 0; }

@media (max-width: 900px) {
  .about-grid,
  .booking-intro,
  .details-grid { grid-template-columns: 1fr; }

  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-list { grid-column: 1 / -1; }
  .booking-widget { min-height: 600px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .container { width: min(100% - 28px, 1120px); }

  .nav {
    min-height: 64px;
    gap: 17px;
    padding-inline: 10px;
  }
  .nav a { font-size: 12px; }
  .brand-bar { font-size: 17px; padding: 12px 14px; }

  .hero { min-height: 650px; }
  .hero::after { background: linear-gradient(90deg, rgba(255,255,255,.58), rgba(255,255,255,.04) 75%); }
  .hero-content { width: calc(100% - 28px); padding-top: 55px; justify-content: flex-start; }
  .hero h1 { font-size: clamp(42px, 13vw, 50px); margin-top: 40px; }

  .about-grid { gap: 32px; }
  .tour-card { padding: 26px; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-list { grid-column: auto; padding-right: 0; }
  .highlight-card img { aspect-ratio: 16 / 10; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials h2 { text-align: left; }
  .photo-break { min-height: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-action { align-self: start; }

  .booking-hero { min-height: 0; }
  .booking-intro { padding-top: 36px; padding-bottom: 36px; gap: 28px; }
  .booking-copy,
  .booking-widget { padding: 24px; }
  .booking-widget { min-height: 560px; }
  .details-grid { gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
