@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&display=swap');

/* ============================================================
   Elevated Outdoors LLC — Colorado
   Design · Build · Enjoy
   Dark, cinematic theme — shared stylesheet
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* brand cyan — primary accent */
  --cyan:        #28b4e6;
  --cyan-bright: #5fcef4;
  --cyan-dark:   #1a93c0;
  /* secondary accent (token kept as --gold) */
  --gold:        #28b4e6;
  --gold-bright: #5fcef4;

  --ink:         #0c0d09;
  --charcoal:    #15160f;
  --surface:     #1f211a;
  --surface-2:   #25271e;
  --slate:       #34362a;
  --gray:        #9c9d8d;
  --line:        #2e3024;
  --snow:        #1b1c14;
  --white:       #f4f2e8;

  --shadow-sm: 0 2px 14px rgba(0,0,0,.4);
  --shadow-md: 0 18px 44px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.65);

  --radius:    14px;
  --radius-sm: 9px;

  --ff-display: "Saira", "Arial Narrow", system-ui, sans-serif;
  --ff-serif:   "Cinzel", "Times New Roman", serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: #d5d4c4;
  background: var(--charcoal);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }
::selection { background: var(--cyan); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
}
.eyebrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.light { color: var(--cyan-bright); }

h2.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  text-transform: uppercase;
  margin: .5rem 0 1rem;
}
.section-title em { font-style: normal; color: var(--cyan); }
.lead { font-size: 1.12rem; color: var(--gray); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 96px 0; }
.section.tight { padding: 60px 0; }
.section--snow { background: var(--snow); }
.section--ink  { background: var(--ink); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 30px rgba(200,155,77,.3); }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(200,155,77,.42); }
.btn--dark { background: var(--cyan); color: var(--ink); }
.btn--dark:hover { background: var(--cyan-bright); transform: translateY(-3px); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1.5px solid rgba(244,242,232,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid var(--slate); }
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.btn--lg { padding: 19px 38px; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 16px 0;
}
.site-header.is-solid {
  background: rgba(12,13,9,.96);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo — transparent cyan wordmark */
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 42px; width: auto; display: block;
  filter:
    drop-shadow(1.5px 0 0 #fff)  drop-shadow(-1.5px 0 0 #fff)
    drop-shadow(0 1.5px 0 #fff)  drop-shadow(0 -1.5px 0 #fff)
    drop-shadow(1.1px 1.1px 0 #fff)   drop-shadow(-1.1px -1.1px 0 #fff)
    drop-shadow(1.1px -1.1px 0 #fff)  drop-shadow(-1.1px 1.1px 0 #fff);
}
.site-header.is-solid .logo-img { height: 38px; }
.footer-logo-wrap .logo-img { height: 46px; }

/* Nav */
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .05em;
  padding: 9px 15px;
  border-radius: 7px;
  color: #d8d6c8;
  transition: color .18s, background .18s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-bright); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--ff-display);
  font-weight: 800; font-size: 1.04rem;
  color: var(--white);
}
.header-phone svg { width: 20px; height: 20px; color: var(--gold); }
.header-phone span { line-height: 1.05; }
.header-phone small {
  display: block; font-size: .56rem; font-weight: 700;
  letter-spacing: .14em; color: var(--cyan); text-transform: uppercase;
}

/* Burger */
.burger { display: none; width: 46px; height: 46px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; border-radius: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .25s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white);
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,13,9,.7) 0%, rgba(12,13,9,.55) 42%, rgba(12,13,9,.96) 100%),
    linear-gradient(90deg, rgba(12,13,9,.86) 0%, rgba(12,13,9,.2) 72%);
}
.hero-content { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.7rem);
  text-transform: uppercase;
  margin: 18px 0 22px;
  letter-spacing: -.005em;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p { font-size: 1.2rem; max-width: 54ch; color: #ddddce; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-strip {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid rgba(244,242,232,.16);
}
.hero-strip div { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .96rem; color: #d5d4c4; }
.hero-strip svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ff-display); font-weight: 700; font-size: .66rem;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(244,242,232,.6);
}
.scroll-hint::after {
  content: ""; width: 1px; height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 1.9s var(--ease) infinite;
}
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 92px;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,13,9,.78), rgba(12,13,9,.9));
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  text-transform: uppercase;
}
.page-hero h1 em { font-style: normal; color: var(--cyan); }
.page-hero p { max-width: 58ch; margin-top: 14px; color: #d5d4c4; font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; font-size: .85rem; font-weight: 600; color: rgba(244,242,232,.6); margin-bottom: 14px; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span { color: var(--cyan); }

/* ---------- Value / trust bar ---------- */
.value-bar { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value-grid div {
  display: flex; align-items: center; gap: 14px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.value-grid div:last-child { border-right: 0; }
.value-grid svg { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.value-grid b { font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; text-transform: uppercase; display: block; line-height: 1.15; color: var(--white); }
.value-grid small { color: var(--gray); font-size: .85rem; }

/* ---------- Section head ---------- */
.section-head { margin-bottom: 52px; }
.section-head.center { display: flex; flex-direction: column; align-items: center; }
.section-head .lead { margin-top: 6px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.card-media { position: relative; aspect-ratio: 3/1; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,13,9,.5)); }
.card-tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-family: var(--ff-display); font-weight: 800; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 6px;
}
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 8px; }
.card-body p { color: var(--gray); font-size: .98rem; flex: 1; }
.card-link {
  margin-top: 18px;
  font-family: var(--ff-display); font-weight: 800; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link { color: var(--gold-bright); }
.card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 1px solid var(--line); }
.split-media .media-logo {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  height: 38px; width: auto; max-width: 60%;
  aspect-ratio: auto; object-fit: contain;
  border: 0; border-radius: 0; box-shadow: none;
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,.85))
    drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}
.split-media .badge-float {
  position: absolute; right: -22px; bottom: -22px;
  background: var(--gold); color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 20px 24px; box-shadow: var(--shadow-md);
  max-width: 230px;
}
.split-media .badge-float b { font-family: var(--ff-display); font-size: 2.3rem; font-weight: 900; font-style: italic; line-height: 1; display: block; }
.split-media .badge-float span { font-size: .85rem; font-weight: 600; }
.feature-list { margin-top: 22px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list svg { width: 23px; height: 23px; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.feature-list b { display: block; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; color: var(--white); }
.feature-list p { color: var(--gray); font-size: .95rem; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { position: relative; padding-top: 22px; }
.process-step .num {
  font-family: var(--ff-display); font-style: italic; font-weight: 900;
  font-size: 4.4rem; line-height: .8; color: var(--gold);
  opacity: .92;
}
.process-step h3 { font-size: 1.32rem; text-transform: uppercase; margin: 10px 0 6px; }
.process-step p { font-size: .95rem; color: var(--gray); }
.process-step::before {
  content: ""; position: absolute; top: 8px; left: 0;
  width: 46px; height: 4px; background: var(--cyan);
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1/1; cursor: pointer; background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,9,6,.86));
  opacity: .55; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 18px; bottom: 15px; z-index: 2;
  color: var(--white); font-family: var(--ff-display); font-weight: 800;
  text-transform: uppercase; font-size: 1rem; letter-spacing: .03em;
  transform: translateY(8px); opacity: 0; transition: .3s var(--ease);
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }
.gallery-cap small { display: block; font-weight: 700; font-size: .72rem; color: var(--cyan); letter-spacing: .14em; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,6,.96);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 26px; color: var(--white); width: 48px; height: 48px; font-size: 2rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); width: 56px; height: 56px; font-size: 2.4rem; opacity: .75; }
.lightbox-nav:hover { opacity: 1; color: var(--gold-bright); }
.lightbox-nav.prev { left: 14px; }
.lightbox-nav.next { right: 14px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote {
  background: var(--surface); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; color: var(--gold-bright); }
.quote p { font-size: 1.02rem; color: #cdcdbd; flex: 1; }
.quote-by { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cyan); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 900; font-size: 1.1rem;
}
.quote-by b { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: .98rem; color: var(--white); }
.quote-by small { color: var(--gray); }

/* ---------- Service area ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-list span {
  background: var(--surface); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 30px;
  font-weight: 600; font-size: .92rem; color: #cdcdbd;
}
.area-list span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 9px; vertical-align: middle; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  padding: 86px 0; color: var(--white); text-align: center;
}
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,13,9,.82), rgba(12,13,9,.92));
}
.cta-band h2 { font-size: clamp(2rem,4.4vw,3.2rem); text-transform: uppercase; }
.cta-band h2 em { font-style: normal; color: var(--cyan); }
.cta-band p { max-width: 56ch; margin: 12px auto 26px; color: #d5d4c4; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--ff-display); font-weight: 800;
  text-transform: uppercase; font-size: .8rem; letter-spacing: .06em;
  margin-bottom: 7px; color: #cdcdbd;
}
.field label .req { color: var(--gold-bright); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--charcoal); color: var(--white);
  transition: border-color .18s, background .18s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f7062; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--gray); margin-top: 4px; }
.form-success {
  display: none;
  background: rgba(170,178,126,.14); border: 1.5px solid var(--cyan); color: var(--cyan-bright);
  border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 600;
  margin-bottom: 18px;
}
.form-success.is-visible { display: block; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--cyan); }
.contact-card .ic {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: rgba(200,155,77,.14); color: var(--gold);
  display: grid; place-items: center;
}
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.12rem; text-transform: uppercase; }
.contact-card a, .contact-card p { color: var(--gray); font-size: .98rem; }
.contact-card a:hover { color: var(--gold-bright); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat b {
  font-family: var(--ff-display); font-style: italic; font-weight: 900;
  font-size: clamp(2.6rem,5vw,3.8rem); color: var(--cyan); line-height: 1; display: block;
}
.stat span { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; color: #cdcdbd; }

/* ---------- Footer ---------- */
.site-footer { background: #080906; color: #8d8e7e; padding: 70px 0 0; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-about p { margin-top: 16px; font-size: .95rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(255,255,255,.05); display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-social a:hover svg { color: var(--ink); }
.footer-social svg { width: 19px; height: 19px; color: var(--white); transition: color .2s; }
.footer-col h4 {
  color: var(--white); font-size: 1.05rem; text-transform: uppercase;
  margin-bottom: 16px; letter-spacing: .03em;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { font-size: .95rem; transition: color .18s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact li { display: flex; gap: 10px; font-size: .95rem; margin-bottom: 11px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  margin-top: 54px; border-top: 1px solid var(--line);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .86rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px,86vw);
  background: var(--ink); z-index: 150;
  transform: translateX(100%); transition: transform .32s var(--ease);
  padding: 96px 30px 40px; display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto; border-left: 1px solid var(--line);
}
.mobile-nav.is-open { transform: none; }
.mobile-nav a {
  font-family: var(--ff-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.22rem; color: var(--white); padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-bright); }
.mobile-nav .btn { margin-top: 18px; }
.mobile-nav .m-phone { margin-top: 14px; color: var(--gray); font-weight: 600; }
.mobile-nav .m-phone a { font-size: 1.5rem; color: var(--cyan); padding: 4px 0; border: 0; display: block; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(8,9,6,.7); z-index: 140;
  opacity: 0; visibility: hidden; transition: .3s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Misc ---------- */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag-list span {
  font-family: var(--ff-display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--surface); color: var(--cyan); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 30px;
}
.tag-list a:hover span { border-color: var(--cyan); color: var(--cyan-bright); }
.anchor { scroll-margin-top: 90px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards, .quotes { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid div:nth-child(2) { border-right: 0; }
  .value-grid div:nth-child(1), .value-grid div:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: flex; }
  .section { padding: 70px 0; }
  .split, .intro-grid, .area-wrap { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge-float { right: 16px; bottom: -22px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .hero { min-height: 92vh; }
  .scroll-hint { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards, .quotes, .gallery-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid div { border-right: 0 !important; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .logo-text small { display: none; }
  .container { padding: 0 18px; }
  .form-card { padding: 24px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* ---------- Hero / page video ---------- */
.hero-bg video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Video showcase ---------- */
.video-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vid-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform .28s var(--ease), border-color .28s;
}
.vid-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.vid-card video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; background: #000; }
.vid-cap { padding: 18px 22px 22px; }
.vid-cap small {
  font-family: var(--ff-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--gold);
}
.vid-cap b { display: block; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.18rem; color: var(--white); margin: 3px 0 4px; }
.vid-cap span { font-size: .92rem; color: var(--gray); }
@media (max-width: 1024px) {
  .video-showcase { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-showcase { grid-template-columns: minmax(0, 360px); justify-content: center; }
}
