/* RSLNT — safari × executives: warm dust, forest ink, endurance energy */

:root {
  --navy-950: #161311;
  --navy-900: #221e19;
  --navy-800: #2c3328;
  --navy-700: #3d4a3e;
  --slate-600: #4a4338;
  --slate-500: #6b6254;
  --slate-400: #958a7a;
  --mist-200: #e5dcd0;
  --mist-100: #f2ebe0;
  --white: #ffffff;
  --sand-page: #faf7f2;
  --gold-500: #c45c1a;
  --gold-400: #e07828;
  --gold-600: #9a4814;
  --ember-glow: rgba(224, 120, 40, 0.22);
  --accent: #2f5d4a;
  --accent-dark: #1e4436;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(26, 20, 14, 0.07);
  --shadow-md: 0 14px 42px rgba(26, 20, 14, 0.12);
  --shadow-lg: 0 26px 72px rgba(22, 18, 12, 0.18);
  /* DM Sans ≈ Vistage’s Sofia Pro (geometric sans, single family body + display) */
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-condensed: "DM Sans", system-ui, -apple-system, sans-serif;
  --space-section: clamp(4rem, 10vw, 7rem);
  --container: min(1120px, 92vw);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--sand-page);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 92vw);
}

/* Header — match footer: near-black bar, light type, logo stands alone */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: min(1240px, 94vw);
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.site-header .logo {
  padding: 0;
  background: transparent;
}

.site-header .logo:hover .logo-img {
  opacity: 0.88;
}

.site-header .logo-img {
  height: 44px;
  width: auto;
  max-width: min(260px, 58vw);
  display: block;
  transition: opacity 0.2s ease;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--navy-950);
}

.logo-tag {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-dark);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  margin-inline: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-header .nav-list a:hover {
  color: var(--gold-400);
}

.nav-cta {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-condensed);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(165deg, var(--gold-400) 0%, var(--gold-500) 55%, var(--gold-600) 100%);
  color: #fffaf6;
  border-color: var(--gold-500);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #ea8a3a 0%, #d0651c 100%);
  border-color: #d0651c;
  color: #fffaf6;
}

.btn.nav-cta {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.btn-secondary {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--navy-950);
}

.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-accent {
  background: var(--white);
  color: var(--navy-950);
  border-color: var(--white);
}

.btn-accent:hover {
  background: var(--mist-100);
  border-color: var(--mist-100);
  color: var(--navy-950);
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding: clamp(3rem, 8vw, 5rem) 0 var(--space-section);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1510;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&h=1080&q=80");
  background-size: cover;
  background-position: 50% 42%;
  opacity: 0.5;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(28, 20, 14, 0.91) 0%, rgba(42, 32, 22, 0.82) 38%, rgba(30, 68, 52, 0.55) 100%),
    radial-gradient(1000px 520px at 88% 12%, var(--ember-glow), transparent 58%),
    radial-gradient(900px 480px at 12% 88%, rgba(47, 93, 74, 0.2), transparent 55%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='%23ffffff' stroke-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.hero-copy {
  padding-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f0c9a4;
  margin: 0 0 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  margin: 0 0 1.25rem;
  max-width: 16ch;
}

.hero-title em {
  font-style: italic;
  color: #ffb86c;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-note a, .hero-note-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.65rem;
  align-items: stretch;
}

.hero-collage__primary {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.hero-collage__primary img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 320px;
  object-fit: cover;
  object-position: 50% 35%;
}

.hero-collage__stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-collage__stack img {
  width: 100%;
  height: auto;
  min-height: 96px;
  max-height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-value {
  font-family: var(--font-condensed);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #ffc48a;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Moments gallery */
.band-moments {
  padding-top: clamp(3.5rem, 8vw, 5rem);
  background: linear-gradient(180deg, #f7f1e8 0%, #efe6d8 55%, #ebe0d2 100%);
  border-top: 1px solid rgba(74, 58, 40, 0.12);
  border-bottom: 1px solid rgba(74, 58, 40, 0.08);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(128px, 14vw);
  gap: 1rem;
}

.moment {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 34, 26, 0.08);
  min-height: 0;
  isolation: isolate;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.moment::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(22, 16, 10, 0.82) 0%, transparent 52%);
  pointer-events: none;
}

.moment figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.moment--feature {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.moments-grid .moment:nth-of-type(2) {
  grid-column: 6 / 9;
  grid-row: 1;
}

.moments-grid .moment:nth-of-type(3) {
  grid-column: 9 / 13;
  grid-row: 1;
}

.moments-grid .moment:nth-of-type(4) {
  grid-column: 6 / 10;
  grid-row: 2;
}

.moment--wide {
  grid-column: 1 / 13;
  grid-row: 3;
  min-height: min(280px, 36vw);
}

.moments-grid .moment:nth-of-type(6) {
  grid-column: 10 / 13;
  grid-row: 2;
}

.moment:hover img {
  transform: scale(1.04);
}

.photo-credit {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 1.75rem 0 0;
}

.photo-credit a {
  color: var(--slate-600);
  font-weight: 600;
}

/* Reality column with photo + checklist */
.split--reality {
  align-items: start;
}

.reality-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reality-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 34, 26, 0.08);
  background: linear-gradient(180deg, #f4efe6 0%, #ebe4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reality-photo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(560px, 68vh);
  object-fit: contain;
  object-position: center;
  display: block;
}

.reality-copy .eyebrow {
  color: var(--gold-600);
}

/* Bands */
.band {
  padding: var(--space-section) 0;
}

.band-muted {
  background: linear-gradient(180deg, #faf6f0 0%, var(--mist-100) 100%);
}

/* Voices / testimonials — full-bleed brand photo + overlay */
#leaders.band-muted {
  background-color: #252018;
  background-image:
    linear-gradient(180deg, rgba(26, 22, 18, 0.58) 0%, rgba(18, 15, 12, 0.82) 100%),
    url("patagonia-group-hill.jpg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}

#leaders.band-muted .section-head h2 {
  color: var(--white);
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.35);
}

#leaders.band-muted .section-deck {
  color: rgba(255, 248, 240, 0.92);
}

.band-dark {
  background: linear-gradient(185deg, #1e2a22 0%, var(--navy-900) 42%, #120f0c 100%);
  color: var(--mist-200);
}

.band-dark h2,
.band-dark h3 {
  color: var(--white);
}

.band-dark p {
  color: rgba(244, 236, 226, 0.9);
}

.section-head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 3rem;
}

.section-head-light .section-deck {
  color: rgba(244, 236, 226, 0.88);
}

.section-deck {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--slate-600);
}

/* Brand photography strip (rslntleadership.com assets) */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 56rem;
}

.why-strip img {
  width: 100%;
  height: clamp(120px, 18vw, 180px);
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
}

/* Feature grid */
.feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 34, 26, 0.06);
}

.band-muted .feature-card {
  background: var(--white);
}

.feature-card p {
  color: var(--slate-600);
  font-size: 0.98rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pullquote {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  border-left: 4px solid var(--gold-500);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-800);
}

.pullquote p {
  margin: 0;
}

.checklist.checklist--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .checklist.checklist--grid {
    grid-template-columns: 1fr;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.step-index {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #f0c9a4;
  margin-bottom: 1rem;
}

.band-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Adventures */
.card-grid.adventures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

a.adventure-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.adventure-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.adventure-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.adventure-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.adventure-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.adventure-card h3 {
  font-size: 1.2rem;
  margin: 1.1rem 1.35rem 0.35rem;
}

.adventure-card .meta-loc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-500);
  margin: 0;
  padding: 0.1rem 1.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.adventure-card .meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0;
  padding: 0.2rem 1.35rem 1.35rem;
}

.fineprint {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 2rem;
}

.fineprint.center {
  text-align: center;
}

/* Stats band */
.band-stats {
  background: linear-gradient(90deg, #243129 0%, #2c3b30 50%, #1f2720 100%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-condensed);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffc48a;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(42, 34, 26, 0.06);
  box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--navy-800);
  line-height: 1.55;
}

.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  color: var(--slate-500);
}

.testimonial figcaption strong {
  color: var(--navy-900);
  font-size: 1rem;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 34, 26, 0.1);
  padding: 0 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(42, 34, 26, 0.08);
  margin-bottom: 0.75rem;
}

.faq-item p {
  padding-bottom: 1.1rem;
  color: var(--slate-600);
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

/* Story */
.band-story {
  border-top: 1px solid rgba(42, 34, 26, 0.08);
}

.story-aside {
  background: var(--mist-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(42, 34, 26, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.story-aside__photo {
  margin: 0;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
}

.story-aside__photo img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

.story-quote {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.25;
}

/* Bios */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.bio-card__photo {
  margin: -2rem -2rem 1.25rem;
  background: var(--slate-200);
  position: relative;
  overflow: hidden;
  padding-bottom: 100%; /* 1:1 square — better for portrait headshots */
  height: 0;
}

.bio-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: opacity 0.4s ease;
}

.bio-card__photo .bio-photo-hover {
  object-position: center center; /* adventure/landscape photos centered */
}

/* Default photo visible; hover photo hidden until hover */
.bio-card__photo .bio-photo-hover {
  opacity: 0;
}

.bio-card:hover .bio-photo-hover {
  opacity: 1;
}

.bio-card:hover .bio-photo-default {
  opacity: 0;
}

.bio-card .role {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  margin: 0 0 1rem;
}

.bio-card p {
  color: var(--slate-600);
  font-size: 0.98rem;
}

/* Apply / form */
.band-cta-final {
  background: linear-gradient(180deg, #f5ede3 0%, var(--white) 45%);
  border-top: 1px solid rgba(62, 50, 36, 0.1);
}

.apply-grid {
  align-items: start;
}

.contact-block {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-size: 1rem;
}

.contact-block li {
  margin-bottom: 0.65rem;
  color: var(--slate-600);
}

.contact-block a {
  font-weight: 600;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 34, 26, 0.1);
  box-shadow: var(--shadow-md);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
}

.lead-form input,
.lead-form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(42, 34, 26, 0.15);
  background: var(--mist-100);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
  border-color: var(--gold-500);
  background: var(--white);
}

.lead-form .full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 0;
}

/* Cohort section — Selling your Story callout */
.cohort-callout {
  margin: 1.75rem 0 1.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 34, 26, 0.1);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.cohort-callout h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--navy-950);
}

.cohort-callout__snippet {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.cohort-callout__link {
  width: fit-content;
}

/* Selling your Story landing page */
.story-landing-hero {
  position: relative;
  color: var(--white);
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.story-landing-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 20, 14, 0.94) 0%, rgba(36, 48, 38, 0.88) 48%, rgba(30, 68, 52, 0.55) 100%),
    radial-gradient(900px 500px at 18% 28%, var(--ember-glow), transparent 55%),
    var(--navy-950);
  z-index: 0;
}

.story-landing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.story-landing-hero__eyebrow {
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.story-landing-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 1.25rem;
  line-height: 1.08;
}

.story-landing-hero__title em {
  font-style: italic;
  color: var(--gold-400);
}

.story-landing-hero__lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 36ch;
}

.ma-reality-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ma-reality-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid rgba(42, 34, 26, 0.08);
  box-shadow: var(--shadow-sm);
}

.ma-reality-card h3 {
  font-size: 0.98rem;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 0 0 0.5rem;
}

.ma-reality-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.story-landing-cta .section-deck {
  color: rgba(244, 236, 226, 0.9);
}

.story-landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-mark {
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-heading {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0c9a4;
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-address {
  margin: 0 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner p {
  margin: 0;
}

/* Mobile */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .card-grid.adventures {
    grid-template-columns: 1fr 1fr;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }

  .ma-reality-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, 48vw);
  }

  .moment--feature,
  .moments-grid .moment:nth-of-type(2),
  .moments-grid .moment:nth-of-type(3),
  .moments-grid .moment:nth-of-type(4),
  .moment--wide,
  .moments-grid .moment:nth-of-type(6) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }

  .moment--feature {
    min-height: min(360px, 52vw);
  }

  .moment--wide {
    min-height: min(280px, 45vw);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .card-grid.adventures {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .metric {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-collage {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-collage__primary img {
    max-height: 260px;
  }

  .moments-grid {
    grid-auto-rows: minmax(180px, 46vw);
  }

  .why-strip {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  a.adventure-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.adventure-card {
    transition: none;
  }

  .moment img,
  .adventure-card__media img {
    transition: none;
  }

  .moment:hover img,
  .adventure-card:hover .adventure-card__media img {
    transform: none;
  }
}

/* —— Field Supply (store) —— */

.page-store {
  background: var(--sand-page);
}

.store-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 42%, var(--accent-dark) 100%);
  color: var(--mist-100);
}

.store-hero__inner {
  max-width: 42rem;
}

.store-hero .eyebrow {
  color: var(--gold-400);
}

.store-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.store-hero__lead {
  margin: 0;
  color: rgba(242, 235, 224, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.store-code {
  font-size: 0.9em;
  padding: 0.12em 0.35em;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--mist-100);
  word-break: break-all;
}

.store-banner {
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 500;
}

.store-banner--success {
  background: rgba(47, 93, 74, 0.18);
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(47, 93, 74, 0.25);
}

.store-banner--muted {
  background: var(--mist-100);
  color: var(--slate-600);
  border-bottom: 1px solid var(--mist-200);
}

.store-error {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(196, 92, 26, 0.12);
  color: var(--gold-600);
  text-align: center;
  font-weight: 500;
}

.store-layout {
  display: grid;
  grid-template-columns: 1fr min(340px, 100%);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  padding-block: var(--space-section);
}

.store-section-head {
  margin-bottom: 1.75rem;
}

.store-section-head h2 {
  margin-bottom: 0.5rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.store-catalog-loading,
.store-catalog-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--slate-500);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.store-catalog-error {
  color: var(--gold-600);
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(44, 51, 40, 0.08);
}

.store-card__media {
  aspect-ratio: 1;
  background: var(--mist-100);
}

.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-card__tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  margin: 0 0 0.35rem;
}

.store-card__body h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.store-card__desc {
  font-size: 0.98rem;
  color: var(--slate-600);
  margin: 0 0 1rem;
  flex: 1;
}

.store-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-card__price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.store-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.store-cart-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44, 51, 40, 0.08);
}

.store-cart-panel h2 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.store-cart__hint {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin: 0 0 1.25rem;
}

.store-cart__empty {
  margin: 0;
  padding: 1rem 0;
  color: var(--slate-500);
  font-size: 0.98rem;
}

.store-cart__lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.store-cart__line {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mist-200);
}

.store-cart__line:last-child {
  border-bottom: 0;
}

.store-cart__line-main {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.store-cart__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.store-cart__line-total {
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
}

.store-cart__qty input {
  width: 4rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-sm);
  font: inherit;
}

.store-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding-top: 0.75rem;
  font-size: 1.05rem;
}

.store-cart__subtotal strong {
  font-size: 1.2rem;
}

.store-cart__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.store-cart__actions .btn {
  width: 100%;
  justify-content: center;
}

.store-api-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--slate-500);
}

@media (max-width: 900px) {
  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    position: static;
    order: -1;
  }
}
