/* =====================================================
   METEHI YEPUZO — Retro Modern Design System
   ===================================================== */


:root {
  --cream:     #f5f0e8;
  --cream-dk:  #ede7d9;
  --mustard:   #c8922a;
  --mustard-lt:#e8a83a;
  --terra:     #b85c38;
  --terra-lt:  #d4724e;
  --olive:     #5c6b3a;
  --olive-lt:  #7a8f4e;
  --dusty:     #c4857a;
  --charcoal:  #2e2a24;
  --charcoal-md:#4a4540;
  --warm-gray: #7a7268;
  --white-tint:#fdfaf5;

  --shadow-sm:  0 1px 3px rgba(46,42,36,0.08), 0 4px 12px rgba(46,42,36,0.05);
  --shadow-md:  0 2px 8px rgba(46,42,36,0.10), 0 8px 24px rgba(46,42,36,0.08);
  --shadow-lg:  0 4px 16px rgba(46,42,36,0.12), 0 16px 40px rgba(46,42,36,0.10);
  --shadow-xl:  0 8px 32px rgba(46,42,36,0.16), 0 24px 64px rgba(46,42,36,0.12);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-2xl: 8rem;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white-tint);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }


.pace .pace-progress { background: var(--mustard); height: 3px; }
.pace .pace-activity { border-top-color: var(--mustard); border-left-color: var(--mustard); }


.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =====================================================
   HEADER (Collapsed / Hamburger Only)
   ===================================================== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hdr.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hdr-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-logo img { height: 36px; width: auto; }

.hdr-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hdr.scrolled .hdr-burger span { background: var(--charcoal); }

.hdr-burger:hover { background: var(--cream-dk); }

/* =====================================================
   DESKTOP NAV (Scroll-direction reveal)
   ===================================================== */
.dsk-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dsk-nav.visible { transform: translateY(0); }

.dsk-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.dsk-nav-logo img { height: 32px; width: auto; }

.dsk-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dsk-nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal-md);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dsk-nav-link:hover,
.dsk-nav-link.active {
  color: var(--mustard);
  background: rgba(200,146,42,0.08);
}

.dsk-nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white-tint);
  background: var(--mustard);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(200,146,42,0.3);
}

.dsk-nav-cta:hover {
  background: var(--mustard-lt);
  box-shadow: 0 4px 16px rgba(200,146,42,0.4);
  transform: translateY(-1px);
}

.dsk-nav-cta.active { background: var(--terra); }

@media (min-width: 900px) {
  .dsk-nav { display: block; }
}

/* =====================================================
   MOBILE BOTTOM SHEET NAV
   ===================================================== */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46,42,36,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mob-overlay.active {
  display: block;
  opacity: 1;
}

.mob-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--white-tint);
  border-radius: 20px 20px 0 0;
  padding: 0.75rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(46,42,36,0.18);
}

.mob-nav.open {
  transform: translateY(0);
}

.mob-nav-handle {
  width: 40px;
  height: 4px;
  background: var(--cream-dk);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.mob-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-height: 52px;
}

.mob-nav-link i {
  width: 20px;
  color: var(--mustard);
  font-size: 1rem;
}

.mob-nav-link:hover {
  background: var(--cream-dk);
  color: var(--mustard);
}

.mob-nav-cta {
  background: var(--mustard);
  color: var(--white-tint);
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
}

.mob-nav-cta i { color: var(--white-tint); }
.mob-nav-cta:hover { background: var(--mustard-lt); color: var(--white-tint); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(46,42,36,0.82) 0%,
    rgba(46,42,36,0.60) 55%,
    rgba(46,42,36,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 7rem 1.5rem 4rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-content {
    padding: 8rem 0 5rem;
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,146,42,0.22);
  border: 1px solid rgba(200,146,42,0.45);
  color: var(--mustard-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white-tint);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(253,250,245,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253,250,245,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mustard);
  color: var(--white-tint);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(200,146,42,0.35), 0 8px 24px rgba(200,146,42,0.15);
  transition: var(--transition);
  min-height: 48px;
}

.btn-primary:hover {
  background: var(--mustard-lt);
  box-shadow: 0 4px 16px rgba(200,146,42,0.45), 0 12px 32px rgba(200,146,42,0.2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white-tint);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(253,250,245,0.55);
  transition: var(--transition);
  min-height: 48px;
}

.btn-outline:hover {
  border-color: var(--white-tint);
  background: rgba(253,250,245,0.1);
}

.btn-outline-dk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(46,42,36,0.25);
  transition: var(--transition);
  min-height: 48px;
}

.btn-outline-dk:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

.btn-primary-lt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-tint);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  min-height: 48px;
}

.btn-primary-lt:hover {
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* =====================================================
   SECTIONS
   ===================================================== */
.sec {
  padding: var(--sp-xl) 0;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
}

.sec-label-lt {
  color: var(--mustard-lt);
  background: rgba(232,168,58,0.15);
  border-color: rgba(232,168,58,0.3);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.sec-title-lt { color: var(--white-tint); }

.sec-intro {
  font-size: 1.1rem;
  color: var(--charcoal-md);
  max-width: 660px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* =====================================================
   SHIFT CARDS (Homepage)
   ===================================================== */
.sec-shift {
  background: var(--cream);
  position: relative;
}

.sec-shift::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.shift-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 600px) { .shift-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .shift-cards { grid-template-columns: repeat(4, 1fr); } }

.shift-crd {
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.shift-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,146,42,0.15);
}

.shift-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12), rgba(200,146,42,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--mustard);
  margin-bottom: 1.25rem;
}

.shift-crd h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.shift-crd p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.7;
}

/* =====================================================
   ALTERNATING FEATURE ROWS
   ===================================================== */
.sec-features { background: var(--white-tint); }

.feat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feat-row:last-child { margin-bottom: 0; }

@media (min-width: 800px) {
  .feat-row { grid-template-columns: 1fr 1fr; }
  .feat-row-rev .feat-img-wrap { order: 2; }
  .feat-row-rev .feat-txt { order: 1; }
}

.feat-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feat-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(200,146,42,0.12);
  pointer-events: none;
}

.feat-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feat-img-wrap:hover .feat-img { transform: scale(1.03); }

.feat-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(184,92,56,0.1);
  border: 1px solid rgba(184,92,56,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.feat-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.feat-txt p {
  color: var(--charcoal-md);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mustard);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.feat-link:hover { gap: 0.875rem; color: var(--terra); }

/* =====================================================
   ROLE-PLAY SECTION
   ===================================================== */
.sec-roleplay {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3830 100%);
  position: relative;
  overflow: hidden;
}

.sec-roleplay::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.roleplay-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .roleplay-inner { grid-template-columns: 1fr 1fr; }
}

.roleplay-txt p {
  color: rgba(253,250,245,0.8);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.roleplay-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* =====================================================
   MODULE CASCADE CARDS
   ===================================================== */
.sec-modules { background: var(--cream); }

.mod-cascade {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 640px) { .mod-cascade { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .mod-cascade { grid-template-columns: repeat(4, 1fr); } }

.mod-crd {
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.mod-crd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--terra));
}

.mod-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,146,42,0.2);
}

.mod-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  margin-bottom: 0.875rem;
  letter-spacing: -0.04em;
}

.mod-crd h4 {
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.mod-crd p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* =====================================================
   WHO SECTION
   ===================================================== */
.sec-who { background: var(--white-tint); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) { .who-grid { grid-template-columns: 1fr 1fr; } }

.who-txt p {
  color: var(--charcoal-md);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.who-checks { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 0.875rem; }

.who-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal-md);
}

.who-check i {
  color: var(--olive);
  font-size: 0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.who-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.who-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* =====================================================
   CTA BAND
   ===================================================== */
.sec-cta-band { background: var(--cream); }

.cta-band {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--terra) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: 0 8px 32px rgba(200,146,42,0.3), 0 2px 8px rgba(200,146,42,0.2);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 700px) {
  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band-txt h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--white-tint);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cta-band-txt p {
  color: rgba(253,250,245,0.85);
  font-size: 0.95rem;
  max-width: 480px;
}

.cta-band-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  flex-shrink: 0;
}

.cta-band .btn-primary {
  background: var(--white-tint);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.cta-band .btn-outline-dk {
  color: var(--white-tint);
  border-color: rgba(253,250,245,0.5);
}

.cta-band .btn-outline-dk:hover {
  border-color: var(--white-tint);
  background: rgba(253,250,245,0.1);
}

/* =====================================================
   FOOTER
   ===================================================== */
.ftr {
  background: var(--charcoal);
  color: rgba(253,250,245,0.75);
  padding: 4rem 0 0;
  margin-top: auto;
}

.ftr-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,250,245,0.1);
}

@media (min-width: 640px) { .ftr-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ftr-inner { grid-template-columns: 2fr 1fr 1fr; } }

.ftr-logo { margin-bottom: 1rem; }

.ftr-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.ftr-addr, .ftr-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.ftr-addr i, .ftr-contact i {
  color: var(--mustard);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ftr-contact a {
  color: rgba(253,250,245,0.75);
  transition: var(--transition);
}

.ftr-contact a:hover { color: var(--mustard-lt); }

.ftr-nav h4, .ftr-legal h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-tint);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.ftr-nav ul, .ftr-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ftr-nav a, .ftr-legal a {
  font-size: 0.875rem;
  color: rgba(253,250,245,0.65);
  transition: var(--transition);
}

.ftr-nav a:hover, .ftr-legal a:hover {
  color: var(--mustard-lt);
  padding-left: 4px;
}

.ftr-bottom {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(253,250,245,0.4);
}

/* =====================================================
   PAGE HERO (Inner Pages)
   ===================================================== */
.pg-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3530 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.pg-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white-tint);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.pg-hero-sm { padding: 8rem 0 4.5rem; }

.pg-hero-inner { max-width: 720px; }

.pg-hero .sec-label { margin-bottom: 1.25rem; }

.pg-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white-tint);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.pg-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(253,250,245,0.78);
  line-height: 1.75;
}

/* =====================================================
   STORY SECTION (Why This Exists)
   ===================================================== */
.sec-story { background: var(--white-tint); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 800px) { .story-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

.story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.story-txt h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.story-txt p {
  color: var(--charcoal-md);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* =====================================================
   WHY CARDS (Why This Exists)
   ===================================================== */
.sec-why-cards { background: var(--cream); }

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 600px) { .why-card-grid { grid-template-columns: 1fr 1fr; } }

.why-crd {
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
}

.why-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-ico {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(184,92,56,0.12), rgba(184,92,56,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.why-crd h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.why-crd p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.75;
}

/* =====================================================
   PHILOSOPHY (Why This Exists)
   ===================================================== */
.sec-philosophy {
  background: linear-gradient(135deg, var(--olive) 0%, #4a5830 100%);
}

.phil-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 800px) { .phil-inner { grid-template-columns: 1fr 1fr; align-items: center; } }

.phil-txt p {
  color: rgba(253,250,245,0.82);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.phil-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phil-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(253,250,245,0.08);
  border: 1px solid rgba(253,250,245,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.phil-item i {
  color: var(--mustard-lt);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.phil-item strong {
  display: block;
  font-weight: 600;
  color: var(--white-tint);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.phil-item p {
  color: rgba(253,250,245,0.72);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* =====================================================
   HOW IT WORKS (Process)
   ===================================================== */
.sec-how { background: var(--white-tint); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 800px) { .how-grid { grid-template-columns: 1fr 1fr; } }

.how-grid h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.how-grid p {
  color: var(--charcoal-md);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.how-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-crd {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
}

.how-crd:hover {
  border-color: rgba(200,146,42,0.3);
  box-shadow: var(--shadow-sm);
}

.how-crd i {
  font-size: 1.25rem;
  color: var(--mustard);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.how-crd strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.how-crd p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   MODULE DETAIL (Process)
   ===================================================== */
.sec-mod-detail { background: var(--cream); }

.mod-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.mod-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
}

.mod-detail-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.2);
}

.mod-detail-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  min-width: 60px;
  letter-spacing: -0.04em;
}

.mod-detail-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.mod-detail-body p {
  font-size: 0.925rem;
  color: var(--charcoal-md);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mod-detail-ex {
  background: rgba(200,146,42,0.07);
  border-left: 3px solid var(--mustard);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--charcoal-md);
  line-height: 1.75;
}

.mod-detail-ex strong {
  color: var(--mustard);
  font-weight: 600;
}

/* =====================================================
   CONSULTANTS PAGE
   ===================================================== */
.consult-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) { .consult-intro-grid { grid-template-columns: 1fr 1fr; } }

.consult-txt h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.consult-txt p {
  color: var(--charcoal-md);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.consult-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.consult-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sec-consult-ways { background: var(--cream); }

.consult-ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 600px) { .consult-ways-grid { grid-template-columns: 1fr 1fr; } }

.consult-way-crd {
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: var(--transition);
}

.consult-way-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cway-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(92,107,58,0.12), rgba(92,107,58,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 1.25rem;
}

.consult-way-crd h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.consult-way-crd p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.75;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 820px;
}

.faq-item {
  background: var(--white-tint);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,146,42,0.12);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(200,146,42,0.25); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
  min-height: 56px;
}

.faq-q:hover { color: var(--mustard); }

.faq-ico {
  font-size: 0.8rem;
  color: var(--mustard);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.open { max-height: 400px; }

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.8;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 800px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}


.frm { width: 100%; }

.frm-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.frm-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dk);
  border: 2px solid rgba(200,146,42,0.2);
  transition: var(--transition);
  flex-shrink: 0;
}

.frm-step-dot.active {
  background: var(--mustard);
  border-color: var(--mustard);
  box-shadow: 0 0 0 4px rgba(200,146,42,0.15);
}

.frm-step-line {
  flex: 1;
  height: 2px;
  background: rgba(200,146,42,0.15);
}

.frm-step { transition: opacity 0.3s ease, transform 0.3s ease; }
.frm-step-hidden { display: none; }

.frm-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.frm-grp { margin-bottom: 1.25rem; }

.frm-lbl {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.frm-inp {
  width: 100%;
  background: var(--cream);
  border: 2px solid rgba(200,146,42,0.15);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  min-height: 48px;
}

.frm-inp:focus {
  border-color: var(--mustard);
  background: var(--white-tint);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.frm-inp::placeholder { color: var(--warm-gray); }

.frm-textarea {
  resize: vertical;
  min-height: 140px;
}

.frm-check-grp { margin-bottom: 1.5rem; }

.frm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal-md);
  cursor: pointer;
  line-height: 1.6;
}

.frm-check {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--mustard);
  flex-shrink: 0;
  cursor: pointer;
}

.frm-check-label a { color: var(--mustard); text-decoration: underline; }

.frm-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.frm-next { width: 100%; justify-content: center; margin-top: 0.5rem; }


.contact-info-card,
.contact-hours-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(200,146,42,0.12);
  margin-bottom: 1.5rem;
}

.contact-info-card h3,
.contact-hours-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours-card h3 i { color: var(--mustard); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  width: 36px;
  height: 36px;
  background: rgba(200,146,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.875rem;
  color: var(--charcoal-md);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--mustard);
  transition: var(--transition);
}

.contact-info-item a:hover { color: var(--terra); }

.hours-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.hours-table { display: flex; flex-direction: column; gap: 0.5rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200,146,42,0.1);
  font-size: 0.875rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--charcoal); font-weight: 500; }
.hours-time { color: var(--charcoal-md); }
.hours-row-closed .hours-time { color: var(--warm-gray); font-style: italic; }


.sec-map { background: var(--cream); padding-top: 0; }

.map-wrap {
  background: var(--white-tint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.12);
}

.map-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 1.5rem 2rem 1rem;
}

.map-frame { display: block; }
.map-frame iframe { display: block; }

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-body { background: var(--mustard); }

.thanks-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--mustard) 0%, var(--terra) 100%);
}

.thanks-content {
  text-align: center;
  max-width: 560px;
}

.thanks-icon {
  font-size: 4rem;
  color: rgba(253,250,245,0.9);
  margin-bottom: 1.5rem;
}

.thanks-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white-tint);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.thanks-p {
  font-size: 1.1rem;
  color: rgba(253,250,245,0.85);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.btn-thanks-home {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: transparent;
  color: var(--white-tint);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--white-tint);
  transition: var(--transition);
  min-height: 52px;
}

.btn-thanks-home:hover {
  background: var(--white-tint);
  color: var(--mustard);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-sec { background: var(--white-tint); }

.legal-container { max-width: 860px; }


.legal-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--mustard), rgba(200,146,42,0.1));
}

.ltl-item {
  position: relative;
  margin-bottom: 3rem;
}

.ltl-marker {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.ltl-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  background: var(--mustard);
  border-radius: 50%;
  border: 3px solid var(--white-tint);
  box-shadow: 0 0 0 2px var(--mustard);
  flex-shrink: 0;
}

.ltl-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard);
}

.ltl-body h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.ltl-body h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.25rem 0 0.5rem;
}

.ltl-body p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.ltl-body a { color: var(--mustard); text-decoration: underline; }


.terms-doc { max-width: 820px; }

.terms-intro {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--mustard);
  margin-bottom: 2.5rem;
}

.terms-intro p {
  font-size: 0.95rem;
  color: var(--charcoal-md);
  line-height: 1.8;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.1);
}

.terms-section:last-child { border-bottom: none; }

.terms-section h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-section h2::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--mustard);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-section p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.terms-section a { color: var(--mustard); text-decoration: underline; }


.cookies-doc { max-width: 820px; }

.ck-doc-intro {
  font-size: 0.95rem;
  color: var(--charcoal-md);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200,146,42,0.12);
}

.ck-doc-intro a { color: var(--mustard); text-decoration: underline; }

.ck-doc-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.1);
}

.ck-doc-block:last-child { border-bottom: none; }

.ck-doc-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,146,42,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--mustard);
  flex-shrink: 0;
}

.ck-doc-content h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
}

.ck-doc-content p {
  font-size: 0.9rem;
  color: var(--charcoal-md);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.ck-doc-content a { color: var(--mustard); text-decoration: underline; }

/* =====================================================
   COOKIE CONSENT
   ===================================================== */
.ck-trigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 500;
}

.ck-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-md);
  background: var(--white-tint);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-xl);
  padding: 0.4rem 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.ck-link:hover {
  color: var(--mustard);
  border-color: var(--mustard);
  box-shadow: var(--shadow-md);
}

.ck-link i { color: var(--mustard); }

.ck-link.pulse {
  animation: ck-pulse 2.5s ease-in-out 2;
}

@keyframes ck-pulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px rgba(200,146,42,0.15), var(--shadow-md); }
}

.ck-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46,42,36,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ck-modal-overlay.open {
  display: flex;
}

.ck-modal {
  background: var(--white-tint);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modal-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.ck-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ck-modal-close:hover {
  background: var(--cream-dk);
  color: var(--charcoal);
}

.ck-modal h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ck-modal h3 i { color: var(--mustard); }

.ck-modal-intro {
  font-size: 0.875rem;
  color: var(--charcoal-md);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ck-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.ck-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
}

.ck-opt-txt { flex: 1; }

.ck-opt-txt strong {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.ck-opt-txt span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.ck-always {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}

.ck-toggle { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.ck-toggle input { opacity: 0; width: 0; height: 0; }

.ck-slider {
  position: absolute;
  inset: 0;
  background: var(--cream-dk);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid rgba(200,146,42,0.2);
}

.ck-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  background: var(--warm-gray);
  border-radius: 50%;
  transition: 0.3s;
}

.ck-toggle input:checked + .ck-slider { background: var(--mustard); border-color: var(--mustard); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(18px); background: var(--white-tint); }

.ck-modal-btns { display: flex; gap: 0.75rem; margin-bottom: 1rem; }

.btn-ck-save {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--cream-dk);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  min-height: 44px;
}

.btn-ck-save:hover { background: var(--cream); }

.btn-ck-all {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--mustard);
  color: var(--white-tint);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  min-height: 44px;
}

.btn-ck-all:hover { background: var(--mustard-lt); }

.ck-modal-legal {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-align: center;
}

.ck-modal-legal a { color: var(--mustard); text-decoration: underline; }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   UTILITY
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


body { display: flex; flex-direction: column; min-height: 100vh; }
.ftr { margin-top: auto; }
main, section:not(.hero) { flex: none; }


#pace .pace-progress { background: var(--mustard) !important; }