:root {
  --bg: #f4f7f2;
  --bg-strong: #e7efe7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #112728;
  --text: #163132;
  --text-soft: #5c7271;
  --line: rgba(22, 49, 50, 0.1);
  --primary: #0f766e;
  --primary-dark: #0a5852;
  --accent: #dc8b1f;
  --accent-soft: #fff2da;
  --shadow: 0 18px 55px rgba(15, 31, 31, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(220, 139, 31, 0.08), transparent 30%),
    linear-gradient(180deg, #f7faf5 0%, #eef4ed 100%);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.section-heading.on-dark h2,
.section-heading.on-dark p:last-child {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 245, 0.88);
  border-bottom: 1px solid rgba(22, 49, 50, 0.06);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 380px);
  align-items: center;
  gap: 18px;
  min-height: var(--header-height);
}

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

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-logo {
  width: 60px;
  height: 42px;
  flex: 0 0 60px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(22, 49, 50, 0.08);
  box-shadow: 0 10px 24px rgba(17, 30, 30, 0.08);
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 0;
  padding-top: 2px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-weight: 800;
  max-width: 100%;
  min-width: 0;
}

.contact-pill span {
  min-width: 0;
}

.contact-pill span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.social-chip,
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-chip {
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(22, 49, 50, 0.1);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 30, 30, 0.06);
  min-width: 0;
  max-width: 100%;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.social-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-chip:hover,
.social-chip:focus-visible,
.contact-card:hover,
.contact-card:focus-visible,
.contact-row:hover,
.contact-row:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.12);
  border-color: rgba(15, 118, 110, 0.24);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-imo {
  background-image: url("imo.svg");
}

.icon-whatsapp {
  background-image: url("whatsapp.png");
}

.icon-telegram {
  background-image: url("telegram.svg");
}

.icon-max {
  background-image: url("max.svg");
}

.icon-call {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='3' width='18' height='18' rx='9' fill='%23f3f6f7'/%3E%3Cpath d='M9.6 7.7c.2-.2.4-.3.6-.3h.9c.2 0 .4.1.5.3l.9 2c.1.2.1.5 0 .7l-.7 1c.8 1.3 1.9 2.4 3.2 3.2l1-.7c.2-.1.5-.1.7 0l2 1c.2.1.3.3.3.5v.9c0 .2-.1.4-.3.6l-.9.7c-.4.3-.9.4-1.4.3-1.9-.4-3.7-1.4-5.3-3-1.6-1.6-2.6-3.4-3-5.3-.1-.5 0-1 .3-1.4l.7-.8Z' stroke='%235c7271' stroke-width='1.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='5' width='18' height='14' rx='4' fill='%23fff7ef' stroke='%23dc8b1f' stroke-width='1.3'/%3E%3Cpath d='m6.5 8 5.5 4.5L17.5 8' stroke='%23dc8b1f' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #14928a);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(22, 49, 50, 0.12);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 49, 50, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 88px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-orb-left {
  top: 30px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.22), transparent 70%);
}

.hero-orb-right {
  top: 80px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(220, 139, 31, 0.18), transparent 72%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 39, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 39, 40, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card {
  display: flex;
  flex-direction: column;
}

.hero-contact-list {
  margin-top: auto;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 20px;
  color: var(--text-soft);
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-highlights article,
.schedule-panel,
.map-card,
.form-card,
.advantage-card,
.review-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-highlights article {
  padding: 22px;
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  font-size: 24px;
  line-height: 1.05;
}

.hero-highlights span {
  margin-top: 6px;
  color: var(--text-soft);
}

.hero-card {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(17, 39, 40, 0.98), rgba(16, 93, 88, 0.95)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 36%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(13, 38, 39, 0.24);
}

.hero-card-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.quick-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.step-card strong {
  display: block;
  margin-bottom: 6px;
}

.step-card p,
.card-head p,
.map-note p,
.hero-contact-list .contact-card.dark,
.hero-contact-list .contact-card.dark span {
  color: rgba(255, 255, 255, 0.82);
}

.step-card p,
.card-head p,
.map-note p,
.hero-contact-list .contact-card.dark span {
  margin: 0;
}

.hero-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-contact-list a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card.dark {
  justify-content: flex-start;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.schedule-panels,
.route-layout,
.rental-layout,
.contacts-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.schedule-panel,
.map-card,
.form-card {
  padding: 28px;
}

.panel-heading,
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.panel-heading h3,
.card-head h3 {
  margin: 4px 0 0;
  font-size: 30px;
}

.panel-label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.panel-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.trip-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.trip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(247, 250, 245, 0.95);
  border: 1px solid rgba(22, 49, 50, 0.08);
}

.trip-card strong,
.trip-card span {
  display: block;
}

.trip-card strong {
  font-size: 24px;
  line-height: 1;
}

.trip-card span,
.trip-card p {
  color: var(--text-soft);
}

.trip-card p {
  margin: 0;
  max-width: 150px;
  color: var(--text-soft);
}

.trip-book-btn {
  min-height: 46px;
  padding: 0 20px;
}

.route-copy {
  display: grid;
  align-content: start;
}

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

.route-facts article,
.fleet-card,
.benefit-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 49, 50, 0.08);
  box-shadow: 0 12px 30px rgba(15, 31, 31, 0.06);
}

.route-facts span,
.route-facts strong,
.fleet-card strong,
.fleet-card span,
.benefit-card strong,
.benefit-card span {
  display: block;
}

.route-facts span,
.fleet-card span,
.benefit-card span {
  color: var(--text-soft);
}

.route-facts strong {
  margin-top: 8px;
  font-size: 20px;
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-left: 12px;
}

.timeline-head {
  padding: 0 0 8px 28px;
}

.timeline-head h3 {
  margin: 0 0 4px;
  font-size: 28px;
}

.timeline-head p {
  margin: 0;
  color: var(--text-soft);
}

.route-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 11px;
  width: 2px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.5), rgba(15, 118, 110, 0.08));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  margin-top: 6px;
  border-radius: 50%;
  border: 6px solid rgba(15, 118, 110, 0.18);
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.12);
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.timeline-item p {
  margin: 0;
  color: var(--text-soft);
}

.map-frame {
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #e8f1ef, #dae8e5);
}

.map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.map-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(17, 39, 40, 0.96);
}

.map-note strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.rental-copy h2,
.contacts-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.rental-copy > p,
.contacts-lead {
  font-size: 18px;
  color: var(--text-soft);
}

.rental-points p,
.advantage-card p,
.review-card p,
.contact-row span,
.footer-layout p,
.form-note {
  color: var(--text-soft);
}

.fleet-grid,
.benefits-grid,
.advantages-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

.fleet-grid,
.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.fleet-card.accent {
  background: linear-gradient(135deg, rgba(220, 139, 31, 0.18), rgba(255, 242, 218, 0.84));
}

.rental-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

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

.form-grid.single-column {
  grid-template-columns: 1fr;
}

.form-grid label,
.contact-form label {
  display: grid;
  gap: 10px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

label span {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(22, 49, 50, 0.14);
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(15, 118, 110, 0.44);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--text-soft);
}

.benefits-section {
  position: relative;
}

.benefits-banner {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(9, 39, 40, 0.98), rgba(10, 91, 85, 0.96) 56%, rgba(20, 146, 138, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%);
  box-shadow: 0 24px 60px rgba(15, 118, 110, 0.24);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.benefit-card strong,
.benefit-card span {
  color: #fff;
}

.advantages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.advantage-card,
.review-card {
  padding: 24px;
}

.advantage-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.advantage-card p,
.review-card p {
  line-height: 1.65;
}

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

.review-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 244, 0.92));
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 72px;
  line-height: 1;
  color: rgba(15, 118, 110, 0.12);
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
}

.contact-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 49, 50, 0.08);
  box-shadow: 0 12px 30px rgba(15, 31, 31, 0.06);
}

.contact-row span {
  color: var(--text-soft);
}

.contact-row .social-icon {
  margin-bottom: 4px;
}

.contact-row strong {
  font-size: 20px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(22, 49, 50, 0.08);
}

.footer-layout p {
  margin: 0;
  color: var(--text-soft);
}

.footer-brand {
  min-width: 0;
}

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

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

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 6px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-layout,
  .route-layout,
  .rental-layout,
  .contacts-layout,
  .schedule-panels,
  .advantages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    min-width: 0;
    width: 100%;
    grid-column: 1 / -1;
    justify-items: start;
  }

  .header-socials {
    grid-template-columns: repeat(4, minmax(0, max-content));
    width: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 80px;
  }

  .section {
    padding: 72px 0;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
  }

  .contact-pill {
    width: 100%;
    justify-content: center;
  }

  .header-socials {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lead,
  .section-heading p:last-child,
  .rental-copy > p,
  .contacts-lead {
    font-size: 17px;
  }

  .hero-highlights,
  .route-facts,
  .fleet-grid,
  .benefits-grid,
  .contact-stack,
  .hero-contact-list {
    grid-template-columns: 1fr;
  }

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

  .trip-card p {
    max-width: none;
  }

  .panel-heading,
  .card-head,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
    height: 380px;
  }
}

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

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    min-height: auto;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 34px;
    flex-basis: 48px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .hero-section {
    padding: 28px 0 64px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-highlights article {
    padding: 18px;
  }

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

  .hero-card,
  .schedule-panel,
  .map-card,
  .form-card,
  .benefits-banner,
  .advantage-card,
  .review-card {
    padding: 20px;
    border-radius: 24px;
  }

  .btn,
  .trip-book-btn {
    width: 100%;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .contact-row strong {
    font-size: 18px;
  }

  .contact-card.dark {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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