:root {
  --forest: #6d241d;
  --rosehip: #b43a2e;
  --limestone: #eadfca;
  --paper: #fff7e8;
  --danube: #8f2e27;
  --corn: #d29a3a;
  --ink: #20201d;
  --muted: #6f6255;
  --line: rgba(32, 32, 29, 0.15);
  --shadow: 0 20px 60px rgba(109, 36, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--limestone);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.trust-row,
.hero-actions,
.panel-top,
.card-header,
.price-row,
.payment-strip,
.card-brands,
.contact-placeholders {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--forest);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 8px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.header-cta:hover {
  color: var(--rosehip);
}

.header-cta {
  color: var(--forest);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) 44px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 247, 238, 0.94), rgba(251, 247, 238, 0.76)),
    url("https://images.unsplash.com/photo-1555993539-1732b0258235?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-media {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  z-index: -1;
  width: min(46vw, 660px);
  height: 190px;
  opacity: 0.8;
}

.route-line {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--danube), var(--rosehip));
  transform: rotate(-7deg);
}

.pin {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--corn);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(32, 32, 29, 0.2);
}

.pin-one {
  left: 10%;
  bottom: 90px;
}

.pin-two {
  left: 48%;
  bottom: 124px;
}

.pin-three {
  right: 8%;
  bottom: 66px;
}

.hero-content {
  align-self: center;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rosehip);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7.5vw, 92px);
  max-width: 920px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 64px);
}

h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 18px;
}

.hero-copy {
  max-width: 700px;
  color: #3e3c36;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

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

.button.primary {
  color: var(--paper);
  background: var(--rosehip);
}

.button.primary:hover {
  background: #8f2c23;
}

.button.secondary {
  color: var(--forest);
  background: rgba(251, 247, 238, 0.74);
  border-color: var(--line);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.chips span {
  padding: 8px 10px;
  color: var(--forest);
  background: rgba(251, 247, 238, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.brief-panel {
  align-self: center;
  padding: 24px;
  background: rgba(251, 247, 238, 0.92);
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-top p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.panel-top span {
  color: var(--rosehip);
  font-size: 13px;
  font-weight: 900;
}

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

.field-grid div {
  padding: 14px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-grid span,
.field-grid strong {
  display: block;
}

.field-grid span {
  color: var(--muted);
  font-size: 12px;
}

.field-grid strong {
  color: var(--forest);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.map-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.map-strip i {
  height: 2px;
  background: var(--danube);
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 247, 232, 0.94), rgba(234, 223, 202, 0.84)),
    var(--section-image, url("https://images.unsplash.com/photo-1529260830199-42c24126f198?auto=format&fit=crop&w=1800&q=80")) center/cover;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(255, 247, 232, 0.12);
}

.section > * {
  position: relative;
  z-index: 1;
}

.intro,
.offer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--paper);
}

.intro {
  --section-image: url("https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?auto=format&fit=crop&w=1800&q=80");
}

.offer {
  --section-image: url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=1800&q=80");
}

.offer {
  align-items: center;
}

.offer-copy p,
.story-card p {
  color: var(--muted);
  font-size: 18px;
}

.offer-copy .button {
  margin-top: 12px;
}

.offer-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 58, 46, 0.1);
}

.price-row {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-weight: 900;
}

.price-row strong {
  color: var(--rosehip);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--forest);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--danube);
  content: "✓";
  font-weight: 900;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-strip {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.payment-strip span {
  color: var(--forest);
  font-size: 15px;
  font-weight: 900;
}

.payment-brand-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-strip strong,
.card-brands span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px;
  color: var(--forest);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.95), rgba(234, 223, 202, 0.8));
  border: 1px solid rgba(180, 58, 46, 0.28);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(109, 36, 29, 0.12);
  font-size: 20px;
  font-weight: 900;
}

.newsletter-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 64px) clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: var(--danube);
  isolation: isolate;
  overflow: hidden;
}

.newsletter-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(109, 36, 29, 0.92), rgba(180, 58, 46, 0.72)),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.newsletter-band h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(28px, 4vw, 48px);
}

.newsletter-band .eyebrow {
  color: #f3d37a;
}

.subscribe-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(251, 247, 238, 0.12);
  border: 1px solid rgba(251, 247, 238, 0.26);
  border-radius: 8px;
}

.subscribe-form label {
  color: var(--paper);
}

.subscribe-form input {
  background: var(--paper);
}

.subscribe-result {
  min-height: 22px;
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.story {
  --section-image: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1800&q=80");
  background:
    linear-gradient(90deg, rgba(109, 36, 29, 0.88), rgba(180, 58, 46, 0.6)),
    url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.story-card {
  max-width: 900px;
  padding: clamp(24px, 5vw, 46px);
  background: rgba(251, 247, 238, 0.94);
  border: 1px solid rgba(251, 247, 238, 0.46);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-grid,
.steps,
.faq-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article,
.steps article,
.itinerary-card,
details {
  padding: 22px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--rosehip);
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.sample {
  --section-image: url("https://images.unsplash.com/photo-1529260830199-42c24126f198?auto=format&fit=crop&w=1800&q=80");
  background: var(--forest);
}

.sample::before {
  background:
    linear-gradient(90deg, rgba(109, 36, 29, 0.94), rgba(109, 36, 29, 0.78)),
    var(--section-image) center/cover;
}

.sample h2,
.sample h3,
.sample .card-header strong {
  color: var(--paper);
}

.sample .eyebrow,
.sample p,
.sample small {
  color: rgba(251, 247, 238, 0.78);
}

.sample-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detailed-itinerary {
  grid-template-columns: 1fr;
}

.itinerary-card {
  background: rgba(251, 247, 238, 0.08);
  border-color: rgba(251, 247, 238, 0.2);
}

.day-card {
  padding: clamp(22px, 4vw, 34px);
}

.card-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.card-header span {
  color: var(--corn);
  font-weight: 900;
}

.itinerary-card small {
  display: block;
  margin-top: 24px;
}

.day-plan {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.day-plan li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 247, 232, 0.08);
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 8px;
}

.day-plan time {
  display: inline-grid;
  place-items: center;
  align-self: start;
  min-height: 38px;
  color: var(--forest);
  background: var(--paper);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.day-plan strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
}

.day-plan p {
  margin: 0;
  color: rgba(251, 247, 238, 0.78);
}

.how {
  --section-image: url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1800&q=80");
  background: var(--limestone);
}

.request {
  --section-image: url("https://images.unsplash.com/photo-1519677100203-a0e668c92439?auto=format&fit=crop&w=1800&q=80");
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  background: var(--paper);
}

.request-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.request-copy p {
  color: var(--muted);
  font-size: 18px;
}

.planner-form {
  padding: 24px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 58, 46, 0.1);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea,
.choice-group,
.consent {
  grid-column: 1 / -1;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  padding: 10px 12px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.choice.active {
  color: var(--paper);
  background: var(--danube);
  border-color: var(--danube);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  margin-top: 4px;
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
}

.result {
  display: none;
  margin-top: 16px;
  padding: 16px;
  color: var(--forest);
  background: rgba(217, 164, 65, 0.18);
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 8px;
  font-weight: 800;
}

.result.show {
  display: block;
}

.faq,
.legal,
.payments {
  --section-image: url("https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?auto=format&fit=crop&w=1800&q=80");
  background: var(--limestone);
}

.payments {
  --section-image: url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=1800&q=80");
}

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

.payments-layout article,
.contact-subscribe {
  padding: 22px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payments-layout p,
.contact-copy p,
.contact-subscribe p {
  color: var(--muted);
}

.card-brands {
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.contact {
  --section-image: url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1800&q=80");
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--forest);
}

.contact::before {
  background:
    linear-gradient(90deg, rgba(109, 36, 29, 0.92), rgba(109, 36, 29, 0.7)),
    var(--section-image) center/cover;
}

.contact h2,
.contact h3,
.contact label {
  color: var(--paper);
}

.contact .eyebrow {
  color: var(--corn);
}

.contact-copy p,
.contact-subscribe p {
  color: rgba(251, 247, 238, 0.78);
  font-size: 18px;
}

.contact-placeholders {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-placeholders span {
  padding: 9px 11px;
  color: var(--paper);
  background: rgba(251, 247, 238, 0.1);
  border: 1px solid rgba(251, 247, 238, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

details {
  background: var(--paper);
}

summary {
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal {
  --section-image: url("https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=1800&q=80");
  background: var(--paper);
}

.legal-grid details {
  background: #fffaf0;
}

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

.document-button {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 18px;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(180, 58, 46, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(109, 36, 29, 0.1);
  font-size: 18px;
  font-weight: 900;
}

.document-button:hover {
  color: var(--paper);
  background: var(--rosehip);
}

.legal-docs {
  grid-template-columns: 1fr;
}

.legal-docs article {
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(109, 36, 29, 0.1);
}

.legal-docs h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-docs p {
  color: #4f463c;
}

.legal-page {
  min-height: calc(100vh - 70px);
  --section-image: url("https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=1800&q=80");
}

.legal-page-card {
  max-width: 980px;
  padding: clamp(24px, 5vw, 56px);
  margin: 0 auto;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(180, 58, 46, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(109, 36, 29, 0.16);
}

.legal-page-card h1 {
  margin-bottom: 24px;
}

.legal-page-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page-card p {
  color: #4f463c;
  font-size: 17px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .intro,
  .offer,
  .newsletter-band,
  .contact,
  .request {
    grid-template-columns: 1fr;
  }

  .brief-panel,
  .request-copy {
    position: static;
  }

  .benefit-grid,
  .steps,
  .sample-layout,
  .faq-grid,
  .legal-grid,
  .document-links,
  .payments-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .benefit-grid,
  .steps,
  .sample-layout,
  .faq-grid,
  .legal-grid,
  .document-links,
  .payments-layout,
  fieldset,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .day-plan li {
    grid-template-columns: 1fr;
  }

  .day-plan time {
    justify-self: start;
    padding: 0 12px;
  }

  .button {
    width: 100%;
  }

  .planner-form {
    padding: 18px;
  }

  .mobile-sticky {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    justify-content: center;
    padding: 14px 16px;
    color: var(--paper);
    background: var(--rosehip);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(32, 32, 29, 0.22);
    font-weight: 900;
  }
}
