:root {
  --ink: #153d35;
  --ink-deep: #0e2f29;
  --cream: #f7f3e9;
  --paper: #fffdf7;
  --orange: #ef8f4c;
  --orange-light: #f7b267;
  --sage: #b9c8a6;
  --line: rgba(21, 61, 53, 0.16);
  --muted: #687a74;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(28, 54, 47, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  color: inherit;
  font: inherit;
}

button,
a,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: var(--ink);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.brand > span:last-child > span {
  color: var(--orange-light);
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.brand-mark path {
  fill: none;
  stroke: var(--orange-light);
  stroke-linecap: round;
  stroke-width: 2.8;
}

.brand-mark circle {
  fill: var(--paper);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 540;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--orange-light);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  color: var(--ink-deep);
  background: var(--orange-light);
  box-shadow: 0 12px 30px rgba(239, 143, 76, 0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: #ffc27e;
  box-shadow: 0 16px 38px rgba(239, 143, 76, 0.28);
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(247, 178, 103, 0.7);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  box-shadow: none;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: 180ms ease;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 42%, rgba(91, 130, 105, 0.25), transparent 25%),
    var(--ink);
}

.hero::before {
  position: absolute;
  top: -110px;
  right: -180px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 104px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 19px;
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.99;
}

h1 em {
  color: var(--orange-light);
  font-weight: 400;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--orange-light);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points i {
  color: var(--orange-light);
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 535px;
}

.map-card {
  position: absolute;
  top: 6px;
  right: 0;
  width: min(100%, 545px);
  height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 46% 46% 34px 34px;
  background:
    radial-gradient(circle at 52% 45%, rgba(239, 143, 76, 0.13), transparent 35%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.03);
}

.map-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 70%, rgba(8, 38, 32, 0.5));
  content: "";
  pointer-events: none;
}

.map-top {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 44px;
  left: 44px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-scale {
  color: var(--orange-light);
}

.map-art {
  position: absolute;
  top: 0;
  left: 50%;
  width: 110%;
  height: 100%;
  transform: translateX(-50%);
}

.contour {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 1.2;
}

.contour-2 {
  stroke: rgba(255, 255, 255, 0.16);
}

.contour-3 {
  stroke: rgba(255, 255, 255, 0.19);
}

.route-line {
  fill: none;
  stroke: var(--orange-light);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.route-point {
  fill: var(--ink);
  stroke: var(--orange-light);
  stroke-width: 3;
}

.route-end {
  fill: var(--orange-light);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
}

.pin-cut {
  stroke: var(--ink);
  stroke-width: 1.7;
}

.location-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding-left: 13px;
  border-left: 2px solid var(--orange-light);
  line-height: 1.3;
}

.location-chip span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-chip strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 10px;
  font-weight: 650;
}

.location-one {
  top: 382px;
  left: 84px;
}

.location-two {
  top: 173px;
  right: 46px;
}

.map-note {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 23px;
  display: flex;
  width: 245px;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(11, 45, 38, 0.88);
  backdrop-filter: blur(12px);
}

.note-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--orange-light);
  font-weight: 800;
}

.map-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.map-note strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 650;
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(19, 61, 52, 0.9);
  box-shadow: 0 18px 45px rgba(3, 20, 16, 0.27);
  backdrop-filter: blur(12px);
}

.float-price {
  top: 135px;
  left: -18px;
}

.float-date {
  right: -36px;
  bottom: 86px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink-deep);
  background: var(--orange-light);
  font-size: 12px;
  font-weight: 800;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.floating-card small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 650;
}

.finder-section {
  position: relative;
  z-index: 10;
  margin-top: -42px;
}

.finder-card {
  padding: 27px 30px 30px;
  border: 1px solid rgba(21, 61, 53, 0.1);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.finder-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.section-number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 750;
}

.finder-heading .section-kicker {
  margin-bottom: 1px;
  color: var(--orange);
  font-size: 8px;
}

.finder-heading h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.finder-form {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr auto;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--line);
}

.finder-form label {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 11px 18px 9px;
  background: var(--paper);
}

.finder-form label span {
  margin-bottom: -1px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-form select {
  width: 100%;
  min-height: 29px;
  padding: 0 22px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.finder-button {
  min-height: 62px;
  border-radius: 0;
  box-shadow: none;
}

.finder-result {
  display: none;
  margin: 20px 0 0;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(185, 200, 166, 0.26);
  font-size: 13px;
}

.finder-result.visible {
  display: block;
}

.section {
  padding: 120px 0;
}

.advantages {
  padding-top: 130px;
}

.section-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 110px;
  margin-bottom: 58px;
}

.section-kicker {
  color: var(--orange);
}

.section-intro h2,
.directions-head h2,
.how-copy > h2,
.faq-layout > div > h2,
.about-layout h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.04;
}

.section-intro > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(21, 61, 53, 0.11);
  border-radius: 50%;
  content: "";
}

.feature-index {
  position: absolute;
  top: 28px;
  right: 29px;
  color: rgba(21, 61, 53, 0.33);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-icon svg {
  width: 30px;
  fill: none;
  stroke: var(--orange-light);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-dark {
  color: var(--white);
  background: var(--ink);
}

.feature-dark .feature-index {
  color: rgba(255, 255, 255, 0.35);
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.57);
}

.feature-dark::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-route {
  background: #fbf8ef;
}

.mini-route {
  height: 150px;
  margin: 23px -5px 16px;
}

.mini-route svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mini-route path {
  fill: none;
  stroke: var(--ink);
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.mini-route circle {
  fill: var(--paper);
  stroke: var(--orange);
  stroke-width: 2.5;
}

.mini-route circle:last-child {
  fill: var(--orange);
}

.feature-accent {
  background: var(--orange-light);
}

.feature-accent p {
  color: rgba(21, 61, 53, 0.7);
}

.date-stack {
  display: flex;
  height: 165px;
  align-items: flex-end;
  gap: 8px;
  padding-top: 30px;
}

.date-stack span {
  display: flex;
  width: 74px;
  height: 98px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 61, 53, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.date-stack span:nth-child(2) {
  height: 123px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.date-stack b {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.methodology {
  background: #eee9dd;
}

.methodology-intro h2 {
  max-width: 680px;
}

.criteria-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  gap: 1px;
}

.criterion {
  min-height: 255px;
  padding: 29px;
  background: var(--paper);
}

.criterion > span {
  display: inline-flex;
  margin-bottom: 55px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.criterion h3 {
  margin-bottom: 11px;
  font-size: 18px;
}

.criterion p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.safety-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.75fr 1.25fr;
  margin-top: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.safety-heading {
  padding: 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-heading h3 {
  max-width: 350px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.safety-heading > p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.safety-list {
  display: grid;
  margin: 0;
  padding: 30px 38px;
  list-style: none;
}

.safety-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.safety-list li:last-child {
  border-bottom: 0;
}

.safety-list span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-deep);
  background: var(--orange-light);
  font-size: 9px;
  font-weight: 800;
}

.directions {
  color: var(--white);
  background: var(--ink);
}

.directions-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}

.direction-controls {
  display: flex;
  gap: 8px;
}

.direction-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.direction-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #244d43;
}

.direction-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 28, 23, 0.9));
  content: "";
}

.direction-card:hover .scenery {
  transform: scale(1.025);
}

.scenery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 500ms ease;
}

.direction-mountain .scenery {
  background: linear-gradient(180deg, #d9c9a8, #a0aa8e 68%, #536b5a);
}

.sun {
  position: absolute;
  top: 58px;
  right: 68px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: #f7c676;
  box-shadow: 0 0 70px rgba(247, 198, 118, 0.45);
}

.mountain {
  position: absolute;
  bottom: 68px;
  left: -13%;
  width: 125%;
  height: 260px;
  background: #70816d;
  clip-path: polygon(0 100%, 17% 52%, 27% 70%, 49% 12%, 61% 48%, 73% 28%, 100% 100%);
}

.mountain::after {
  position: absolute;
  inset: 0;
  background: rgba(246, 238, 218, 0.75);
  clip-path: polygon(38% 34%, 49% 12%, 57% 38%, 50% 31%, 47% 43%);
  content: "";
}

.mountain-front {
  bottom: -6px;
  left: -30%;
  width: 160%;
  height: 230px;
  background: #3a5a4b;
  clip-path: polygon(0 100%, 16% 36%, 25% 69%, 36% 42%, 48% 82%, 63% 24%, 80% 73%, 89% 45%, 100% 100%);
}

.mountain-front::after {
  display: none;
}

.direction-water .scenery {
  background: linear-gradient(180deg, #cbd4c3 0 50%, #678c84 51% 100%);
}

.direction-water .sun {
  top: 70px;
  left: 52px;
  width: 65px;
  height: 65px;
  background: #ed9d5c;
}

.water-line {
  position: absolute;
  right: -10%;
  bottom: 155px;
  width: 120%;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.line-two {
  right: -30%;
  bottom: 102px;
}

.island {
  position: absolute;
  right: -30px;
  bottom: 145px;
  width: 250px;
  height: 85px;
  border-radius: 70% 0 0 10%;
  background: #435f54;
  transform: rotate(-5deg);
}

.direction-north .scenery {
  background: linear-gradient(180deg, #173d3b, #466961 68%, #315347);
}

.aurora {
  position: absolute;
  top: -45px;
  left: -20%;
  width: 150%;
  height: 250px;
  border: 40px solid rgba(157, 205, 174, 0.36);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: blur(10px);
  transform: rotate(-10deg);
}

.aurora-two {
  top: 80px;
  left: -40%;
  border-color: rgba(238, 181, 118, 0.16);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(14deg);
}

.north-hill {
  position: absolute;
  right: -20%;
  bottom: -50px;
  width: 140%;
  height: 280px;
  border-radius: 50% 50% 0 0;
  background: #1d4137;
  transform: rotate(-7deg);
}

.direction-content {
  position: absolute;
  z-index: 3;
  right: 27px;
  bottom: 28px;
  left: 27px;
}

.direction-content > span {
  color: var(--orange-light);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direction-content h3 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.direction-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.how {
  background: var(--paper);
}

.how-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 100px;
}

.how-lead {
  max-width: 470px;
  margin: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list li > span {
  color: rgba(21, 61, 53, 0.34);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.step-list h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.step-list .active > span {
  color: var(--orange);
}

.compare-panel {
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(21, 61, 53, 0.18);
}

.compare-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-columns article {
  padding: 34px 29px 27px;
}

.compare-columns article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-badge {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.tour-badge-green {
  background: var(--sage);
}

.tour-badge-orange {
  background: var(--orange-light);
}

.tour-place {
  margin-bottom: 5px;
  color: var(--orange-light);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compare-columns h3 {
  min-height: 48px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.compare-columns dl {
  margin: 0;
}

.compare-columns dl div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.compare-columns dt {
  color: rgba(255, 255, 255, 0.42);
}

.compare-columns dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.compare-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 20px 20px;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--orange-light);
}

.compare-summary span {
  font-size: 9px;
  font-weight: 650;
}

.compare-summary strong {
  max-width: 190px;
  font-size: 10px;
  text-align: right;
}

.faq {
  background: #eee9dd;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 115px;
}

.faq-note {
  max-width: 350px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 81px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition: 180ms ease;
}

.accordion details[open] summary span {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 590px;
  margin: -8px 50px 27px 0;
  color: var(--muted);
  font-size: 13px;
}

.about-project {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 115px;
}

.about-layout h2 {
  max-width: 540px;
}

.about-lead {
  margin-bottom: 37px;
  color: var(--muted);
  font-size: 15px;
}

.about-facts {
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.updated-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.updated-note time {
  color: var(--ink);
  font-weight: 650;
}

.final-cta {
  padding: 80px 0;
  color: var(--white);
  background: var(--orange);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.section-kicker-light {
  color: rgba(21, 61, 53, 0.75);
}

.final-cta h2 {
  color: var(--ink-deep);
}

.button-light {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 13px 32px rgba(21, 61, 53, 0.18);
}

.button-light:hover {
  background: var(--ink-deep);
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1fr 1.15fr;
  gap: 60px;
  padding-bottom: 46px;
}

.brand-footer {
  color: var(--white);
}

.footer-main > p {
  max-width: 330px;
  margin: 0;
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-main nav a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.92fr;
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.88);
    transform-origin: center right;
  }

  .float-price {
    left: 0;
  }

  .float-date {
    right: 24px;
  }

  .how-layout,
  .faq-layout,
  .about-layout {
    gap: 60px;
  }

  .footer-main {
    gap: 30px;
  }
}

@media (max-width: 880px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    margin-left: auto;
  }

  .hero-layout {
    display: block;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 540px;
    margin: 55px auto 0;
    transform: none;
  }

  .map-card {
    right: 50%;
    transform: translateX(50%);
  }

  .float-price {
    left: 5%;
  }

  .float-date {
    right: 5%;
  }

  .finder-section {
    margin-top: 0;
    padding-top: 30px;
    background: var(--cream);
  }

  .finder-form {
    grid-template-columns: 1fr 1fr;
  }

  .finder-form label:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .finder-button {
    border-top: 1px solid var(--line);
  }

  .section-intro {
    gap: 55px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .criteria-grid {
    grid-template-columns: 1fr 1fr;
  }

  .safety-panel {
    grid-template-columns: 1fr;
  }

  .safety-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .safety-list {
    min-height: 470px;
  }

  .direction-grid {
    grid-template-columns: 1fr 1fr;
  }

  .direction-card:last-child {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .how-layout {
    grid-template-columns: 1fr;
  }

  .how-copy {
    max-width: 680px;
  }

  .compare-panel {
    max-width: 650px;
  }

  .faq-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout > div:first-child {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 100px 34px;
    background: var(--ink-deep);
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  h1 {
    font-size: clamp(41px, 12.5vw, 58px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-points {
    gap: 12px 18px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 48px;
  }

  .map-card {
    width: 100%;
    height: 415px;
    border-radius: 42% 42% 24px 24px;
  }

  .map-top {
    top: 28px;
    right: 28px;
    left: 28px;
  }

  .location-one {
    top: 297px;
    left: 52px;
  }

  .location-two {
    top: 129px;
    right: 28px;
  }

  .map-note {
    right: 16px;
    bottom: 14px;
    width: 220px;
  }

  .float-price {
    top: 100px;
    left: -8px;
  }

  .float-date {
    right: -8px;
    bottom: 69px;
  }

  .floating-card {
    padding: 9px 12px 9px 9px;
  }

  .floating-icon {
    width: 33px;
    height: 33px;
  }

  .finder-card {
    padding: 23px 18px 18px;
  }

  .finder-form {
    grid-template-columns: 1fr;
  }

  .finder-form label {
    border-top: 1px solid var(--line);
  }

  .finder-form label:first-child {
    border-top: 0;
  }

  .finder-button {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 85px 0;
  }

  .advantages {
    padding-top: 95px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .section-intro h2,
  .directions-head h2,
  .how-copy > h2,
  .faq-layout > div > h2,
  .about-layout h2,
  .final-cta h2 {
    font-size: 39px;
  }

  .feature-grid,
  .direction-grid,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .direction-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 360px;
  }

  .criterion {
    min-height: 225px;
  }

  .criterion > span {
    margin-bottom: 38px;
  }

  .safety-heading {
    padding: 32px 25px;
  }

  .safety-list {
    min-height: 520px;
    padding: 24px;
  }

  .directions-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .direction-controls {
    display: none;
  }

  .direction-card,
  .direction-card:last-child {
    min-height: 420px;
  }

  .how-layout,
  .faq-layout,
  .about-layout {
    gap: 48px;
  }

  .about-facts > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .compare-columns article {
    padding: 27px 17px 22px;
  }

  .tour-badge {
    margin-bottom: 27px;
  }

  .compare-columns h3 {
    min-height: 42px;
    font-size: 19px;
  }

  .compare-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .compare-summary strong {
    max-width: none;
    text-align: left;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main nav {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
