/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --ink-mute: #6b6b6b;
  --yellow: #f6c500;
  --yellow-deep: #d9ad00;
  --red: #d81920;
  --red-deep: #a4131a;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.85);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Oswald", "Inter", -apple-system, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-wrap: balance;
}
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: 0.7rem 1.1rem; background: var(--ink); color: #fff;
  z-index: 9999; font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--yellow);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin-top: 0.6rem;
}
.section-head p {
  margin-top: 0.9rem;
  color: var(--ink-mute);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  transition: transform 0.18s var(--ease-out), background-color 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.btn-yellow:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); transform: translateY(-2px); }
.btn-lg { padding: 1.2rem 2.2rem; font-size: 1.05rem; }

/* Reveal on scroll — defensive default is visible */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Header / Nav
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 46px;
  width: auto;
}
.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand-text span {
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
@media (min-width: 540px) { .brand-text { display: flex; } }

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-menu a { position: relative; padding: 0.3rem 0; }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s var(--ease-out);
}
.nav-menu a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.phone-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
}
.phone-pill svg { width: 18px; height: 18px; fill: var(--red); }
@media (min-width: 960px) { .phone-pill { display: inline-flex; } }

.badge-24h {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.18rem 0.4rem;
  line-height: 1;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
@media (min-width: 960px) { .nav-toggle { display: none; } }

@media (min-width: 960px) {
  .nav-menu { display: flex; }
}

/* Mobile nav panel */
@media (max-width: 959px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 4px solid var(--red);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
  }
  .nav-menu.is-open {
    display: flex;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
}
body.nav-open { overflow: hidden; }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 32%, rgba(10,10,10,0.55) 68%, rgba(10,10,10,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 8rem 3.5rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
}
.hero-title {
  margin-top: 1.1rem;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  max-width: 16ch;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 46ch;
  color: rgba(255,255,255,0.9);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: #fff;
}
.hero-phone svg { width: 26px; height: 26px; fill: var(--yellow); flex-shrink: 0; }
.hero-zone {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* =============================================================
   6. Slogan band
   ============================================================= */
.slogan-band {
  background: var(--ink);
  color: #fff;
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--red);
  padding-block: 3.2rem;
}
.slogan-band blockquote {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}
.slogan-band blockquote::before,
.slogan-band blockquote::after {
  content: '"';
  color: var(--yellow);
}

/* =============================================================
   7. Gallery
   ============================================================= */
.gallery {
  padding-block: 5.5rem;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.is-wide { grid-column: 1 / -1; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
}
.gallery-item.is-wide { aspect-ratio: 21 / 9; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.gallery-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.gallery-caption span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* =============================================================
   8. Special transport section
   ============================================================= */
.special {
  padding-block: 5.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.special-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .special-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.special-text .eyebrow { margin-bottom: 0.6rem; }
.special-text h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}
.special-text p {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
}
.special-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.special-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-weight: 600;
}
.special-list li::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  flex-shrink: 0;
}
.special-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.special-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.special-photos .special-photo:first-child { margin-top: 2rem; }

/* =============================================================
   9. Reviews
   ============================================================= */
.reviews {
  padding-block: 5.5rem;
  text-align: center;
  background: var(--bg);
}
.reviews-inner { max-width: 620px; margin-inline: auto; }
.stars {
  display: inline-flex;
  gap: 0.35rem;
  margin: 1.2rem 0 1.6rem;
}
.stars svg { width: 34px; height: 34px; fill: var(--yellow); }
.reviews h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.reviews p {
  margin-top: 1rem;
  color: var(--ink-mute);
  font-size: 1.05rem;
}
.reviews .btn { margin-top: 2rem; }
.reviews-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================================
   10. Contact
   ============================================================= */
.contact {
  background: var(--ink);
  color: #fff;
  padding-block: 5.5rem;
  border-top: 6px solid var(--red);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
}
.contact .eyebrow { color: var(--yellow); }
.contact .eyebrow::before { background: var(--red); }
.contact h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-top: 0.6rem; }
.contact-lead {
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 42ch;
}
.contact-call {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-row svg { width: 22px; height: 22px; fill: var(--yellow); flex-shrink: 0; margin-top: 0.2rem; }
.contact-row strong {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}
.contact-row a, .contact-row span.value {
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-row a:hover { color: var(--yellow); }

/* =============================================================
   11. Footer
   ============================================================= */
.site-footer {
  background: #0b0b0b;
  color: rgba(255,255,255,0.6);
  padding-block: 2.4rem;
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
}
.footer-brand img { height: 30px; width: auto; filter: grayscale(1) brightness(1.6); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }

/* =============================================================
   12. Responsive tuning
   ============================================================= */
@media (min-width: 1280px) {
  .hero-inner { padding-block: 9rem 4.5rem; }
}

/* =============================================================
   13. Full gallery page
   ============================================================= */
.gallery-page-hero {
  padding-block: calc(var(--nav-h) + 3.2rem) 2.5rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.back-link {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
}
.back-link:hover { text-decoration: underline; }
.gallery-page-hero h1 {
  margin-top: 0.6rem;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}
.gallery-page-hero p {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--ink-mute);
  font-size: 1.05rem;
}

.full-gallery { padding-block: 4rem; }
.full-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) { .full-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .full-gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.full-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  padding: 0;
  text-align: left;
}
.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.full-gallery-item:hover img { transform: scale(1.06); }
.full-gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.gallery-cta {
  padding-block: 4.5rem;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-top: 6px solid var(--yellow);
}
.gallery-cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: rgba(10,10,10,0.94);
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
}
.lightbox::backdrop { background: rgba(10,10,10,0.86); }
.lightbox img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.1rem;
  border: 0;
}
.lightbox-close:hover { background: var(--red); }
