:root {
  --sand: #d9c2a2;
  --dune: #b78f64;
  --burnt: #c86a2f;
  --gold: #f2b24d;
  --charcoal: #181311;
  --ink: #261b17;
  --cream: #f7efe4;
  --smoke: rgba(24, 19, 17, 0.72);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f1e8 0%, #f2e5d3 45%, #ead7be 100%);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(19, 14, 12, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.65rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  color: #efe4d4;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  opacity: 1;
}

main {
  overflow: hidden;
}

.hero-cinema {
  min-height: 100svh;
  padding-top: 4.2rem;
  position: relative;
  color: #fff;
  display: grid;
  align-items: end;
}

.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(16, 12, 10, 0.78) 14%, rgba(27, 18, 13, 0.35) 55%, rgba(15, 9, 7, 0.66) 100%),
    url("/images/1.jpg") center/cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding: 3rem 1.2rem 2.8rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-title span {
  color: var(--gold);
}

.hero-note {
  max-width: 28rem;
  color: #f4e4cf;
  margin: 1.15rem 0 1.6rem;
}

.hero-cta {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid rgba(242, 178, 77, 0.72);
  color: #ffdfad;
  padding: 0.75rem 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-cta:hover {
  background: rgba(242, 178, 77, 0.12);
}

.price-ribbon {
  align-self: end;
  justify-self: end;
  width: min(320px, 100%);
  background: rgba(21, 16, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.1rem;
}

.price-ribbon p {
  margin: 0;
  font-size: 0.86rem;
  color: #f2dfc2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-ribbon strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 2rem;
  color: var(--gold);
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.2rem;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.statement h2,
.section-title {
  font-size: clamp(1.7rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.statement p,
.section-intro {
  max-width: 42rem;
  margin: 0;
  color: #4a3c34;
}

.story-routes {
  display: grid;
  gap: 2.2rem;
}

.route-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #f8efe4;
  min-height: 340px;
}

.route-story:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.route-story:nth-child(even) .route-media {
  order: 2;
}

.route-story:nth-child(even) .route-content {
  order: 1;
}

.route-media {
  position: relative;
}

.route-media img {
  height: 100%;
}

.route-content {
  padding: 2.2rem;
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.route-tag {
  color: var(--burnt);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.route-content h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
}

.meta-line {
  font-size: 0.86rem;
  color: #564137;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-inline {
  color: var(--charcoal);
  font-size: 1rem;
}

.price-inline b {
  color: var(--burnt);
}

.image-break {
  margin: 2.6rem 0;
  min-height: 56svh;
  position: relative;
  color: #fff;
}

.image-break img {
  height: 56svh;
}

.image-break blockquote {
  position: absolute;
  right: 5%;
  bottom: 12%;
  max-width: 430px;
  margin: 0;
  background: rgba(20, 14, 11, 0.7);
  border-left: 2px solid var(--gold);
  padding: 1rem 1rem 1rem 1.2rem;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.2;
}

.experience-flow {
  display: grid;
  gap: 1.35rem;
}

.experience-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.1rem;
  border-top: 1px solid rgba(42, 30, 24, 0.2);
  padding-top: 1.2rem;
}

.experience-line h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.experience-line p {
  margin: 0;
  color: #54423a;
}

.experience-line strong {
  color: var(--burnt);
  align-self: center;
  white-space: nowrap;
}

.destinations-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

.destinations-band article {
  background: #201712;
  color: #f9e9d1;
  padding: 1.5rem;
  min-height: 230px;
  display: grid;
  align-content: end;
}

.destinations-band h3 {
  margin: 0 0 0.4rem;
}

.destinations-band p {
  margin: 0;
  color: #e5d1b7;
}

.quotes-min {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quotes-min blockquote {
  margin: 0;
  padding: 1.15rem;
  background: #fff7eb;
  border-left: 2px solid var(--burnt);
}

.quotes-min cite {
  display: block;
  margin-top: 0.7rem;
  color: #7f5f4a;
  font-style: normal;
  font-size: 0.88rem;
}

.cta-layer {
  background: radial-gradient(circle at 12% 10%, #503221 0%, #2f1f18 42%, #1f1512 100%);
  color: #fce8c8;
  padding: 3.2rem 1.2rem;
}

.cta-layer .section-wrap {
  padding: 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.cta-inner h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.cta-inner p {
  margin: 0;
  max-width: 40rem;
}

.cta-prices {
  border: 1px solid rgba(245, 214, 166, 0.4);
  padding: 1rem;
}

.cta-prices p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.button-gold {
  margin-top: 1rem;
  display: inline-block;
  background: var(--gold);
  color: #241a15;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  padding: 0.75rem 1.08rem;
}

.button-gold:hover {
  background: #f7c76d;
}

.site-footer {
  background: #130f0d;
  color: #cfbaa0;
  font-size: 0.82rem;
  padding: 1.1rem 1.2rem;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.inner-hero {
  padding-top: 5.4rem;
  min-height: 58svh;
  position: relative;
  color: #fff;
  display: grid;
  align-items: end;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(12, 9, 7, 0.78) 10%, rgba(16, 12, 9, 0.52) 58%, rgba(12, 8, 6, 0.76) 100%),
    var(--hero-image) center/cover no-repeat;
}

.inner-hero .section-wrap {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.8rem);
}

.inner-hero p {
  max-width: 38rem;
  color: #f3e1c9;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.detail-grid article {
  background: #f9f0e4;
  padding: 1.4rem;
}

.detail-grid h3,
.faq-list h3 {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list article {
  background: #fbf2e7;
  border-left: 2px solid var(--dune);
  padding: 1rem 1.2rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
}

form {
  background: #f9f0e4;
  padding: 1.3rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d5443;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d2b897;
  background: #fffdfa;
  padding: 0.7rem;
  font: inherit;
  margin-top: 0.35rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .statement,
  .route-story,
  .route-story:nth-child(even),
  .cta-inner,
  .destinations-band,
  .quotes-min,
  .detail-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .route-story:nth-child(even) .route-media,
  .route-story:nth-child(even) .route-content {
    order: initial;
  }

  .price-ribbon {
    justify-self: start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 59px;
    right: 0;
    width: min(300px, 84vw);
    transform: translateX(102%);
    transition: transform 0.3s ease;
    background: rgba(16, 12, 10, 0.95);
    height: calc(100svh - 59px);
    padding: 1.4rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .section-wrap {
    padding: 3.2rem 1rem;
  }

  .route-content {
    padding: 1.4rem;
  }

  .hero-note {
    margin-bottom: 1.1rem;
  }
}
