html {
  overflow-x: hidden;
  overflow-y: scroll; /* Force vertical scrollbar to prevent layout shift */
}

:root {
  --bg: #040404;
  --bg-alt: #0a0a0a;
  --surface: rgba(20, 20, 20, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --text: #fdf7d8;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #ffd84d;
  --accent-2: #ffb703;
  --danger: #ff6b6b;
  --success: #7bd389;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: "Poppins", "Poppins", sans-serif;
}

body[data-theme="light"] {
  --bg: #f6f5f1;
  --bg-alt: #ffffff;
  --surface: rgba(255, 255, 255, 0.98);
  --surface-soft: rgba(0, 0, 0, 0.05);
  --text: #111216;
  --muted: rgba(17, 18, 22, 0.7);
  --border: rgba(0, 0, 0, 0.1);
  --plate-gradient: linear-gradient(135deg, #ffffff, #f8f4e3);
  --plate-border: rgba(17, 18, 22, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(160deg, var(--bg), var(--bg-alt));
  color: var(--text);
  line-height: 1.6;
  font-variant-numeric: lining-nums;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  padding-top: 90px;
}

body:not(.is-loaded) {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg), var(--bg-alt));
  padding: 1.5rem;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 216, 77, 0.25),
    transparent 55%
  );
}

body[data-theme="light"] .site-loader::before {
  background: radial-gradient(
    circle at top,
    rgba(255, 183, 3, 0.35),
    transparent 60%
  );
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  position: relative;
  background: rgba(4, 4, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 2.5rem 3.5rem;
  width: min(720px, 100%);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transform: translateY(0);
}

body[data-theme="light"] .site-loader__inner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.site-loader__inner img {
  margin: 0 auto;
  width: min(520px, 100%);
  height: auto;
}

.site-loader__text {
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-loader__credit {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: none;
  letter-spacing: 0.04em;
}

body[data-theme="light"] .site-loader__credit {
  color: rgba(17, 18, 22, 0.75);
}

.site-loader__credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

@media (max-width: 720px) {
  .site-loader {
    padding: 2rem 1.5rem;
  }
  .site-loader__inner {
    padding: 2rem 2.5rem;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .site-loader__inner {
    padding: 1.85rem 2.25rem;
    transform: translateY(0);
  }
  .site-loader__inner img {
    width: min(300px, 82vw);
  }
}

@media (max-width: 420px) {
  .site-loader__inner {
    transform: translateY(0);
    width: 100%;
  }
  .site-loader__inner img {
    width: min(360px, 100%);
  }
}

.container,
.container-fluid {
  max-width: 100%;
  /* overflow-x: hidden; */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

p {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
} */

.section-head .eyebrow {
  margin-left: 0;
}

.section-head h5 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

[data-animate] {
  --scroll-animate-speed: 0.65s;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.98);
  filter: blur(10px);
  transition: opacity var(--scroll-animate-speed) cubic-bezier(0.22, 0.61, 0.36, 1),
    transform var(--scroll-animate-speed) cubic-bezier(0.22, 0.61, 0.36, 1),
    filter var(--scroll-animate-speed) cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--scroll-animate-delay, 0s);
  will-change: transform, opacity, filter;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 768px) {
  [data-animate] {
    --scroll-animate-speed: 0.25s;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-car-figure img {
    animation: none;
  }
}

@media (max-width: 360px) {
  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
    transition-duration: 0.4s;
  }
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1200;
}

.page-progress__bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1600;
  padding: 0.45rem 0;
  background: transparent;
}

body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.site-nav {
  padding: 0;
}

.plate-shell {
  background: linear-gradient(135deg, #111111, #080808);
  border: 2px solid rgba(255, 216, 77, 0.35);
  border-radius: 14px;
  width: min(1180px, 98vw);
  margin: 0 auto;
  padding: 0.4rem clamp(0.5rem, 2vw, 1rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

body[data-theme="light"] .plate-shell {
  background: var(--plate-gradient, #fff);
  border-color: var(--plate-border, rgba(17, 18, 22, 0.15));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.plate-shell__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding-left: 0;
  padding-right: 0;
}

.navbar-collapse {
  flex-grow: 0;
}

.navbar-nav {
  gap: clamp(0.15rem, 0.8vw, 0.4rem);
  gap: 0.25rem;
}

.plate-nav .navbar-brand,
.plate-nav .nav-link,
.plate-nav .theme-toggle,
.plate-nav .nav-cta .btn-outline-light {
  color: #ffd84d;
}

body[data-theme="light"] .plate-nav .navbar-brand,
body[data-theme="light"] .plate-nav .nav-link,
body[data-theme="light"] .plate-nav .theme-toggle,
body[data-theme="light"] .plate-nav .nav-cta .btn-outline-light {
  color: #1f1f1f;
}

.plate-nav .brand-sub {
  color: rgba(255, 216, 77, 0.65);
}

body[data-theme="light"] .plate-nav .brand-sub {
  color: rgba(0, 0, 0, 0.45);
}

.plate-nav .nav-link {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  padding: 0.25rem 0.25rem;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.plate-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  max-width: 90px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 216, 77, 0.88),
    rgba(255, 216, 77, 0.1)
  );
  opacity: 0;
  transform: translate(-50%, 8px) scaleX(0.3);
  filter: blur(10px);
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s ease;
}

.plate-nav .nav-link:hover,
.plate-nav .nav-link:focus {
  transform: translateY(-1px);
  color: #ffe58a;
}

body[data-theme="light"] .plate-nav .nav-link,
body[data-theme="light"] .plate-nav .nav-link:hover,
body[data-theme="light"] .plate-nav .nav-link:focus,
body[data-theme="light"] .plate-nav .nav-link.active {
  color: #1f1f1f;
}

.plate-nav .nav-link.active {
  color: #ffe58a;
}

.plate-nav .nav-link.active::after {
  width: 60%;
  opacity: 1;
  transform: translate(-50%, 0) scaleX(1);
  filter: blur(8px);
}

body[data-theme="light"] .plate-nav .nav-link::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(31, 31, 31, 0.5),
    rgba(31, 31, 31, 0.08)
  );
}

.toggler-bars {
  border: 1px solid rgba(255, 216, 77, 0.35);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toggler-bars[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.toggler-bars[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.toggler-bars[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body[data-theme="light"] .toggler-bars {
  border-color: rgba(0, 0, 0, 0.25);
  color: #1f1f1f;
}

.plate-nav .theme-toggle {
  background: rgba(255, 216, 77, 0.12);
  border: 1px solid rgba(255, 216, 77, 0.28);
  color: #ffd84d;
}

body[data-theme="light"] .plate-nav .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1f1f1f;
}

.plate-nav .nav-cta .btn-outline-light {
  border-color: rgba(255, 216, 77, 0.42);
  color: #ffd84d;
}

body[data-theme="light"] .plate-nav .nav-cta .btn-outline-light {
  border-color: rgba(0, 0, 0, 0.35);
  color: #1f1f1f;
}

.plate-nav .nav-cta .btn-outline-light:hover {
  border-color: rgba(255, 216, 77, 0.68);
  color: #ffe58a;
}

.section-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1180px, 94vw);
  margin: clamp(2.5rem, 6vw, 4.5rem) auto;
  background: rgba(6, 6, 6, 0.92);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(2rem, 6vw, 3.5rem);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

body[data-theme="light"] .section-shell {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .plate-nav .nav-cta .btn-outline-light:hover {
  border-color: rgba(0, 0, 0, 0.45);
  color: #1f1f1f;
  background: rgba(0, 0, 0, 0.05);
}

.plate-nav .btn-gradient {
  box-shadow: 0 10px 18px rgba(255, 216, 77, 0.35);
}

.plate-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.plate-nav .navbar-toggler {
  border-color: rgba(255, 216, 77, 0.5);
  color: #ffd84d;
  padding: 0.25rem 0.45rem;
  border-radius: 10px;
  margin-left: auto;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-cta {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.plate-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,216,77,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.plate-nav .navbar-toggler:focus,
.plate-nav .navbar-toggler:hover {
  background: rgba(255, 216, 77, 0.15);
  border-color: rgba(255, 231, 123, 0.7);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-right: 0.5rem;
}

.brand-stack {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Reduced from 0.85rem */
  color: inherit;
  text-decoration: none;
  flex-shrink: 0; /* Prevent shrinking */
}

.brand-logo {
  width: 48px; /* Fixed size instead of clamp */
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #171717;
}

.brand-title {
  font-size: 0.95rem; /* Slightly smaller */
}

.brand-sub {
  display: block;
  font-size: 0.7rem; /* Reduced from 0.8rem */
  letter-spacing: 0.15em; /* Reduced */
  text-transform: uppercase;
  color: var(--muted);
}

.brand-contact {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

@media (max-width: 1150px) and (min-width: 992px) {
  .brand-title,
  .brand-sub {
    display: none;
  }

  .brand-stack {
    gap: 0;
  }
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: clamp(0.15rem, 0.8vw, 0.4rem);
}

.dropdown-menu-dark {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid var(--border);
}

.dropdown-menu-dark .dropdown-item {
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  background: rgba(255, 216, 77, 0.12);
  color: var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-cta .btn {
  text-transform: uppercase;
  letter-spacing: 0.06em; /* Reduced */
  font-size: 0.7rem; /* Reduced from 0.75rem */
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; /* Reduced from 0.4rem */
  margin-left: 0; /* Remove left margin */
  padding: 0.45rem 0.75rem; /* Add explicit padding */
  white-space: nowrap; /* Prevent text wrapping */
}

.btn-gradient {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border: none;
  color: #171717;
  font-weight: 600;
}

.btn-outline-light {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero--scenic {
  background: transparent;
}

.hero--scenic::before {
  display: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 2rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  text-align: left;
}

.hero-list li span {
  flex: 1;
}

.hero-list li i {
  color: #28a745;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-car-figure {
  margin: 0 0 1.5rem;
  text-align: center;
}

.hero-brand-contact {
  margin: 1.25rem 0 1.5rem;
}

.hero-contact {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-contact a {
  color: inherit;
  text-decoration: underline;
}

.hero-brand-contact .hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.75rem;
}

.trust-badge strong {
  display: block;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: none;
  line-height: 1.3;
}

.trust-badge span {
  display: none;
}

.trust-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}

.trust-details {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-details small {
  letter-spacing: 0.08em;
}

body[data-theme="light"] .trust-badge {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.hero-car-figure img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.about.section-shell {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  margin-bottom: clamp(-5rem, -8vw, -3.5rem);
}

.about-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0;
  background: var(--surface);
}

.about-photo img {
  width: 100%;
  display: block;
}

.about-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.about-metrics {
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .about.section-shell {
    margin-top: clamp(3.5rem, 7vw, 5rem);
    margin-bottom: clamp(-6rem, -10vw, -4rem);
  }
}

.service-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.service-overview article {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease;
}

.service-overview__list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-overview__list li + li {
  margin-top: 0.35rem;
}

body[data-theme="light"] .service-overview article {
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.hero-stats span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-stats strong {
  font-size: 1rem;
  color: var(--accent);
}

.leftCol {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 1.75rem);
  border-radius: 30px;
  background: rgba(4, 4, 4, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.leftCol::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(0, 0, 0, 0.685),
    rgba(0, 0, 0, 0.789)
  );
  opacity: 0.7;
  filter: saturate(1.05) contrast(1.05);
  z-index: -1;
}

body[data-theme="light"] .leftCol {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  color: #111216;
}

body[data-theme="light"] .leftCol::before {
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.75)
  );
  opacity: 1;
  filter: none;
}

.leftCol h1,
.leftCol .eyebrow,
.leftCol p,
.leftCol ul {
  position: relative;
  z-index: 2;
}

.panel-stage {
  position: relative;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

/* .process {
  position: relative;
  padding: clamp(3rem, 10vw, 5rem) 0;
} */

.glass-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1180px, 94vw);
  margin-left: auto;
  margin-right: auto;
  background: rgba(4, 4, 4, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 3.75rem);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

body[data-theme="light"] .glass-panel {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.process-pin {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 5rem) 0;
}

.process .section-shell {
  position: sticky;
  top: clamp(4rem, 10vh, 6rem);
  padding: 4rem;
}

.process-pin .section-head {
  margin-bottom: 2rem;
}

.glass-panel--hero {
  margin-top: clamp(0.35rem, 2vw, 1rem);
  margin-bottom: clamp(-5rem, -8vw, -3rem);
  padding-top: clamp(1.25rem, 4vw, 2.25rem);
  padding-bottom: clamp(2.5rem, 7vw, 3.75rem);
}

.glass-panel--services {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  z-index: 3;
}

.scroll-video {
  position: relative;
  width: 100%;
  height: min(120vh, 1000px);
  margin: clamp(-6rem, -10vw, -4rem) 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}

.scroll-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.15), rgba(4, 4, 4, 0.65));
  pointer-events: none;
  z-index: 1;
}

body[data-theme="light"] .scroll-video::after {
  content: none;
}

.scroll-video__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
}

body[data-theme="light"] .scroll-video__caption {
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}
.scroll-video__media {
  position: sticky;
  top: 0;
  width: 100%;
  height: min(100vh, 900px);
  object-fit: cover;
  display: block;
  z-index: 0;
}

.scroll-video + .section-shell,
.scroll-video + .glass-panel {
  margin-top: clamp(-5.5rem, -9vw, -3.5rem);
}

#about + .scroll-video,
.section-shell + .scroll-video,
.glass-panel + .scroll-video {
  margin-top: clamp(-5.5rem, -9vw, -3.5rem);
}

#about + .scroll-video {
  margin-top: clamp(-7rem, -12vw, -5rem);
}

.scroll-video__media--image {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.scroll-video--image {
  height: clamp(55vh, 70vw, 90vh);
}

.scroll-video--bridge {
  height: clamp(40vh, 45vw, 65vh);
  margin: clamp(-4rem, -6vw, -2.5rem) 0;
}

.scroll-video--bridge .scroll-video__media {
  height: clamp(45vh, 50vw, 70vh);
}

.scroll-video--sunset .scroll-video__media--image {
  background-image: url("../images/goa/sunset.jpg");
  background-position: center bottom;
}

.scroll-video--foot .scroll-video__media--image {
  background-image: url("../images/goa/stepfootongoanland.jpg");
  background-position: center bottom;
}

.scroll-video--road .scroll-video__media--image {
  background-image: url("../images/goa/goanRoad.jpg");
  background-position: center bottom;
}

.scroll-video--sunset {
  height: clamp(65vh, 80vw, 95vh);
}

.scroll-video--foot {
  height: clamp(55vh, 70vw, 85vh);
}

.scroll-video--road {
  height: clamp(45vh, 60vw, 70vh);
}

.scroll-video--seaview {
  height: clamp(45vh, 55vw, 70vh);
}

.scroll-video--seaview .scroll-video__media {
  height: 100%;
}

.booking-card,
.enquiry-card,
.contact-card,
.story-card,
.service-card,
.fleet-card,
.process-grid article,
.rules-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease;
}

.booking-card {
  max-width: 420px;
  width: 100%;
  padding: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero .booking-card {
    margin-left: auto;
    margin-right: 0;
  }
}

body[data-theme="light"] .booking-card,
body[data-theme="light"] .enquiry-card,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .story-card,
body[data-theme="light"] .service-card,
body[data-theme="light"] .fleet-card,
body[data-theme="light"] .process-grid article,
body[data-theme="light"] .rules-grid article {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  :is(
      .booking-card,
      .enquiry-card,
      .contact-card,
      .story-card,
      .service-card,
      .service-overview article,
      .fleet-card,
      .process-grid article,
      .rules-grid article,
      .why-grid article,
      .faq-card,
      .gallery-card
    ):hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  }

  body[data-theme="light"]
    :is(
      .booking-card,
      .enquiry-card,
      .contact-card,
      .story-card,
      .service-card,
      .service-overview article,
      .fleet-card,
      .process-grid article,
      .rules-grid article,
      .why-grid article,
      .faq-card,
      .gallery-card
    ):hover {
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.15);
  }
}

.booking-card__head h2 {
  font-family: var(--font-display);
  margin: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.15rem;
  width: 100%;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.booking-grid > .form-field,
.enquiry-grid > .form-field {
  min-width: 0;
}

@media (max-width: 768px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
}

.booking-grid__full {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid__full {
    grid-column: 1 / -1;
  }

  .select-field--ready select {
    display: block;
  }

  .select-field--ready .select-proxy {
    display: none;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.booking-card .form-field {
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font: inherit;
}

.select-field,
.select-proxy,
.select-menu,
.select-toggle {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body[data-theme="light"] .form-field input,
body[data-theme="light"] .form-field select,
body[data-theme="light"] .form-field textarea {
  background: rgba(0, 0, 0, 0.02);
}

.form-field select {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(6, 6, 6, 0.8), rgba(22, 22, 22, 0.9))
      padding-box,
    linear-gradient(120deg, rgba(255, 216, 77, 0.65), rgba(255, 183, 3, 0.2))
      border-box,
    url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l6 6 6-6' stroke='%23FFD84D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
      right 0.85rem center / 14px 9px no-repeat;
  padding-right: 2.6rem;
  padding-left: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 30px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
}

.form-field select:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(255, 216, 77, 0.45), 0 18px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.form-field select:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 216, 77, 0.8),
    0 0 0 3px rgba(255, 216, 77, 0.15), 0 22px 45px rgba(0, 0, 0, 0.5);
  filter: saturate(1.05);
}

.form-field select option {
  background: #020202;
  color: var(--text);
}

.form-field input[type="date"],
.form-field input[type="time"] {
  appearance: none;
  border-radius: 999px;
  padding-left: 1.2rem;
  padding-right: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(95%);
  opacity: 0.85;
  cursor: pointer;
}

.form-field input[type="date"]::-moz-focus-inner,
.form-field input[type="time"]::-moz-focus-inner {
  border: 0;
}

.form-field textarea {
  resize: vertical;
}

.select-field {
  position: relative;
}

.select-proxy {
  display: none;
  position: relative;
}

.select-field--ready .select-proxy {
  display: block;
}

.select-field--ready select {
  display: none;
}

.select-toggle {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0)
    )
    rgba(8, 8, 8, 0.85);
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body[data-theme="light"] .select-toggle {
  border-color: rgba(0, 0, 0, 0.12);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    )
    #ffffff;
  color: #111216;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.select-toggle i {
  transition: transform 0.2s ease;
}

.select-field--open .select-toggle i {
  transform: rotate(180deg);
}

.select-toggle:hover,
.select-toggle:focus-visible {
  border-color: rgba(255, 216, 77, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  outline: none;
}

.select-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: rgba(6, 6, 6, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

body[data-theme="light"] .select-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.select-field--open .select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.select-option {
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: background 0.2s ease, transform 0.1s ease;
}

body[data-theme="light"] .select-option {
  color: #111216;
}

.select-option + .select-option {
  margin-top: 0.15rem;
}

.select-option:hover,
.select-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

body[data-theme="light"] .select-option:hover,
body[data-theme="light"] .select-option:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.select-option.is-active {
  background: rgba(255, 216, 77, 0.18);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 216, 77, 0.35);
}

.select-option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.services,
.fleet,
.airport,
.process,
.gallery,
.testimonials,
.faq,
.rules,
.enquiry,
.contact {
  padding: 4rem 0;
}

.why-choose {
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.why-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease;
}

body[data-theme="light"] .why-grid article {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why-grid article i {
  color: var(--accent);
  font-size: 1.5rem;
}

.why-grid article h3 {
  margin: 0;
  font-size: 1.1rem;
}

.why-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-note {
  max-width: 720px;
  margin: -0.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.more-fleet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 180px;
  height: 76px;
  border-color: var(--accent);
  color: var(--accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 216, 77, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-grid .service-card {
  height: 100%;
}
.fleet-card {
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fleet-frame {
  border-bottom: 1px solid var(--border);
  height: 180px;
  overflow: hidden;
}

.fleet-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-frame img {
  transform: scale(1.05);
}

.fleet-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-card__head h3 {
  margin-bottom: 0.4rem;
}

.fleet-card__head p {
  margin: 0;
  color: var(--muted);
}

.fleet-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.5rem;
  margin: 0;
}

.fleet-metrics dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.05rem;
}

.fleet-metrics dd {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.fleet-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

.fleet-feature-list li {
  position: relative;
  padding-left: 1.1rem;
}

.fleet-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.fleet-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fleet-card__body small {
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fleet-detail-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
  position: relative;
  max-height: calc(100vh - clamp(5rem, 12vw, 7rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scrollbar-gutter: stable;
}

.fleet-detail-modal .modal-dialog {
  margin-top: 100px;
  max-width: 90vw;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fleet-detail-modal .modal-body {
  max-height: none;
  overflow-y: visible;
  overflow: visible;
  padding: 0;
}

.fleet-detail-modal .btn-close {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 10;
  opacity: 0.85;
  width: 28px;
  height: 28px;
  background-size: 16px;
}

.fleet-detail-modal .btn-close:hover {
  opacity: 1;
}

.gallery-modal .btn-close {
  opacity: 0.85;
}

body[data-theme="dark"] .fleet-detail-modal .btn-close,
body[data-theme="dark"] .gallery-modal .btn-close,
body[data-theme="dark"] .fleet-days-modal .btn-close {
  filter: invert(1);
}

body[data-theme="light"] .fleet-detail-modal .btn-close,
body[data-theme="light"] .gallery-modal .btn-close,
body[data-theme="light"] .fleet-days-modal .btn-close {
  filter: none;
}

.fleet-modal {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0;
  flex: 1 1 auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
  padding-right: 0.5rem;
  scrollbar-gutter: stable both-edges;
}

.fleet-modal__media {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fleet-modal__stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-modal__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.fleet-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  width: 100%;
}

.fleet-thumb {
  border: 2px solid var(--border);
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.fleet-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.3);
  transform: scale(1.02);
}

[data-fleet-modal-prev] {
  left: 1rem;
}

[data-fleet-modal-next] {
  right: 1rem;
}

.fleet-modal__details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  overflow: visible;
}

.fleet-modal__details > p:first-of-type {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.fleet-modal__details > h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.fleet-modal__details > p:nth-of-type(2) {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.2;
}

.fleet-modal__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.fleet-modal__specs article {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.fleet-modal__specs span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.fleet-modal__specs strong {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.fleet-modal__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.3;
  overflow: visible;
}

.fleet-modal__features li {
  position: relative;
  padding-left: 0.8rem;
}

.fleet-modal__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.fleet-modal__cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.fleet-modal__cta .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.fleet-modal__cta small {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.6rem;
}

.fleet-day-picker {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fleet-day-picker label,
.fleet-day-picker .eyebrow {
  margin: 0;
  font-size: 0.7rem;
}

.day-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  max-width: 120px;
}

.day-stepper input {
  width: 60px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.4rem 0.2rem;
  font-weight: 600;
}

.day-stepper input:focus {
  outline: none;
}

.day-stepper__btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.day-stepper__btn:hover {
  color: var(--accent);
}

.fleet-days-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.fleet-days-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-days-summary {
  margin: 0;
  color: var(--muted);
}

.fleet-days-shell small {
  color: var(--muted);
}

.airport-media {
  display: grid;
  gap: 1rem;
}

.airport-media img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.airport-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.process-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--accent);
}

.process-grid article {
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  position: relative;
  opacity: 0.35;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
  min-height: clamp(260px, 55vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-grid article h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.process-grid article p {
  margin: 0;
  color: var(--muted);
  opacity: 0.65;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.process-grid article.is-active {
  opacity: 1;
  transform: translateY(-6px);
  border-color: rgba(255, 216, 77, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: var(--surface);
}

.process-grid article.is-active h3 {
  color: var(--text);
}

.process-grid article.is-active p {
  opacity: 1;
  color: var(--muted);
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(var(--accent) 8%, transparent 10%);
  background-size: 16px 16px;
  mix-blend-mode: screen;
  opacity: 0;
}

.process-grid article.is-active:last-child::after {
  animation: confetti-pulse 2.8s ease-in-out infinite;
}

@media (max-width: 991px) {
  .process-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid article.is-active {
    transform: translateY(0);
  }

  .process {
    min-height: auto;
    padding: clamp(2rem, 8vw, 3rem) 0;
  }

  .process .section-shell {
    position: static;
  }
}

.process .section-shell {
  position: relative;
}

@supports (position: sticky) {
  .process .section-shell {
    position: sticky;
    top: 90px;
    z-index: 100;
  }
}

@keyframes confetti-pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(2px);
  }
}

.gallery-reel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x proximity;
}

.gallery-reel::-webkit-scrollbar {
  height: 8px;
}

.gallery-reel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.gallery-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease;
}

body[data-theme="light"] .gallery-card {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

body[data-theme="light"] .gallery-card::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.12)
  );
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 140px);
  margin: 80px auto 1rem;
  max-width: 600px;
}

.gallery-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 85%;
  position: relative;
}

.gallery-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.gallery-modal .modal-body {
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
}

.gallery-modal img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  max-height: 45vh;
  object-fit: contain;
}

.gallery-modal-nav {
  position: absolute;
  top: 3.5rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
}

#galleryModalCaption {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .fleet-detail-modal .modal-dialog {
    margin: clamp(5rem, 10vw, 6.5rem) auto 1rem;
    width: min(95vw, 560px);
  }

  .fleet-detail-modal .modal-content {
    padding: 0.85rem;
    border-radius: 20px;
    max-height: calc(100vh - clamp(4.5rem, 12vw, 6.25rem));
  }

  .fleet-modal {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding-right: 0.25rem;
  }

  .fleet-modal__media {
    gap: 0.65rem;
  }

  .fleet-modal__stage {
    height: clamp(220px, 55vw, 340px);
  }

  .fleet-modal__thumbs {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .fleet-thumb {
    flex: 0 0 88px;
    width: auto;
    height: 70px;
    scroll-snap-align: start;
  }

  .fleet-modal__details {
    gap: 0.75rem;
  }

  .fleet-modal__details > p:first-of-type {
    font-size: 0.75rem;
  }

  .fleet-modal__details > h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .fleet-modal__details > p:nth-of-type(2) {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .fleet-modal__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .fleet-modal__specs article {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .fleet-modal__specs span {
    font-size: 0.62rem;
    margin-bottom: 0.25rem;
  }

  .fleet-modal__specs strong {
    font-size: 0.9rem;
  }

  .fleet-modal__features {
    gap: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .fleet-modal__features li {
    padding-left: 1rem;
  }

  .fleet-modal__cta {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .fleet-modal__cta .btn {
    width: 100%;
  }

  .day-stepper {
    max-width: 160px;
  }

  .day-stepper input {
    width: 75px;
    font-size: 0.85rem;
    padding: 0.35rem 0.15rem;
  }

  .day-stepper__btn {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .gallery-modal .modal-dialog {
    margin: 5.5rem auto 2rem;
    max-width: 95vw;
    min-height: auto;
    align-items: center;
    justify-content: center;
    height: auto;
    max-height: 80vh;
  }

  .gallery-modal .modal-body {
    padding: 3rem 0.85rem 1.25rem;
  }

  .gallery-modal img {
    max-height: 40vh;
  }

  .gallery-modal-nav {
    top: 3rem;
    right: 2.5rem;
  }
}

.gallery-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.story-card h4 {
  margin-top: 1.25rem;
  color: var(--accent);
}

.reviews-embed {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] .reviews-embed {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.reviews-embed iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  background: transparent;
}

.reviews-embed::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(4, 4, 4, 0.92));
  pointer-events: none;
}

body[data-theme="light"] .reviews-embed::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 0.95)
  );
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.faq-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-card[open] {
  border-color: rgba(255, 216, 77, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.faq-card summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  font-weight: 700;
  color: var(--accent);
}

.faq-card[open] summary::after {
  content: "–";
}

.faq-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

body[data-theme="light"] .faq-card {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .faq-card[open] {
  background: rgba(0, 0, 0, 0.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: var(--surface);
  color: var(--text);
}

body[data-theme="light"] .accordion-button {
  background: rgba(0, 0, 0, 0.04);
}

.accordion-item {
  border-color: var(--border);
  background: transparent;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.rules,
#rules {
  color: var(--text);
}

.rules-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.rules-grid article h3 {
  color: var(--text);
}

.rules-grid article p {
  color: var(--muted);
}

.enquiry-card {
  background: var(--surface);
  width: 100%;
}

.form-field--inline {
  margin-bottom: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--accent-2);
  border-color: var(--accent-2);
}

.contact-shell {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-actions {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 216, 77, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.map-shell {
  border: 1px dashed var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.map-frame {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #000;
}

.map-frame iframe {
  width: 100%;
  border: 0;
  display: block;
}

.map-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 420px;
}

.footer-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-meta a {
  text-decoration: none;
  color: var(--muted);
}

.footer-socials a {
  margin-left: 0.75rem;
  color: var(--accent);
}

@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.floating-hub {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1600;
  max-width: calc(100vw - 2rem);
}

.floating-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  max-width: 100%;
  white-space: nowrap;
}

.floating-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-options.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.floating-option {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-option:hover,
.floating-option:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.floating-option--whatsapp {
  background: #25d366;
}

.floating-option--call {
  background: #1d4ed8;
}

.floating-option--directions {
  background: #f97316;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  z-index: 1590;
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.site-footer .small {
  color: var(--muted);
}

@media (max-width: 991px) {
  .plate-nav .nav-link::after {
    content: none;
  }

  .plate-nav .nav-link.active {
    color: #ffe58a;
    font-weight: 700;
  }

  body[data-theme="light"] .plate-nav .nav-link.active {
    color: #000;
    font-weight: 700;
  }

  .site-nav .nav-link.active::after {
    bottom: -0.4rem;
  }

  .glass-panel {
    max-width: min(1000px, 96vw);
    padding: clamp(1.5rem, 6vw, 2.5rem);
  }

  .glass-panel--hero,
  .glass-panel--services {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .scroll-video {
    height: 85vh;
    margin: -3rem 0;
  }

  .scroll-video__media {
    height: 85vh;
  }

  .scroll-video + .section-shell,
  .scroll-video + .glass-panel {
    margin-top: clamp(-3rem, -6vw, -1.5rem);
  }

  .hero {
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .plate-nav .navbar-collapse {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 77, 0.25);
    padding: 0.85rem;
    margin-top: 0.6rem;
    width: min(280px, 88vw);
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
  }

  body[data-theme="light"] .plate-nav .navbar-collapse {
    background: rgba(255, 248, 232, 0.96);
    border-color: rgba(255, 216, 77, 0.4);
  }

  .plate-shell {
    position: relative;
    width: min(1180px, 96vw); /* Restore original width */
  }

  .plate-shell__inner {
    flex-wrap: wrap; /* Allow wrapping on mobile */
    justify-content: center; /* Center items */
  }

  /* Center the navbar-collapse */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: flex;
    justify-content: center;
  }
  .gallery-reel {
    grid-auto-columns: 70%;
  }

  .fleet-card__actions {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  #services,
  #why-choose,
  #fleet,
  #airport,
  #gallery,
  #stories,
  #rules,
  #faq,
  #enquiry,
  #contact {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .trust-badge {
    width: auto;
    max-width: 100%;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
  }

  .trust-badge strong {
    font-size: 0.8rem;
  }

  .hero-list,
  .hero-list li {
    text-align: justify;
  }

  .hero-stats {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .fleet-detail-modal .modal-dialog {
    width: 96vw;
    margin: clamp(4.75rem, 12vw, 6rem) auto 0.75rem;
  }

  .fleet-detail-modal .modal-content {
    padding: 0.75rem;
  }

  .fleet-modal__stage {
    height: clamp(210px, 65vw, 320px);
  }

  .fleet-modal__thumbs {
    gap: 0.4rem;
  }

  .fleet-thumb {
    flex: 0 0 74px;
    height: 62px;
  }

  .fleet-modal__details > h3 {
    font-size: 1.05rem;
  }

  .fleet-modal__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-modal__specs article {
    padding: 0.65rem;
  }

  .fleet-modal__features {
    font-size: 0.85rem;
  }

  .booking-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .enquiry-card {
    width: 100%;
    max-width: 100%;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .rules-grid article {
    width: 100%;
  }

  .floating-hub {
    right: 1rem; /* Keep consistent */
    bottom: 4.75rem;
  }

  .floating-toggle {
    width: auto; /* Don't force full width */
    max-width: 100%;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 8.25rem; /* Position above floating button */
    width: 42px;
    height: 42px;
  }

  #services {
    margin-top: clamp(-3rem, -8vw, -1.5rem);
  }

  #services,
  #why-choose,
  #fleet,
  #airport,
  #gallery,
  #stories,
  #rules,
  #faq,
  #enquiry,
  #contact {
    padding: 1rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .plate-shell {
    padding: 0.4rem 0.75rem;
  }

  .plate-nav .nav-actions {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .contact-shell,
  .booking-card,
  .enquiry-card {
    padding: 1.5rem;
  }

  .airport-media {
    grid-template-columns: 1fr;
  }

  .fleet-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scroll-video {
    height: 70vh;
    margin: -2rem 0;
  }

  .scroll-video + .section-shell,
  .scroll-video + .glass-panel {
    margin-top: clamp(-4rem, -8vw, -2rem);
  }

  .scroll-video__media {
    height: 70vh;
  }

  .scroll-video--image {
    height: 55vh;
  }

  .scroll-video--image .scroll-video__media--image {
    background-position: center bottom 15%;
  }

  #services {
    margin-top: clamp(-3rem, -8vw, -1.5rem);
  }
}

@media (max-width: 576px) {
  .plate-shell {
    padding: 0.35rem 0.6rem;
  }

  .plate-nav .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-toggle {
    width: 100%;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }

  .floating-option {
    font-size: 0.85rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
  }
}
@media (max-width: 1200px) {
  .navbar-nav .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  .brand-stack {
    gap: 0.6rem;
  }
}

.scroll-video--bridge {
  height: clamp(40vh, 45vw, 65vh);
  margin: clamp(-4rem, -6vw, -2.5rem) 0;
}
.scroll-video--seaview {
  height: clamp(50vh, 70vw, 85vh);
}

.scroll-video--seaview .scroll-video__media {
  height: inherit;
}
.about {
  padding: 3rem 0;
}

.about-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0;
}

.about-photo img {
  width: 100%;
  display: block;
}

.about-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-metrics {
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.scroll-video + .section-shell,
.scroll-video + .glass-panel {
  margin-top: clamp(-5rem, -8vw, -3rem);
}
