/* ========================================
   JOAABQ Photography — Styles (v2)
   Bold typography, beige/black palette
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --charcoal: #1B1B1B;
  --beige: #D8C3A5;
  --cream: #F3EBDD;
  --brown: #8A6746;
  --white: #ffffff;

  --bg-dark: var(--black);
  --bg-light: var(--beige);
  --text-on-dark: var(--cream);
  --text-on-dark-muted: rgba(243, 235, 221, 0.6);
  --text-on-light: var(--charcoal);
  --text-on-light-muted: rgba(27, 27, 27, 0.65);
  --border-dark: rgba(216, 195, 165, 0.15);
  --border-light: rgba(27, 27, 27, 0.12);

  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --nav-height: 72px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --content-max: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-light);
  background: var(--bg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--brown);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}
.btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn--dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(216, 195, 165, 0.4);
}
.btn--outline:hover {
  background: rgba(216, 195, 165, 0.1);
  border-color: var(--beige);
}

.btn--full { width: 100%; justify-content: center; }
.btn__icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* --- Section Headers --- */
.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.65;
}

/* Dark section defaults */
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark .section__title { color: var(--cream); }
.section--dark .section__subtitle { color: var(--text-on-dark-muted); }

/* Light section defaults */
.section--light { background: var(--bg-light); color: var(--text-on-light); }
.section--light .section__title { color: var(--charcoal); }
.section--light .section__subtitle { color: var(--text-on-light-muted); }


/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--nav-height);
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 235, 221, 0.7);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--beige);
  transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }
.nav__link:focus-visible {
  outline: 2px solid var(--beige);
  outline-offset: 4px;
}
.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background: var(--beige);
  color: var(--black);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--cream); }
.nav__cta:focus-visible {
  outline: 3px solid var(--brown);
  outline-offset: 3px;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/optimized/hero.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  max-width: 780px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1;
  color: var(--white);
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.5;
  color: var(--beige);
}
.hero__desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--cream);
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero .btn--primary {
  background: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}
.hero .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}
.hero .btn--outline {
  color: var(--cream);
  border-color: rgba(216, 195, 165, 0.4);
}
.hero .btn--outline:hover {
  background: rgba(216, 195, 165, 0.1);
  border-color: var(--beige);
}
.hero__location {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
  color: var(--cream);
}

/* ========================================
   CREDIBILITY / AWARDS (beige)
   ======================================== */
.cred {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: 2.5rem 1.5rem;
}
.cred__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cred__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--charcoal);
}
.cred__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
}
.cred__icon {
  font-size: 1rem;
  color: var(--brown);
}

/* ========================================
   IMAGE AUTO-SLIDER STRIP
   ======================================== */
@keyframes slider-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slider-strip {
  background: var(--bg-dark);
  padding: 2rem 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.slider-strip__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slider-scroll 30s linear infinite;
}
.slider-strip:hover .slider-strip__track {
  animation-play-state: paused;
}
.slider-strip__img {
  flex-shrink: 0;
  width: 280px;
  height: 187px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.slider-strip__img--tall {
  width: 187px;
  height: 187px;
}
.slider-strip__img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}
@media (max-width: 768px) {
  .slider-strip__img { width: 200px; height: 133px; }
  .slider-strip__img--tall { width: 133px; height: 133px; }
  .slider-strip__track { gap: 0.75rem; }
  .slider-strip { padding: 1.25rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slider-strip__track { animation: none; }
  .slider-strip__img { transition: none; }
}

/* ========================================
   GALLERY / FEATURED WORK (black)
   ======================================== */
.work {
  padding: var(--section-pad) 1.5rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.work .section__title { color: var(--cream); }
.work .section__subtitle { color: var(--text-on-dark-muted); }

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  columns: 3;
  column-gap: 0.75rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--charcoal);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
  object-fit: cover;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.03);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox[hidden] {
  display: flex;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__caption {
  color: var(--text-on-dark-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  text-align: center;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(243, 235, 221, 0.7);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 5;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--cream);
}
.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 2px solid var(--beige);
  outline-offset: 4px;
}
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
}
.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(3px); }

/* ========================================
   SERVICES (beige)
   ======================================== */
.services {
  padding: var(--section-pad) 1.5rem;
  background: var(--bg-light);
  color: var(--text-on-light);
}
.services .section__title { color: var(--charcoal); }
.services .section__subtitle { color: var(--text-on-light-muted); }

.services__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  background: var(--charcoal);
  border-radius: 50%;
  color: var(--beige);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}
.services__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.services__cta .btn--primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.services__cta .btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* ========================================
   ABOUT (black)
   ======================================== */
.about {
  padding: var(--section-pad) 1.5rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.about__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about__text .section__title {
  text-align: left;
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.about__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(243, 235, 221, 0.7);
  margin-bottom: 1rem;
}
.about__travel {
  font-weight: 700;
  color: var(--beige) !important;
}
.about__links {
  margin-top: 1.5rem;
}
.about__links .btn--outline {
  color: var(--cream);
  border-color: rgba(216, 195, 165, 0.35);
}
.about__links .btn--outline:hover {
  background: rgba(216, 195, 165, 0.1);
  border-color: var(--beige);
  color: var(--beige);
}

/* ========================================
   TESTIMONIALS (beige)
   ======================================== */
.reviews {
  padding: var(--section-pad) 1.5rem;
  background: var(--bg-light);
  color: var(--text-on-light);
}
.reviews .section__title { color: var(--charcoal); }

.reviews__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--brown);
}
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-on-light-muted);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
}
.review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.review-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.review-card__handle {
  font-size: 0.8rem;
  color: var(--brown);
  transition: color 0.2s;
  font-style: normal;
}
.review-card__handle:hover { color: var(--charcoal); }

/* ========================================
   SPONSOR (black)
   ======================================== */
.sponsor {
  padding: 3.5rem 1.5rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.sponsor__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.sponsor__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.5rem;
}
.sponsor__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--beige);
}
.sponsor__desc {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sponsor .btn--outline {
  color: var(--cream);
  border-color: rgba(216, 195, 165, 0.3);
}
.sponsor .btn--outline:hover {
  background: rgba(216, 195, 165, 0.1);
  border-color: var(--beige);
}

/* ========================================
   BOOKING FORM (beige)
   ======================================== */
.book {
  padding: var(--section-pad) 1.5rem;
  background: var(--bg-light);
  color: var(--text-on-light);
}
.book .section__title { color: var(--charcoal); }
.book__inner {
  max-width: 720px;
  margin: 0 auto;
}
.book__text {
  text-align: center;
  margin-bottom: 2.5rem;
}
.book__text p {
  color: var(--text-on-light-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
.book__email {
  margin-top: 0.5rem !important;
  font-size: 0.9rem !important;
}
.book__email a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.book__email a:hover { color: var(--charcoal); }

.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.required { color: var(--brown); }
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(138, 103, 70, 0.15);
}
.form-input.error {
  border-color: #c0392b;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%231B1B1B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1.2em;
}

.vehicle-fields {
  background: rgba(27, 27, 27, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.vehicle-fields[hidden] { display: none; }

.book__form .btn {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 0.95rem;
}
.book__form .btn--primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.book__form .btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* Success State */
.book__success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.book__success[hidden] { display: none; }
.book__success-inner {
  max-width: 400px;
  margin: 0 auto;
}
.book__success-icon {
  width: 56px;
  height: 56px;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.book__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.book__success p {
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

/* ========================================
   FOOTER (black)
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  height: 36px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.7;
}
.footer__location {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer__icon {
  width: 22px;
  height: 22px;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--beige); }
.footer__links a:focus-visible {
  outline: 2px solid var(--beige);
  outline-offset: 4px;
}
.footer__sponsor-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer__sponsor-link:hover { opacity: 0.8; }
.footer__copy {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}
.footer__policy-link {
  color: var(--text-on-dark-muted);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer__policy-link:hover { color: var(--cream); }
.footer__credit {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ========================================
   POLICY / PRIVACY PAGE
   ======================================== */
.policy {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: var(--section-pad) 1.5rem;
  min-height: 100vh;
}
.policy__inner { max-width: 800px; margin: 0 auto; }
.policy__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.policy__updated {
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  margin-bottom: 2.5rem;
}
.policy h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--black);
}
.policy p, .policy li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light);
  margin-bottom: 1rem;
}
.policy ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy li { margin-bottom: 0.5rem; }
.policy a { color: var(--brown); text-decoration: underline; }
.policy a:hover { color: var(--black); }
.policy__back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--beige);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.policy__back:hover { background: var(--black); color: var(--cream); }
.policy__back:focus-visible {
  outline: 3px solid var(--brown);
  outline-offset: 3px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__toggle { display: flex; }
  .nav.menu-open {
    bottom: 0;
  }
  .nav__links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--nav-height));
    z-index: 99;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }
  .nav__link {
    font-size: 1.1rem;
    color: var(--cream);
  }
  .nav__link::after { display: none; }
  .nav__cta {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__image { max-height: 500px; }
  .about__text .section__title { text-align: center; }

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

  .cred__inner {
    flex-direction: column;
    gap: 1rem;
  }
  .cred__item { white-space: normal; text-align: center; }
}

@media (max-width: 640px) {
  .gallery { columns: 1; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero__title { letter-spacing: 0.02em; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .lightbox__prev { left: 0.5rem; font-size: 2rem; }
  .lightbox__next { right: 0.5rem; font-size: 2rem; }
  .lightbox__close { top: 1rem; right: 1rem; font-size: 2rem; }
}

@media (max-width: 374px) {
  .btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .hero__content { padding-left: 1rem; padding-right: 1rem; }
}
