:root {
  --color-primary: #1274c0;
  --color-primary-dark: #0b2447;
  --color-primary-soft: #e9f4ff;
  --color-white: #ffffff;
  --color-surface: #f7fbff;
  --color-surface-strong: #edf3f9;
  --color-text: #10213a;
  --color-text-muted: #55657d;
  --color-border: rgba(16, 33, 58, 0.12);
  --shadow-soft: 0 24px 60px rgba(11, 36, 71, 0.12);
  --shadow-card: 0 16px 40px rgba(11, 36, 71, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
  --font-display: "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(18, 116, 192, 0.18), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 42%, #f4f8fc 100%);
  line-height: 1.6;
}

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

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

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

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

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

.section,
.page-main {
  padding: 0 0 5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  display: block;
  max-width: 780px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-heading {
  width: 100%;
}

.eyebrow-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.eyebrow-feature::before,
.eyebrow-feature::after {
  content: "";
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(18, 116, 192, 0) 0%,
    rgba(18, 116, 192, 0.38) 30%,
    rgba(11, 36, 71, 0.95) 100%
  );
  box-shadow: 0 0 14px rgba(18, 116, 192, 0.16);
}

.eyebrow-feature::after {
  background: linear-gradient(
    90deg,
    rgba(11, 36, 71, 0.95) 0%,
    rgba(18, 116, 192, 0.38) 70%,
    rgba(18, 116, 192, 0) 100%
  );
}

.section-display {
  margin: 0;
  font-family: "Arial Black", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 900;
  color: var(--color-primary-dark);
}

.feature-heading-left .eyebrow-feature {
  justify-content: flex-start;
  text-align: left;
}

.feature-heading-left .eyebrow-feature::before {
  display: none;
}

.feature-heading-left .eyebrow-feature::after {
  max-width: 140px;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.button-primary {
  background: linear-gradient(135deg, #0f5fa0 0%, #1274c0 100%);
  color: var(--color-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #081a34 0%, #0f5fa0 100%);
  color: var(--color-white);
}

.button-secondary {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: rgba(11, 36, 71, 0.15);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #081a34;
  color: var(--color-white);
  border-color: #081a34;
}

.button-ghost {
  background: rgba(18, 116, 192, 0.08);
  color: var(--color-primary-dark);
  border-color: rgba(18, 116, 192, 0.14);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(11, 36, 71, 0.16);
  color: #081a34;
  border-color: rgba(11, 36, 71, 0.32);
}

.button-block {
  width: 100%;
}

.text-link {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 36, 71, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand img {
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--color-primary-dark);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(11, 36, 71, 0.14);
  border-radius: 16px;
}

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

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split-grid,
.reservation-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
}

.compact-hero {
  padding: 3.6rem 0 2rem;
}

.hero-video {
  position: relative;
  min-height: min(78svh, 760px);
  display: flex;
  align-items: center;
  padding: 3rem 0;
  overflow: hidden;
}

.hero-video-media,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-media video,
.hero-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.88) 0%, rgba(7, 20, 38, 0.68) 38%, rgba(7, 20, 38, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.18) 0%, rgba(7, 20, 38, 0.46) 100%);
}

.hero-video .container {
  position: relative;
  z-index: 1;
}

.hero-video .hero-copy,
.hero-video .hero-copy p,
.hero-video .hero-copy .eyebrow,
.hero-video .hero-points li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-video .hero-copy h1 {
  color: var(--color-white);
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  font-family: "Arial Black", "Avenir Next Condensed", "Segoe UI", sans-serif;
}

.hero-video .hero-copy .lead {
  max-width: 54ch;
}

.hero-video .hero-points li::before {
  background: #8cd0ff;
}

.hero-video .booking-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  padding-right: 2rem;
}

.booking-card {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-actions,
.social-links,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points,
.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-points li,
.info-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--color-text);
}

.hero-points li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.booking-card,
.info-panel,
.contact-card,
.elevated,
.reservation-panel,
.filters-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.booking-card,
.info-panel,
.reservation-panel {
  padding: 1.6rem;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 1rem;
}

.booking-form label,
.contact-form label,
.filter-field {
  display: grid;
  gap: 0.45rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(18, 116, 192, 0.2);
  border-color: rgba(18, 116, 192, 0.55);
}

.date-field {
  position: relative;
}

.date-trigger {
  position: relative;
  appearance: none;
  cursor: pointer;
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.96));
  color: var(--color-text-muted);
  text-align: left;
  font-weight: 500;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.date-trigger::after {
  content: "Takvim";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(18, 116, 192, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  pointer-events: none;
}

.date-field.is-active .date-trigger,
.date-trigger:hover,
.date-trigger:focus-visible {
  border-color: rgba(18, 116, 192, 0.45);
  box-shadow: 0 14px 28px rgba(18, 116, 192, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.date-trigger.has-value {
  color: var(--color-text);
  font-weight: 700;
}

.calendar-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(11, 36, 71, 0.28);
  backdrop-filter: blur(8px);
}

.calendar-overlay[hidden] {
  display: none;
}

.calendar-popover {
  position: relative;
  z-index: 71;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 30px 70px rgba(11, 36, 71, 0.18);
  animation: fadeUp 0.2s ease;
}

.calendar-popover[hidden] {
  display: none;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calendar-title {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(18, 116, 192, 0.08);
  color: var(--color-primary-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

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

.calendar-weekdays {
  margin-bottom: 0.6rem;
}

.calendar-weekdays span {
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  background: rgba(18, 116, 192, 0.1);
  color: var(--color-primary-dark);
  outline: none;
}

.calendar-day.is-muted {
  color: rgba(85, 101, 125, 0.42);
}

.calendar-day.is-selected {
  background: linear-gradient(135deg, #0f5fa0 0%, #1274c0 100%);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(18, 116, 192, 0.24);
}

.calendar-day.is-today {
  border: 1px solid rgba(18, 116, 192, 0.22);
}

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

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}

.form-feedback.is-success {
  color: #047857;
}

.form-feedback.is-error {
  color: #b42318;
}

.trust-strip {
  padding-bottom: 3rem;
}

.trust-grid,
.metrics-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article,
.metrics-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 36, 71, 0.08);
}

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

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

.fleet-grid {
  min-height: 220px;
}

.section-link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.85rem 1.1rem 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(11, 36, 71, 0.92);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.section-link-button:hover,
.section-link-button:focus-visible {
  transform: translateY(-2px);
  background: #1274c0;
  box-shadow: 0 22px 40px rgba(18, 116, 192, 0.24);
  outline: none;
}

.section-link-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1rem;
}

.vehicle-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 252, 0.95));
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(11, 36, 71, 0.14);
}

.vehicle-visual {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(18, 116, 192, 0.16), rgba(11, 36, 71, 0.04)),
    linear-gradient(180deg, #f8fbff 0%, #eaf3fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.vehicle-visual img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vehicle-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.vehicle-details {
  display: grid;
  gap: 0.5rem;
  color: var(--color-text);
}

.vehicle-details p {
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.benefit-list article {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 36, 71, 0.08);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(30, 158, 245, 0.22), transparent 24%),
    linear-gradient(180deg, #0b2447 0%, #0f315f 100%);
  color: var(--color-white);
}

.section-dark p,
.section-dark span,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.metrics-grid article {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.metrics-grid strong {
  display: block;
  font-size: 2.6rem;
  color: var(--color-white);
}

.contact-card {
  padding: 1.4rem;
}

.contact-stack {
  display: grid;
  gap: 1.2rem;
}

.map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

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

.section-muted {
  background: rgba(18, 116, 192, 0.05);
}

.prose-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filters-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 36, 71, 0.08);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 3.75rem 1.25rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

.site-footer {
  position: relative;
  padding: 3.4rem 0 6.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 158, 245, 0.28), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(78, 181, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #08162b 0%, #0b1d35 55%, #0f2748 100%);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.site-footer::before {
  top: -90px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(23, 119, 194, 0.22);
}

.site-footer::after {
  right: 5%;
  bottom: -110px;
  width: 320px;
  height: 320px;
  background: rgba(129, 210, 255, 0.12);
}

.footer-creative {
  position: relative;
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
  padding: 2.2rem 2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(8, 22, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 80px rgba(4, 10, 20, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.footer-creative::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 50%;
  width: min(180px, 40%);
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 119, 194, 0), rgba(129, 210, 255, 0.95), rgba(23, 119, 194, 0));
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  max-width: 640px;
}

.footer-kicker {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(129, 210, 255, 0.82);
}

.footer-logo {
  width: clamp(176px, 22vw, 230px);
  height: auto;
}

.footer-tagline {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-actions,
.footer-mini-nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.footer-pill:hover,
.footer-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  outline: none;
}

.footer-pill-primary {
  background: linear-gradient(135deg, #1777c2 0%, #0e4f8e 100%);
  border-color: rgba(129, 210, 255, 0.32);
}

.footer-pill-primary:hover,
.footer-pill-primary:focus-visible {
  background: linear-gradient(135deg, #1566a7 0%, #0b4276 100%);
}

.footer-mini-nav a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.footer-mini-nav a:hover,
.footer-mini-nav a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(129, 210, 255, 0.12);
  border-color: rgba(129, 210, 255, 0.2);
  color: var(--color-white);
  outline: none;
}

.site-footer p,
.site-footer a,
.site-footer h2 {
  color: inherit;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.mobile-sticky-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(11, 36, 71, 0.16);
}

.mobile-sticky-bar .button {
  flex: 1;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  animation: pulse 1.15s ease-in-out infinite alternate;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.not-found-card {
  max-width: 720px;
  text-align: center;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

@keyframes pulse {
  from {
    transform: scale(0.92);
    box-shadow: 0 0 0 rgba(18, 116, 192, 0.2);
  }
  to {
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(18, 116, 192, 0.22);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

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

  .hero-grid,
  .split-grid,
  .reservation-layout,
  .prose-layout,
  .filters-panel,
  .trust-grid,
  .cards-grid,
  .footer-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .feature-heading-left .eyebrow-feature {
    justify-content: center;
    text-align: center;
  }

  .feature-heading-left .eyebrow-feature::before {
    display: block;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
  }

  body {
    padding-bottom: 6.5rem;
  }

  .section,
  .page-main {
    padding-bottom: 4rem;
  }

  .hero,
  .page-hero {
    padding-top: 3.8rem;
  }

  .hero-video {
    min-height: 540px;
    padding-top: 3.25rem;
    padding-bottom: 2.25rem;
  }

  .form-row,
  .listing-meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  .hero-actions,
  .social-links,
  .cta-stack {
    flex-direction: column;
  }

  .button,
  .site-nav .button {
    width: 100%;
  }
}

.redesign-page {
  background:
    radial-gradient(circle at top left, rgba(18, 116, 192, 0.1), transparent 24%),
    linear-gradient(180deg, #f3f8fd 0%, #ffffff 34%, #f5f9fc 100%);
}

.redesign-page .site-header {
  background: rgba(246, 250, 254, 0.9);
  border-bottom-color: rgba(11, 36, 71, 0.08);
}

.redesign-main {
  padding-bottom: 0;
}

.signature-kicker {
  margin: 0 0 1rem;
  color: #1274c0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signature-hero {
  position: relative;
  min-height: min(90svh, 880px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  color: var(--color-white);
}

.signature-hero-media,
.signature-hero-overlay {
  position: absolute;
  inset: 0;
}

.signature-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-hero-overlay {
  background:
    linear-gradient(120deg, rgba(4, 13, 28, 0.92) 0%, rgba(4, 13, 28, 0.72) 38%, rgba(4, 13, 28, 0.52) 100%),
    radial-gradient(circle at 80% 20%, rgba(92, 187, 255, 0.22), transparent 26%);
}

.signature-hero-grid,
.page-signature-grid,
.editorial-split,
.faq-layout,
.location-showcase,
.story-grid,
.territorial-grid,
.contact-showcase,
.contact-form-band,
.reservation-redesign-grid {
  display: grid;
  gap: 2.2rem;
}

.signature-hero .container,
.page-signature-hero .container {
  position: relative;
  z-index: 1;
}

.signature-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
}

.signature-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 1;
  color: var(--color-white);
}

.signature-lead {
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-inline-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-inline-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.hero-inline-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #8cd0ff;
}

.signature-form-shell,
.reservation-form-shell,
.contact-band-form,
.contact-direct,
.story-quote,
.territorial-list,
.location-map-shell,
.contact-map-shell {
  border-radius: 30px;
}

.signature-form-shell,
.reservation-form-shell,
.contact-form-band,
.contact-direct,
.territorial-list,
.location-address,
.story-quote,
.reservation-side-copy {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 24px 60px rgba(11, 36, 71, 0.1);
}

.signature-form-shell {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary-dark);
}

.signature-form-intro {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 36, 71, 0.08);
  margin-bottom: 1rem;
}

.signature-form-intro h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--color-primary-dark);
}

.signature-form-intro p {
  margin: 0;
  color: var(--color-text-muted);
}

.brand-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
  padding-bottom: 1rem;
}

.brand-ribbon-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 20px 50px rgba(11, 36, 71, 0.08);
}

.brand-ribbon-grid div {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 100%;
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(11, 36, 71, 0.08);
}

.brand-ribbon-item {
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.brand-ribbon-media {
  width: 144px;
  height: 144px;
  object-fit: contain;
}

.brand-ribbon-grid div:last-child {
  border-right: 0;
}

.brand-ribbon-grid strong {
  display: block;
  min-height: 2.6em;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.12;
  color: var(--color-primary-dark);
  letter-spacing: -0.03em;
}

.brand-ribbon-grid span {
  display: block;
  max-width: 25ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.brand-ribbon-grid strong span {
  color: inherit;
}

.fleet-page .filters-panel,
.fleet-page .filter-field input,
.fleet-page .filter-field select,
.fleet-page .vehicle-card,
.fleet-page .vehicle-visual,
.fleet-page .vehicle-meta span,
.fleet-page .empty-state,
.fleet-page .button,
.fleet-page .nav-toggle,
.fleet-page .footer-creative,
.fleet-page .footer-pill,
.fleet-page .footer-mini-nav a,
.fleet-page .footer-socials a {
  border-radius: 0;
}

.editorial-section {
  padding: 5rem 0;
}

.editorial-light {
  background:
    linear-gradient(180deg, rgba(18, 116, 192, 0.04), rgba(18, 116, 192, 0.02)),
    #f7fbff;
}

.editorial-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.redesign-home .editorial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.redesign-home .editorial-head > div {
  flex: 1;
  max-width: 1100px;
}

.redesign-home .editorial-head h2 {
  max-width: none;
}

.redesign-home .section-link-button {
  flex: 0 0 auto;
  margin-left: auto;
}

.editorial-head h2,
.editorial-copy h2,
.process-band-intro h2,
.faq-intro h2,
.location-copy h2,
.story-copy h2,
.contact-direct h2,
.contact-form-copy h2,
.reservation-side-copy h2,
.territorial-grid h2,
.cta-banner-shell h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.08;
  color: var(--color-primary-dark);
}

.editorial-copy,
.faq-intro,
.location-copy,
.story-copy,
.contact-form-copy,
.reservation-side-copy {
  max-width: 640px;
}

.editorial-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.editorial-columns,
.principle-grid,
.process-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-columns article,
.principle-grid article,
.process-steps article {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(11, 36, 71, 0.14);
}

.editorial-columns span,
.principle-grid span,
.process-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(18, 116, 192, 0.1);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.process-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.process-step-icon img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.midnight-band {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(92, 187, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #0a1a31 0%, #102849 100%);
}

.process-band {
  display: grid;
  gap: 2rem;
}

.process-band-intro {
  max-width: 960px;
}

.process-band-intro h2,
.midnight-band h3,
.midnight-band p,
.midnight-band .signature-kicker {
  color: var(--color-white);
}

.midnight-band .process-band-intro h2 {
  max-width: none;
}

.midnight-band p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.location-showcase,
.contact-showcase,
.reservation-redesign-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.location-map-shell,
.contact-map-shell {
  overflow: hidden;
  min-height: 520px;
  background: #dfeaf5;
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 24px 60px rgba(11, 36, 71, 0.1);
}

.location-map-shell iframe,
.contact-map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.location-address {
  display: grid;
  gap: 0.45rem;
  padding: 1.4rem;
  margin: 1.5rem 0;
}

.location-address strong,
.contact-direct-list a,
.territorial-list strong {
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.location-address span,
.contact-direct-list p,
.territorial-list p {
  margin: 0;
  color: var(--color-text-muted);
}

.page-signature-hero {
  padding: 4.8rem 0 2.4rem;
}

.page-signature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
}

.page-signature-grid h1 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.page-hero-side {
  margin: 0;
  font-size: 1.08rem;
}

.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: stretch;
}

.story-quote {
  margin: 0;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(18, 116, 192, 0.08), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.story-quote p {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.35;
  font-weight: 700;
}

.principle-grid article {
  padding-right: 1rem;
}

.single-head h2 {
  max-width: 12ch;
}

.territorial-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.territorial-list {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.territorial-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 36, 71, 0.08);
}

.territorial-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cta-banner {
  padding: 0 0 5rem;
}

.cta-banner-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 24, 43, 0.98), rgba(15, 61, 110, 0.95)),
    #0f2748;
}

.cta-banner-shell h2,
.cta-banner-shell p,
.cta-banner-shell .signature-kicker {
  color: var(--color-white);
}

.hero-quick-actions,
.reservation-aside-links {
  display: grid;
  gap: 0.8rem;
}

.contact-showcase {
  align-items: stretch;
}

.contact-direct {
  padding: 2rem;
}

.contact-direct-list {
  display: grid;
  gap: 1.4rem;
}

.contact-direct-list span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  padding: 2rem;
}

.contact-band-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reservation-hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.reservation-hero-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-text);
}

.reservation-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.reservation-redesign-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.reservation-side-copy,
.reservation-form-shell {
  padding: 2rem;
}

.reservation-form-panel {
  gap: 1.1rem;
}

.signature-footer {
  padding: 0.45rem 0;
  background: #08162b;
  display: grid;
  justify-items: center;
}

.signature-footer-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-bottom: 0;
  width: auto;
}

.signature-footer-brand {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}

.signature-footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 0;
}

.signature-footer-brand p,
.signature-footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.signature-footer-brand .signature-kicker,
.signature-footer-brand p {
  margin: 0;
}

.signature-footer-brand .signature-kicker {
  display: none;
}

.signature-footer-brand p {
  font-size: 0.92rem;
}

.signature-footer-bottom {
  padding-top: 0.35rem;
  width: auto;
}

.signature-footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 1200px) {
  .signature-hero-grid,
  .editorial-split,
  .faq-layout,
  .location-showcase,
  .story-grid,
  .territorial-grid,
  .contact-showcase,
  .contact-form-band,
  .reservation-redesign-grid,
  .page-signature-grid {
    grid-template-columns: 1fr;
  }

  .editorial-columns,
  .principle-grid,
  .process-steps,
  .brand-ribbon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-ribbon-grid div:nth-child(2) {
    border-right: 0;
  }

  .brand-ribbon-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 36, 71, 0.08);
  }

  .editorial-head,
  .cta-banner-shell,
  .signature-footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .signature-copy h1,
  .editorial-head h2,
  .editorial-copy h2,
  .process-band-intro h2,
  .faq-intro h2,
  .location-copy h2,
  .story-copy h2,
  .contact-direct h2,
  .contact-form-copy h2,
  .reservation-side-copy h2,
  .territorial-grid h2,
  .cta-banner-shell h2,
  .page-signature-grid h1 {
    max-width: none;
  }

  .signature-hero {
    padding: 2.4rem 0 2.8rem;
  }

  .signature-hero-grid {
    gap: 1.5rem;
    align-items: start;
  }

  .signature-copy {
    order: 1;
  }

  .signature-form-shell {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .signature-actions {
    flex-direction: column;
  }

  .signature-actions .button {
    width: 100%;
  }

  .hero-inline-points {
    display: grid;
    gap: 0.65rem;
  }

  .hero-inline-points span {
    padding: 0;
  }

  .brand-ribbon {
    margin-top: 0;
  }

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

  .redesign-home .editorial-head,
  .editorial-head {
    display: grid;
    justify-items: stretch;
    text-align: left;
    gap: 1rem;
  }

  .redesign-home .section-link-button,
  .section-link-button {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .signature-hero {
    min-height: auto;
    padding: 2.6rem 0 3rem;
  }

  .signature-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .brand-ribbon {
    margin-top: -1.2rem;
  }

  .brand-ribbon-grid,
  .editorial-columns,
  .principle-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .brand-ribbon-grid div {
    padding: 1.5rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 36, 71, 0.08);
  }

  .brand-ribbon-grid div:last-child {
    border-bottom: 0;
  }

  .brand-ribbon-grid strong {
    min-height: auto;
    font-size: 1.9rem;
  }

  .brand-ribbon-grid span {
    max-width: none;
  }

  .editorial-section,
  .midnight-band,
  .cta-banner {
    padding: 3.8rem 0;
  }

  .signature-form-shell,
  .reservation-side-copy,
  .reservation-form-shell,
  .contact-direct,
  .contact-form-band {
    padding: 1.35rem;
  }

  .location-map-shell,
  .contact-map-shell,
  .location-map-shell iframe,
  .contact-map-shell iframe {
    min-height: 360px;
  }

  .signature-footer {
    padding: 0.45rem 0 6.5rem;
  }

  .signature-footer-nav,
  .signature-footer-actions {
    width: 100%;
  }

  .signature-footer-shell {
    gap: 0;
  }

  .signature-footer-brand {
    align-items: center;
  }
}

/* Layout stabilization for redesigned pages */
.signature-hero {
  min-height: auto;
  padding: 4.5rem 0 4rem;
}

.signature-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 3rem;
}

.signature-copy,
.signature-form-shell,
.reservation-side-copy,
.reservation-form-shell,
.contact-direct,
.contact-form-band,
.story-quote,
.territorial-list,
.location-address,
.location-map-shell,
.contact-map-shell {
  height: 100%;
}

.signature-copy h1,
.editorial-head h2,
.editorial-copy h2,
.process-band-intro h2,
.faq-intro h2,
.location-copy h2,
.story-copy h2,
.contact-direct h2,
.contact-form-copy h2,
.reservation-side-copy h2,
.territorial-grid h2,
.cta-banner-shell h2 {
  max-width: 16ch;
}

.brand-ribbon {
  margin-top: 0;
  padding-top: 0.5rem;
}

.brand-ribbon-grid,
.signature-form-shell,
.reservation-form-shell,
.reservation-side-copy,
.contact-direct,
.contact-form-band,
.territorial-list,
.location-address,
.story-quote,
.location-map-shell,
.contact-map-shell,
.editorial-columns article,
.principle-grid article,
.process-steps article {
  border-radius: 26px;
}

.editorial-columns article,
.principle-grid article,
.process-steps article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 18px 42px rgba(11, 36, 71, 0.08);
}

.process-steps article {
  background: #f4f8fc;
  align-items: center;
  text-align: center;
}

.editorial-columns span,
.principle-grid span,
.process-steps strong {
  flex: 0 0 auto;
}

.process-step-icon {
  flex: 0 0 auto;
}

.editorial-columns h3,
.principle-grid h3,
.process-steps h3 {
  margin-bottom: 0.7rem;
}

.process-steps h3 {
  color: var(--color-primary-dark);
}

.editorial-columns p,
.principle-grid p,
.process-steps p {
  margin-bottom: 0;
}

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

.editorial-head {
  align-items: start;
}

.faq-layout,
.location-showcase,
.contact-showcase,
.reservation-redesign-grid,
.territorial-grid,
.story-grid,
.contact-form-band {
  align-items: stretch;
}

.faq-intro,
.editorial-copy,
.story-copy,
.contact-form-copy,
.reservation-side-copy,
.location-copy,
.contact-direct {
  align-self: start;
}

.location-address,
.contact-direct,
.reservation-side-copy,
.territorial-list,
.story-quote {
  padding: 1.6rem;
}

.contact-form-band,
.signature-form-shell,
.reservation-form-shell {
  padding: 1.6rem;
}

.cta-banner-shell,
.signature-footer-shell {
  align-items: center;
}

.signature-footer-brand {
  max-width: 360px;
}

@media (max-width: 1100px) {
  .signature-copy h1,
  .editorial-head h2,
  .editorial-copy h2,
  .process-band-intro h2,
  .faq-intro h2,
  .location-copy h2,
  .story-copy h2,
  .contact-direct h2,
  .contact-form-copy h2,
  .reservation-side-copy h2,
  .territorial-grid h2,
  .cta-banner-shell h2,
  .page-signature-grid h1 {
    max-width: none;
  }

  .cta-banner-shell,
  .signature-footer-shell {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .signature-hero-grid {
    gap: 1.6rem;
  }

  .brand-ribbon {
    padding-top: 0;
  }

  .brand-ribbon-grid,
  .signature-form-shell,
  .reservation-form-shell,
  .reservation-side-copy,
  .contact-direct,
  .contact-form-band,
  .territorial-list,
  .location-address,
  .story-quote,
  .location-map-shell,
  .contact-map-shell,
  .editorial-columns article,
  .principle-grid article,
  .process-steps article {
    border-radius: 22px;
  }
}

/* Sharp-edge variant for redesigned pages */
.redesign-page .button,
.redesign-page .date-trigger,
.redesign-page input,
.redesign-page select,
.redesign-page textarea,
.redesign-page .signature-form-shell,
.redesign-page .reservation-form-shell,
.redesign-page .contact-form-band,
.redesign-page .contact-direct,
.redesign-page .story-quote,
.redesign-page .territorial-list,
.redesign-page .location-address,
.redesign-page .location-map-shell,
.redesign-page .contact-map-shell,
.redesign-page .brand-ribbon-grid,
.redesign-page .editorial-columns article,
.redesign-page .principle-grid article,
.redesign-page .process-steps article,
.redesign-page .faq-item,
.redesign-page .section-link-button,
.redesign-page .section-link-arrow,
.redesign-page .footer-outline-link,
.redesign-page .hero-inline-points span,
.redesign-page .mobile-sticky-bar,
.redesign-page .nav-toggle {
  border-radius: 0;
}

.redesign-page .footer-outline-link,
.redesign-page .section-link-button,
.redesign-page .button {
  clip-path: none;
}

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

  body {
    padding-bottom: 7.5rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 112px;
    height: auto;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    left: 0.625rem;
    right: 0.625rem;
    top: calc(100% + 0.4rem);
    padding: 0.85rem;
  }

  .signature-hero {
    padding: 1.5rem 0 2rem;
    min-height: auto;
  }

  .signature-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .signature-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.04;
  }

  .signature-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .signature-actions {
    flex-direction: column;
  }

  .signature-actions .button {
    width: 100%;
  }

  .hero-inline-points {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-inline-points span {
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0;
  }

  .signature-form-shell {
    padding: 1.1rem;
  }

  .signature-form-intro {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .signature-form-intro h2 {
    font-size: 1.45rem;
  }

  .booking-form,
  .contact-form {
    gap: 0.85rem;
  }

  input,
  select,
  textarea,
  .date-trigger {
    min-height: 50px;
    padding: 0.85rem 0.9rem;
  }

  .form-row {
    gap: 0.85rem;
  }

  .brand-ribbon {
    margin-top: 0;
    padding: 0.75rem 0 0;
  }

  .brand-ribbon-grid {
    grid-template-columns: 1fr;
  }

  .brand-ribbon-grid div {
    padding: 1.1rem 1rem;
    gap: 0.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 36, 71, 0.08);
  }

  .brand-ribbon-grid div:last-child {
    border-bottom: 0;
  }

  .brand-ribbon-media {
    width: 96px;
    height: 96px;
  }

  .brand-ribbon-grid strong {
    font-size: 1.55rem;
    min-height: auto;
  }

  .brand-ribbon-grid span {
    font-size: 0.94rem;
    line-height: 1.45;
    max-width: none;
  }

  .editorial-section,
  .midnight-band,
  .cta-banner {
    padding: 2.75rem 0;
  }

  .redesign-home .editorial-head,
  .editorial-head {
    display: grid;
    justify-items: stretch;
    text-align: left;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .redesign-home .editorial-head > div,
  .editorial-head > div {
    max-width: none;
  }

  .editorial-head h2,
  .editorial-copy h2,
  .process-band-intro h2,
  .faq-intro h2,
  .location-copy h2,
  .story-copy h2,
  .contact-direct h2,
  .contact-form-copy h2,
  .reservation-side-copy h2,
  .territorial-grid h2,
  .cta-banner-shell h2 {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .redesign-home .section-link-button,
  .section-link-button {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .cards-grid,
  .featured-grid,
  .editorial-columns,
  .principle-grid,
  .process-steps,
  .faq-layout,
  .location-showcase,
  .story-grid,
  .territorial-grid,
  .contact-showcase,
  .contact-form-band,
  .reservation-redesign-grid,
  .page-signature-grid,
  .editorial-split,
  .filters-panel,
  .listing-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vehicle-card,
  .editorial-columns article,
  .principle-grid article,
  .process-steps article,
  .contact-direct,
  .contact-form-band,
  .reservation-side-copy,
  .reservation-form-shell,
  .story-quote,
  .territorial-list,
  .location-address,
  .location-map-shell,
  .contact-map-shell,
  .faq-item,
  .empty-state,
  .filters-panel {
    border-radius: 0;
  }

  .vehicle-card,
  .editorial-columns article,
  .principle-grid article,
  .process-steps article,
  .filters-panel,
  .contact-direct,
  .contact-form-band,
  .reservation-side-copy,
  .reservation-form-shell,
  .story-quote,
  .territorial-list,
  .location-address,
  .empty-state {
    padding: 1rem;
  }

  .process-step-icon img {
    width: 72px;
    height: 72px;
  }

  .process-steps h3 {
    font-size: 1.2rem;
  }

  .process-steps p,
  .editorial-columns p,
  .principle-grid p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-item summary {
    padding: 1rem 3.2rem 1rem 1rem;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
  }

  .location-map-shell,
  .contact-map-shell,
  .location-map-shell iframe,
  .contact-map-shell iframe {
    min-height: 280px;
  }

  .cta-banner-shell {
    padding: 1.15rem;
    gap: 1rem;
  }

  .signature-footer {
    padding: 0.5rem 0 7rem;
  }

  .signature-footer-brand img {
    width: 110px;
  }

  .signature-footer-bottom {
    padding-top: 0.2rem;
  }

  .mobile-sticky-bar {
    left: 0.625rem;
    right: 0.625rem;
    bottom: 0.625rem;
    padding: 0.55rem;
    gap: 0.55rem;
  }

  .mobile-sticky-bar .button {
    min-height: 46px;
    padding: 0.75rem 0.9rem;
    font-size: 0.98rem;
  }
}
