/* ============================================
   H LUXURY TRANSPORTATION — Design Tokens & Styles
   ============================================ */

/* Fonts loaded in HTML head for performance */

:root {
  /* Typography */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', 'Arial', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — Dark Luxury Palette */
  --color-bg: #0A0A0A;
  --color-surface: #141414;
  --color-surface-2: #1A1A1A;
  --color-surface-3: #1E1E1E;
  --color-border: #2A2A2A;
  --color-gold: #C9A96E;
  --color-gold-dim: rgba(201, 169, 110, 0.15);
  --color-gold-glow: rgba(201, 169, 110, 0.3);
  --color-text: #E8E4DD;
  --color-text-bright: #F5F3EF;
  --color-text-muted: #8A8578;
  --color-text-faint: #5A5550;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-max: 1440px;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3) var(--space-8);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-gold);
  z-index: 101;
}

.nav__logo svg {
  width: 40px;
  height: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  list-style: none;
}

.nav__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-1) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text-bright);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-gold);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.nav__cta:hover {
  background: #D4B87A;
  transform: translateY(-1px);
}

.nav__cta:active {
  transform: translateY(0);
}

/* Mobile menu button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 101;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__hamburger--active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  color: var(--color-text-bright);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-interactive);
}

.nav__mobile a:hover {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__hamburger { display: flex; }
}

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

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8);
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--color-text-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-10);
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--gold {
  background: var(--color-gold);
  color: #0A0A0A;
  border: 1px solid var(--color-gold);
}

.btn--gold:hover {
  background: #D4B87A;
  border-color: #D4B87A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-8);
  position: relative;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.section__line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}

.section__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-text-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
}

.section__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.2;
}

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.container--max {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet {
  background: var(--color-bg);
}

.fleet__header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.fleet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.fleet__card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.fleet__card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.08), inset 0 0 40px rgba(201, 169, 110, 0.03);
}

.fleet__card:first-child {
  padding-top: var(--space-8);
}

.fleet__card:last-child {
  margin-top: var(--space-16);
}

.fleet__card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.fleet__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.fleet__card:hover .fleet__card-image img {
  transform: scale(1.03);
}

.fleet__card-content {
  padding: var(--space-8);
}

.fleet__card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-bright);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.fleet__card-capacity {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.fleet__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fleet__card-features li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 300;
}

.fleet__card-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.fleet__card-ideal {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.fleet__card-ideal strong {
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }
  .fleet__card:last-child {
    margin-top: 0;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--color-surface);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  position: relative;
  padding: var(--space-8);
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  background: rgba(26, 26, 26, 0.8);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  opacity: 0.8;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-bright);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}

.service-card__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
  background: var(--color-bg);
  padding: 0;
  position: relative;
}

.experience__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}

.experience__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.experience__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--space-8);
}

.experience__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-bright);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-8);
  max-width: 700px;
  position: relative;
}

.experience__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.4em;
  left: -0.4em;
  font-size: 4em;
  color: var(--color-gold);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
}

.experience__text-block {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
  max-width: var(--content-default);
  margin: 0 auto;
  text-align: center;
}

.experience__text-block .section__eyebrow {
  justify-content: center;
}

.experience__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 650px;
  margin: var(--space-6) auto 0;
}

@media (max-width: 768px) {
  .experience__image-wrap {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why {
  background: var(--color-surface);
}

.why__header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.why__item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.why__icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin: 0 auto var(--space-6);
  opacity: 0.8;
}

.why__item-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-bright);
  margin-bottom: var(--space-3);
  letter-spacing: 0.03em;
}

.why__item-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--color-bg);
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial {
  padding: var(--space-8);
  position: relative;
  border-left: 1px solid rgba(201, 169, 110, 0.2);
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: var(--space-4);
  display: block;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial__author {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.testimonial__role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ============================================
   BOOKING / CTA
   ============================================ */
.booking {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.booking__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  text-align: center;
}

.booking__header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.booking__header .section__eyebrow {
  justify-content: center;
}

.booking__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.booking__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color var(--transition-interactive);
}

.booking__contact-item:hover {
  color: var(--color-gold);
}

.booking__contact-item i {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 700px;
  margin: 0 auto var(--space-10);
  text-align: left;
}

.booking__form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.booking__form-group--full {
  grid-column: 1 / -1;
}

.booking__form label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.booking__form input,
.booking__form select,
.booking__form textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  transition: border-color var(--transition-interactive);
  appearance: none;
  -webkit-appearance: none;
}

.booking__form input::placeholder,
.booking__form textarea::placeholder {
  color: var(--color-text-faint);
}

.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.booking__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8578' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.booking__form textarea {
  resize: vertical;
  min-height: 120px;
}

.booking__submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .booking__form {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: clamp(var(--space-12), 5vw, var(--space-20)) var(--space-8) var(--space-8);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__brand svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
}

.footer__brand-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 250px;
}

.footer__nav {
  display: flex;
  gap: var(--space-10);
}

.footer__nav-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.footer__nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-col a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color var(--transition-interactive);
}

.footer__nav-col a:hover {
  color: var(--color-text-bright);
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact-info a,
.footer__contact-info span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__contact-info a:hover {
  color: var(--color-text-bright);
}

.footer__socials {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer__socials a {
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}

.footer__socials a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 300;
}

.footer__badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: var(--space-8);
  }
  .footer__nav {
    flex-direction: column;
    gap: var(--space-6);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

@keyframes revealFade {
  to { opacity: 1; }
}

.reveal-up {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal-up {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    animation: revealClip linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

@keyframes revealClip {
  to { 
    clip-path: inset(0 0 0 0); 
    opacity: 1;
  }
}

/* Stagger children */
.stagger > * {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .stagger > *:nth-child(1) { animation-delay: 0ms; }
  .stagger > *:nth-child(2) { animation-delay: 60ms; }
  .stagger > *:nth-child(3) { animation-delay: 120ms; }
  .stagger > *:nth-child(4) { animation-delay: 180ms; }
  .stagger > *:nth-child(5) { animation-delay: 240ms; }
  .stagger > *:nth-child(6) { animation-delay: 300ms; }
}

/* ============================================
   RESPONSIVE GLOBAL
   ============================================ */
@media (max-width: 768px) {
  .hero__title {
    letter-spacing: 0.1em;
  }
  .section {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
  .nav {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
}
