/* ============================================================
   Blue Signature Chauffeur Service
   ============================================================ */

:root {
  --navy: #04152f;
  --navy-deep: #020c1b;
  --navy-mid: #0d2d5c;
  --navy-soft: #102845;
  --blue: #2f6fff;
  --blue-light: #5b9cff;
  --gold: #c9a96e;
  --white: #f8f9ff;
  --muted: rgba(248, 249, 255, 0.62);
  --line: rgba(255, 255, 255, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Inter", system-ui, sans-serif;

  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}

/* ---------- Shared headings ---------- */
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-eyebrow.light {
  color: var(--blue-light);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--blue-light);
  font-size: 1.15em;
  line-height: 0.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.4s var(--ease), color 0.4s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(47, 111, 255, 0.4);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--blue-light);
  background: rgba(91, 156, 255, 0.08);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
    border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.scrolled {
  background: rgba(4, 21, 47, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav.scrolled .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo img {
  height: 250px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.nav.scrolled .nav-logo img {
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--blue-light);
  transition: width 0.35s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: #fff;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: transparent;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  background: url("./car-hero.jpg") center 35% / cover no-repeat;
  will-change: transform;
  filter: brightness(0.9) saturate(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(2, 12, 27, 0.92) 0%,
      rgba(2, 12, 27, 0.55) 45%,
      rgba(2, 12, 27, 0.25) 100%
    ),
    linear-gradient(to top, var(--navy) 4%, rgba(4, 21, 47, 0.1) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-title .script {
  display: inline-block;
  font-size: 1.05em;
}

.hero-sub {
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--blue-light));
  animation: scrollPulse 2.2s var(--ease) infinite;
  transform-origin: top;
}

.hero-scroll-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--navy);
}

.about-lead {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 70px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar {
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(13, 45, 92, 0.35), rgba(4, 21, 47, 0.2));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 156, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 14px 0 12px;
}

.pillar p {
  color: var(--muted);
  font-size: 16px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--navy-deep);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.service-card {
  padding: 38px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 45, 92, 0.18);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    background 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 156, 255, 0.45);
  background: rgba(13, 45, 92, 0.4);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s var(--ease), transform 0.5s var(--ease);
}

.service-card:hover .service-icon {
  stroke: var(--gold);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
  position: relative;
  padding: clamp(110px, 18vh, 220px) 0;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  text-align: center;
  overflow: hidden;
}

.experience::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47, 111, 255, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.experience-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.experience-quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin: 24px 0 34px;
}

.experience-quote .script {
  font-size: 1.25em;
}

.experience-note {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--navy);
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
}

.gallery-shell {
  position: relative;
  width: 100%;
  padding-inline: clamp(20px, 5vw, 48px);
}

.gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  padding: 48px 0 20px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 156, 255, 0.45) rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
  margin-inline: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(91, 156, 255, 0.45);
  border-radius: 999px;
}

.gallery-track.is-centered {
  justify-content: center;
}

.gallery-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.gallery-item {
  flex: 0 0 clamp(300px, 72vw, 520px);
  height: clamp(260px, 42vw, 420px);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid var(--line);
  cursor: zoom-in;
  margin: 0;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gallery-item:hover {
  border-color: rgba(91, 156, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(4, 21, 47, 0.82);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.gallery-nav:hover {
  background: rgba(47, 111, 255, 0.35);
  border-color: rgba(91, 156, 255, 0.55);
}

.gallery-nav-prev {
  left: clamp(8px, 2vw, 20px);
}

.gallery-nav-next {
  right: clamp(8px, 2vw, 20px);
}

.gallery-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-hint {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 8px;
  text-align: center;
}

.gallery-empty {
  padding: 48px clamp(20px, 5vw, 48px);
  color: var(--muted);
  font-size: 16px;
  text-align: center;
  width: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 12, 27, 0.94);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  margin: 0;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(86vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-figure figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(4, 21, 47, 0.75);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(4, 21, 47, 0.75);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-prev {
  left: clamp(12px, 3vw, 28px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 28px);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  background: var(--navy-deep);
  text-align: center;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 50px;
  margin-top: 56px;
}

.partner {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.partner:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas {
  background: var(--navy);
  text-align: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 18px;
  margin: 50px 0 40px;
}

.area-list span {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.4s var(--ease);
}

.area-list span:hover {
  color: var(--blue-light);
}

.area-list i {
  color: var(--gold);
  font-style: normal;
  font-size: 20px;
}

.areas-note {
  color: var(--muted);
  font-size: 16px;
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.quote-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 420px;
}

.quote-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote-contacts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.quote-contacts span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-contacts a {
  font-size: 16px;
  color: var(--white);
  transition: color 0.3s var(--ease);
}

.quote-contacts a:hover {
  color: var(--blue-light);
}

/* Form */
.quote-form {
  background: rgba(13, 45, 92, 0.22);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 46px);
}

.field {
  margin-bottom: 22px;
  flex: 1;
}

.field-row {
  display: flex;
  gap: 20px;
}

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(2, 12, 27, 0.5);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(2, 12, 27, 0.75);
}

.field select option {
  background: var(--navy-deep);
  color: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form-status.error {
  color: #ff8a8a;
}

/* Success */
.quote-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(50px, 8vw, 90px) 30px;
  border: 1px solid rgba(91, 156, 255, 0.3);
  border-radius: 20px;
  background: rgba(13, 45, 92, 0.25);
  animation: fadeUp 0.7s var(--ease);
}

.success-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 14px 40px rgba(47, 111, 255, 0.45);
}

.quote-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 14px;
}

.quote-success p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: clamp(70px, 10vh, 110px) 0 50px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: 200px;
  width: auto;
  margin-bottom: 22px;
}

.footer-tag {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 34px;
}

.footer-emails {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  margin-bottom: 28px;
}

.footer-emails a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s var(--ease);
}

.footer-emails a:hover {
  color: var(--blue-light);
}

.footer-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.footer-meta a:hover {
  color: var(--blue-light);
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll-line {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(2, 12, 27, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 18px;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    flex-direction: column;
    gap: 0;
  }
  .hero-actions .btn {
    flex: 1;
  }
  .gallery-item {
    flex-basis: 88vw;
    height: 280px;
  }

  .gallery-nav {
    display: none;
  }
}
