:root {
  --ink: #151817;
  --muted: #5b625d;
  --paper: #f7f4ee;
  --bone: #ede6da;
  --pine: #14382f;
  --moss: #55735f;
  --sky: #d7e8ea;
  --clay: #b75434;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(14, 24, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(247, 244, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(15, 19, 17, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-logo-link { display: inline-flex; }
.custom-logo { width: auto; max-height: 44px; }
.asc-honeypot { position: absolute !important; left: -10000px !important; }
.form-status { margin: 0; color: var(--white); font-weight: 800; }

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  padding: 0 18px;
  background: var(--gold);
  color: #1d1709;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 42px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 17, 14, 0.82), rgba(8, 17, 14, 0.24) 54%, rgba(8, 17, 14, 0.5)),
    linear-gradient(0deg, rgba(8, 17, 14, 0.66), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 12vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.hero-panel span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(10, 17, 15, 0.38);
  font-size: 0.86rem;
  font-weight: 800;
}

.ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 14px clamp(18px, 4vw, 56px);
  background: var(--pine);
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker span {
  flex: 0 0 auto;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro,
.section-heading,
.contact,
.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro p:last-child,
.section-heading > p,
.contact-copy p,
.video-copy p,
.approach-copy li {
  color: var(--muted);
  font-size: 1.02rem;
}

.portfolio {
  background: var(--bone);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 38px;
  border: 1px solid rgba(21, 24, 23, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.filter.active {
  background: var(--ink);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 38px;
}

.work-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 24, 20, 0.12);
}

.work-card.wide {
  grid-column: span 2;
}

.work-card.tall {
  grid-row: span 2;
  min-height: 654px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 12, 0.75), transparent 54%);
}

.card-info {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.card-info span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-info h3 {
  max-width: 360px;
  margin: 5px 0 0;
}

.work-card.is-hidden {
  display: none;
}

.video-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.video-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.reel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 13, 0.2);
}

.play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.service-grid article {
  min-height: 265px;
  padding: 22px;
  border: 1px solid rgba(21, 24, 23, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.service-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.adventure {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--sky);
}

.adventure-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
}

.adventure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adventure-copy p {
  max-width: 540px;
}

.route-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.route-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.route-preview {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(21, 24, 23, 0.08);
}

.route-preview svg {
  display: block;
  width: 100%;
  height: auto;
}

.route-card span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pine);
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.route-card .button {
  width: fit-content;
}

.route-card .button.ghost {
  border-color: var(--pine);
  color: var(--pine);
}

.route-card span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pine);
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.route-card .button {
  width: fit-content;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--paper);
}

.stats div {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--pine);
  color: var(--white);
}

.stats strong {
  color: var(--gold);
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  line-height: 0.9;
}

.stats span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.contact {
  padding: clamp(62px, 8vw, 102px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(8, 17, 14, 0.82), rgba(8, 17, 14, 0.82)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2000&q=80")
      center / cover;
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #0c100f;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links ul { display: grid; gap: 0; }

  .site-header.menu-open .nav-links a {
    padding: 16px;
    border-bottom: 1px solid rgba(21, 24, 23, 0.09);
  }

  .intro,
  .section-heading,
  .contact,
  .adventure,
  .video-strip {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  .gallery,
  .service-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand span:last-child {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 16px 26px;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 6rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

  .ticker {
    padding-inline: 16px;
  }

  .section,
  .video-strip,
  .contact {
    padding-inline: 16px;
  }

  .gallery,
  .service-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.tall,
  .work-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 30px;
  }
