:root {
  --orange: #f26419;
  --orange-dark: #d94d00;
  --orange-deep: #a93700;
  --orange-soft: #fff0e4;
  --orange-mist: #fff8f0;
  --ink: #28313c;
  --muted: #626974;
  --line: #eadfd4;
  --paper: #fffaf4;
  --card: #ffffff;
  --blue: #1f8fc7;
  --green: #1ca65c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 55px rgba(24, 22, 19, .09);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 78px 0; }
.section--soft { background: #fff2e7; }
.section--dark { color: #fff; background: #4a2a1e; }
.section--compact { padding: 48px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-title {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.section-lead { max-width: 760px; margin: 0 0 34px; color: var(--muted); font-size: 18px; }
.section--dark .section-lead { color: #c7c9cd; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(255, 250, 244, .97);
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid #f1d6c3;
  box-shadow: 0 8px 28px rgba(85, 49, 27, .08);
}
.header-row { min-height: 72px; display: flex; align-items: center; gap: 22px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.03em;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  background: url('/assets/logo-mark.svg') center / contain no-repeat;
  filter: drop-shadow(0 7px 12px rgba(169, 55, 0, .14));
}
.brand-mark::before { content: none; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 10px;
  color: #4e5660;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--orange-deep); background: var(--orange-soft); }
.main-nav .nav-visa { color: var(--orange-deep); background: var(--orange-soft); }
.main-nav .nav-visa:hover, .main-nav .nav-visa[aria-current="page"] { color: #fff; background: var(--orange-dark); }
.header-cta { margin-left: 4px; }
.main-nav .header-cta { color: #fff; background: var(--orange-dark); border-color: var(--orange-dark); }
.main-nav .header-cta:hover { color: #fff; background: var(--orange-deep); border-color: var(--orange-deep); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border: 1px solid #efc8ad;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 2px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  color: #fff;
  background: var(--orange-dark);
  border: 1px solid var(--orange-dark);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 100, 26, .22);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--orange-deep); border-color: var(--orange-deep); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(255,100,26,.35); outline-offset: 3px; }
.btn--small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.btn--dark { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--dark:hover { background: #30343a; border-color: #30343a; }
.btn--ghost { color: var(--ink); background: transparent; border-color: #cfc9c1; box-shadow: none; }
.btn--ghost:hover { color: var(--orange-dark); background: var(--orange-soft); border-color: var(--orange); }
.section--dark .btn--ghost { color: #fff; border-color: #565a60; }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--telegram { background: var(--blue); border-color: var(--blue); box-shadow: none; }
.btn--telegram:hover { background: #187cae; border-color: #187cae; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange-dark); }
.breadcrumbs span::before { content: "/"; margin-right: 7px; color: #ada8a2; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 88% 8%, rgba(242,100,25,.24), transparent 31%),
    radial-gradient(circle at 8% 100%, rgba(255,183,98,.22), transparent 28%),
    linear-gradient(145deg, #fffdf9 0%, #fff0e4 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 52px; align-items: center; }
.hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--orange-dark); }
.hero-copy { max-width: 720px; margin: 0 0 26px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid rgba(217,77,0,.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 440px;
  padding: 15px 18px 15px 58px;
  color: var(--ink);
  background: rgba(255,250,244,.94);
  border: 1px solid rgba(217,77,0,.25);
  border-radius: 17px;
  box-shadow: 0 16px 40px rgba(61,35,22,.18);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.hero-note::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 10px;
  font-weight: 800;
}
.photo-offer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255,250,244,.95);
  border: 1px solid rgba(217,77,0,.3);
  border-left: 6px solid var(--orange-dark);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(61,35,22,.22);
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.photo-offer:hover { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(61,35,22,.27); }
.photo-offer-kicker { color: var(--orange-deep); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.photo-offer strong { grid-column: 1; font-size: 28px; line-height: 1.1; letter-spacing: -.035em; }
.photo-offer strong small { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.photo-offer-action { grid-column: 2; grid-row: 1 / 3; align-self: center; max-width: 150px; color: #fff; background: var(--orange-dark); padding: 10px 13px; border-radius: 12px; font-size: 12px; font-weight: 800; line-height: 1.3; text-align: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #3f4349;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.price-panel {
  margin-top: -26px;
  position: relative;
  z-index: 3;
}
.price-panel-inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-cell { min-height: 112px; padding: 22px; border-left: 1px solid var(--line); }
.price-cell:first-child { border-left: 0; background: linear-gradient(145deg, var(--orange-dark), var(--orange)); color: #fff; }
.price-cell:nth-child(2) { background: var(--orange-soft); }
.price-cell small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }
.price-cell:first-child small { color: #bbbfc5; }
.price-cell strong { display: block; font-size: clamp(19px, 2.4vw, 28px); line-height: 1.15; letter-spacing: -.03em; }
.price-cell p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.price-cell:first-child p { color: #c7c9cd; }
.price-cell:first-child p { color: rgba(255,255,255,.86); }
.price-cell:first-child small { color: rgba(255,255,255,.78); }
.price-action { display: inline-block; margin-top: 9px; color: var(--orange-deep); font-size: 12px; font-weight: 800; text-decoration: none; }
.price-cell:first-child .price-action { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 25px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(24,22,19,.045);
}
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px; background: var(--orange-soft); border-radius: 13px; font-size: 22px; }
.card h2, .card h3 { margin: 0 0 9px; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); }
.card a:not(.btn) { color: var(--orange-dark); font-weight: 700; }
.card--visa { background: linear-gradient(145deg, #fff 0%, var(--orange-soft) 100%); border: 2px solid #efb28d; box-shadow: 0 14px 36px rgba(169,55,0,.1); }
.card--visa .card-icon { color: #fff; background: var(--orange-dark); }
.card-action { display: inline-flex; margin-top: 16px; color: var(--orange-deep); font-size: 13px; font-weight: 800; text-decoration: none; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 54px; align-items: start; }
.content h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 43px); line-height: 1.12; letter-spacing: -.035em; }
.content h3 { margin: 30px 0 10px; font-size: 22px; line-height: 1.25; }
.content p { margin: 0 0 18px; color: var(--muted); }
.content ul, .content ol { margin: 0 0 22px; padding-left: 22px; }
.content li { margin-bottom: 9px; }
.content strong { color: var(--ink); }
.check-list { list-style: none; padding: 0 !important; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.route-steps { counter-reset: step; display: grid; gap: 12px; margin: 24px 0 0; }
.route-step { position: relative; min-height: 62px; padding: 15px 16px 15px 58px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.route-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 9px;
  font-weight: 800;
  font-size: 13px;
}
.route-step strong { display: block; margin-bottom: 2px; }
.route-step span { color: var(--muted); font-size: 14px; }

.case {
  padding: 30px;
  background: linear-gradient(145deg, #4a2a1e, #6a3522);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.case-label { display: inline-block; margin-bottom: 14px; padding: 6px 9px; color: #fff; background: var(--orange); border-radius: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.case h2, .case h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.15; }
.case p { margin: 0 0 18px; color: #c9cbd0; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: #474a4f; border-radius: 12px; }
.case-grid div { padding: 14px; background: #553022; }
.case-grid small { display: block; color: #aeb1b6; font-size: 11px; }
.case-grid strong { color: #fff; font-size: 17px; }

.notice { padding: 18px 20px; background: #fff8dc; border: 1px solid #e9d88a; border-radius: 14px; color: #594d17; font-size: 14px; }
.notice strong { color: #2d280e; }
.notice--neutral { background: #f2f5f8; border-color: #dce2e8; color: #4f5862; }

.quote-card { position: sticky; top: 92px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.quote-card h2 { margin: 0 0 8px; font-size: 27px; line-height: 1.18; }
.quote-card > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #40444a; font-size: 12px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7d2cb;
  border-radius: 10px;
  outline: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,100,26,.13); }
.form-actions { margin-top: 14px; display: grid; gap: 9px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.form-status { margin: 10px 0 0 !important; padding: 10px 12px; color: #155c83 !important; background: #eaf7fd; border-radius: 9px; font-size: 12px !important; line-height: 1.45; }

.person { display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: center; margin-top: 24px; }
.person img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 8px 24px rgba(24,22,19,.13); }
.person strong { display: block; font-size: 18px; }
.person span { display: block; color: var(--muted); font-size: 14px; }

.article-wrap { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.article-header { padding: 62px 0 46px; background: linear-gradient(180deg, #fff 0%, #fff8f2 100%); }
.article-header h1 { margin: 0 0 18px; font-size: clamp(38px, 6vw, 62px); line-height: 1.04; letter-spacing: -.05em; }
.article-header .hero-copy { margin-bottom: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 13px; }
.article-body { padding: 58px 0 76px; }
.article-body h2 { margin: 52px 0 16px; font-size: clamp(28px, 4vw, 39px); line-height: 1.15; letter-spacing: -.035em; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 32px 0 10px; font-size: 22px; line-height: 1.25; }
.article-body p, .article-body li { color: #444950; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 24px; }
.article-body li { margin-bottom: 9px; }
.article-body a { color: #bd3e00; text-underline-offset: 3px; }
.article-body .notice { margin: 24px 0; }
.article-toc { margin: 28px 0 4px; padding: 22px; background: #f7f4ef; border: 1px solid var(--line); border-radius: var(--radius); }
.article-toc strong { display: block; margin-bottom: 8px; }
.article-toc ol { margin: 0; }

.faq { display: grid; gap: 10px; max-width: 900px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.faq summary { position: relative; padding: 18px 50px 18px 20px; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--orange-dark); font-size: 26px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 18px; color: var(--muted); }
.faq-answer p { margin: 0; }

.cta-band { padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: linear-gradient(135deg, var(--orange-dark), var(--orange)); color: #fff; border-radius: 24px; box-shadow: 0 16px 42px rgba(169,55,0,.18); }
.cta-band h2 { max-width: 680px; margin: 0 0 8px; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.cta-band p { margin: 0; color: rgba(255,255,255,.86); }
.cta-band .btn { color: var(--ink); background: #fff; border-color: #fff; box-shadow: none; }
.cta-band .btn:hover { background: #fff3ec; }

.service-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-link { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; }
.service-link:hover { border-color: var(--orange); }
.service-link strong { display: block; margin-bottom: 4px; line-height: 1.25; }
.service-link span { color: var(--muted); font-size: 12px; }

.service-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.service-tile {
  grid-column: span 5;
  min-height: 280px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(73,45,27,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-tile:hover { transform: translateY(-3px); border-color: #e8b08c; box-shadow: 0 18px 42px rgba(73,45,27,.1); }
.service-tile--featured { grid-column: span 7; color: #fff; background: linear-gradient(145deg, #9e3500, var(--orange)); border-color: transparent; }
.service-tile--wide { grid-column: span 7; background: linear-gradient(145deg, #fff 0%, #fff4e9 100%); }
.service-tile--tours { grid-column: span 7; color: #fff; background: linear-gradient(145deg, #355747, #4d7762); border-color: transparent; }
.service-tile--sup { grid-column: span 5; background: linear-gradient(145deg, #f4fbff, #e8f5fb); border-color: #cbe4ef; }
.service-tile-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; background: var(--orange-soft); border-radius: 14px; font-size: 24px; }
.service-tile-top .service-icon { margin-bottom: 0; }
.service-tag { padding: 6px 9px; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-size: 11px; font-weight: 700; }
.service-tile h2 { margin: 20px 0 10px; font-size: clamp(22px, 2.5vw, 31px); line-height: 1.15; letter-spacing: -.035em; }
.service-tile > .service-icon + h2 { margin-top: 0; }
.service-tile h2 a { text-decoration: none; }
.service-tile p { margin: 0 0 18px; color: var(--muted); }
.service-tile--featured p, .service-tile--tours p { color: rgba(255,255,255,.82); }
.service-price { margin: auto 0 0; padding-top: 14px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 10px; }
.service-price strong { font-size: 21px; line-height: 1.2; }
.service-price span { color: var(--muted); font-size: 12px; }
.service-tile--featured .service-price span, .service-tile--tours .service-price span { color: rgba(255,255,255,.72); }
.tile-action { display: inline-flex; align-self: flex-start; margin-top: 17px; color: var(--orange-deep); font-size: 13px; font-weight: 800; text-decoration: none; }
.service-tile--featured .tile-action, .service-tile--tours .tile-action { color: #fff; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card { position: relative; min-height: 210px; padding: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.process-card > span { display: block; margin-bottom: 32px; color: var(--orange-dark); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.process-card h3 { margin: 0 0 8px; font-size: 21px; }
.process-card p { margin: 0; color: var(--muted); }
.process-card::after { content: ""; position: absolute; right: -28px; top: -28px; width: 96px; height: 96px; background: var(--orange-soft); border-radius: 50%; }

.case-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.case--light { color: var(--ink); background: linear-gradient(145deg, #fff 0%, #fff3e9 100%); border: 1px solid #efd8c7; box-shadow: 0 12px 38px rgba(73,45,27,.08); }
.case--light p { color: var(--muted); }
.case--light .case-grid { background: #ead8ca; }
.case--light .case-grid div { background: rgba(255,255,255,.72); }
.case--light .case-grid small { color: var(--muted); }
.case--light .case-grid strong { color: var(--ink); }
.split--center { align-items: center; }
.profile-photo { max-width: 420px; margin-inline: auto; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.profile-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 20px; }

.booking-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.booking-card-label { display: inline-flex; margin-bottom: 14px; padding: 6px 9px; color: var(--orange-deep); background: var(--orange-soft); border-radius: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.booking-card h2 { margin: 0 0 18px; font-size: 29px; line-height: 1.15; }
.booking-card > p { color: var(--muted); }
.booking-card .btn { width: 100%; margin-top: 5px; }
.microcopy { color: var(--muted) !important; font-size: 12px !important; line-height: 1.5; }
.booking-card .microcopy { margin: 12px 0 0; text-align: center; }

.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.compare-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 10px 32px rgba(73,45,27,.055); }
.compare-card--accent { background: linear-gradient(145deg, #fff, #fff0e4); border-color: #efb28d; }
.compare-card h3 { margin: 0 0 18px; font-size: 28px; line-height: 1.15; }

.review-card { margin: 0; padding: 34px; color: #fff; background: linear-gradient(145deg, #3f281f, #6c3b27); border-radius: 24px; box-shadow: var(--shadow); }
.review-card::before { content: "“"; display: block; height: 42px; color: var(--orange); font-family: Georgia, serif; font-size: 72px; line-height: .8; }
.review-card blockquote { margin: 12px 0 22px; font-size: clamp(21px, 3vw, 28px); line-height: 1.42; letter-spacing: -.02em; }
.review-card figcaption { color: #fff; font-size: 13px; font-weight: 700; }
.review-card figcaption span { color: #cdb6aa; font-weight: 400; }
.home-review { max-width: 860px; margin: 18px auto 0; }

.vehicle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.vehicle-card { min-height: 245px; padding: 26px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.vehicle-card--business { color: #fff; background: linear-gradient(145deg, #28313c, #46515f); border-color: transparent; }
.vehicle-card > span { display: block; margin-bottom: 28px; font-size: 28px; }
.vehicle-card h3 { margin: 0 0 9px; font-size: 22px; }
.vehicle-card p { margin: 0 0 18px; color: var(--muted); }
.vehicle-card small { margin-top: auto; color: var(--orange-deep); font-weight: 700; }
.vehicle-card--business p { color: #d5dae0; }
.vehicle-card--business small { color: #ffb27f; }

.adventure-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.adventure-card { min-height: 330px; padding: 27px; display: flex; flex-direction: column; color: #fff; background: linear-gradient(145deg, #9c3a0b, var(--orange)); border-radius: 22px; box-shadow: 0 12px 34px rgba(73,45,27,.1); }
.adventure-card--green { background: linear-gradient(145deg, #315746, #4c7a64); }
.adventure-card--blue { background: linear-gradient(145deg, #176987, #2997bd); }
.adventure-card--deep { background: linear-gradient(145deg, #174358, #246c87); }
.adventure-card--rock { background: linear-gradient(145deg, #3f4650, #6a7078); }
.adventure-card--sun { color: var(--ink); background: linear-gradient(145deg, #fff0cf, #ffc875); }
.adventure-card > span { display: block; margin-bottom: 30px; font-size: 32px; }
.adventure-card h2 { margin: 0 0 11px; font-size: 24px; line-height: 1.2; }
.adventure-card p { margin: 0 0 20px; color: rgba(255,255,255,.82); }
.adventure-card small { margin-top: auto; color: rgba(255,255,255,.82); font-weight: 700; }
.adventure-card--sun p, .adventure-card--sun small { color: #694716; }

.tour-photo-section { padding-top: 10px; }
.tour-gallery { display: grid; grid-template-columns: 1.35fr .9fr .7fr; gap: 14px; }
.tour-photo { position: relative; min-height: 360px; margin: 0; overflow: hidden; background: #eee; border-radius: 22px; box-shadow: 0 12px 34px rgba(73,45,27,.1); }
.tour-photo img { width: 100%; height: 100%; object-fit: cover; }
.tour-photo figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 14px 16px; color: #fff; background: rgba(37,31,27,.76); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; backdrop-filter: blur(10px); }
.tour-photo figcaption strong, .tour-photo figcaption span { display: block; }
.tour-photo figcaption span { color: rgba(255,255,255,.76); font-size: 11px; }
.tour-photo--portrait img { object-position: center; }
.photo-credit { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: right; }

.van-route { position: absolute; left: 7%; right: 7%; top: -23px; height: 2px; border-top: 2px dashed rgba(217,77,0,.32); }
.van-route span { position: absolute; left: 0; top: -18px; font-size: 24px; animation: van-drive 7s ease-in-out infinite alternate; }
@keyframes van-drive { to { transform: translateX(clamp(180px, 28vw, 430px)); } }

.reveal-ready .reveal { opacity: 0; transform: translateY(16px); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

.cookie-notice { position: fixed; left: 18px; bottom: 18px; z-index: 120; width: min(440px, calc(100% - 36px)); padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 55px rgba(35,25,18,.2); }
.cookie-notice p { margin: 0 0 12px; color: var(--muted); font-size: 12px; }
.cookie-notice a { color: var(--orange-deep); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions .btn { min-height: 38px; padding: 8px 12px; font-size: 12px; }

.site-footer { padding: 48px 0 30px; color: #f8e9df; background: #40251c; }
.site-footer .brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 42px; padding-bottom: 34px; }
.footer-title { margin: 0 0 12px; color: #fff; font-size: 14px; }
.site-footer p { margin: 0; color: #d4b9aa; font-size: 13px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #f0dcd0; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid #303339; }
.footer-bottom p { font-size: 12px; }

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 48px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.23);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .header-cta { margin-left: 0; }
  .main-nav {
    position: fixed;
    inset: 77px 0 auto;
    max-height: calc(100vh - 77px);
    overflow: auto;
    margin: 0;
    padding: 16px 20px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: #fffaf4;
    border-top: 1px solid #efd5c3;
    box-shadow: 0 18px 36px rgba(61,35,22,.15);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 13px 12px; font-size: 15px; }
  .main-nav .btn { margin-top: 8px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-media { max-width: 720px; }
  .price-panel-inner { grid-template-columns: repeat(2, 1fr); }
  .price-cell:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .price-cell:nth-child(4) { border-top: 1px solid var(--line); }
  .cards--4, .service-links { grid-template-columns: repeat(2, 1fr); }
  .service-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tile, .service-tile--featured, .service-tile--wide, .service-tile--tours, .service-tile--sup { grid-column: auto; }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .adventure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-photo--wide { grid-column: 1 / -1; }
  .quote-card { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 58px 0; }
  .hero { padding: 46px 0 48px; }
  .hero h1 { font-size: clamp(37px, 11vw, 54px); }
  .hero-copy { font-size: 17px; }
  .hero-note { position: static; max-width: none; margin-top: 10px; }
  .photo-offer { position: relative; left: auto; right: auto; bottom: auto; width: calc(100% - 20px); margin: -18px auto 0; grid-template-columns: 1fr; gap: 5px; }
  .photo-offer-action { grid-column: 1; grid-row: auto; max-width: none; margin-top: 8px; }
  .price-panel { margin-top: 0; padding-top: 16px; }
  .price-panel-inner, .cards, .cards--2, .cards--4, .service-links, .footer-grid { grid-template-columns: 1fr; }
  .service-bento, .process-grid, .case-list, .compare-grid, .vehicle-grid, .adventure-grid, .tour-gallery { grid-template-columns: 1fr; }
  .service-tile { min-height: 0; }
  .process-card, .vehicle-card, .adventure-card { min-height: 0; }
  .tour-photo, .tour-photo--wide { min-height: 340px; grid-column: auto; }
  .tour-photo--portrait { min-height: 460px; }
  .price-cell { min-height: 0; border-left: 0; border-top: 1px solid var(--line); }
  .price-cell:first-child { border-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-band { padding: 28px 22px; align-items: stretch; flex-direction: column; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 12px; bottom: 12px; }
  .article-wrap { width: min(calc(100% - 28px), 860px); }
  .article-header { padding: 44px 0 34px; }
  .article-body { padding: 44px 0 60px; }
  .person { grid-template-columns: 70px 1fr; gap: 14px; }
  .person img { width: 70px; height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}
