:root {
  color-scheme: dark;
  --bg: #050606;
  --bg-2: #090b0b;
  --panel: rgba(14, 15, 14, 0.84);
  --panel-strong: #10110f;
  --ink: #f7f5ed;
  --muted: #b9b8ae;
  --soft: #77766d;
  --amber: #ffc20f;
  --amber-2: #ff9d00;
  --amber-dark: #6b4300;
  --line: rgba(255, 194, 15, 0.22);
  --line-soft: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 194, 15, 0.12), transparent 28rem),
    linear-gradient(180deg, #050606 0%, #090a09 42%, #050606 100%);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--amber);
  color: #111;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(255, 194, 15, 0.2), transparent 62%);
  transition: opacity 180ms ease;
}

.icon,
.service-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.icon path,
.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 36px), 1280px);
  min-height: 88px;
  padding: 0 12px 0 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgb(15, 16, 18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 194, 15, 0.22);
  background: rgb(15, 16, 18);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 230px);
  height: auto;
  aspect-ratio: 1420 / 560;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.36));
  transform: translateZ(0);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.65rem;
  color: rgba(247, 245, 237, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.8rem 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.48rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  transition: transform 220ms ease;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 194, 15, 0.35);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #111;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(255, 194, 15, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 94vh;
  padding: 7.4rem 2rem 1.3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.88) 27%, rgba(5, 6, 6, 0.34) 61%, rgba(5, 6, 6, 0.46) 100%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.9) 0%, transparent 34%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroBreath 11s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-top: 2rem;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-size: 5.2rem;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: var(--amber);
  text-shadow: 0 0 34px rgba(255, 194, 15, 0.18);
}

.hero-copy {
  max-width: 590px;
  margin: 1.3rem 0 0;
  color: rgba(247, 245, 237, 0.88);
  font-size: 1.14rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0 1.35rem;
  overflow: hidden;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 36%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.38);
  opacity: 0;
}

.btn:hover::before,
.btn:focus-visible::before {
  animation: buttonSheen 680ms ease;
}

.btn-primary {
  border: 1px solid rgba(255, 194, 15, 0.45);
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #111;
  box-shadow: 0 18px 44px rgba(255, 194, 15, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(255, 194, 15, 0.28);
  background: rgba(9, 10, 9, 0.72);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.icon-arrow {
  transition: transform 180ms ease;
}

.btn:hover .icon-arrow,
.btn:focus-visible .icon-arrow {
  transform: translateX(4px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 2.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  padding: 1rem 1.2rem 1rem 0;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

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

.hero-facts strong {
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.88rem;
}

.route-layer {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 44%;
  pointer-events: none;
  opacity: 0.78;
}

.route-layer svg {
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 10 18;
  filter: drop-shadow(0 0 10px rgba(255, 194, 15, 0.35));
  animation: routeMove 10s linear infinite;
}

.route-b {
  opacity: 0.42;
  animation-duration: 13s;
  animation-direction: reverse;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  animation: cueDrop 1.2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 6.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.7fr);
  gap: 4.8rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-copy {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.section-label {
  margin: 0 0 1.2rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section h2,
.gallery-copy h2,
.booking-copy h2 {
  margin: 0;
  max-width: 620px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p:not(.section-label),
.gallery-copy p:not(.section-label),
.booking-copy p {
  max-width: 550px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 265px;
  padding: 2.25rem 1.35rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  transition:
    transform 240ms ease,
    background 240ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
  transition: transform 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 194, 15, 0.09), transparent 72%);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--amber);
}

.service-card h3 {
  margin: 1.1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 80%, rgba(255, 194, 15, 0.1), transparent 28rem),
    var(--bg);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.price-card {
  min-height: 245px;
  padding: 1.45rem;
  border: 1px solid rgba(255, 194, 15, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 10, 9, 0.86);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.price-card:hover {
  border-color: rgba(255, 194, 15, 0.7);
  box-shadow: 0 28px 80px rgba(255, 194, 15, 0.11), var(--shadow);
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 1.1rem 0 1.2rem;
  color: var(--ink);
  font-size: 2.2rem;
  font-weight: 720;
  line-height: 1;
}

.price-card strong span {
  display: inline;
  color: inherit;
  font: inherit;
  text-transform: none;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.price-card::after {
  content: "";
  display: block;
  width: 82px;
  height: 26px;
  margin-top: 2.1rem;
  border-bottom: 2px solid rgba(255, 194, 15, 0.8);
  border-radius: 50%;
  opacity: 0.7;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, var(--max));
  margin: 2.4rem auto 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-note .icon {
  color: var(--amber);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 4.5rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.gallery-copy {
  align-self: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.9, 0.1, 1),
    filter 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.team {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
}

.team-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.team-header h2 {
  margin: 0;
  max-width: 700px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.team-header p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.team-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 15, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 10, 9, 0.86);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.team-card:hover {
  border-color: rgba(255, 194, 15, 0.58);
  box-shadow: 0 30px 90px rgba(255, 194, 15, 0.1), var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4.3;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid rgba(255, 194, 15, 0.18);
  filter: saturate(0.98) contrast(1.02);
}

.team-card-body {
  position: relative;
  padding: 1.05rem 1rem 1.15rem;
}

.team-card-body::before {
  content: "";
  position: absolute;
  top: -38px;
  right: 1rem;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 194, 15, 0.46);
  border-radius: 999px;
  background:
    url("assets/taxi-one-crest-original.png") center / 42px auto no-repeat,
    rgba(5, 6, 6, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.team-card-body span {
  display: block;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
}

.team-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 4.5rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-list .icon {
  color: var(--amber);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 194, 15, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(9, 10, 9, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.field {
  position: relative;
  min-width: 0;
}

.field label {
  position: absolute;
  top: 0.56rem;
  left: 0.78rem;
  z-index: 1;
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 62px;
  padding: 1.65rem 0.78rem 0.55rem;
  border: 1px solid rgba(255, 194, 15, 0.18);
  border-radius: 6px;
  outline: 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--ink);
  font-size: 0.98rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.field input::placeholder {
  color: rgba(185, 184, 174, 0.5);
}

.field input:focus,
.field select:focus {
  border-color: rgba(255, 194, 15, 0.78);
  background: rgba(255, 194, 15, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 194, 15, 0.1);
}

.booking-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.2rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--amber);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr;
  gap: 3rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.2rem 2rem 2rem;
  color: var(--muted);
}

.site-footer p {
  max-width: 350px;
  margin: 1rem 0 0;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0.45rem 0;
}

.site-footer .footer-brand {
  display: inline-flex;
  color: var(--ink);
}

.footer-brand .brand-logo {
  width: clamp(220px, 26vw, 310px);
  height: auto;
  aspect-ratio: 1420 / 560;
  object-fit: contain;
}

.copyright {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  color: var(--soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.85, 0.16, 1),
    transform 720ms cubic-bezier(0.2, 0.85, 0.16, 1);
}

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

@keyframes heroBreath {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -280;
  }
}

@keyframes cueDrop {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

@keyframes buttonSheen {
  0% {
    left: -42%;
    opacity: 0;
  }
  20% {
    opacity: 0.55;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .hero-title {
    font-size: 4.45rem;
  }

  .section-grid,
  .gallery,
  .booking,
  .team-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-copy {
    position: static;
  }

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

  .service-card:nth-child(2n) {
    border-right: 0;
  }

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

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

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, auto) 1fr;
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 0 6px 0 12px;
  }

  .brand-logo {
    width: clamp(132px, 40vw, 156px);
    height: auto;
    max-width: 44vw;
  }

  .nav-toggle {
    grid-column: 2;
    display: block;
    justify-self: end;
    margin-left: auto;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    position: absolute;
    grid-column: 1 / -1;
    justify-self: stretch;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    width: auto;
    display: grid;
    gap: 0;
    padding: 0.7rem;
    transform: translateY(-10px);
    border: 1px solid rgba(255, 194, 15, 0.22);
    border-radius: var(--radius);
    background: rgba(5, 6, 6, 0.96);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 5.2rem 1rem 0.95rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.12) 0%, rgba(5, 6, 6, 0.24) 34%, rgba(5, 6, 6, 0.72) 68%, rgba(5, 6, 6, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.34) 0%, rgba(5, 6, 6, 0.08) 58%, rgba(5, 6, 6, 0.18) 100%);
  }

  .hero-image {
    height: 70%;
    object-position: 58% 46%;
    filter: brightness(1.18) contrast(1.04) saturate(1.04);
  }

  .hero-content {
    align-self: end;
    margin-left: 0;
    padding-top: 3.2rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10.4vw, 2.75rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 36rem;
    margin-top: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-facts {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    margin-top: 1rem;
  }

  .btn {
    width: auto;
    min-height: 46px;
    padding: 0 0.58rem;
    gap: 0.45rem;
    font-size: 0.74rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.9rem;
  }

  .hero-facts div {
    padding: 0.5rem 0.36rem 0.5rem 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-facts div:last-child {
    border-right: 0;
  }

  .hero-facts strong {
    font-size: 0.92rem;
  }

  .hero-facts span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .route-layer {
    height: 24%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 3.15rem 1rem;
  }

  .section h2,
  .gallery-copy h2,
  .team-header h2,
  .booking-copy h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .service-rail,
  .price-board,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .service-rail {
    border: 0;
  }

  .service-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .service-card h3 {
    margin-top: 0.65rem;
    font-size: 0.92rem;
  }

  .service-card p {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .price-card {
    min-height: 0;
    padding: 0.88rem;
  }

  .price-card span {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .price-card strong {
    margin: 0.55rem 0 0.6rem;
    font-size: 1.42rem;
  }

  .price-card p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .price-card::after {
    display: none;
  }

  .pricing-note {
    align-items: flex-start;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .team-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .team-header p:not(.section-label) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .team-card img {
    aspect-ratio: 1 / 1.08;
  }

  .team-card-body {
    padding: 0.72rem 0.72rem 0.8rem;
  }

  .team-card-body::before {
    top: -27px;
    right: 0.52rem;
    width: 40px;
    height: 40px;
    background-size: 31px auto;
  }

  .team-card-body span {
    font-size: 0.61rem;
    line-height: 1.2;
  }

  .team-card h3 {
    margin-top: 0.25rem;
    font-size: 0.96rem;
  }

  .team-card p {
    margin-top: 0.45rem;
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .service-card {
    min-height: 0;
    padding: 1rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 0.55rem;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-large {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-row: span 1;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    padding: 0.75rem;
  }

  .field input,
  .field select {
    min-height: 54px;
    padding: 1.45rem 0.62rem 0.45rem;
    font-size: 0.86rem;
  }

  .field label {
    top: 0.46rem;
    left: 0.62rem;
    font-size: 0.62rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 2.8rem 1rem 1.4rem;
  }

  .footer-brand .brand-logo {
    width: min(62vw, 210px);
    height: auto;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 60px;
    padding-left: 10px;
    padding-right: 5px;
  }

  .brand-logo {
    width: clamp(128px, 39vw, 146px);
    max-width: 43vw;
  }

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

  .hero {
    min-height: 82svh;
    padding-top: 4.9rem;
  }

  .hero-title {
    font-size: 2.08rem;
  }

  .section h2,
  .gallery-copy h2,
  .team-header h2,
  .booking-copy h2 {
    font-size: 1.66rem;
  }

  .section-copy p:not(.section-label),
  .gallery-copy p:not(.section-label),
  .booking-copy p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .price-card strong {
    font-size: 1.25rem;
  }

  .gallery-grid {
    grid-auto-rows: 112px;
  }

  .service-card p,
  .price-card p,
  .team-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 124px;
    max-width: 42vw;
  }

  .hero-actions,
  .service-rail,
  .price-board,
  .team-grid,
  .booking-form {
    gap: 0.5rem;
  }

  .btn {
    min-height: 44px;
    padding: 0 0.42rem;
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: 1.92rem;
  }

  .service-card,
  .price-card {
    padding: 0.72rem;
  }

  .team-card h3 {
    font-size: 0.9rem;
  }

  .field input,
  .field select {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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