:root {
  --bg: #06100c;
  --bg-deep: #030604;
  --panel: #0d1a13;
  --panel-soft: #12261b;
  --panel-gold: #231f13;
  --text: #fbf5e8;
  --muted: #d9cfbc;
  --green: #42b36f;
  --green-dark: #173d2a;
  --gold: #d8ad45;
  --line: rgba(250, 242, 222, 0.15);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --container: min(100% - 40px, 1160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(66, 179, 111, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #081009;
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 9, 6, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: var(--container);
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-link img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #050705;
}

.brand-copy strong,
.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  flex: 0 0 auto;
  padding: 9px 8px;
  border-radius: 8px;
  color: #eee5d6;
  font-size: 0.84rem;
  transition: background 160ms ease, color 160ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.phone-top {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 8px;
  background: var(--gold);
  color: #081009;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(216, 173, 69, 0.25);
}

.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  background: var(--panel);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 4, 0.9) 0%, rgba(3, 6, 4, 0.68) 43%, rgba(3, 6, 4, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 6, 4, 0.08) 0%, rgba(6, 16, 12, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 76px;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 6.45rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 5vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-lead {
  max-width: 650px;
  color: #f4ecdd;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-green {
  border-color: transparent;
  background: var(--green);
  color: #041107;
}

.button-gold {
  border-color: transparent;
  background: var(--gold);
  color: #100d05;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.section {
  padding: 88px 0;
}

.alt-section {
  background:
    linear-gradient(135deg, rgba(18, 38, 27, 0.92), rgba(8, 17, 12, 0.94)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid,
.reservation-grid,
.faq-grid,
.contact-panel,
.tariffs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-heading {
  max-width: 720px;
}

.narrow {
  max-width: 780px;
  margin-bottom: 34px;
}

.vehicle-cards,
.steps,
.price-cards,
.faq-list {
  display: grid;
  gap: 14px;
}

.vehicle-cards {
  grid-template-columns: 1fr 1fr;
}

.vehicle-card,
.step-card,
.price-card,
details,
.content-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 26, 19, 0.88);
  box-shadow: var(--shadow);
}

.vehicle-card,
.step-card,
.price-card,
.content-panel {
  padding: 24px;
}

.vehicle-card span,
.step-card span,
.price-type {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-photo {
  margin-top: 30px;
}

.vehicle-photo img,
.media-card img,
.photo-tile img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-photo img,
.media-card,
.photo-tile,
.contact-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.vehicle-photo img {
  aspect-ratio: 16 / 7;
}

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

.step-card {
  min-height: 230px;
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.photo-tile {
  position: relative;
  min-height: 310px;
  grid-column: span 5;
}

.photo-wide {
  grid-column: span 7;
}

.photo-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(3, 6, 4, 0.72);
  color: #fff;
  font-weight: 900;
}

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

.price-cards {
  grid-template-columns: 1fr 1fr;
}

.booking-section {
  background:
    linear-gradient(180deg, rgba(6, 16, 12, 0.96), rgba(3, 6, 4, 0.98)),
    var(--bg);
}

.booking-shell {
  display: grid;
  gap: 30px;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.booking-calendar,
.booking-fields {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  box-shadow: var(--shadow);
}

.booking-calendar {
  padding: 18px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-head strong,
.calendar-head span {
  display: block;
}

.calendar-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.calendar-head span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.calendar-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: #b9ae99;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 44px;
  border: 1px solid rgba(250, 242, 222, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: rgba(216, 173, 69, 0.8);
}

.calendar-day.is-muted {
  opacity: 0.35;
  cursor: default;
}

.calendar-day.is-past {
  color: rgba(217, 207, 188, 0.35);
  cursor: not-allowed;
}

.calendar-day.is-selected {
  border-color: transparent;
  background: var(--gold);
  color: #100d05;
}

.booking-fields {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.booking-fields fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-fields legend,
.booking-fields label {
  color: var(--text);
  font-weight: 900;
}

.booking-fields legend {
  margin-bottom: 10px;
}

.booking-fields fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 10px 0;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
}

.booking-fields input[type="radio"] {
  accent-color: var(--gold);
}

.booking-fields > label,
.field-grid label {
  display: grid;
  gap: 7px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-fields input[type="text"],
.booking-fields input[type="tel"],
.booking-fields input[type="number"],
.booking-fields select,
.booking-fields textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 6, 4, 0.64);
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
}

.booking-fields textarea {
  resize: vertical;
}

.booking-fields input::placeholder,
.booking-fields textarea::placeholder {
  color: rgba(217, 207, 188, 0.58);
}

.booking-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(216, 173, 69, 0.36);
  border-radius: 8px;
  background: rgba(216, 173, 69, 0.1);
  color: #f2dfb0;
  font-size: 0.96rem;
}

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

.price-card {
  align-self: stretch;
}

.price-card.highlighted {
  background: linear-gradient(180deg, var(--panel-gold), var(--panel));
}

.price-list {
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(250, 242, 222, 0.18);
}

.price-list dt {
  color: var(--muted);
}

.price-list dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.small-note,
.tariff-note {
  margin: 18px 0 0;
  color: #cfc3aa;
  font-size: 0.95rem;
}

.tariff-note {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.partnership {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.partnership-bg,
.partnership-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.partnership-bg {
  object-fit: cover;
}

.partnership-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 4, 0.86), rgba(3, 6, 4, 0.44)),
    linear-gradient(180deg, rgba(6, 16, 12, 0.18), rgba(6, 16, 12, 0.8));
}

.partnership-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.partnership-content p:last-child {
  color: #f4ecdd;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.sticky-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

details {
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

details p {
  padding-bottom: 18px;
}

.contact-section {
  background: var(--bg-deep);
}

.contact-panel {
  padding: 24px;
  background: linear-gradient(135deg, var(--panel-soft), var(--panel));
}

.contact-panel-single {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.contact-image {
  height: 320px;
}

.site-footer {
  padding: 34px 0 58px;
  border-top: 1px solid var(--line);
  background: #020403;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.footer-grid a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand phone"
      "nav nav";
    gap: 8px 12px;
  }

  .brand-link {
    grid-area: brand;
  }

  .phone-top {
    grid-area: phone;
  }

  .top-nav {
    grid-area: nav;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .split-grid,
  .reverse,
  .reservation-grid,
  .faq-grid,
  .contact-panel,
  .tariffs-layout {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .header-shell {
    min-height: 88px;
  }

  .brand-link {
    min-width: 0;
    gap: 9px;
  }

  .brand-link img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .phone-top {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .top-nav a {
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 6, 4, 0.35) 0%, rgba(3, 6, 4, 0.94) 68%),
      linear-gradient(90deg, rgba(3, 6, 4, 0.88), rgba(3, 6, 4, 0.2));
  }

  .hero-content {
    padding: 124px 0 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

  .section {
    padding: 58px 0;
  }

  .vehicle-cards,
  .steps,
  .price-cards,
  .booking-form,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-wide {
    grid-column: auto;
  }

  .vehicle-photo img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .media-card,
  .photo-tile {
    min-height: 260px;
  }

  .content-panel,
  .price-card,
  .vehicle-card,
  .step-card,
  .booking-fields {
    padding: 20px;
  }

  .booking-calendar {
    padding: 14px;
  }

  .calendar-head {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .calendar-nav {
    width: 40px;
    height: 40px;
  }

  .calendar-day {
    min-height: 40px;
  }

  .field-grid,
  .booking-actions {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .partnership {
    min-height: 560px;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-image {
    height: 230px;
  }

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

@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;
  }
}
