/* Walk With Me — Layton North Stake Trek 2026 */

:root {
  --brown-900: #3E2A1C;
  --brown-700: #5A3E2B;
  --brown-500: #8B6342;
  --brown-300: #B89671;
  --cream: #F5EBD8;
  --cream-light: #FAF4E6;
  --paper: #FBF7EE;
  --sage: #708060;
  --sage-dark: #4A5D3C;
  --sky: #6B8FA8;
  --gold: #C8973A;
  --gold-dark: #A57820;
  --ink: #2A1F15;
  --ink-soft: #4A3A2A;
  --line: #D8C9AC;
  --shadow: 0 6px 24px rgba(58, 38, 22, 0.10);
  --shadow-lg: 0 14px 38px rgba(58, 38, 22, 0.15);
  --radius: 14px;
  --serif: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --display: "Playfair Display", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at top, rgba(200, 151, 58, 0.05), transparent 60%),
    repeating-linear-gradient(0deg, rgba(139, 99, 66, 0.025) 0px, rgba(139, 99, 66, 0.025) 1px, transparent 1px, transparent 4px);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--brown-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 0.5em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 0 0 0.6em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin: 0 0 0.4em; }
h4 { font-size: 1.05rem; margin: 0 0 0.3em; }
p  { margin: 0 0 1em; }
a  { color: var(--brown-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--gold-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* === Top nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 235, 216, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown-900);
}
.nav-brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 3px rgba(58, 38, 22, 0.20));
}
.nav-brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-dark); }
@media (max-width: 768px) {
  .nav-brand-sub { display: none; }
  .nav-links { gap: 14px; font-size: 0.88rem; }
}
.nav-links .long { display: inline; }
.nav-links .short { display: none; }
@media (max-width: 720px) {
  .nav-brand-text { display: none; }
  .nav-inner { padding: 10px 14px; gap: 10px; }
  .nav-brand img { height: 40px; }
  .nav-links { gap: 14px; font-size: 0.84rem; font-weight: 600; }
  .nav-links .long { display: none; }
  .nav-links .short { display: inline; }
}
@media (max-width: 520px) {
  .nav-links { gap: 10px; font-size: 0.78rem; }
}
@media (max-width: 420px) {
  .nav-links { gap: 8px; font-size: 0.72rem; }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 56px 24px 64px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(245, 235, 216, 0.65), rgba(245, 235, 216, 0.95)),
    radial-gradient(circle at 50% 20%, rgba(200, 151, 58, 0.25), transparent 55%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0,60 L0,30 Q150,5 300,28 T600,30 T900,28 T1200,30 L1200,60 Z' fill='%23FBF7EE'/></svg>") no-repeat center / cover;
  z-index: 1;
}
.hero-logo {
  width: min(540px, 92vw);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 14px 30px rgba(58, 38, 22, 0.30));
}
.hero h1 {
  font-family: var(--display);
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--brown-700);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 20px;
}
.hero-cta {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--brown-700); color: var(--cream-light); }
.btn-primary:hover { background: var(--brown-900); color: var(--cream-light); }
.btn-outline {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-500);
}
.btn-outline:hover { background: var(--brown-700); color: var(--cream-light); }

/* === Sections === */
section { padding: 64px 0; }
.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

.alt-bg {
  background:
    linear-gradient(180deg, rgba(245, 235, 216, 0.5), rgba(245, 235, 216, 0.8));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* === Scripture reference under H1 === */
.scripture {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: -4px;
  margin-bottom: 14px;
  text-align: center;
}

/* === Countdown timer === */
.countdown {
  margin: 36px auto 0;
  max-width: 760px;
  background: linear-gradient(135deg, rgba(245, 235, 216, 0.95), rgba(250, 244, 230, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px 16px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  z-index: 2;
}
.countdown-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.countdown-grid {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
.cd-cell { min-width: 60px; }
.cd-num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--brown-900);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}
.cd-sep {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--brown-300);
  font-weight: 700;
  padding-bottom: 18px;
  align-self: center;
}
.countdown-target {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-style: italic;
}
.countdown.arrived {
  background: linear-gradient(135deg, #FFF7E6, #FFFCEF);
  border-color: var(--gold);
}
@media (max-width: 520px) {
  .countdown { padding: 14px 12px; }
  .countdown-grid { gap: 2px; }
  .cd-cell { min-width: 56px; }
  .cd-sep { font-size: 1.4rem; padding-bottom: 14px; }
}

/* === Scripture block === */
.scripture-block {
  padding: 56px 0 36px;
  text-align: center;
}
.scripture-block .section-eyebrow {
  display: block;
  margin-bottom: 16px;
}
.scripture-verse {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  color: var(--brown-900);
  border: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
}
.scripture-verse::before,
.scripture-verse::after {
  content: "";
  display: block;
  height: 2px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 18px;
}
.scripture-verse::after {
  margin: 18px auto 0;
}
.scripture-verse p {
  margin: 0;
}
.scripture-verse strong {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 700;
}
.scripture-verse cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

/* === Quick Facts strip === */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: -28px auto 0;
  position: relative;
  z-index: 5;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
}
.fact {
  text-align: center;
  padding: 10px;
  border-right: 1px dashed var(--line);
}
.fact:last-child { border-right: none; }
.fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.fact-value {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--brown-900);
  font-weight: 700;
  margin-top: 4px;
}
.fact-sub { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 720px) {
  .fact { border-right: none; border-bottom: 1px dashed var(--line); padding: 12px; }
  .fact:last-child { border-bottom: none; }
}

/* === Critical Times card === */
.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.time-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.time-card.urgent { border-left-color: #B5482A; background: #FFF6EE; }
.time-card .when {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.time-card .time-big {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-900);
  margin: 4px 0;
}
.time-card .label { color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.time-card .desc { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* === Schedule timeline === */
.schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.day {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.day::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--brown-500), var(--sage-dark));
}
.day-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.day-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.day-date {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--brown-900);
  font-weight: 700;
}
.day-title {
  font-family: var(--sans);
  font-style: italic;
  color: var(--ink-soft);
  margin-left: auto;
  font-size: 0.95rem;
}
.day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(216, 201, 172, 0.4);
  font-size: 0.97rem;
}
.day li:last-child { border-bottom: none; }
.day li .t {
  font-weight: 700;
  color: var(--brown-700);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .day li { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
  .day li .t { font-size: 0.9rem; }
}

/* === Schedule (day-by-day) === */
.schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.schedule-day {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.schedule-day::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brown-500), var(--sage-dark));
}
.schedule-day-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.schedule-date {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.schedule-dow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.schedule-md {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-900);
}
.schedule-title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--brown-700);
  font-style: italic;
  font-weight: 600;
}
.schedule-bullets {
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
}
.schedule-bullets li {
  padding: 3px 0;
  font-size: 0.97rem;
}
.schedule-bullets li::marker { color: var(--brown-500); }

/* === Preparation === */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.prep-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.prep-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
}
.prep-green::before  { background: linear-gradient(180deg, #6B8B4A, #4A5D3C); }
.prep-blue::before   { background: linear-gradient(180deg, #4A6A8B, #2C4760); }
.prep-orange::before { background: linear-gradient(180deg, #C8973A, #A5681F); }
.prep-departure {
  background: linear-gradient(135deg, #FFF7E6, #FFFCEF);
  border: 1.5px solid var(--gold);
  grid-column: span 1;
}
.prep-departure::before { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }

.prep-week {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.prep-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 6px;
  background: rgba(200, 151, 58, 0.12);
  border-radius: 10px;
  color: var(--brown-700);
}
.prep-green .prep-icon  { color: #4A5D3C; background: rgba(74, 93, 60, 0.12); }
.prep-blue .prep-icon   { color: #2C4760; background: rgba(44, 71, 96, 0.12); }
.prep-orange .prep-icon { color: #A5681F; background: rgba(200, 151, 58, 0.15); }
.prep-departure .prep-icon { color: var(--gold-dark); background: rgba(200, 151, 58, 0.2); }

.prep-dates {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 2px;
}
.prep-title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--brown-900);
}
.prep-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prep-bullets li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--ink);
}
.prep-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-500);
}
.prep-green .prep-bullets li::before  { background: #6B8B4A; }
.prep-blue .prep-bullets li::before   { background: #4A6A8B; }
.prep-orange .prep-bullets li::before { background: #C8973A; }
.prep-bullets a { color: var(--brown-700); }

/* === Video grid === */
.prep-videos {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--line);
}
.prep-videos-title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--brown-900);
  text-align: center;
  margin: 0 0 6px;
}
.prep-videos-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-size: 0.97rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.video-card {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-thumb {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  font: inherit;
  color: inherit;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.video-thumb:hover img { transform: scale(1.04); filter: brightness(0.8); }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.2s;
}
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}
.video-play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === What to Expect grid === */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.expect-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.expect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.expect-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--cream), var(--brown-300));
  overflow: hidden;
}
.expect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.expect-card:hover .expect-img img { transform: scale(1.04); }
.expect-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 38, 22, 0.18));
  pointer-events: none;
}
.expect-body {
  padding: 18px 22px 22px;
  border-top: 3px solid var(--gold);
}
.expect-card h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--brown-900);
}
.expect-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* === Packing list === */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pack-cat {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.pack-cat h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.pack-cat h3 .icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--brown-700); }
.pack-cat ul { list-style: none; padding: 0; margin: 0; }
.pack-cat li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(216,201,172,0.3);
}
.pack-cat li:last-child { border-bottom: none; }
.pack-cat li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--brown-500);
  border-radius: 3px;
}
.pack-note {
  background: linear-gradient(135deg, #FFF7E6, #FFFCEF);
  border: 1px solid #E8D5A6;
  border-left: 5px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.97rem;
}
.pack-note strong { color: var(--brown-900); }

/* === Why we trek callout === */
.why {
  background:
    linear-gradient(135deg, rgba(74, 93, 60, 0.92), rgba(58, 38, 22, 0.92)),
    url("images/pioneer-trek.jpeg") center/cover;
  background-blend-mode: multiply;
  color: var(--cream-light);
  padding: 64px 24px;
  text-align: center;
  position: relative;
}
.why h2 { color: var(--cream-light); }
.why p { max-width: 720px; margin: 0 auto 1em; font-size: 1.08rem; line-height: 1.7; }
.why .pull {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 24px auto;
  max-width: 600px;
  text-align: left;
}

/* === Release form section === */
.release-section { padding: 56px 0 48px; }
.release-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, #FFF6EE 0%, #FFF1E0 100%);
  border: 2px solid #E8B89A;
  border-left: 8px solid #B5482A;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.release-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(181, 72, 42, 0.08), transparent 70%);
  pointer-events: none;
}
.release-body h2 {
  color: #8B2F18;
  margin-bottom: 12px;
}
.release-body p { color: var(--ink); margin-bottom: 12px; }
.release-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.release-btn {
  background: #B5482A !important;
  color: var(--cream-light) !important;
  padding: 14px 26px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  border: none;
}
.release-btn:hover { background: #8B2F18 !important; }
.deadline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px dashed #B5482A;
  color: #8B2F18;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
}
.deadline-pill svg { width: 18px; height: 18px; flex-shrink: 0; color: #B5482A; }
@media (max-width: 720px) {
  .release-card { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; }
  .release-card { text-align: left; }
  .release-cta { align-items: stretch; }
}

/* === FAQ === */
.faq details {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 600;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--brown-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px dashed var(--line); }
.faq-body { padding: 14px 22px 18px; color: var(--ink-soft); }
.faq-body p:last-child { margin-bottom: 0; }

/* === Contacts === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card .role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.contact-card .name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--brown-900);
  font-weight: 700;
  margin: 6px 0 12px;
}
.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.97rem;
  padding: 6px 0;
  color: var(--brown-700);
  width: 100%;
}
.contact-card a:hover { color: var(--gold-dark); }
.contact-card a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* small inline icon next to text in buttons */
.btn .ic, .ic-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn svg, .ic-text svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === Willie Martin page specifics === */
.wm-hero {
  padding: 80px 24px 60px;
  background:
    linear-gradient(180deg, rgba(58, 38, 22, 0.78), rgba(58, 38, 22, 0.85)),
    url("images/martins-cove-trail.jpg") center/cover;
  color: var(--cream-light);
  text-align: center;
}
.wm-hero h1 { color: var(--cream-light); }
.wm-hero .hero-sub { color: var(--gold); }
.wm-hero .hero-tag { color: var(--cream); }

.framing {
  background: var(--cream-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px auto;
  box-shadow: var(--shadow);
  max-width: 820px;
}
.framing h2 { color: var(--brown-900); }

.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.story img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 720px) {
  .story.two-col { grid-template-columns: 1fr 1fr; }
  .story.img-right { grid-template-columns: 1fr 1.2fr; }
  .story.img-left  { grid-template-columns: 1.2fr 1fr; }
}

blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 20px 0;
  color: var(--brown-900);
}
blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.stat {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--brown-900);
  font-weight: 700;
}
.stat .lbl {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* table */
.tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tbl th, .tbl td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.tbl th {
  background: var(--brown-700);
  color: var(--cream-light);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tbl tr:last-child td { border-bottom: none; }
.tbl tr.highlight td { background: #FFF7E6; font-weight: 600; }

/* sources */
.sources {
  font-size: 0.86rem;
  color: var(--ink-soft);
  background: rgba(245, 235, 216, 0.5);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 32px;
}
.sources h3 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.sources ul { padding-left: 18px; margin: 0; }
.sources li { margin-bottom: 6px; }
.sources a { word-break: break-word; }

/* footer */
footer {
  background: var(--brown-900);
  color: var(--cream);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.92rem;
}
footer a { color: var(--gold); }

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px 0;
  border: none;
}
.bg-photo {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px 0;
}
