/* ============================================================
   CABRA BORRACHA — RELOCATION REDESIGN  (Round 2 — Warm Visual Edition)
   style-redesign.css — layered on top of style.css base

   SECTION BACKGROUND RHYTHM:
   Hero         → Navy  #0D1B2A  (dark, dramatic)
   Process      → Cream #F5EDD8  (warm, approachable)
   Quiz         → Jade  #0A2820  (dark, bold)
   Escape Plans → Parchment #EDE4CE (warm, editorial)
   Scout        → Navy  #0D1B2A  (dark)
   How It Works → Off-white #F8F2E6 (warm, open)
   Email Signup → Forest #1C3A2A  (dark green)
   About        → Cream #F5EDD8  (warm)
   Trust        → Sage  #E4EDDE  (soft green)
   Blog         → Parchment #EDE4CE (warm)
   Merch        → Dark  #1A0E06  (dark warm)
   More From    → Cream #F5EDD8  (warm)
   Final CTA    → Navy  #0D1B2A  (dark)
   ============================================================ */

/* ── NAV DROPDOWN SYSTEM ── */
.nav-links { position: relative; align-items: center; }

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item > a {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.65);
  transition: color 0.2s;
  cursor: pointer;
  padding: 8px 0;
  display: block;
}
.nav-item > a:hover,
.nav-item:hover > a { color: var(--hot); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,8,6,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  min-width: 220px;
  padding: 20px 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 600;
  backdrop-filter: blur(16px);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}

.nav-dropdown-label {
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.3);
  padding: 8px 18px 4px;
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(240,232,216,0.7);
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--hot);
  background: rgba(255,85,0,0.07);
}

.nav-cta-quiz {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--hot);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta-quiz:hover { background: #e04a00; transform: translateY(-1px); }

/* ── S1: HERO ── */
#hero-relo {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #0A1018;
}

.hero-img-wrap { position: relative; line-height: 0; }
.hero-full-img { width: 100%; height: auto; display: block; }
.hero-btn-overlay { position: absolute; display: block; cursor: pointer; }
#heroBtn1 { left: 4.1%; top: 72.7%; width: 17%; height: 7%; border-radius: 4px; }
#heroBtn2 { left: 22.8%; top: 72.7%; width: 17%; height: 7%; border-radius: 4px; }

.hero-relo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-relo-kicker {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-relo-kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--hot);
}

.hero-relo-h1 {
  font-family: var(--head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: #F5EDD8;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-relo-h1 em {
  font-style: normal;
  color: var(--hot);
}

.hero-relo-sub {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,237,216,0.68);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-relo-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.hero-reassurance {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(245,237,216,0.38);
  letter-spacing: 0.06em;
}

/* Hero right-side illustration panel — hidden, image is now background */
.hero-relo-visual { display: none; }
.hero-goat-wrap { display: none; }
.hero-goat-img { display: none; }
.hero-country-signs { display: none; }
.hero-country-sign { display: none; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: #080808;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-wrap.dark {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.45);
}
.marquee-track .dot { color: var(--hot); }
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION SHARED ── */
.section-kicker {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 12px;
  display: block;
}

.section-h2 {
  font-family: var(--head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240,232,216,0.6);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Light section text overrides */
#escape-plans-section .section-h2,
#how-it-works .section-h2,
#about-section .section-h2,
#trust-section .section-h2,
#blog-section .section-h2,
#more-from .section-h2 { color: #1A1008; }

#escape-plans-section .section-sub,
#how-it-works .section-sub,
#about-section .section-sub,
#trust-section .section-sub,
#blog-section .section-sub,
#more-from .section-sub { color: rgba(26,16,8,0.62); }

/* ── S2: WHERE ARE YOU? — ILLUSTRATION IMAGE ── */
#process-cards { padding: 0; margin: 0; line-height: 0; background: #EDE4CE; }
.process-img-wrap { position: relative; line-height: 0; }
.process-cards-full-img { width: 100%; height: auto; display: block; }
.process-btn-overlay {
  position: absolute; display: block; cursor: pointer; border-radius: 4px;
  width: 28%; height: 8%; top: 77.9%;
}
#processBtn1 { left: 7.9%; }
#processBtn2 { left: 36.4%; }
#processBtn3 { left: 65.2%; }

/* ── S3: QUIZ PROMO — DEEP JADE ── */
/* ── S3: QUIZ PROMO — ILLUSTRATION IMAGE ── */
#quiz-promo { padding: 0; margin: 0; line-height: 0; background: #0A2820; }
.quiz-promo-wrap { position: relative; line-height: 0; }
.quiz-promo-overlay { position: absolute; display: block; cursor: pointer; border-radius: 4px; }
#quizBtn1 { left: 43.7%; top: 32.3%; width: 40%; height: 9%; }
#quizBtn2 { left: 10.0%; top: 82.0%; width: 30%; height: 8%; }
#quizBtn3 { left: 56.0%; top: 82.1%; width: 30%; height: 8%; }

.quiz-promo-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── S3b: ESCAPE PLAN STEPS — ILLUSTRATION IMAGE ── */
#escape-plan-steps {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #1A0E06;
}

.escape-plan-steps-wrap {
  position: relative;
  line-height: 0;
}

.escape-plan-steps-img {
  width: 100%;
  height: auto;
  display: block;
}

.steps-btn-overlay { position: absolute; display: block; cursor: pointer; border-radius: 4px; }
#stepsBtn1 { left: 29.4%; top: 64.6%; width: 20.0%; height: 8.0%; }
#stepsBtn2 { left: 50.4%; top: 66.5%; width: 18.0%; height: 5.0%; }
#stepsBtn3 { left: 75.0%; top: 68.7%; width: 18.0%; height: 5.0%; }
#stepsBtn4 { left: 36.5%; top: 91.0%; width: 18.0%; height: 5.0%; }
#stepsBtn5 { left: 55.6%; top: 91.0%; width: 18.0%; height: 5.0%; }
#socBtn1 { left: 80.2%; top: 78.5%; width: 2.5%; height: 8.0%; border-radius: 50%; }
#socBtn2 { left: 83.9%; top: 78.7%; width: 2.5%; height: 8.0%; border-radius: 50%; }
#socBtn3 { left: 87.6%; top: 78.3%; width: 2.5%; height: 8.0%; border-radius: 50%; }
#socBtn4 { left: 91.3%; top: 78.5%; width: 2.5%; height: 8.0%; border-radius: 50%; }
#socBtn5 { left: 95.1%; top: 78.5%; width: 2.5%; height: 8.0%; border-radius: 50%; }

/* Custom form overlaid on FREE CHECKLIST panel email+button area */
.checklist-form-overlay {
  position: absolute;
  left: 3%;
  top: 61%;
  width: 18.5%;
}


.checklist-mini-form {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
}

.checklist-email-input {
  width: 100%;
  box-sizing: border-box;
  height: 34px;
  padding: 0 10px;
  font-size: 13px;
  border: 1px solid #bbb;
  border-radius: 3px;
  background: rgba(255,255,255,0.97);
  color: #222;
  font-family: 'Space Grotesk', sans-serif;
}

.checklist-submit-btn {
  width: 100%;
  height: 34px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--hot);
  color: #000;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}

.checklist-success-msg {
  font-size: 10px;
  font-weight: 700;
  color: #1C3A2A;
  background: rgba(255,255,255,0.9);
  border-radius: 3px;
  padding: 4px 6px;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ── S4: ESCAPE PLANS — PARCHMENT ── */
/* ── S4: ESCAPE PLANS — matches live site layout ── */
#escape-plans-section {
  background: #EDE4CE;
  border-top: none;
}

.escape-plans-wrap {
  position: relative;
}

.escape-plans-img {
  width: 100%;
  display: block;
  height: auto;
}

/* Let style.css handle .escape-grid absolute positioning */

.escape-plans-footer {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.escape-plans-footer .btn-outline-hot {
  background: var(--hot);
  color: #000;
  border-color: var(--hot);
  font-weight: 700;
}

/* ── S5: SCOUT GUIDES — ILLUSTRATION IMAGE ── */
#scout-section {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #1A0E06;
}

.scout-img-wrap { position: relative; line-height: 0; }
.scout-guides-full-img {
  width: 100%;
  height: auto;
  display: block;
}
.scout-btn-overlay { position: absolute; display: block; cursor: pointer; border-radius: 4px; }
#scoutBtn1 { left: 27.2%; top: 93.6%; width: 40.0%; height: 6.0%; }

.scout-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

.scout-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.sg-card {
  background: rgba(245,237,216,0.06);
  border: 1px solid rgba(245,237,216,0.12);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.sg-card:hover {
  background: rgba(245,237,216,0.1);
  border-color: rgba(255,85,0,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.sg-card-flag { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.sg-card-name {
  font-family: var(--head);
  font-size: 1.15rem;
  color: #F5EDD8;
  margin-bottom: 6px;
}
.sg-card-label {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.38);
}

.scout-city-sub {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,237,216,0.08);
}
.scout-city-sub-head {
  font-family: var(--head);
  font-size: 1.9rem;
  color: #F5EDD8;
  margin-bottom: 8px;
}
.scout-city-sub-desc {
  font-family: var(--body);
  font-size: 0.9rem;
  color: rgba(245,237,216,0.5);
  margin-bottom: 24px;
  max-width: 560px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.city-chip {
  padding: 13px 16px;
  background: rgba(245,237,216,0.04);
  border: 1px solid rgba(245,237,216,0.1);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(245,237,216,0.6);
  text-align: center;
  transition: all 0.15s;
  text-decoration: none;
  display: block;
}
.city-chip:hover {
  border-color: rgba(255,85,0,0.35);
  color: var(--hot);
  background: rgba(255,85,0,0.06);
}
.city-chip-note {
  font-size: 0.65rem;
  color: rgba(245,237,216,0.3);
  display: block;
  margin-top: 3px;
}

/* ── S6: HOW IT WORKS — WARM OFF-WHITE ── */
#how-it-works {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #EDE4CE;
}

.how-it-works-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

/* Orange route line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,85,0,0.4) 15%,
    rgba(255,85,0,0.4) 85%,
    transparent
  );
  z-index: 0;
}

.step-item {
  padding: 0 24px 48px;
  position: relative;
  text-align: center;
}

.step-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255,85,0,0.5);
  border-radius: 50%;
  background: #FFFBF5;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(255,85,0,0.1);
}

.step-num {
  font-family: var(--head);
  font-size: 1.7rem;
  color: var(--hot);
}

.step-title {
  font-family: var(--head);
  font-size: 1.65rem;
  color: #1A1008;
  text-align: center;
  margin-bottom: 12px;
}

.step-body {
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(26,16,8,0.6);
  text-align: center;
}

.how-closing {
  text-align: center;
  font-family: var(--f, 'TG', Georgia, serif);
  font-size: 1.1rem;
  color: rgba(26,16,8,0.5);
  font-style: italic;
  max-width: 580px;
  margin: 52px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(26,16,8,0.1);
  line-height: 1.75;
}

/* ── S7: EMAIL SIGNUP — FOREST GREEN ── */
#email-signup {
  background: #1C3A2A;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Diagonal texture on forest green */
#email-signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(245,237,216,0.025) 0px,
    rgba(245,237,216,0.025) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}

.email-signup-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.email-signup-copy h2 {
  font-family: var(--head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F5EDD8;
  margin-bottom: 18px;
  line-height: 1.08;
}

.email-signup-copy p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(245,237,216,0.65);
  margin-bottom: 18px;
}

.email-signup-note {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(245,237,216,0.38);
  line-height: 1.6;
  margin-bottom: 0 !important;
}

.integration-notice {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(255,85,0,0.8);
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.25);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 14px;
  line-height: 1.55;
}

/* ── S8: ABOUT — CREAM ── */
#about-section {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #0A0804;
}

.about-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-relo-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-relo-img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #EDE4CE;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(26,16,8,0.12);
}

/* Goat-arrow.jpg on cream — mix-blend removes white bg */
.about-relo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  padding: 20px;
}

.about-relo-copy h2 {
  font-family: var(--head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #1A1008;
  margin-bottom: 24px;
  line-height: 1.08;
}

.about-relo-copy p {
  font-family: var(--body);
  font-size: 0.93rem;
  line-height: 1.78;
  color: rgba(26,16,8,0.68);
  margin-bottom: 18px;
}

.about-note {
  font-family: var(--body);
  font-size: 0.8rem;
  color: rgba(26,16,8,0.45);
  font-style: italic;
  line-height: 1.62;
  border-left: 2px solid rgba(255,85,0,0.5);
  padding-left: 14px;
  margin-top: 20px;
}

/* ── S9: TRUST — SAGE ── */
#trust-section { padding: 0; margin: 0; line-height: 0; background: #EDE4CE; }
.trust-full-img { width: 100%; height: auto; display: block; }

/* ── S10: BLOG — PARCHMENT ── */
#blog-section { padding: 0; margin: 0; line-height: 0; background: #0A1A14; }
.blog-img-wrap { position: relative; line-height: 0; }
.blog-full-img { width: 100%; height: auto; display: block; }
.blog-cta-overlay {
  position: absolute;
  left: 55.9%; top: 82.5%;
  width: 32%; height: 8%;
  display: block; cursor: pointer;
  border-radius: 6px;
}

/* ── S11: MERCHANDISE — BODEGA ── */
#merch-section { background: rgb(122,40,0); position: relative; padding: 0; overflow: hidden; }

.bodega-scene { position: relative; width: 100%; line-height: 0; }
.bodega-bg { width: 100%; height: auto; display: block; pointer-events: none; user-select: none; }

.merch-footer {
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 20;
}
.merch-footer .btn-outline-hot {
  background: var(--hot);
  color: #000;
  border-color: var(--hot);
  font-weight: 700;
}

.board-shirts {
  position: absolute; inset: 49% 16.5% 10.5% 17.5%;
  overflow: hidden; display: flex; align-items: center;
}

.shirt-scroll-track {
  display: flex; gap: 12px; padding: 0 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; cursor: grab; height: 100%; align-items: center;
}
.shirt-scroll-track::-webkit-scrollbar { display: none; }
.shirt-scroll-track:active { cursor: grabbing; }

.shirt-arrow {
  position: absolute; z-index: 20;
  width: 7%; height: 11%;
  top: 62.7%;
  background: transparent; border: none;
  cursor: pointer; border-radius: 50%;
  transition: background 0.15s;
  padding: 0;
}
.shirt-arrow:hover { background: rgba(255,200,80,0.18); }
.shirt-arrow-left  { left: 10%; }
.shirt-arrow-right { left: 83.2%; }

.shirt-tile {
  flex-shrink: 0; width: calc(-13px + 16.5vw); scroll-snap-align: start;
  background: rgba(12,6,0,0.52); border: 1px solid rgba(200,150,60,0.25);
  border-radius: 4px; overflow: hidden; transition: transform 0.25s;
  text-decoration: none; display: flex; flex-direction: column;
}
.shirt-tile:hover { transform: translateY(-6px); }
.shirt-tile-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 8px; }
.shirt-tile-foot { padding: 10px 12px; }
.shirt-tile-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem;
  color: rgb(255,255,255); margin-bottom: 6px; line-height: 1.3;
}
.shirt-tile-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.2s; display: block;
}
.shirt-tile:hover .shirt-tile-btn { color: rgb(255,255,255); }

@media (max-width: 680px) { .shirt-tile { width: calc(-14px + 33vw); } }

/* ── S12: MORE FROM CABRA BORRACHA — CREAM ── */
#more-from {
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #F5EDD8;
}
.more-from-wrap { position: relative; line-height: 0; }
.more-from-full-img { width: 100%; height: auto; display: block; }
.more-from-overlay { position: absolute; display: block; cursor: pointer; border-radius: 4px; }
#moreBtn1 { left: 2.9%;  top: 85.8%; width: 23.0%; height: 8.0%; }
#moreBtn2 { left: 26.8%; top: 85.9%; width: 23.0%; height: 8.0%; }
#moreBtn3 { left: 49.9%; top: 85.9%; width: 23.0%; height: 8.0%; }
#moreBtn4 { left: 73.4%; top: 85.9%; width: 23.0%; height: 8.0%; }

.more-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.more-card {
  background: #FFFBF5;
  border: 1px solid rgba(26,16,8,0.1);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(26,16,8,0.06);
}
.more-card:hover {
  box-shadow: 0 8px 28px rgba(26,16,8,0.1);
  transform: translateY(-3px);
}

.more-card-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.more-card-title {
  font-family: var(--head);
  font-size: 1.65rem;
  color: #1A1008;
  margin-bottom: 12px;
}
.more-card-body {
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(26,16,8,0.6);
  margin-bottom: 24px;
  flex: 1;
}

/* ── S13: FINAL CTA — NAVY ── */
#final-cta {
  background: #0D1B2A;
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind goat */
#final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,85,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

.final-cta-inner h2 {
  font-family: var(--head);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: #F5EDD8;
  line-height: 1.05;
  margin-bottom: 20px;
}

.final-cta-inner p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(245,237,216,0.58);
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-goat {
  width: 130px;
  margin: 0 auto 36px;
  opacity: 0.65;
  filter: drop-shadow(0 0 28px rgba(255,85,0,0.35));
  display: block;
}

/* ── FOOTER ── */
#footer-relo {
  background: #0A0804;
  border-top: 3px solid var(--hot);
  padding: 60px 40px 32px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.85;
  display: block;
}
.footer-brand-tagline {
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(245,237,216,0.38);
  line-height: 1.62;
  margin-bottom: 20px;
  max-width: 220px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,237,216,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social-link:hover { background: var(--hot); }
.footer-social-link svg { width: 14px; height: 14px; fill: rgba(245,237,216,0.55); }
.footer-social-link:hover svg { fill: #fff; }

.footer-col-title {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.38);
  margin-bottom: 18px;
  display: block;
}

.footer-col a {
  display: block;
  font-family: var(--body);
  font-size: 0.84rem;
  color: rgba(245,237,216,0.5);
  margin-bottom: 10px;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--hot); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(245,237,216,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(245,237,216,0.28);
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-fill-hot {
  display: inline-block;
  background: var(--hot);
  color: #fff;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-fill-hot:hover {
  background: #e04a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,85,0,0.3);
}

.btn-outline-hot {
  display: inline-block;
  background: transparent;
  color: var(--hot);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,85,0,0.55);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-hot:hover {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  transform: translateY(-2px);
}

/* Cream outline — for dark bg sections */
.btn-outline-cream {
  display: inline-block;
  background: transparent;
  color: #F5EDD8;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(245,237,216,0.35);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-cream:hover {
  border-color: rgba(245,237,216,0.75);
  color: #fff;
}

/* Dark outline for light bg sections */
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: #1A1008;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(26,16,8,0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  border-color: #1A1008;
  background: rgba(26,16,8,0.05);
}

.section-footer-btn {
  text-align: center;
  margin-top: 40px;
}

/* ── MOBILE NAVIGATION ── */
.mob-menu-relo {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.98);
  z-index: 490;
  display: none;
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
  backdrop-filter: blur(20px);
}
.mob-menu-relo.on { display: flex; }

.mob-nav-group {
  margin-bottom: 8px;
}

.mob-nav-parent {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.32);
  margin-bottom: 4px;
  display: block;
  padding: 8px 0 4px;
}

.mob-nav-group a {
  display: block;
  font-family: var(--head);
  font-size: 1.6rem;
  color: rgba(245,237,216,0.8);
  padding: 5px 0;
  line-height: 1.18;
  transition: color 0.15s;
  text-decoration: none;
}
.mob-nav-group a:hover { color: var(--hot); }

.mob-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

.mob-quiz-cta {
  display: block;
  background: var(--hot);
  color: #fff;
  font-family: var(--body);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 2px;
  text-align: center;
  margin-top: 24px;
  text-decoration: none;
}

/* ── MOBILE STICKY BAR ── */
.mob-bar-relo {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,8,6,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  z-index: 400;
  gap: 12px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--hot);
  color: #fff;
  padding: 10px 20px;
  z-index: 9999;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

/* ── FOCUS STYLES ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--hot);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Restore focus ring for inputs (overrides outline:none in style.css) */
.f-group input:focus-visible,
.f-group textarea:focus-visible,
.email-bar input:focus-visible,
.checklist-email-input:focus-visible {
  outline: 2px solid var(--hot);
  outline-offset: 2px;
}

/* Nav dropdowns open on keyboard focus (not just hover) */
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .escape-row { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .scout-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .email-signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-relo-inner { grid-template-columns: 1fr; gap: 40px; }
  #about-section::after { display: none; }
}

@media (max-width: 768px) {
  .hero-btn-overlay { display: none; }
  .process-cards-inner,
  .scout-inner,
  .how-inner,
  .trust-inner,
  .blog-inner,
  .merch-inner,
  .more-inner,
  .final-cta-inner { padding: 60px 24px; }
  .email-signup-inner,
  .about-relo-inner { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 30px; }
  #footer-relo { padding: 50px 24px 28px; }
  .footer-bottom { padding: 20px 0 0; }

  #hero-relo { padding: 0; min-height: auto; }
  .hero-relo-visual { display: none; }
  .hero-relo-h1 { font-size: clamp(3rem, 12vw, 5rem); }

  .escape-row { grid-template-columns: repeat(3, 1fr); }
  .escape-grid { padding: 24px 16px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .scout-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .more-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-cta-quiz { display: none; }
  .ham { display: flex; }
  .mob-bar-relo { display: flex; }
  .mob-bar-relo a { flex: 1; text-align: center; font-size: 0.76rem; }

  .hero-relo-btns { flex-direction: column; }
  .hero-relo-btns a { text-align: center; }

  .final-cta-btns { flex-direction: column; align-items: center; }

  .scout-section-banner { max-height: 160px; }

}

@media (max-width: 480px) {
  .scout-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── COMIC CTA STICKER ── */
.comic-cta-sticker {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 180px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.comic-cta-sticker:hover { transform: scale(1.08) rotate(-2deg); }
.comic-cta-sticker img { width: 100%; display: block; }

@media (max-width: 600px) {
  .comic-cta-sticker { width: 120px; bottom: 12px; right: 12px; }
}

/* ── COMIC MODAL ── */
.comic-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.comic-modal-overlay[hidden] { display: none; }

.comic-modal {
  background: #1a1208;
  border: 2px solid var(--hot);
  border-radius: 12px;
  padding: 40px 36px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
}
.comic-modal-sticker {
  width: 140px;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.comic-modal h2 {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--hot);
  margin-bottom: 10px;
}
.comic-modal p {
  color: rgba(240,232,216,0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.comic-modal p em { color: var(--cream); font-style: normal; font-weight: 600; }

#comicEmailForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#comicEmail {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}
#comicEmail:focus { border-color: var(--hot); }
#comicEmail:focus-visible { outline: 2px solid var(--hot); outline-offset: 2px; }
#comicEmail::placeholder { opacity: 0.4; }

#comicSubmitBtn {
  background: var(--hot);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 20px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
#comicSubmitBtn:hover { background: #e04a00; transform: translateY(-1px); }
#comicSubmitBtn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.comic-modal-msg { font-size: 0.9rem; margin: 0; }
.comic-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(240,232,216,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.15s;
}
.comic-modal-close:hover { color: var(--cream); }
