@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/Newsreader-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/Newsreader-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/Newsreader-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f2efe8;
  --color-surface: #fbfaf6;
  --color-surface-dark: #18201d;
  --color-surface-mid: #d9d3c5;
  --color-text: #18201d;
  --color-text-inverse: #f8f5ed;
  --color-text-muted: #68706b;
  --color-primary: #294c3d;
  --color-accent: #a87945;
  --color-line: rgba(24, 32, 29, 0.17);
  --color-line-light: rgba(248, 245, 237, 0.18);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --text-display: clamp(3rem, 6.6vw, 6.4rem);
  --text-h1: clamp(2.4rem, 4.6vw, 4.4rem);
  --text-h2: clamp(2rem, 3.4vw, 3.4rem);
  --text-h3: clamp(1.3rem, 2vw, 1.8rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --radius-sm: 6px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 55px rgba(24, 32, 29, 0.12);
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

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

button,
a,
input,
select,
textarea {
  outline: none;
}

:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent);
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: '';
}

.display,
h1,
h2,
h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

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

p:last-child {
  margin-bottom: 0;
}

.section {
  padding: clamp(72px, 9vw, 144px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-head > *,
.story-grid > *,
.tour-card > *,
.route-card > *,
.service-visual > *,
.booking-grid > *,
.detail-grid > *,
.about-grid > *,
.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.section-head h2 {
  max-width: 880px;
  margin: var(--space-2) 0 0;
  font-size: var(--text-h1);
}

.section-head p {
  max-width: 560px;
  color: var(--color-text-muted);
}

.top-ad {
  min-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  border-bottom: 1px solid var(--color-line-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 239, 232, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.83rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--color-primary);
}

.btn-light {
  border-color: var(--color-text-inverse);
  background: var(--color-text-inverse);
  color: var(--color-surface-dark);
}

.btn-light:hover {
  background: transparent;
  color: var(--color-text-inverse);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 113px);
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.hero-grid {
  width: 100%;
  min-height: calc(100vh - 113px);
  margin: 0;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(82px, 8vw, 132px) clamp(44px, 5vw, 82px) clamp(68px, 8vw, 112px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(90deg, rgba(251,250,246,0.98) 0%, rgba(251,250,246,0.96) 84%, rgba(251,250,246,0.88) 100%);
}

.hero-copy::before {
  position: absolute;
  top: 42px;
  right: 0;
  bottom: 42px;
  width: 1px;
  background: rgba(24, 32, 29, 0.14);
  content: '';
}

.hero-copy h1 {
  width: 100%;
  max-width: 10.8ch;
  margin: var(--space-3) 0 0;
  text-align: left;
  font-size: clamp(2.8rem, 5.1vw, 5.3rem);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-copy .lead {
  width: 100%;
  max-width: 34rem;
  margin: var(--space-3) 0 var(--space-4);
  text-align: left;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,32,29,0.18), transparent 30%, rgba(24,32,29,0.08));
  content: '';
  pointer-events: none;
}

.hero-car-label {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  max-width: 300px;
  padding: 18px 20px;
  border-left: 2px solid var(--color-accent);
  background: rgba(24, 32, 29, 0.84);
  color: var(--color-text-inverse);
  backdrop-filter: blur(10px);
}

.hero-car-label strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.hero-secondary {
  width: 230px;
  aspect-ratio: 4/5;
  position: absolute;
  z-index: 3;
  right: 32px;
  top: 32px;
  overflow: hidden;
  border: 6px solid rgba(248,245,237,0.92);
  background: var(--color-surface-mid);
  box-shadow: var(--shadow-soft);
}

.hero-secondary span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  background: rgba(24,32,29,0.82);
  color: var(--color-text-inverse);
  font-size: 0.72rem;
}

.route-trace {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(74%, 430px);
  height: 52px;
  z-index: 4;
}

.route-trace::before {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: '';
}

.route-trace i {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 21px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-surface);
}

.route-trace i:nth-child(1) { left: 0; }
.route-trace i:nth-child(2) { left: 31%; }
.route-trace i:nth-child(3) { left: 67%; }
.route-trace i:nth-child(4) { right: 0; }

.route-trace small {
  position: absolute;
  top: 34px;
  left: 31%;
  color: var(--color-text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stats {
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 190px;
  padding: 34px 28px;
  border-right: 1px solid var(--color-line-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: rgba(248,245,237,0.66);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.story-copy h2 {
  max-width: 850px;
  margin: var(--space-2) 0 var(--space-4);
  font-size: var(--text-h1);
}

.story-copy p {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.story-note {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-3);
}

.story-note strong {
  font-family: 'Newsreader', serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.tours {
  background: var(--color-surface);
}

.tour-list {
  display: grid;
  gap: var(--space-4);
}

.tour-card {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.tour-image {
  min-height: 560px;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.tour-body {
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.tour-body h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.tour-price {
  margin-bottom: var(--space-3);
  font-family: 'Newsreader', serif;
  font-size: 2rem;
}

.tour-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-3) 0;
}

.tour-columns h4,
.service-card h3,
.vehicle-copy h3,
.route-card h3 {
  margin: 0 0 12px;
  font-family: 'Newsreader', serif;
  font-size: var(--text-h3);
  font-weight: 500;
}

.timeline,
.inclusions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li,
.inclusions li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.86rem;
}

.timeline li::before,
.inclusions li::before {
  width: 6px;
  height: 6px;
  position: absolute;
  top: 16px;
  left: 0;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  content: '';
}

.price-note {
  margin-top: var(--space-3);
  padding: 14px 16px;
  border-left: 2px solid var(--color-accent);
  background: rgba(168,121,69,0.08);
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.tour-foot {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.highlights {
  max-width: 570px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.gallery {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.gallery .section-head p {
  color: rgba(248,245,237,0.68);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(248,245,237,0.08);
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(248,245,237,0.5);
  color: var(--color-text-inverse);
  font-size: 0.72rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.route-card {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
}

.route-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.route-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-copy p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.route-code {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-size: 0.74rem;
}

.services {
  background: var(--color-surface-mid);
}

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

.service-card {
  min-height: 330px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(24,32,29,0.08);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card::before {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(168,121,69,0.4);
  border-radius: 50%;
  content: '';
}

.service-no {
  margin-bottom: 66px;
  display: block;
  color: var(--color-accent);
  font-family: 'Newsreader', serif;
  font-size: 2rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.service-visual {
  grid-column: span 3;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
}

.service-visual .media {
  min-height: 460px;
  overflow: hidden;
  background: var(--color-primary);
}

.service-visual .copy {
  padding: clamp(38px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-visual h3 {
  margin: 14px 0 20px;
  font-size: var(--text-h1);
}

.service-visual p {
  color: rgba(248,245,237,0.7);
}

.fleet {
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
}

.fleet .section-head p {
  color: rgba(248,245,237,0.65);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vehicle-card {
  background: #222b27;
  border: 1px solid var(--color-line-light);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,121,69,0.65);
}

.vehicle-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #2d3732;
}

.vehicle-copy {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.vehicle-copy p {
  color: rgba(248,245,237,0.66);
  font-size: 0.9rem;
}

.vehicle-stars {
  margin-bottom: 12px;
  color: #d8b47c;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
}

.vehicle-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-line-light);
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
}

.vehicle-note {
  margin-top: 8px;
  color: rgba(248,245,237,0.53);
  font-size: 0.7rem;
  line-height: 1.45;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.about-copy h2 {
  margin: 14px 0 28px;
  font-size: var(--text-h1);
}

.about-copy p {
  color: var(--color-text-muted);
}

.about-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line);
}

.about-point {
  min-height: 135px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--color-line);
}

.about-point:nth-child(odd) {
  border-right: 1px solid var(--color-line);
  margin-right: 18px;
}

.about-point strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
}

.about-point span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.booking {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
}

.booking-copy h2 {
  margin: 14px 0 24px;
  font-size: var(--text-h1);
}

.booking-copy p {
  color: rgba(248,245,237,0.72);
}

.contact-box {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line-light);
  display: grid;
  gap: 8px;
  color: rgba(248,245,237,0.78);
  font-size: 0.86rem;
  word-break: break-word;
}

.booking-form {
  padding: clamp(28px, 4vw, 52px);
  background: var(--color-surface);
  color: var(--color-text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text);
  padding: 12px 14px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.check {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--color-text-muted);
  font-size: 0.72rem;
}

.site-footer {
  background: #101613;
  color: var(--color-text-inverse);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
  gap: var(--space-5);
  padding-bottom: 54px;
}

.footer-block {
  padding-right: 24px;
}

.footer-title {
  margin-bottom: 14px;
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.footer-block p,
.footer-block a,
.footer-block span {
  color: rgba(248,245,237,0.63);
  font-size: 0.82rem;
  word-break: break-word;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--color-text-inverse);
}

.footer-date {
  display: block;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line-light);
  color: rgba(248,245,237,0.44) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-disclaimer {
  padding: 26px 0;
  border-top: 1px solid var(--color-line-light);
  color: rgba(248,245,237,0.55);
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--color-line-light);
  color: rgba(248,245,237,0.5);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: #101613;
  color: var(--color-text-inverse);
  border: 1px solid var(--color-line-light);
  box-shadow: var(--shadow-soft);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: rgba(248,245,237,0.67);
  font-size: 0.78rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
}

.legal-hero,
.thanks-hero {
  padding: 90px 0 70px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}

.legal-hero h1,
.thanks-hero h1 {
  max-width: 980px;
  margin: 18px 0 20px;
  font-size: var(--text-h1);
}

.legal-hero p,
.thanks-hero p {
  max-width: 800px;
  color: var(--color-text-muted);
}

.legal-content,
.thanks-content {
  padding: 78px 0 120px;
  word-break: break-word;
}

.last-updated {
  margin: -8px 0 18px;
  font-size: 0.86rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  gap: 72px;
}

.legal-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 10px;
  font-size: 0.8rem;
}

.legal-aside a {
  color: var(--color-text-muted);
}

.legal-text section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--color-line);
}

.legal-text h2 {
  font-size: var(--text-h2);
}

.legal-text h3 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.legal-text p {
  color: var(--color-text-muted);
}

.thanks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.thanks-step {
  min-height: 280px;
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}

.thanks-step strong {
  display: block;
  margin-bottom: 42px;
  color: var(--color-accent);
  font-family: 'Newsreader', serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.thanks-step h2 {
  font-size: 1.55rem;
}

.thanks-step p {
  color: var(--color-text-muted);
}

.thanks-info {
  margin-top: 64px;
  padding: 48px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.thanks-info h2 {
  font-size: var(--text-h2);
}

.thanks-info p {
  max-width: 850px;
  color: rgba(248,245,237,0.72);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 220px 1fr auto;
  }

  .nav-links {
    gap: 15px;
  }

  .hero-grid {
    width: 100%;
    padding-left: max(20px, calc((100vw - var(--max)) / 2));
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.open {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    width: 100vw;
    min-height: calc(100vh - 82px);
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--color-bg);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 18px 45px rgba(24, 32, 29, 0.18);
    font-size: 1.15rem;
  }

  .section-head,
  .story-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-copy {
    min-height: 670px;
    padding: 72px 0 84px;
    background: transparent;
  }

  .hero-copy::before {
    content: none;
  }

  .route-trace {
    width: 68%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-line-light);
  }

  .tour-card {
    grid-template-columns: 1fr;
  }

  .tour-image {
    min-height: 460px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-visual {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-block:first-child {
    grid-column: 1 / -1;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .thanks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .top-ad {
    min-height: 30px;
  }

  .nav {
    min-height: 74px;
  }

  .nav-links.open {
    top: 74px;
    min-height: calc(100vh - 74px);
  }

  .hero-copy {
    min-height: auto;
    padding: 64px 0 74px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-secondary {
    width: 145px;
    right: 14px;
    top: 14px;
  }

  .hero-car-label {
    right: 14px;
    bottom: 16px;
    left: 14px;
  }

  .route-trace {
    left: 14px;
    width: 82%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line-light);
  }

  .tour-image {
    min-height: 330px;
  }

  .tour-columns,
  .form-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .about-point:nth-child(odd) {
    border-right: 0;
    margin-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .service-visual {
    grid-template-columns: 1fr;
  }

  .route-image,
  .service-visual .media {
    min-height: 310px;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .service-visual {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .footer-block:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 22px 0;
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner,
  .cookie-banner.show {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

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

.footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-line-light);
}

.footer-links small {
  color: rgba(248,245,237,0.38);
  font-size: 0.63rem;
  white-space: nowrap;
}

@media (min-width: 961px) {
  .tour-card:nth-child(even) .tour-image {
    order: 2;
  }
}

.route-trace.inline-trace {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(100%, 420px);
  margin-top: 24px;
}

.hero-copy .kicker,
.hero-actions {
  align-self: flex-start;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vehicle-card {
  position: relative;
}

.vehicle-card-link {
  position: absolute;
  inset: 0;
  z-index: 6;
}

.vehicle-card-link:focus-visible {
  box-shadow: inset 0 0 0 3px var(--color-accent);
}

.detail-hero {
  padding: clamp(86px, 9vw, 150px) 0 clamp(72px, 8vw, 120px);
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
}

.detail-hero-inner {
  max-width: 1120px;
}

.detail-back {
  display: inline-flex;
  margin-bottom: var(--space-5);
  color: rgba(248,245,237,0.68);
  font-size: var(--text-small);
}

.detail-hero h1 {
  max-width: 930px;
  margin: var(--space-3) 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.detail-hero p {
  max-width: 820px;
  color: rgba(248,245,237,0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.detail-price {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-line-light);
  font-family: 'Newsreader', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.detail-content {
  padding: clamp(72px, 9vw, 140px) 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.detail-main section {
  padding: 0 0 var(--space-6);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-line);
}

.detail-main section:last-child {
  margin-bottom: 0;
}

.detail-main h2 {
  max-width: 760px;
  margin: 10px 0 22px;
  font-size: var(--text-h1);
}

.detail-main p {
  max-width: 790px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.detail-no {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.detail-aside {
  position: sticky;
  top: 120px;
}

.detail-summary {
  padding: 30px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.detail-summary h3 {
  margin: 18px 0 16px;
  font-size: 2rem;
}

.detail-summary p {
  color: rgba(248,245,237,0.72);
  font-size: 0.9rem;
}

.detail-summary .btn {
  margin-top: var(--space-3);
  border-color: var(--color-text-inverse);
  background: var(--color-text-inverse);
  color: var(--color-primary);
}

.detail-aside .price-note {
  margin-top: var(--space-3);
}

.about-detail-hero h1 {
  max-width: 1040px;
}

.about-method {
  padding-top: 0;
}

@media (max-width: 960px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-aside {
    position: static;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .nav {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 1rem;
  }

  .brand span,
  .top-ad,
  .footer-block,
  .contact-box,
  .cookie-banner {
    word-break: break-word;
  }

  .hero-actions,
  .tour-foot,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy h1,
  .hero-copy .lead,
  .legal-hero h1,
  .legal-hero p,
  .thanks-hero h1,
  .thanks-hero p {
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .btn,
  .field button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .booking-form,
  .thanks-info,
  .thanks-step {
    padding: 24px 18px;
  }

  .legal-content,
  .thanks-content {
    padding: 54px 0 72px;
  }
}
