:root {
  color-scheme: light;
  --ivory: #fff2df;
  --sand: #e8c993;
  --soft-sand: #f6ddb7;
  --clay: #cf6a3d;
  --terracotta: #a83f1d;
  --deep-brown: #26130c;
  --charcoal: #191613;
  --muted-gold: #d49a39;
  --olive: #4f5f3a;
  --ink-muted: #684638;
  --line: rgba(111, 52, 25, 0.2);
  --glass: rgba(255, 239, 216, 0.82);
  --shadow: 0 24px 70px rgba(88, 37, 16, 0.2);
  --shadow-soft: 0 14px 40px rgba(88, 37, 16, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 40px));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 14% 4%, rgba(212, 154, 57, 0.3), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(207, 106, 61, 0.18), transparent 30rem),
    linear-gradient(180deg, #f4c98e 0%, var(--ivory) 35%, #ecc27f 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.48;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(168, 63, 29, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(168, 63, 29, 0.075) 87.5%, rgba(168, 63, 29, 0.075)),
    linear-gradient(150deg, rgba(168, 63, 29, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(168, 63, 29, 0.075) 87.5%, rgba(168, 63, 29, 0.075));
  background-size: 42px 74px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(181, 95, 63, 0.5);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--deep-brown);
  color: var(--ivory);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 242, 223, 0.82);
  border-bottom: 1px solid rgba(111, 52, 25, 0.15);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.brand img {
  width: 210px;
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.nav-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 238, 211, 0.9);
  color: var(--deep-brown);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 236, 205, 0.74);
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.primary-nav a[aria-current="page"],
.primary-nav a.active,
.primary-nav a:hover {
  color: var(--deep-brown);
  background: rgba(212, 154, 57, 0.24);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #8e2f16, var(--terracotta) 46%, var(--clay));
  color: #fff9ef;
  box-shadow: 0 16px 34px rgba(168, 63, 29, 0.32);
}

.btn-secondary {
  background: rgba(255, 238, 211, 0.84);
  color: var(--deep-brown);
  border-color: rgba(168, 63, 29, 0.24);
}

.btn-ghost {
  color: var(--terracotta);
  background: transparent;
  border-color: rgba(168, 63, 29, 0.28);
}

.btn:hover,
.card-link:hover,
.tour-card:hover .btn,
.contact-channel:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(168, 63, 29, 0.42);
}

.page-main {
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.section-muted {
  background:
    radial-gradient(circle at 100% 0%, rgba(207, 106, 61, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(255, 236, 205, 0.78), rgba(232, 201, 147, 0.58));
  border-block: 1px solid rgba(111, 52, 25, 0.12);
}

.section-dark {
  color: #fff4df;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 154, 57, 0.32), transparent 26rem),
    linear-gradient(135deg, #231109, #5b2414 58%, #17110d);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #f0bd5d;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--deep-brown);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 10vw, 8.6rem);
}

h2 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.02;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff4df;
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 247, 234, 0.78);
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding: 52px 0 76px;
  color: #fff8ec;
  background:
    linear-gradient(90deg, rgba(28, 17, 12, 0.84) 0%, rgba(45, 27, 20, 0.56) 46%, rgba(45, 27, 20, 0.1) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
}

.hero h1,
.hero .eyebrow {
  color: #fff8ec;
}

.hero .lead {
  max-width: 570px;
  margin-top: 26px;
  color: rgba(255, 245, 226, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quote-strip {
  width: var(--container);
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  padding: 26px clamp(24px, 4vw, 44px);
  border: 1px solid rgba(240, 189, 93, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(38, 19, 12, 0.94);
  color: #fff4df;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.intro-grid,
.story-grid,
.split-grid,
.transport-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.88fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.image-stack img,
.media-frame img,
.tour-card img,
.special-card img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack img:first-child {
  min-height: 520px;
  border-radius: var(--radius-xl);
}

.image-stack img:last-child {
  min-height: 330px;
  border-radius: 999px 999px var(--radius-xl) var(--radius-xl);
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(80, 48, 33, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(255, 238, 211, 0.64);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading .lead {
  max-width: 470px;
}

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

.feature-card,
.benefit-card,
.credential-card,
.testimonial-card,
.trust-card,
.faq-item,
.contact-panel,
.transport-feature {
  border: 1px solid rgba(111, 52, 25, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 238, 211, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(212, 154, 57, 0.24), transparent);
  transition: opacity 220ms ease;
}

.feature-card:hover,
.tour-card:hover,
.special-card:hover,
.testimonial-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 63, 29, 0.32);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
}

.feature-card .tag {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-link {
  align-self: flex-start;
  color: var(--terracotta);
  font-family: "Material Symbols Outlined";
  font-size: 1.8rem;
  font-weight: 900;
  transition: transform 180ms var(--ease), color 180ms ease;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.benefit-card,
.credential-card,
.trust-card,
.transport-feature {
  padding: 24px;
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(168, 63, 29, 0.13);
  color: var(--terracotta);
  font-family: "Material Symbols Outlined";
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.local-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.local-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.local-item .num {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.review-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(212, 154, 57, 0.38);
  border-radius: var(--radius-xl);
  background: rgba(255, 238, 211, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.review-logo {
  width: min(260px, 70%);
  margin-bottom: 22px;
}

.traveler {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.traveler img,
.avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  outline: 3px solid rgba(255, 238, 211, 0.72);
}

.stars {
  color: #f0b84f;
  letter-spacing: 0.16em;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid rgba(168, 63, 29, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 238, 211, 0.94), rgba(232, 196, 132, 0.84)),
    radial-gradient(circle at 100% 0%, rgba(207, 106, 61, 0.22), transparent 22rem);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: clamp(76px, 10vw, 128px) 0 clamp(54px, 7vw, 92px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.page-hero .media-frame {
  aspect-ratio: 4 / 3;
}

.tour-card {
  overflow: hidden;
  border: 1px solid rgba(111, 52, 25, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 238, 211, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.tour-card .tour-image {
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
}

.tour-card img {
  transition: transform 700ms var(--ease);
}

.tour-card:hover img {
  transform: scale(1.06);
}

.tour-body {
  padding: 24px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(212, 154, 57, 0.24);
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price {
  color: var(--deep-brown);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

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

.special-card {
  min-height: 430px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.special-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(33, 20, 14, 0.84));
}

.special-card .content {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: #fff8ec;
}

.special-card h3,
.special-card p {
  color: #fff8ec;
}

.city-card {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 238, 211, 0.88);
  box-shadow: var(--shadow);
}

.city-card .media-frame {
  min-height: 520px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.city-content {
  padding: clamp(30px, 5vw, 58px);
}

.included-list,
.footer-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  margin: 12px 0;
  color: var(--ink-muted);
  font-weight: 700;
}

.included-list li::before {
  content: "check_circle";
  margin-right: 10px;
  color: var(--terracotta);
  font-family: "Material Symbols Outlined";
  vertical-align: -5px;
}

.transport-features {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.transport-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #26130c;
  color: #fff8ec;
  box-shadow: var(--shadow);
}

.transport-card .media-frame {
  aspect-ratio: 1.22 / 1;
  border: 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: none;
}

.transport-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
}

.license-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 238, 211, 0.2);
}

.about-hero-original {
  background: #fbf9f6;
  padding: 84px 0 96px;
}

.about-hero-original .page-hero-grid {
  align-items: center;
}

.about-hero-original h1 {
  color: #1b1c1a;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: 0.96;
}

.about-hero-original .eyebrow {
  color: #944226;
}

.about-hero-original .lead {
  color: #55433d;
}

.about-hero-original .media-frame {
  aspect-ratio: 0.88 / 1;
  border-radius: 34px;
  box-shadow: none;
}

.quote-card {
  padding: clamp(30px, 5vw, 56px);
  border-left: 4px solid var(--muted-gold);
  border-radius: var(--radius-lg);
  background: rgba(255, 238, 211, 0.9);
  box-shadow: var(--shadow-soft);
}

.quote-card blockquote {
  margin: 0;
  color: var(--deep-brown);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-style: italic;
  line-height: 1.18;
}

.quote-card cite {
  display: block;
  margin-top: 22px;
  color: var(--terracotta);
  font-style: normal;
  font-weight: 900;
}

.credential-grid,
.testimonials-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.auth-cards {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 26px;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 34px auto 0;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  color: var(--deep-brown);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "expand_more";
  flex: 0 0 auto;
  color: var(--terracotta);
  font-family: "Material Symbols Outlined";
  transition: transform 200ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 26px 24px;
  color: var(--ink-muted);
}

.contact-panel {
  padding: clamp(26px, 5vw, 42px);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--deep-brown);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(80, 48, 33, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 246, 231, 0.92);
  color: var(--charcoal);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(168, 63, 29, 0.55);
  background: #fff3df;
  box-shadow: 0 0 0 4px rgba(168, 63, 29, 0.1);
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 238, 211, 0.9);
  transition: transform 180ms var(--ease), border-color 180ms ease, background-color 180ms ease;
}

.contact-channel .icon {
  margin: 0;
}

.contact-image {
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.site-footer {
  padding: 76px 0 42px;
  background: #231109;
  color: rgba(255, 247, 234, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 0.84fr 1.05fr;
  gap: 42px;
}

.footer-brand img {
  width: min(300px, 100%);
  height: 104px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 242, 223, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.site-footer h4,
.site-footer h3 {
  color: #fff4df;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer-info {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-info a {
  color: rgba(255, 247, 234, 0.78);
}

.footer-list li {
  margin: 12px 0;
}

.footer-list a,
.site-footer .contact-channel {
  color: rgba(255, 247, 234, 0.78);
}

.site-footer .contact-channel {
  background: rgba(255, 238, 211, 0.075);
  border-color: rgba(255, 238, 211, 0.16);
}

.site-footer .icon {
  background: rgba(212, 154, 57, 0.18);
  color: #f0bd5d;
}

.footer-address {
  margin-top: 14px;
  color: rgba(255, 247, 234, 0.72);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 238, 211, 0.16);
  color: rgba(255, 247, 234, 0.52);
  font-size: 0.9rem;
}

.legal-page .site-header {
  position: sticky;
}

.legal-hero {
  padding: clamp(76px, 10vw, 118px) 0 clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 12%, rgba(207, 106, 61, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(255, 238, 211, 0.72), rgba(255, 242, 223, 0.34));
  border-bottom: 1px solid rgba(111, 52, 25, 0.12);
}

.legal-hero .lead {
  max-width: 840px;
  margin-top: 24px;
}

.legal-content {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0 clamp(76px, 10vw, 124px);
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(111, 52, 25, 0.17);
  border-radius: var(--radius-xl);
  background: rgba(255, 238, 211, 0.88);
  box-shadow: var(--shadow-soft);
}

.legal-section + .legal-section {
  margin-top: clamp(34px, 5vw, 50px);
  padding-top: clamp(30px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.legal-section p,
.legal-section li {
  color: var(--ink-muted);
  font-size: max(1rem, 16px);
  line-height: 1.7;
}

.legal-section p {
  margin-top: 18px;
}

.legal-section ul {
  margin: 18px 0 0;
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--terracotta);
  font-weight: 900;
}

.legal-cta {
  margin-top: clamp(38px, 6vw, 58px);
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 242, 223, 0.96), rgba(232, 201, 147, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(207, 106, 61, 0.2), transparent 18rem);
  border: 1px solid rgba(168, 63, 29, 0.22);
}

.legal-cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.legal-cta .btn {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 26px;
    padding: 12px;
    background: rgba(255, 242, 223, 0.97);
    border-color: rgba(111, 52, 25, 0.22);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: center;
  }

  .nav-shell > .btn {
    display: none;
  }

  .intro-grid,
  .story-grid,
  .split-grid,
  .transport-grid,
  .contact-grid,
  .page-hero-grid,
  .auth-grid,
  .city-card,
  .review-panel {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .benefits-grid,
  .credential-grid,
  .testimonials-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-card .media-frame {
    min-height: 360px;
  }

  .section-heading,
  .cta-band {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  body {
    font-size: 15px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    width: 168px;
    height: 52px;
  }

  .hero {
    min-height: calc(92svh - 72px);
    padding: 42px 0 62px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions,
  .price-row,
  .transport-caption {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quote-strip {
    margin-top: -28px;
  }

  .cards-grid,
  .benefits-grid,
  .special-grid,
  .credential-grid,
  .testimonials-grid,
  .trust-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    min-height: 300px;
    border-radius: var(--radius-lg);
  }

  .local-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .special-card {
    min-height: 360px;
  }

  .contact-image {
    min-height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
