/* ================================================
   BACKROAD MOTORCYCLE ADVENTURES — CUSTOM BUILD
   Raw, textured, handcrafted feel
   ================================================ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface2: #1a1a1a;
  --orange: #E8620A;
  --orange-light: #ff7a1f;
  --orange-dark: #b84d08;
  --orange-glow: rgba(232,98,10,0.25);
  --cream: #e8ddd0;
  --white: #f5f0eb;
  --gray: #6b6560;
  --muted: #8a837c;
  --faint: #2a2725;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ===== ANGLED SECTION CUTS ===== */
.angle-cut {
  position: absolute; left: 0; right: 0; height: 80px; z-index: 5;
  background: inherit;
}
.angle-cut-bottom {
  bottom: -40px;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  background: var(--bg);
}
.angle-cut-top {
  top: -40px;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  background: inherit;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px; position: relative; padding-left: 36px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--orange);
}

/* ===== TYPOGRAPHY ===== */
h2 {
  font-family: var(--font-head); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: .92; letter-spacing: -.01em;
  color: var(--white);
}
h2 em {
  font-style: italic; color: var(--orange);
  -webkit-text-stroke: 0;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 14px; background: var(--orange); color: var(--white);
  margin-bottom: 14px;
}
.tag-alt { background: transparent; border: 1px solid var(--orange); color: var(--orange); }

/* ===== CTAs ===== */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 40px; border: 2px solid var(--orange);
  cursor: pointer; position: relative; transition: all .35s ease;
}
.cta-fill { background: var(--orange); color: var(--white); }
.cta-fill:hover {
  background: var(--orange-light); border-color: var(--orange-light);
  box-shadow: 0 0 40px var(--orange-glow), 0 8px 30px rgba(0,0,0,.4);
  transform: translateY(-3px);
}
.cta-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.cta-ghost:hover {
  background: var(--cream); color: var(--bg);
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.cta-sm { padding: 10px 24px; font-size: .82rem; }
.cta-lg { padding: 20px 52px; font-size: 1.1rem; }
.cta-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .4s; padding: 0 clamp(20px, 4vw, 48px);
}
.nav.scrolled {
  background: rgba(11,11,11,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--faint);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 40px; mix-blend-mode: lighten; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  transition: color .3s; position: relative;
}
.nav-menu a:hover { color: var(--cream); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange); transition: width .3s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 8px 22px !important; font-size: .75rem !important;
  letter-spacing: .12em !important; border: none;
  transition: all .3s !important;
}
.nav-menu-cta::after { display: none !important; }
.nav-menu-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--orange-glow); }
.nav-burger {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 101;
}
.nav-burger span {
  width: 28px; height: 1.5px; background: var(--cream);
  transition: all .3s; transform-origin: center;
}
.nav-burger.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.nav-burger.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.4) contrast(1.1) saturate(.85);
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,11,.85) 0%, rgba(11,11,11,.3) 55%, transparent 100%),
    linear-gradient(to top, rgba(11,11,11,1) 0%, transparent 40%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1400px; margin: 0 auto;
  padding: 140px clamp(24px, 5vw, 64px) 120px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-content { max-width: 700px; }

.hero-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .35em; text-transform: uppercase; color: var(--muted);
}
.label-line { width: 32px; height: 1px; background: var(--gray); }

.hero h1 { margin-bottom: 28px; }
.hero-line {
  display: block; font-family: var(--font-head); font-weight: 900;
  text-transform: uppercase; line-height: .88;
  opacity: 0; transform: translateY(50px);
  animation: heroReveal .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-line-1 { font-size: clamp(4rem, 12vw, 9rem); animation-delay: .3s; }
.hero-line-2 { font-size: clamp(4rem, 12vw, 9rem); animation-delay: .5s; color: var(--orange); }
.hero-line-3 {
  font-size: clamp(1.8rem, 4vw, 3rem); animation-delay: .7s;
  letter-spacing: .08em; color: var(--muted);
  margin-top: 8px;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem); color: var(--muted);
  line-height: 1.7; margin-bottom: 40px; max-width: 460px;
  opacity: 0; animation: heroReveal .8s .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: heroReveal .8s 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-actions .cta { padding: 18px 44px; font-size: 1.05rem; }

/* Hero stamp */
.hero-stamp {
  width: 160px; height: 160px; flex-shrink: 0;
  opacity: 0; animation: stampReveal 1.2s 1.4s ease forwards;
}
@keyframes stampReveal {
  to { opacity: .3; }
}
.stamp-svg { width: 100%; height: 100%; animation: stampSpin 30s linear infinite; }
.stamp-text-circle {
  font-family: var(--font-head); font-weight: 700; font-size: 7.5px;
  letter-spacing: .15em; text-transform: uppercase; fill: var(--orange);
}
@keyframes stampSpin { to { transform: rotate(360deg); } }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 60px; left: clamp(24px,5vw,64px); z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: .65rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gray);
  opacity: 0; animation: heroReveal .8s 2s cubic-bezier(.16,1,.3,1) forwards;
}
.scroll-dash {
  width: 40px; height: 1px; background: var(--gray); position: relative;
  overflow: hidden;
}
.scroll-dash::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); transform: translateX(-100%);
  animation: dashMove 2s ease-in-out infinite;
}
@keyframes dashMove { 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ===== TWO PATHS ===== */
.paths {
  padding: 100px clamp(20px,4vw,48px);
  position: relative; z-index: 6;
}
.paths-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.path-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); overflow: hidden;
  border: 1px solid var(--faint); transition: all .5s ease;
}
.path-card:hover { border-color: rgba(232,98,10,.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.path-img-wrap { position: relative; height: 320px; overflow: hidden; }
.path-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.6) saturate(.8);
  transition: all .7s cubic-bezier(.25,.46,.45,.94);
}
.path-card:hover .path-img { transform: scale(1.06); filter: brightness(.75) saturate(.9); }
.path-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 60%);
}
.path-body { padding: 32px 36px 40px; position: relative; }
.path-body h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.path-body p { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.path-checks {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.path-checks li {
  font-size: .82rem; color: var(--muted); padding-left: 22px;
  position: relative;
}
.path-checks li::before {
  content: '✓'; position: absolute; left: 0; color: var(--orange);
  font-weight: 700; font-size: .85rem;
}
.path-num {
  position: absolute; top: 20px; right: 28px;
  font-family: var(--font-head); font-weight: 900; font-size: 5rem;
  color: var(--faint); line-height: 1; pointer-events: none;
  -webkit-text-stroke: 1px var(--faint);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
  background: var(--surface);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head); font-weight: 900; font-size: 1rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--faint);
  white-space: nowrap; padding-right: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about {
  background: var(--surface); padding: 140px clamp(20px,4vw,48px) 120px;
  position: relative; overflow: hidden;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-photo-frame { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: brightness(.7) contrast(1.05) saturate(.8);
}
.frame-corner {
  position: absolute; width: 40px; height: 40px;
  border: 2px solid var(--orange);
}
.frame-tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.frame-br { bottom: -12px; right: -12px; border-left: none; border-top: none; }
.about-logo-badge {
  position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--faint);
}
.about-logo { height: 50px; mix-blend-mode: lighten; }
.about-col-text h2 { margin-bottom: 24px; }
.about-col-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 14px; color: var(--cream); }
.about-col-text .muted { color: var(--muted); font-size: .92rem; margin-bottom: 32px; }
.about-contacts { display: flex; flex-direction: column; gap: 8px; }
.about-link {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  border: 1px solid var(--faint); transition: all .3s;
}
.about-link:hover {
  border-color: var(--orange); background: rgba(232,98,10,.04);
  transform: translateX(8px);
}
.about-link-label {
  font-family: var(--font-head); font-weight: 700; font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  min-width: 40px;
}

/* ===== EVENTS ===== */
.events {
  background: var(--bg); padding: 120px clamp(20px,4vw,48px);
}
.events-inner { max-width: 1000px; margin: 0 auto; }
.events-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}

/* Countdown */
.countdown { display: flex; gap: 8px; }
.cd-unit { text-align: center; }
.cd-val {
  display: block; font-family: var(--font-head); font-weight: 900; font-size: 1.8rem;
  color: var(--orange); background: var(--surface); padding: 8px 12px;
  border: 1px solid var(--faint); min-width: 48px; line-height: 1;
}
.cd-lbl {
  font-family: var(--font-head); font-size: .55rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gray); margin-top: 6px; display: block;
}

/* Event cards */
.events-list { display: flex; flex-direction: column; gap: 6px; }
.ev {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 24px; background: var(--surface);
  border-left: 3px solid var(--orange);
  transition: all .35s ease; position: relative; overflow: hidden;
}
.ev::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: rgba(232,98,10,.04); transition: width .4s;
}
.ev:hover { transform: translateX(6px); }
.ev:hover::before { width: 100%; }
.ev-featured { border-left-color: var(--orange); background: rgba(232,98,10,.03); }
.ev-badge {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-head); font-weight: 700; font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 12px; background: var(--orange); color: var(--white);
}
.ev-date {
  display: flex; flex-direction: column; align-items: center; min-width: 56px;
  font-family: var(--font-head); text-transform: uppercase;
}
.ev-month { font-size: .6rem; font-weight: 700; color: var(--orange); letter-spacing: .12em; }
.ev-day { font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.ev-body { flex: 1; position: relative; z-index: 1; }
.ev-tags { display: flex; gap: 6px; margin-bottom: 5px; }
.ev-tag {
  font-family: var(--font-head); font-weight: 700; font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 2px 8px;
}
.ev-tag-ride { background: rgba(232,98,10,.12); color: var(--orange); }
.ev-tag-train { background: rgba(59,130,246,.12); color: #60a5fa; }
.ev-tag-adv { background: rgba(168,85,247,.12); color: #a78bfa; }
.ev-tag-multi { background: rgba(34,197,94,.12); color: #4ade80; }
.ev-body h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .01em; margin-bottom: 4px; color: var(--white);
}
.ev-loc { font-size: .78rem; color: var(--gray); }
.ev-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; position: relative; z-index: 1; }
.ev-limited {
  font-family: var(--font-head); font-weight: 700; font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  animation: limitPulse 2.5s ease-in-out infinite;
}
@keyframes limitPulse { 0%,100%{opacity:1}50%{opacity:.4} }
.ev .cta { position: relative; z-index: 1; }
.events-bottom { text-align: center; margin-top: 48px; }

/* ===== GALLERY ===== */
.gallery {
  background: var(--surface); padding: 120px 0 80px; position: relative; overflow: hidden;
}
.gallery-header {
  padding: 0 clamp(20px,4vw,48px); margin-bottom: 48px;
}
.gallery-scroll {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.gallery-track {
  display: flex; gap: 10px; width: max-content;
  animation: galScroll 50s linear infinite;
}
.gal-item {
  flex-shrink: 0; width: 380px; height: 260px; overflow: hidden;
  position: relative; border: 1px solid var(--faint);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.7) saturate(.8);
  transition: all .6s cubic-bezier(.25,.46,.45,.94);
}
.gal-item:hover img { transform: scale(1.1); filter: brightness(.85) saturate(1); }
.gal-tall { height: 260px; }
@keyframes galScroll { to { transform: translateX(calc(-390px * 7)); } }

/* ===== BDR ===== */
.bdr {
  position: relative; padding: 180px clamp(20px,4vw,48px);
  overflow: hidden; min-height: 70vh; display: flex; align-items: center;
}
.bdr-bg {
  position: absolute; inset: 0;
}
.bdr-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.2) saturate(.6);
}
.bdr-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,.85), rgba(11,11,11,.5));
}
.bdr-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.bdr h2 { margin-bottom: 0; }
.bdr-divider {
  width: 50px; height: 2px; background: var(--orange); margin: 24px auto;
  box-shadow: 0 0 20px var(--orange-glow);
}
.bdr p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); margin-bottom: 40px; }

/* ===== CONTACT ===== */
.contact {
  background: var(--bg); padding: 120px clamp(20px,4vw,48px);
  position: relative;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-left h2 { margin-bottom: 20px; }
.contact-left > p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-info a {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border: 1px solid var(--faint); transition: all .3s;
}
.contact-info a:hover { border-color: var(--orange); transform: translateX(6px); background: rgba(232,98,10,.03); }
.ci-label {
  font-family: var(--font-head); font-weight: 700; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange); min-width: 36px;
}
.ci-val { font-size: .88rem; color: var(--cream); }

/* Form */
.form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--surface); border: 1px solid var(--faint);
  padding: 40px; position: relative;
}
.form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; }
.form input, .form textarea, .form select {
  width: 100%; padding: 16px 14px; font-family: var(--font-body); font-size: .88rem;
  background: var(--bg); border: 1px solid var(--faint); color: var(--cream);
  outline: none; transition: border-color .3s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--gray); }
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,10,.08);
}
.form select {
  appearance: none; color: var(--gray); cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6560' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form textarea { resize: vertical; min-height: 100px; }
.form .cta-full { margin-top: 4px; padding: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: #070707; padding: 60px clamp(20px,4vw,48px) 24px;
  border-top: 1px solid var(--faint);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { height: 36px; mix-blend-mode: lighten; opacity: .6; margin-bottom: 14px; }
.footer-brand p { font-size: .8rem; color: var(--gray); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: .8rem; color: #4a4540; padding: 3px 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--faint); padding-top: 16px; }
.footer-bottom p { font-size: .68rem; color: #3a3530; }

/* ===== ADVENTURES PAGE ===== */
.adventures {
  background: var(--bg); padding: 120px clamp(20px,4vw,48px) 80px;
  min-height: 100vh;
}
.adventures-inner { max-width: 1100px; margin: 0 auto; }
.adventures-intro {
  font-size: 1.05rem; line-height: 1.75; color: var(--muted);
  max-width: 700px; margin-bottom: 60px;
}
.adventures h2 { margin-bottom: 12px; }
.adv-section { margin-bottom: 80px; }
.adv-section-header {
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--faint);
}
.adv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.adv-card {
  background: var(--surface); border: 1px solid var(--faint);
  border-left: 3px solid var(--orange); padding: 28px 28px 24px;
  transition: all .35s ease; position: relative;
}
.adv-card:hover {
  transform: translateY(-4px); border-color: rgba(232,98,10,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.adv-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  letter-spacing: .01em; color: var(--white); margin-bottom: 10px;
}
.adv-card p {
  font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px;
}
.adv-card .cta-sm { margin-top: auto; }
.adv-card .tag { margin-bottom: 10px; }

/* Event teaser & learn more */
.ev-desc {
  font-size: .78rem; color: var(--gray); line-height: 1.55;
  margin-top: 4px; max-width: 400px;
}
.ev-more {
  font-family: var(--font-head); font-weight: 700; font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  transition: color .3s; margin-top: 4px; display: inline-block;
}
.ev-more:hover { color: var(--orange-light); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stamp { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0; background: rgba(11,11,11,.97);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; opacity: 0; pointer-events: none; transition: opacity .4s;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; }
  .nav-menu a { font-size: 1.6rem !important; letter-spacing: .2em !important; padding: 14px 0 !important; color: var(--cream) !important; }
  .nav-menu-cta { margin-top: 20px !important; padding: 14px 36px !important; font-size: 1rem !important; }

  .paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .path-img-wrap { height: 240px; }
  .path-num { font-size: 3.5rem; top: 12px; right: 16px; }

  .hero-inner { padding: 120px 24px 100px; }
  .hero-line-1, .hero-line-2 { font-size: 4rem; }
  .hero-line-3 { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .cta { width: 100%; max-width: 300px; justify-content: center; }
  .hero-scroll-hint { display: none; }

  .events-top { flex-direction: column; align-items: flex-start; }
  .ev { flex-wrap: wrap; gap: 14px; padding: 18px 16px; }
  .ev-cta-wrap { flex-direction: row; width: 100%; align-items: center; justify-content: space-between; }

  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px; }

  .gallery .gal-item { width: 280px; height: 200px; }
  @keyframes galScroll { to { transform: translateX(calc(-290px * 7)); } }

  .angle-cut { height: 50px; }
  .angle-cut-bottom { bottom: -25px; }
  .angle-cut-top { top: -25px; }

  .about { padding: 100px clamp(20px,4vw,48px) 80px; }
  .events { padding: 80px clamp(20px,4vw,48px); }
  .bdr { padding: 120px clamp(20px,4vw,48px); }
  .contact { padding: 80px clamp(20px,4vw,48px); }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-logo { margin: 0 auto 14px; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }

  .adv-grid { grid-template-columns: 1fr; }
  .adventures { padding: 100px clamp(20px,4vw,48px) 60px; }
}

@media (max-width: 480px) {
  .hero-line-1, .hero-line-2 { font-size: 3rem; }
  .cd-val { font-size: 1.3rem; padding: 6px 8px; min-width: 38px; }
}
