:root {
  --bg: #f7f4ee;
  --bg-soft: #fbf8f3;
  --ink: #1f2a2e;
  --ink-soft: #556066;
  --line: rgba(31, 42, 46, 0.12);
  --mint: #67b8a4;
  --mint-deep: #439783;
  --navy: #44458f;
  --navy-deep: #31326b;
  --gold: #c8a66a;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 60px rgba(33, 43, 67, 0.12);
  --radius: 28px;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(103, 184, 164, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(68, 69, 143, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f6f1 0%, #f3eee5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 80%);
  opacity: 0.2;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(31, 42, 46, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  min-height: 112px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.08);
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  max-width: 230px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.tourism-links a,
.guide-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.14rem;
  font-weight: 800;
}

.site-nav a:hover,
.tourism-links a:hover,
.guide-list a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--mint-deep) 100%);
  box-shadow: 0 12px 24px rgba(68, 69, 143, 0.24);
}

.button-secondary {
  color: var(--navy-deep);
  border-color: rgba(68, 69, 143, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.compact {
  min-height: 44px;
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0 48px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
}

h1 {
  max-width: 8ch;
  font-size: clamp(2.45rem, 4.1vw, 4.05rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.5rem;
}

.hero-lead,
.hero-note,
.section-heading p,
.benefit-card p,
.timeline-step p,
.package-summary,
.package-card li,
.payment-card p,
.transparency-box li,
.about-copy p,
.about-panel li,
.contact-intro p,
.form-note,
label,
input,
textarea {
  line-height: 1.7;
  font-size: 1.06rem;
}

.hero-lead,
.section-heading p,
.benefit-card p,
.timeline-step p,
.package-summary,
.payment-card p,
.about-copy p,
.contact-intro p {
  color: var(--ink-soft);
}

.hero-note {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--navy-deep);
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.hero-actions,
.contact-actions,
.tourism-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  padding: 10px 14px;
  border: 1px solid rgba(67, 151, 131, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-deep);
  font-weight: 600;
}

.hero-panel,
.benefit-card,
.timeline-step,
.package-card,
.payment-card,
.transparency-box,
.about-panel,
.contact-form,
.map-card,
.map-guide {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-figure,
.story-media,
.destination-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero-figure img,
.story-media img,
.destination-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure {
  min-height: 440px;
}

.hero-card {
  padding: 34px;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(103, 184, 164, 0.14), rgba(68, 69, 143, 0.16));
}

.card-kicker,
.package-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.mini-facts {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.mini-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mini-facts dt {
  font-weight: 700;
}

.mini-facts dd {
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

.section {
  padding: 56px 0;
}

.section-destination,
.section-map {
  display: grid;
  gap: 18px;
}

.section-visual-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

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

.benefit-grid,
.package-grid {
  display: grid;
  gap: 22px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.benefit-card,
.package-card,
.payment-card,
.about-panel {
  padding: 28px;
  border-radius: var(--radius);
}

.benefit-card h3,
.timeline-step h3,
.package-card h3,
.payment-card h3,
.transparency-box h3,
.about-panel h3,
.contact-form h3,
.map-guide h3 {
  margin-bottom: 14px;
}

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

.timeline-step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint) 0%, var(--navy) 100%);
}

.price {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2.6rem;
}

.price span {
  font-size: 1rem;
  font-family: var(--font-body);
}

.package-card ul,
.transparency-box ul,
.about-panel ul,
.guide-list {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.featured {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 252, 0.94)),
    linear-gradient(135deg, rgba(103, 184, 164, 0.12), rgba(68, 69, 143, 0.1));
  transform: translateY(-10px);
}

.featured::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(103, 184, 164, 0.24);
  border-radius: 20px;
  pointer-events: none;
}

.payment-layout,
.about-layout,
.section-contact,
.map-layout {
  display: grid;
  gap: 24px;
}

.payment-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.payment-steps {
  display: grid;
  gap: 18px;
}

.payment-share {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--mint-deep);
  font-family: var(--font-display);
  font-size: 2.3rem;
}

.transparency-box,
.map-guide {
  padding: 30px;
  border-radius: var(--radius);
}

.tourism-links {
  margin-top: 8px;
}

.tourism-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(68, 69, 143, 0.16);
  font-size: 0.98rem;
}

.map-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.map-card {
  padding: 16px;
  border-radius: var(--radius);
}

.atlas-map-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(246, 239, 226, 0.96)),
    var(--card);
}

.atlas-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.map-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-rivers path {
  fill: none;
  stroke: rgba(68, 69, 143, 0.24);
  stroke-width: 8;
  stroke-linecap: round;
}

.map-point circle {
  fill: var(--navy);
}

.map-point path {
  stroke: var(--navy);
  stroke-width: 5;
  stroke-linecap: round;
}

.map-point rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(68, 69, 143, 0.14);
}

.map-point text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  fill: var(--ink);
}

.map-point .map-subtext {
  font-size: 14px;
  font-weight: 600;
  fill: var(--ink-soft);
}

.atlas-border-labels text,
.atlas-country,
.atlas-subtitle,
.atlas-callout text,
.atlas-medallion text,
.atlas-legend text {
  font-family: var(--font-display);
  fill: #8d7249;
}

.atlas-border-labels text {
  font-size: 48px;
  letter-spacing: 0.08em;
}

.atlas-subtitle {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.atlas-country {
  font-size: 15px;
  letter-spacing: 0.18em;
  opacity: 0.78;
}

.atlas-land {
  fill: url(#atlasMapFill);
  stroke: rgba(168, 145, 109, 0.72);
  stroke-width: 2.5;
}

.atlas-rivers path {
  fill: none;
  stroke: rgba(124, 157, 183, 0.55);
  stroke-width: 3;
  stroke-linecap: round;
}

.atlas-mountains path {
  fill: url(#atlasMountains);
  opacity: 0.88;
}

.atlas-medallion circle {
  fill: rgba(255, 255, 255, 0.66);
  stroke: rgba(206, 186, 150, 0.85);
  stroke-width: 2.5;
}

.medallion-scene {
  fill: none;
  stroke: rgba(104, 125, 108, 0.85);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.atlas-medallion text {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.atlas-caption {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.atlas-callout circle {
  fill: rgba(199, 166, 106, 0.96);
}

.atlas-callout text {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.atlas-legend line {
  stroke: rgba(199, 166, 106, 0.5);
  stroke-width: 1.5;
}

.atlas-legend text {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.guide-list li {
  margin-bottom: 16px;
  line-height: 1.7;
}

.guide-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.story-copy {
  padding: 12px 0;
}

.story-copy p,
.destination-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.06rem;
}

.story-media {
  min-height: 420px;
}

.destination-figure {
  min-height: 360px;
}

.destination-copy {
  max-width: 720px;
}

.section-contact {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(68, 69, 143, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(67, 151, 131, 0.3);
  border-color: rgba(67, 151, 131, 0.45);
}

.form-note,
.form-feedback {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.form-feedback {
  min-height: 24px;
}

.contact-intro {
  padding-top: 16px;
}

.hero-copy,
.section-heading,
.benefit-card,
.timeline-step,
.package-card,
.payment-card,
.transparency-box,
.map-card,
.map-guide,
.about-copy,
.about-panel,
.contact-intro,
.contact-form {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .payment-layout,
  .map-layout,
  .about-layout,
  .section-visual-story,
  .section-contact {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .package-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-frame {
    width: 240px;
    min-height: 96px;
  }

  .brand img {
    max-width: 206px;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-figure,
  .story-media,
  .destination-figure {
    min-height: 300px;
  }

  .benefit-grid,
  .package-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .button,
  .button.compact {
    width: 100%;
  }

  .site-nav,
  .hero-actions,
  .contact-actions,
  .tourism-links {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 9px);
  }

  .tourism-links a {
    width: 100%;
    justify-content: center;
  }
}
