/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg: #f5f0e8;
  --c-dark: #111a14;
  --c-cream: #f5f0e8;
  --c-rust: #c8502a;
  --c-rust-hover: #a8391a;
  --c-olive: #5a6b4f;
  --c-stone: #8a8278;
  --c-light-stone: #c5bfb4;
  --c-white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-dark);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
#cursor {
  width: 12px; height: 12px;
  background: var(--c-rust);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease), opacity 0.3s;
  transform: translate(-50%, -50%);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-rust);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s var(--ease), width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body:hover #cursor { opacity: 1; }
a:hover ~ #cursor, button:hover ~ #cursor { transform: translate(-50%, -50%) scale(1.5); }

/* Utility */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
@media(max-width:768px){ .container { padding: 0 20px; } }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-rust);
  color: white;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover { background: var(--c-rust-hover); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(0); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-rust);
  color: var(--c-rust);
}
.btn-outline:hover { background: var(--c-rust); color: white; }
.btn-white {
  background: white;
  color: var(--c-dark);
}
.btn-white:hover { background: var(--c-cream); }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-rust);
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
#site-header.scrolled {
  background: rgba(17, 26, 20, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-wrap img { height: 38px; object-fit: contain; }
.logo-wrap .logo-white { display: block; }
.logo-wrap .logo-black { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.header-nav a:hover { color: white; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.wa-btn:hover { background: #1eb857; transform: translateY(-2px); }

/* Mobile nav toggle */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: white; transition: all 0.3s; }

@media(max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  #site-header { padding: 18px 24px; }
  #site-header.scrolled { padding: 14px 24px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-bg {
  position: absolute;
  inset: -15%;
  background-color: var(--c-dark); /* Fallback */
  will-change: transform;
  transition: transform 0.1s linear;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 1; /* Ensure full visibility */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,14,0.95) 0%,
    rgba(10,20,14,0.55) 45%,
    rgba(10,20,14,0.15) 100%
  );
}

/* Drone-shot overlay vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,10,7,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Altitude lines */
.hero-lines {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.hero-lines span {
  display: block;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 0 90px;
  width: 100%;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-rust);
}
.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.9;
  color: white;
  text-transform: uppercase;
  mix-blend-mode: normal;
  will-change: transform;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
}
.hero-title .accent { color: var(--c-rust); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-desc {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint span { font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* Stats bar */
.stats-bar {
  background: var(--c-dark);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: white;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--c-rust);
  line-height: 1;
}
.stat-label { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
@media(max-width:600px){ .stat-divider{display:none;} }

/* ===== INTRO ===== */
.intro-section {
  padding: 120px 0 100px;
  background: var(--c-cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media(max-width:900px){ .intro-grid { grid-template-columns: 1fr; gap: 50px; } }

.intro-images {
  position: relative;
}
.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-img-overlap {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--c-cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
@media(max-width:900px){
  .intro-img-overlap { position: relative; bottom: 0; right: 0; width: 70%; margin-left: auto; margin-top: -40px; border-width: 6px; }
}

.intro-text {}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 12px 0 30px;
}
.intro-heading .outline-dark {
  -webkit-text-stroke: 1px var(--c-dark);
  color: transparent;
}
.intro-text p {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--c-stone);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  padding: 100px 0;
  background: var(--c-dark);
  overflow: hidden;
}
.dest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
  flex-wrap: wrap;
}
.dest-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: white;
  line-height: 1;
  text-transform: uppercase;
}
.dest-heading .outline-white {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}
.dest-desc {
  max-width: 400px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* Horizontal Slider */
.dest-slider-wrap {
  position: relative;
}
.dest-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
  cursor: grab;
}
.dest-slider:active { cursor: grabbing; }
.dest-slider::-webkit-scrollbar { display: none; }

.dest-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,7,0.92) 0%, transparent 60%);
}
.dest-card-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: white;
}
.dest-card-info .region {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--c-rust);
  text-transform: uppercase;
  font-weight: 500;
}
.dest-card-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0 10px;
}
.dest-card-info .dest-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.dest-card-info .dest-meta span { display: flex; align-items: center; gap: 4px; }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.slider-btn:hover { background: var(--c-rust); border-color: var(--c-rust); }
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active { background: var(--c-rust); transform: scale(1.4); }

/* ===== QUOTE SECTION ===== */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
@media(max-width:768px){ .quote-section { grid-template-columns: 1fr; } }

.quote-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.quote-img:hover img { transform: scale(1.04); }

.quote-content {
  background: #1c2e21;
  padding: clamp(50px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-icon { font-size: 50px; color: var(--c-rust); margin-bottom: 28px; line-height: 1; }
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 36px;
}
.quote-text .accent { color: var(--c-rust); font-style: normal; }
.quote-author strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  display: block;
}
.quote-author p { font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-top: 6px; text-transform: uppercase; }

/* ===== PROCESS ===== */
.process-section { background: var(--c-cream); overflow: hidden; }
.process-hero-img {
  height: 520px;
  background-image: url('https://images.unsplash.com/photo-1501554728187-ce583db33af7?w=1920&q=85');
  background-size: cover;
  background-position: center;
  position: relative;
}
.process-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,7,0.2), rgba(5,12,7,0.7));
}
.process-overlay-box {
  position: absolute;
  top: 60px;
  left: calc((100vw - 1320px) / 2 + 40px);
  background: var(--c-cream);
  padding: 55px;
  max-width: 480px;
  z-index: 2;
}
@media(max-width:1360px){ .process-overlay-box { left: 40px; } }
@media(max-width:768px){ .process-overlay-box { left: 20px; right: 20px; max-width: none; padding: 36px; position: relative; top: 0; } }

.process-overlay-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 16px;
}
.process-overlay-box p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--c-stone);
  line-height: 1.8;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
@media(max-width:900px){ .process-steps { grid-template-columns: 1fr; margin-top: 0; } }

.step-card {
  background: white;
  padding: 50px 40px;
  border-right: 1px solid #e8e2d8;
  position: relative;
}
.step-card:last-child { border-right: none; }
@media(max-width:900px){ .step-card { border-right: none; border-bottom: 1px solid #e8e2d8; } }

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: #e8e2d8;
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--c-rust);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 24px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.step-card p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-stone);
  line-height: 1.85;
}

/* ===== FEATURED TREK ===== */
.featured-section { padding: 100px 0; background: var(--c-cream); }
.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}
.featured-top h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}
.featured-top p { max-width: 420px; font-family: var(--font-serif); font-size: 16px; color: var(--c-stone); line-height: 1.7; }

.featured-banner {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.featured-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1600&q=85');
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.featured-banner:hover .featured-banner-bg { transform: scale(1.04); }
.featured-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,14,0.92) 0%, rgba(10,20,14,0.3) 60%, transparent 100%);
}
.featured-content {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 6vw, 70px);
  color: white;
}
.featured-sub { font-size: 11px; letter-spacing: 4px; color: var(--c-rust); text-transform: uppercase; font-weight: 500; margin-bottom: 14px; }
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.featured-title .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.4); color: transparent; }

.trek-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}
.trek-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
}
.trek-spec i { color: var(--c-rust); font-size: 14px; }

/* ===== PHOTO GRID ===== */
.grid-section {
  padding: 100px 0;
  background: #f0ebe0;
}
.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media(max-width:900px){ .grid-layout { grid-template-columns: 1fr; } }

.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; transition: transform 0.7s var(--ease); }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,7,0.75) 0%, transparent 55%);
}
.mosaic-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  line-height: 1.2;
}

.grid-text h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.grid-text h2 .outline {
  -webkit-text-stroke: 1px var(--c-dark);
  color: transparent;
}
.grid-text p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--c-stone);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ===== FOOTER ===== */
#contact {
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
  color: white;
  padding: 120px 0 50px;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1535224206242-487f7090b5bb?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.footer-watermark {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.footer-inner { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr; gap: 50px; } }

.footer-left {}
.footer-left img { height: 40px; margin-bottom: 26px; }
.footer-left p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 28px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.footer-contact-row i { color: var(--c-rust); width: 16px; }
.footer-contact-row a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; }
.footer-contact-row a:hover { color: white; }

.footer-form {}
.footer-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.form-field {
  position: relative;
  margin-bottom: 24px;
}
.form-field input, .form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus { border-bottom-color: var(--c-rust); }
.form-field.full { grid-column: span 2; }
.form-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-rust);
  transition: width 0.4s var(--ease);
}
.form-field input:focus ~ .form-line { width: 100%; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 28px;
  grid-column: span 2;
}
.consent-row input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 3px;
  accent-color: var(--c-rust);
  flex-shrink: 0;
}
.consent-row label { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; cursor: pointer; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s;
}
.footer-links a:first-child { padding-left: 0; }
.footer-links a:last-child { border-right: none; }
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 30px;
}
.footer-policies { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-policies span { cursor: pointer; transition: color 0.3s; }
.footer-policies span a { cursor: pointer; transition: color 0.3s; color: white; text-decoration: none; }
.footer-policies span:hover { color: rgba(255,255,255,0.6); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== MOBILE HERO ===== */
.mobile-video { display: none; }
@media(max-width:768px){
  .hero-title { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-lines { display: none; }
  #site-header { padding: 16px 20px; }
  .featured-banner { min-height: 420px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .consent-row { grid-column: span 1; }
  .desktop-video { display: none; }
  .mobile-video { display: block; }
}
