@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../assets/fonts/archivo-var.woff2) format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 700 900;
  font-display: swap;
  src: url(../assets/fonts/archivo-italic-800.woff2) format('woff2');
}

:root {
  --navy: #202F40;
  --navy-deep: #16202C;
  --olive: #6B763A;
  --olive-up: #8C9A55;
  --olive-haze: #E9EBDD;
  --paper: #F9F8F6;
  --ink-soft: #4C5A6B;
  --line: #DDE0DB;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--paper);
  color: var(--navy);
  font-family: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============ HERO (approved concept) ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.07);
  animation: kenburns 16s cubic-bezier(.22,.61,.36,1) forwards;
}
.img-wide { display: block; object-position: 62% 40%; }
.img-square { display: none; }
@keyframes kenburns { to { transform: scale(1.0); } }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,44,0.92) 0%, rgba(22,32,44,0.5) 28%, rgba(22,32,44,0) 55%);
}

.nav {
  position: relative; z-index: 3;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  animation: navIn .8s .15s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes navIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.nav-logo svg { height: clamp(150px, 19vw, 252px); width: auto; display: block; }
.nav-logo .cls-2 { fill: #202F40; }
.nav-logo .cls-1 { fill: #6B763A; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 34px); margin-top: 10px; }
.nav-links a {
  color: var(--paper); text-decoration: none;
  font-weight: 600; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase;
  opacity: .92;
}
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--olive-up); }
.nav-links .nav-cta { background: var(--olive); padding: 11px 24px; border-radius: 999px; opacity: 1; }
.nav-links .nav-cta:hover, .nav-links .nav-cta:focus-visible { background: var(--olive-up); color: var(--navy-deep); text-decoration: none; }
@media (max-width: 700px) { .nav-links a:not(.nav-cta) { display: none; } }

.hero-content {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(28px, 5vh, 56px);
  max-width: 780px;
}
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: #EEF1F4;
  font-weight: 600; font-size: clamp(.72rem, 1.4vw, .82rem);
  letter-spacing: .18em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(22,32,44,.55);
  margin: 0 0 14px;
  animation: fadeUp .7s .5s cubic-bezier(.22,.61,.36,1) both;
}
.eyebrow > span { min-width: 0; }
h1 {
  margin: 0 0 16px;
  font-style: italic; font-weight: 800;
  font-size: clamp(2.3rem, 6.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 24px rgba(22,32,44,.35);
}
h1 .line { display: block; overflow: hidden; }
h1 .line span { display: inline-block; transform: translateY(110%); animation: lineUp .8s cubic-bezier(.19,.8,.26,1) both; }
h1 .line:nth-child(1) span { animation-delay: .6s; }
h1 .line:nth-child(2) span { animation-delay: .74s; }
@keyframes lineUp { to { transform: none; } }
.sub {
  margin: 0 0 26px;
  max-width: 54ch;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: #E4E8ED;
  animation: fadeUp .7s 1s cubic-bezier(.22,.61,.36,1) both;
}
.sub b { color: var(--paper); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; animation: fadeUp .7s 1.15s cubic-bezier(.22,.61,.36,1) both; }
.btn {
  display: inline-block; text-decoration: none; border: 0; cursor: pointer;
  padding: 15px 32px; border-radius: 999px;
  font-family: inherit;
  font-weight: 600; font-size: 1rem; letter-spacing: .02em;
}
.btn-primary { background: var(--olive); color: var(--paper); transition: background .2s, transform .2s; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--olive-up); color: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(249,248,246,.85); color: var(--paper); padding: 13px 28px; transition: background .2s, transform .2s; background: transparent; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(249,248,246,.14); transform: translateY(-2px); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--olive-up); outline-offset: 3px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0; padding: 0; list-style: none; }
.chips li {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  color: #E4E8ED;
  animation: fadeUp .6s both;
}
.chips li:nth-child(1) { animation-delay: 1.3s; }
.chips li:nth-child(2) { animation-delay: 1.42s; }
.chips li:nth-child(3) { animation-delay: 1.54s; }
.chips li::before { content: ""; width: 16px; height: 4px; background: var(--olive-up); transform: skewX(-24deg); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Portrait hero: full 1:1 image, content on navy below */
@media (max-aspect-ratio: 0.9) {
  .hero { display: block; min-height: 100svh; }
  .hero-media { position: relative; inset: auto; width: 100%; aspect-ratio: 1 / 1; }
  .img-wide { display: none; }
  .img-square { display: block; }
  .hero-shade {
    inset: auto; top: 0; left: 0; right: 0;
    aspect-ratio: 1 / 1;
    background:
      linear-gradient(to top, rgba(22,32,44,1) 0%, rgba(22,32,44,0.55) 14%, rgba(22,32,44,0) 32%),
      linear-gradient(to bottom, rgba(22,32,44,0.45) 0%, rgba(22,32,44,0) 20%);
  }
  .nav { position: absolute; top: 0; left: 0; right: 0; }
  .nav-logo svg { height: 160px; filter: drop-shadow(0 2px 10px rgba(22,32,44,.45)); }
  .nav-logo .cls-2 { fill: #F9F8F6; }
  .nav-logo .cls-1 { fill: #8C9A55; }
  .hero-content { margin: 0; padding-top: 4px; }
  .eyebrow { font-size: .84rem; margin-bottom: 16px; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 20px; }
  .sub { font-size: 1.16rem; line-height: 1.65; margin-bottom: 30px; }
  .cta-row { gap: 12px; margin-bottom: 34px; }
  .cta-row .btn { flex: 1 1 0; text-align: center; font-size: 1.08rem; padding: 17px 10px; }
  .btn-ghost { padding: 15px 10px; }
  .chips { gap: 14px 26px; }
  .chips li { font-size: 1.02rem; }
  .nav-links .nav-cta { font-size: 1rem; padding: 13px 24px; }
}

/* ============ TRAIL BAND ============ */
.band {
  background: var(--navy);
  padding: 34px clamp(20px, 4vw, 48px) 38px;
  border-top: 4px solid var(--olive);
}
.band-title {
  text-align: center; color: #9FB0C4;
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 18px;
}
.marquee { overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: roll 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes roll { to { transform: translateX(-50%); } }
.band-row {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 0 56px; padding: 0 28px;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-track .band-row[aria-hidden="true"] { display: none; }
  .band-row { flex-wrap: wrap; justify-content: center; gap: 16px 30px; }
}
.band-row img { display: block; width: auto; opacity: .93; transition: opacity .2s; }
.band-row img:hover { opacity: 1; }
.m-a2o { height: 26px; } .m-ocrt { height: 46px; }
.m-cluthagold { height: 54px; } .m-roxburgh { height: 54px; }
.m-lakedunstan { height: 58px; } .m-slt { height: 34px; }
.m-qt { height: 54px; } .m-doc { height: 48px; }
@media (max-width: 700px) {
  .band-row { gap: 16px 26px; }
  .m-a2o { height: 20px; } .m-ocrt { height: 36px; }
  .m-cluthagold, .m-roxburgh, .m-qt { height: 42px; }
  .m-lakedunstan { height: 46px; } .m-slt { height: 26px; } .m-doc { height: 38px; }
}

/* ============ CONTENT SECTIONS ============ */
.section { padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 64px); }
.section-alt { background: transparent; }
.inner { max-width: min(1360px, 94vw); margin: 0 auto; }
.wave { display: block; width: 100%; height: clamp(36px, 5vw, 72px); }
.wave-navy-to-paper { background: var(--paper); }
.wave-navy-to-paper path { fill: var(--navy); }
.wave-paper-to-navy { background: var(--navy); }
.wave-paper-to-navy path { fill: var(--paper); }
.wave-tint-to-navy { background: var(--navy); }
.wave-tint-to-navy path { fill: var(--olive-haze); }
.section-dark { background: var(--navy); color: var(--paper); }
.section-dark h2 { color: var(--paper); }
.section-dark .s-eyebrow { color: var(--olive-up); }
.section-dark .squig path { stroke: var(--olive-up); }
.section-tint { background: var(--olive-haze); }
.strap {
  text-align: center;
  padding: clamp(90px, 12vw, 170px) 24px;
  background:
    linear-gradient(rgba(22,32,44,.66), rgba(22,32,44,.72)),
    url(../assets/img/trails/photos/lakedunstan.jpg) center 30% / cover no-repeat fixed;
  color: var(--paper);
}
.strap-line {
  font-style: italic; font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.015em;
  color: var(--paper); margin: 12px 0 16px;
  text-shadow: 0 2px 24px rgba(22,32,44,.4);
}
.strap-sub { color: #D7DEE6; font-size: 1.1rem; max-width: 52ch; margin: 0 auto 30px; }
.strap-cta { font-size: 1.06rem; padding: 17px 40px; }
@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
  .strap { background-attachment: scroll; }
}
.s-eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: var(--olive); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px;
}
h2 {
  font-style: italic; font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem); line-height: 1.08;
  letter-spacing: -0.012em; margin: 0 0 20px;
  text-wrap: balance;
}
.s-lede { font-size: 1.08rem; max-width: 62ch; color: var(--ink-soft); margin: 0 0 26px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.two-col p { margin: 0; max-width: 58ch; color: var(--ink-soft); font-size: 1.05rem; }
.two-col b { color: var(--navy); }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); margin-top: 34px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #FFFFFF;
  border: none; border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 34px rgba(32,47,64,.09);
}
.step:nth-child(1) { transform: rotate(-1deg); }
.step:nth-child(2) { transform: rotate(.7deg); }
.step:nth-child(3) { transform: rotate(-.6deg); }
.step-img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.step-body { padding: 34px 28px 28px; position: relative; }
.step-body .step-n { position: absolute; top: -23px; left: 20px; box-shadow: 0 2px 10px rgba(22,32,44,.25); border-radius: 10px; }
.step-body h3 { margin-top: 22px; }
.step-n {
  display: inline-block;
  font-style: italic; font-weight: 800; font-size: 1.6rem;
  color: var(--paper); background: var(--olive);
  width: 46px; height: 46px; line-height: 46px; text-align: center;
  border-radius: 2px; transform: skewX(-6deg);
  margin-bottom: 14px;
}
.step h3 { font-weight: 600; font-size: 1.12rem; margin: 0 0 12px; color: var(--navy); }
.step p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* why cards */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 26px); margin-top: 34px; }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #FFFFFF; border: none; border-radius: 20px;
  padding: 24px 26px 20px;
  box-shadow: 0 10px 34px rgba(32,47,64,.08);
}
.why-card::before { content: ""; display: block; width: 46px; height: 6px; border-radius: 3px; background: var(--olive); transform: skewX(-24deg); margin-bottom: 14px; }
.why-card h3 { font-style: italic; font-weight: 800; font-size: 1.15rem; margin: 0 0 8px; }
.why-card p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* trail cards */
.trail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 30px); }
@media (max-width: 760px) { .trail-grid { grid-template-columns: 1fr; } }
.trail-card {
  display: block; text-decoration: none; color: var(--navy);
  background: #FFFFFF; border: none; border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(32,47,64,.08);
  transition: transform .25s, box-shadow .25s;
}
.trail-card:hover, .trail-card:focus-visible { transform: translateY(-4px) rotate(-.3deg); box-shadow: 0 18px 44px rgba(32,47,64,.16); }
.tc-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.tc-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.trail-card:hover .tc-photo { transform: scale(1.04); }
.tc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,44,.78) 0%, rgba(22,32,44,.15) 45%, rgba(22,32,44,0) 65%);
}
.tc-logo { position: absolute; left: 16px; bottom: 14px; z-index: 2; height: 40px; width: auto; filter: drop-shadow(0 1px 6px rgba(22,32,44,.5)); }
.tc-body { padding: 16px 18px 16px; }
.tc-body h3 { font-style: italic; font-weight: 800; font-size: 1.12rem; margin: 0 0 6px; }
.tc-body p { margin: 0 0 12px; font-size: .92rem; color: var(--ink-soft); }
.tc-stats { display: flex; flex-wrap: wrap; gap: 8px 0; }
.tc-stats span {
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive);
}
.tc-stats span:not(:last-child)::after { content: "/"; margin: 0 10px; color: var(--olive-up); display: inline-block; transform: skewX(-24deg); }
.doc-note { margin: 22px 0 0; font-size: .92rem; color: var(--ink-soft); }
.doc-note a { color: var(--olive); font-weight: 600; }

/* trail links */
.trail-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px) { .trail-links { grid-template-columns: 1fr; } }
.trail-links a {
  display: block; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  padding: 16px 18px;
  color: var(--navy); font-weight: 600; font-size: 1.02rem;
  transition: border-color .2s, transform .2s;
}
.trail-links a span { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }
.trail-links a:hover, .trail-links a:focus-visible { border-color: var(--olive); transform: translateY(-2px); }

/* ============ ENQUIRY ============ */
.enquire { background: var(--navy); color: var(--paper); }
.enquire h2 { color: var(--paper); }
.enquire .s-lede { color: #B9C4D2; }
.s-eyebrow-light { color: var(--olive-up); }
.s-eyebrow-light::before { background: var(--olive-up); }
.enquiry-form { max-width: 880px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 820px) { .f-row { grid-template-columns: 1fr; } }
.enquiry-form label, .f-full {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #B9C4D2;
}
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  display: block; width: 100%;
  margin-top: 6px;
  background: var(--navy-deep); color: var(--paper);
  border: 1px solid #33404F; border-radius: 12px;
  padding: 12px 16px;
  font: 400 1rem 'Archivo', sans-serif;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: 2px solid var(--olive-up); outline-offset: 1px; border-color: transparent;
}
.f-full { margin-bottom: 18px; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.f-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.f-note { margin: 0; font-size: .85rem; color: #B9C4D2; max-width: 40ch; }
.f-status { min-height: 1.5em; margin: 12px 0 0; font-weight: 600; }
.f-status.ok { color: var(--olive-up); }
.f-status.err { color: #D08CA0; }

/* ============ FOOTER ============ */
.footer { background: var(--navy-deep); color: #B9C4D2; padding: 52px clamp(20px, 4vw, 48px) 28px; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 30px; max-width: min(1360px, 94vw); margin: 0 auto; }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr; } }
.foot-logo svg { height: 92px; width: auto; display: block; }
.foot-logo .cls-2 { fill: #F9F8F6; }
.foot-logo .cls-1 { fill: #8C9A55; }
.foot-tag { font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; color: var(--olive-up); margin: 12px 0 0; }
.foot-col h4 {
  color: var(--paper); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px;
}
.foot-col a { display: block; color: #B9C4D2; text-decoration: none; font-size: .95rem; margin-bottom: 8px; }
.foot-col a:hover, .foot-col a:focus-visible { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--olive-up); }
.foot-note { font-size: .88rem; margin: 0 0 12px; }
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1; min-width: 0;
  background: var(--navy); color: var(--paper);
  border: 1px solid #33404F; border-radius: 999px;
  padding: 12px 14px; font: 400 .95rem 'Archivo', sans-serif;
}
.news-form input:focus { outline: 2px solid var(--olive-up); outline-offset: 1px; }
.news-form .btn { padding: 12px 18px; font-size: .9rem; }
.foot-bottom {
  max-width: min(1360px, 94vw); margin: 40px auto 0; padding-top: 18px;
  border-top: 1px solid #2A3644;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .82rem;
}

/* ============ DEV GATE ============ */
.gate {
  position: fixed; inset: 0; z-index: 50;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
html:not(.locked) .gate { display: none; }
html.locked { overflow: hidden; }
html.locked .hero-media img, html.locked .nav, html.locked .eyebrow,
html.locked h1 .line span, html.locked .sub, html.locked .cta-row, html.locked .chips li {
  animation-play-state: paused;
}
.gate-card { width: 100%; max-width: 380px; text-align: center; }
.gate-logo svg { height: 110px; width: auto; margin: 0 auto 26px; display: block; }
.gate-logo .cls-2 { fill: #F9F8F6; }
.gate-logo .cls-1 { fill: #8C9A55; }
.gate-label {
  color: var(--olive-up);
  font-weight: 600; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 18px;
}
.gate-form { display: flex; gap: 10px; }
.gate-form input {
  flex: 1; min-width: 0;
  background: var(--navy); color: var(--paper);
  border: 1px solid #33404F; border-radius: 999px;
  padding: 13px 16px; font: 600 1rem 'Archivo', sans-serif; letter-spacing: .04em;
}
.gate-form input:focus { outline: 2px solid var(--olive-up); outline-offset: 1px; border-color: transparent; }
.gate-form button {
  background: var(--olive); color: var(--paper); border: 0; border-radius: 999px;
  padding: 13px 24px; font: 600 1rem 'Archivo', sans-serif; cursor: pointer;
}
.gate-form button:hover, .gate-form button:focus-visible { background: var(--olive-up); color: var(--navy-deep); }
.gate-err { color: #D08CA0; font-size: .85rem; min-height: 1.4em; margin: 12px 0 0; }

/* ============ HAND-DRAWN ENERGY ============ */
.squig { display: block; width: min(220px, 46%); height: auto; margin: -6px 0 22px; }
.squig path { fill: none; stroke: var(--olive); stroke-width: 5; stroke-linecap: round; }
.squig-hero { width: min(280px, 60%); margin: 2px 0 20px; }
.squig-hero path { stroke: var(--olive-up); stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 1.1s 1s cubic-bezier(.4,0,.2,1) forwards; }
.squig-light path { stroke: var(--olive-up); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.spark { width: 34px; height: 34px; }
.spark path { fill: none; stroke: var(--olive-up); stroke-width: 4.5; stroke-linecap: round; }
.spark-hero { display: inline-block; margin-left: 14px; vertical-align: baseline; transform: rotate(-10deg) translateY(2px); }
.spark-inline { display: inline-block; width: 28px; height: 28px; margin-left: 12px; vertical-align: middle; transform: rotate(12deg); }
.dashes { width: 58px; height: 34px; align-self: center; transform: rotate(6deg); }
.dashes-hero { display: inline-block; width: 56px; height: 32px; margin-left: 16px; vertical-align: baseline; transform: rotate(-8deg) translateY(4px); }
.dashes-strap { display: block; width: 68px; height: 38px; margin: 0 auto; transform: rotate(-6deg); }
.dashes-strap path { stroke: var(--olive); }
.dashes-inline { display: inline-block; width: 46px; height: 26px; margin-left: 14px; vertical-align: middle; transform: rotate(-8deg); }
.dashes path { fill: none; stroke: var(--olive-up); stroke-width: 4.5; stroke-linecap: round; opacity: .9; }
@media (max-aspect-ratio: 0.9) {
  .dashes { display: none; }
  .squig-hero { width: min(240px, 70%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .nav, .eyebrow, h1 .line span, .sub, .cta-row, .chips li { animation: none; transform: none; }
  .btn, .trail-links a, .trail-card { transition: none; }
  .step { transform: none; }
  .squig-hero path { animation: none; stroke-dashoffset: 0; }
}
