:root {
  --racing-black: #050505;
  --carbon-gray: #1A1A1A;
  --ash-gray: #666666;
  --silver: #999999;
  --trophy-gold: #D4AF37;
  --white: #FFFFFF;
  --blood-red: #DC0000;
  --crimson: #B80000;
  --dark-overlay: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.40) 100%);
  --section-fade: linear-gradient(180deg, rgba(5,5,5,0.40) 0%, rgba(5,5,5,0.85) 100%);
  --gold-glow: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-pad: 6em;
  --content-max: 1400px;
  --content-pad: 1.5em;
  --grid-gap: 1.5em;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.6, 1);


  --z-bg: -1;
  --z-content: 1;
  --z-nav: 50;
  --z-overlay: 51;
  --z-cursor: 100;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background: var(--racing-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--content-pad);
  padding-right: var(--content-pad);
  position: relative;
  z-index: var(--z-content);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.85em 2.5em;
  border-radius: 2px;
  transition: all 200ms var(--ease);
  cursor: pointer;
  position: relative;
}
.btn--primary {
  background: var(--blood-red);
  color: var(--white);
  border: none;
}
.btn--primary:hover { background: var(--crimson); }
.btn--primary:active { transform: scale(0.98); }
.btn--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.30);
  color: var(--white);
}
.btn--secondary:hover { border-color: var(--blood-red); color: var(--blood-red); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  border-radius: 0;
  font-size: 0.85em;
}
.btn--ghost:hover { border-bottom-color: var(--blood-red); color: var(--blood-red); }
.btn--large { padding: 1em 3.5em; font-size: 1.1em; }

.cursor, .cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blood-red);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: width 200ms var(--ease), height 200ms var(--ease), background 200ms var(--ease), border 200ms var(--ease), opacity 200ms var(--ease), transform 50ms linear;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 6px; height: 6px;
  opacity: 0.5;
  transition: transform 80ms linear, width 200ms var(--ease), height 200ms var(--ease);
}
.cursor--hover {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--blood-red);
  opacity: 0.6;
}
@media (pointer: coarse) {
  .cursor, .cursor-trail { display: none !important; }
}

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: var(--z-nav);
  height: 4.5em;
  padding: 0 var(--content-pad);
  transition: background 300ms var(--ease-in-out), border-color 300ms var(--ease-in-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav__container {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 200ms var(--ease);
}
.nav__logo:hover { color: var(--blood-red); }
.nav__desktop {
  display: flex;
  align-items: center;
  gap: 2em;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: color 200ms var(--ease), opacity 200ms var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blood-red);
  transition: width 200ms var(--ease);
}
.nav__link:hover { color: var(--blood-red); opacity: 1; }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--blood-red); opacity: 1; }
.nav__link--active::after { width: 100%; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 300ms var(--ease);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--carbon-gray);
  padding: 6em var(--content-pad) 2em;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-out);
}
.nav-overlay--open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4em;
}
.nav-overlay__logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-overlay__close {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 200ms var(--ease);
}
.nav-overlay__close:hover { color: var(--blood-red); }
.nav-overlay__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}
.nav-overlay__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out), color 200ms var(--ease);
}
.nav-overlay--open .nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay--open .nav-overlay__link:nth-child(1) { transition-delay: 80ms; }
.nav-overlay--open .nav-overlay__link:nth-child(2) { transition-delay: 160ms; }
.nav-overlay--open .nav-overlay__link:nth-child(3) { transition-delay: 240ms; }
.nav-overlay__link:hover { color: var(--blood-red); }
.nav-overlay__bottom {
  margin-top: auto;
  padding-top: 2em;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-overlay__phone {
  font-size: 1.1em;
  color: var(--white);
  margin-bottom: 0.3em;
}
.nav-overlay__address {
  font-size: 1em;
  color: var(--ash-gray);
  margin-bottom: 1em;
}
.nav-overlay__social {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 200ms var(--ease);
}
.nav-overlay__social:hover { color: var(--blood-red); }

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.js-reveal.is-visible:nth-child(2) { transition-delay: 100ms; }
.js-reveal.is-visible:nth-child(3) { transition-delay: 200ms; }
.js-reveal.is-visible:nth-child(4) { transition-delay: 300ms; }
.js-reveal.is-visible:nth-child(5) { transition-delay: 400ms; }
.js-reveal.is-visible:nth-child(6) { transition-delay: 500ms; }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: var(--z-bg);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-out) 200ms forwards;
  transform: scale(var(--hero-scale, 1));
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--dark-overlay);
  opacity: 0;
  animation: fadeIn 600ms var(--ease-out) 400ms forwards;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--content-pad);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5.5em;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 0.3em;
}
.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: wordReveal 700ms var(--ease-out) forwards;
}
.hero__headline .word:nth-child(1) { animation-delay: 400ms; }
.hero__headline .word:nth-child(2) { animation-delay: 550ms; }
.hero__headline .word:nth-child(3) { animation-delay: 700ms; }
.hero__headline .word:nth-child(4) { animation-delay: 850ms; }
.hero__subheadline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5em;
  opacity: 0;
  animation: fadeSlideUp 600ms var(--ease-out) 800ms forwards;
}
.hero__cta {
  opacity: 0;
  animation: fadeIn 500ms var(--ease-out) 1100ms forwards;
}
.hero__tagline {
  position: absolute;
  bottom: 3em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 500ms var(--ease-out) 1300ms forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.experiences {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.experiences__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-bg);
  transform: translateY(var(--exp-bg-y, 0));
  will-change: transform;
}
.experiences__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5,5,5,0.70);
}
.experiences__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.25em;
}
.experiences__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 3em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.exp-card {
  background: rgba(26,26,26,0.60);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 2em;
  text-align: center;
  transition: border-color 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-card:hover {
  border-color: rgba(220,0,0,0.40);
  background: rgba(26,26,26,0.80);
  transform: translateY(-4px);
}
.exp-card__image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
}
.exp-card__image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.exp-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.exp-card__desc {
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--ash-gray);
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.stats {
  padding: 5em 0;
  background: var(--racing-black);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}
.stat-block {
  text-align: center;
  cursor: default;
}
.stat-block__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 1;
  color: var(--white);
  transition: color 200ms var(--ease);
  margin-bottom: 0.3em;
}
.stat-block:hover .stat-block__number { color: var(--blood-red); }
.stat-block__line {
  width: 40px;
  height: 2px;
  background: var(--blood-red);
  margin: 0 auto 0.5em;
}
.stat-block__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash-gray);
}

.gallery {
  padding: var(--section-pad) 0;
  background: var(--racing-black);
}
.gallery__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25em;
}
.gallery__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: var(--ash-gray);
  margin-bottom: 3em;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1em;
  align-items: stretch;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 420px;
  background: var(--carbon-gray);
  cursor: zoom-in;
}
.gallery__item::after {
    content: 'VIEW';
    position: absolute;
    bottom: 20px;
    right: 20px;

    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 600;

    color: white;
    opacity: 0;

    transform: translateY(10px);
    transition: 0.3s ease;
}

.gallery__item:hover::after {
    opacity: 0.7;
    transform: translateY(0);
}
.gallery__item--large {
  min-height: 420px;
}
.gallery__item img,
.gallery__item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
.gallery__item iframe {
  aspect-ratio: 16 / 9;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item img {
  transition: transform 400ms var(--ease);
}
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.4);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.pricing {
  padding: var(--section-pad) 0;
  background: var(--carbon-gray);
}
.pricing__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.25em;
}
.pricing__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: var(--ash-gray);
  text-align: center;
  margin-bottom: 3em;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.pricing-card {
  background: var(--racing-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2.5em 2em;
  text-align: center;
  position: relative;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.pricing-card--premium {
  border-color: rgba(212,175,55,0.50);
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, var(--racing-black) 30%);
}
.pricing-card--premium:hover { border-color: rgba(212,175,55,0.80); }
.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5em;
  background: var(--trophy-gold);
  color: var(--racing-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3em 0.8em;
  border-radius: 0 0 2px 2px;
}
.pricing-card__header { margin-bottom: 1.5em; }
.pricing-card__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  color: var(--ash-gray);
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.pricing-card__price {
  margin-bottom: 1.5em;
}
.pricing-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3em;
  line-height: 1;
  color: var(--white);
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5em;
  color: var(--ash-gray);
}
.pricing-card__period {
  display: block;
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--ash-gray);
  margin-top: 0.2em;
}
.pricing-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 0 1.5em;
}
.pricing-card__features {
  text-align: left;
  margin-bottom: 2em;
  flex: 1;
}
.pricing-card__features li {
  font-family: var(--font-body);
  font-size: 0.95em;
  color: rgba(255,255,255,0.7);
  line-height: 2.2em;
  padding-left: 1.5em;
  position: relative;
}
.pricing-card__check {
  position: absolute;
  left: 0;
  color: var(--blood-red);
  font-weight: 700;
}
.pricing-card__btn {
  width: 100%;
  margin-top: auto;
}
.pricing__note {
  text-align: center;
  margin-top: 2.5em;
  font-family: var(--font-body);
  font-size: 0.9em;
  color: var(--ash-gray);
}
.pricing__note .btn { margin-left: 0.5em; }

.about {
  padding: var(--section-pad) 0;
  background: var(--racing-black);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}
.about__content { padding-right: 1em; }
.about__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blood-red);
  margin-bottom: 1em;
}
.about__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1em;
}
.about__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2em;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}
.about__feature-indicator {
  width: 6px;
  height: 6px;
  background: var(--blood-red);
  flex-shrink: 0;
  margin-top: 0.5em;
}
.about__feature-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.about__feature-desc {
  font-family: var(--font-body);
  font-size: 0.85em;
  color: var(--ash-gray);
}
.about__image-wrapper {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.cta {
  padding: var(--section-pad) 0;
  background: var(--carbon-gray);
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: var(--gold-glow);
  pointer-events: none;
}
.cta .container {
  text-align: center;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.cta__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5em;
}
.cta__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25em;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5em;
}
.cta__btn { margin-bottom: 1em; }
.cta__phone {
  font-family: var(--font-body);
  font-size: 0.85em;
  color: var(--ash-gray);
}
.cta__phone a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms var(--ease);
}
.cta__phone a:hover { color: var(--blood-red); }

.contact-bar {
  padding: 3em 0;
  background: var(--racing-black);
}
.contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
.contact-bar__col { text-align: left; }
.contact-bar__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  color: var(--ash-gray);
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.contact-bar__value {
  font-family: var(--font-body);
  font-size: 1.1em;
  color: var(--white);
  line-height: 1.8;
}
.contact-bar__value a {
  color: inherit;
  transition: color 200ms var(--ease);
}
.contact-bar__value a:hover { color: var(--blood-red); }
.contact-bar__value--muted {
  font-size: 1em;
  color: var(--ash-gray);
}
.contact-bar__link { margin-top: 0.5em; }

.footer {
  padding: 2em 0;
  background: var(--racing-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  margin-bottom: 0.3em;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8em;
  color: var(--ash-gray);
}
.footer__right {
  display: flex;
  gap: 1.5em;
}
.footer__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  transition: color 200ms var(--ease), opacity 200ms var(--ease);
}
.footer__link:hover { color: var(--white); opacity: 1; }


@media (max-width: 1024px) {
  .experiences__grid { gap: 1em; }
  .gallery__grid { grid-template-rows: repeat(2, 220px); }
  .about__grid { gap: 2em; }
  .about__image { min-height: 400px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4em; --content-pad: 1em; }

  .nav__desktop { display: none; }
  .nav__hamburger { display: flex; }

  .hero__headline { font-size: 2.8em; }
  .hero__subheadline { font-size: 1.1em; }
  .hero__tagline { display: none; }

  .experiences__heading,
  .gallery__heading,
  .pricing__heading,
  .cta__heading { font-size: 2.2em; }

  .experiences__grid,
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--premium { order: -1; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5em; }
  .stat-block__number { font-size: 2.5em; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item { height: 250px; }
  .gallery__item--large { grid-row: span 1; grid-column: span 1; }

  .about__grid { grid-template-columns: 1fr; }
  .about__content { padding-right: 0; order: 2; }
  .about__image-wrapper { order: 1; }
  .about__image { min-height: 300px; }
  .about__heading { font-size: 1.8em; }
  .about__desc { font-size: 1.1em; }

  .contact-bar__grid { grid-template-columns: 1fr; gap: 2em; }

  .footer__content { flex-direction: column; text-align: center; gap: 1em; }
  .footer__right { justify-content: center; }

  .nav-overlay__link { font-size: 2.2em; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.2em; }
  .stats__grid { gap: 1em; }
  .about__features { grid-template-columns: 1fr; }
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal__img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    transform: scale(0.9);
    transition: 0.3s ease;
    object-fit: contain;
}

.image-modal.active .image-modal__img {
    transform: scale(1);
}

.image-modal__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 48px;
    cursor: pointer;
    font-family: sans-serif;
}

.clickable-image {
    cursor: pointer;
}
body.modal-open {
    overflow: hidden;
}