/* ==========================================================================
   Organic Direction — homepage-only design system
   Scoped under body.organic so training/camp/about/testimonials/contact
   are completely unaffected until this direction is approved and rolled out.
   ========================================================================== */

body.organic {
  --cream: #F4EAD9;
  --cream-card: #EADCC0;
  --dark: #211D14;
  --green: #2C3320;
  --green-dark: #1E2416;
  --sage: #CFDBAE;
  --terracotta: #C05F2E;
  --terracotta-dark: #A24E23;
  --font-display: 'Fraunces', serif;

  background: var(--cream);
  color: var(--dark);
}

body.organic h1,
body.organic h2,
body.organic h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

body.organic p {
  color: #56503F;
  text-wrap: pretty;
}

body.organic li,
body.organic .hero-subtitle,
body.organic .section-eyebrow-organic,
body.organic .section-eyebrow {
  text-wrap: balance;
}

body.organic .testimonial-quote {
  text-wrap: pretty;
}

/* ---- Nav: transparent over hero, solid once scrolled ---- */
body.organic .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.organic .navbar.is-scrolled {
  background: rgba(244, 234, 217, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(33, 29, 20, 0.08);
}

body.organic .nav-logo {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 1px 4px rgba(33, 29, 20, 0.12);
}

body.organic .nav-logo img {
  display: block;
  height: 30px;
  width: auto;
}

body.organic .nav-link {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}

body.organic .navbar.is-scrolled .nav-link {
  color: var(--dark);
}

body.organic .nav-link:hover,
body.organic .nav-link.active {
  color: var(--terracotta);
}

body.organic .nav-link::after { background: var(--terracotta); }

body.organic .nav-cta {
  background: var(--terracotta);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
}

body.organic .nav-cta:hover { background: var(--terracotta-dark); }

body.organic .hamburger span {
  background: #fff;
  transition: background 0.3s ease;
}

body.organic .navbar.is-scrolled .hamburger span { background: var(--dark); }

body.organic .mobile-drawer { background: var(--green); }
body.organic .mobile-drawer .nav-link { color: var(--cream); }
body.organic .mobile-drawer .nav-link.active { color: var(--sage); }
body.organic .mobile-drawer .btn-primary {
  background: var(--terracotta);
  border-radius: 999px;
}

/* ---- Shared shape language ---- */
body.organic .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 34px;
  border-radius: 999px;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

body.organic .btn-pill:hover { transform: translateY(-2px); }

body.organic .btn-pill-terracotta { background: var(--terracotta); }
body.organic .btn-pill-terracotta:hover { background: var(--terracotta-dark); }
body.organic .btn-pill-green { background: var(--green); }
body.organic .btn-pill-green:hover { background: var(--green-dark); }

body.organic .btn-pill-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

body.organic .btn-pill-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Hero: full-bleed photo + gradient overlay ---- */
body.organic .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  /* padding-top is a hard floor so the headline can never reach the fixed
     nav, even if the text wraps to extra lines and grows the box taller
     than 100vh */
  padding: 260px 0 110px;
}

body.organic .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

body.organic .hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(20, 18, 12, 0.9) 0%,
      rgba(20, 18, 12, 0.78) 35%,
      rgba(20, 18, 12, 0.45) 58%,
      rgba(20, 18, 12, 0.05) 82%
    ),
    linear-gradient(
      to top,
      rgba(20, 18, 12, 0.94) 0%,
      rgba(20, 18, 12, 0.68) 30%,
      rgba(20, 18, 12, 0.18) 62%,
      rgba(20, 18, 12, 0.05) 100%
    );
  z-index: 1;
}

body.organic .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 780px;
  color: #fff;
}

body.organic .hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

body.organic .hero-content h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.1;
}

body.organic .hero-content p.hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 34px;
}

body.organic .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

body.organic .wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

body.organic .wave-divider svg { display: block; width: 100%; height: 90px; }

/* ---- Meet Coach Todd split ---- */
body.organic .organic-split {
  padding: 100px 0;
}

body.organic .organic-split .split-photo {
  border-radius: 28px;
  overflow: hidden;
}

body.organic .organic-split .split-photo img {
  width: 100%;
  display: block;
}

/* ---- Two-photo pairing (e.g. then & now) ---- */
body.organic .photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.organic .photo-duo-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

body.organic .photo-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.organic .photo-duo-item.contain {
  background: var(--cream-card);
}

body.organic .photo-duo-item.contain img {
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

/* ---- Embedded Google Form (registration) ---- */
body.organic .form-embed {
  width: 100%;
  align-self: stretch;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(33, 29, 20, 0.14);
  background: #fff;
}

body.organic .form-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ---- Pull quotes (Coach Todd's sayings) ---- */
body.organic .pull-quote {
  background: var(--cream-card);
  border-radius: 24px;
  padding: 36px 28px 32px;
  text-align: center;
}

body.organic .pull-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 4px;
}

body.organic .pull-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: var(--dark);
  line-height: 1.4;
}

/* ---- Press clipping ---- */
body.organic .press-clip {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(33, 29, 20, 0.18);
}

body.organic .press-clip img {
  width: 100%;
  display: block;
}

body.organic .section-eyebrow-organic {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

body.organic .organic-split h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 18px;
}

/* ---- Difference callout ---- */
body.organic .difference-card {
  background: var(--cream-card);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

body.organic .difference-card h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 18px;
}

body.organic .difference-card p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
}

/* ---- Two Paths ---- */
body.organic .paths-section { padding: 20px 0 80px; }

body.organic .section-head-organic {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

body.organic .section-head-organic h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}

body.organic .paths-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  body.organic .paths-grid { grid-template-columns: 1fr 1fr; }
}

body.organic .path-card {
  background: var(--cream-card);
  border-radius: 32px;
  padding: 20px;
}

body.organic .path-photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
}

body.organic .path-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

body.organic .path-card h3 {
  font-size: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
}

body.organic .path-card p.desc {
  padding: 0 12px;
  font-size: 16px;
  margin-bottom: 20px;
}

body.organic .path-list { list-style: none; padding: 0 12px; margin-bottom: 28px; }

body.organic .path-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

body.organic .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
body.organic .dot-terracotta { background: var(--terracotta); }
body.organic .dot-green { background: var(--green); }

body.organic .path-card .btn-pill { margin: 0 12px 8px; }

/* ---- Why Families Trust ---- */
body.organic .trust-organic {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  body.organic .trust-organic { grid-template-columns: 1fr 1fr; }
}

body.organic .trust-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-card);
  border-radius: 20px;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 15.5px;
}

body.organic .trust-pill .dot { width: 12px; height: 12px; }

/* ---- Testimonials preview ---- */
body.organic .testimonial-organic {
  background: var(--cream-card);
  border-radius: 26px;
  padding: 32px;
}

body.organic .testimonial-organic .stars { color: var(--terracotta); margin-bottom: 14px; }

body.organic .testimonial-organic .testimonial-quote {
  color: var(--dark);
  font-size: 16.5px;
  margin-bottom: 16px;
}

body.organic .testimonial-organic .testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
}

body.organic .testimonial-organic .testimonial-role {
  font-size: 13px;
  color: #7A735E;
}

/* ---- Final CTA: dark green organic close ---- */
body.organic .cta-wrap-organic { position: relative; margin-top: 40px; }

body.organic .cta-wave-top {
  position: absolute;
  top: -89px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

body.organic .cta-wave-top svg { display: block; width: 100%; height: 90px; }

body.organic .cta-section-organic {
  background: var(--green);
  color: var(--cream);
  padding: 90px 0 100px;
  text-align: center;
}

body.organic .cta-section-organic h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 18px;
}

body.organic .cta-section-organic p {
  color: rgba(244, 234, 217, 0.85);
  max-width: 480px;
  margin: 0 auto 34px;
  font-size: 17px;
}

/* ---- Footer ---- */
body.organic .site-footer {
  background: var(--dark);
}

body.organic .footer-logo { font-family: var(--font-display); font-weight: 900; }
body.organic .footer-logo span { color: var(--terracotta); }
body.organic .footer-col a:hover { color: var(--terracotta); }

/* ==========================================================================
   Interior pages — compact hero band (Testimonials, Contact)
   ========================================================================== */

/* ==========================================================================
   Generic rounded cards, checklists, pills — reused across interior pages
   ========================================================================== */

body.organic .card-organic {
  background: var(--cream-card);
  border-radius: 22px;
  padding: 28px 24px;
}

body.organic .card-organic h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

body.organic .card-organic p { margin: 0; }

body.organic .cards-grid-organic {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  body.organic .cards-grid-organic.cols-3 { grid-template-columns: repeat(3, 1fr); }
  body.organic .cards-grid-organic.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

body.organic .check-list-organic {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

body.organic .check-list-organic li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
}

body.organic .attribute-pills-organic {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

body.organic .attribute-pill-organic {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-card);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
}

/* ==========================================================================
   Gallery slider — recolored to organic palette (same JS/markup)
   ========================================================================== */

body.organic .gallery-slider {
  max-width: 780px;
  border-radius: 28px;
}

body.organic .gallery-arrow {
  background: rgba(33, 29, 20, 0.55);
}

body.organic .gallery-arrow:hover { background: var(--terracotta); }

body.organic .gallery-dot { background: rgba(255, 255, 255, 0.5); }
body.organic .gallery-dot.is-active { background: var(--terracotta); transform: scale(1.25); }

body.organic .testimonial-slider.gallery-slider { background: var(--cream-card); }
body.organic .testimonial-slider .gallery-dot { background: rgba(33, 29, 20, 0.25); }
body.organic .testimonial-slider .testimonial-quote { color: var(--dark); }
body.organic .testimonial-slider .testimonial-author { font-family: var(--font-display); font-weight: 700; color: var(--dark); }
body.organic .testimonial-slider .testimonial-role { font-size: 13px; color: #7A735E; }
body.organic .testimonial-slider .stars { color: var(--terracotta); margin-bottom: 14px; }

/* ==========================================================================
   Gallery page — organic palette
   ========================================================================== */

body.organic .gallery-filter-btn {
  background: var(--cream-card);
  box-shadow: none;
  color: var(--dark);
}

body.organic .gallery-filter-btn:hover { background: var(--sage); }

body.organic .gallery-filter-btn.is-active {
  background: var(--terracotta);
  color: #fff;
}

body.organic .gallery-item,
body.organic .gallery-grid .gallery-item {
  border-radius: 22px;
  box-shadow: none;
}

body.organic .ph-camp { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }
body.organic .ph-training { background: linear-gradient(135deg, #3A4A66 0%, var(--dark) 100%); }
body.organic .ph-group { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
body.organic .ph-online { background: linear-gradient(135deg, #7C8C5C 0%, var(--green-dark) 100%); }

body.organic .lightbox-close:hover { background: var(--terracotta); }
body.organic .lightbox-overlay .gallery-arrow { background: rgba(255, 255, 255, 0.12); }
body.organic .lightbox-overlay .gallery-arrow:hover { background: var(--terracotta); }

/* ==========================================================================
   Video frame — organic radius
   ========================================================================== */

body.organic .video-frame {
  border-radius: 28px;
  max-width: 780px;
}

/* ==========================================================================
   Rate table
   ========================================================================== */

body.organic .rate-table-organic {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--cream-card);
  border-radius: 22px;
  overflow: hidden;
}

body.organic .rate-table-organic th,
body.organic .rate-table-organic td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(33, 29, 20, 0.08);
}

body.organic .rate-table-organic th {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--green);
  color: #fff;
}

body.organic .rate-table-organic tr:last-child td { border-bottom: none; }

body.organic .rate-note-organic {
  margin-top: 18px;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

/* ==========================================================================
   Journey steps
   ========================================================================== */

body.organic .journey-steps-organic {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  body.organic .journey-steps-organic { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
}

body.organic .journey-step-organic {
  background: var(--cream-card);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
}

body.organic .journey-step-organic .step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

body.organic .journey-step-organic h3 { font-size: 17px; }

body.organic .journey-arrow-organic {
  display: none;
  color: var(--terracotta);
}

@media (min-width: 992px) {
  body.organic .journey-arrow-organic { display: flex; justify-content: center; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

body.organic .faq-list-organic { max-width: 760px; margin: 0 auto; }

body.organic .faq-item {
  background: var(--cream-card);
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
}

body.organic .faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  padding: 22px 26px;
}

body.organic .faq-question .faq-icon { color: var(--terracotta); }

body.organic .faq-answer p { color: #56503F; padding: 0 26px 22px; }

/* ==========================================================================
   Contact page
   ========================================================================== */

body.organic .contact-info-icon-organic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-card);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.organic .contact-info-item-organic {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

body.organic .contact-info-item-organic h4 { font-size: 15px; margin-bottom: 4px; }
body.organic .contact-info-item-organic a,
body.organic .contact-info-item-organic p { color: #56503F; font-size: 15px; }
body.organic .contact-info-item-organic a:hover { color: var(--terracotta); }

body.organic .response-note-organic {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sage);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  margin-top: 20px;
}

body.organic .contact-form-organic {
  background: var(--cream-card);
  border-radius: 28px;
  padding: 36px;
}

body.organic .contact-form-organic .form-group { margin-bottom: 20px; }

body.organic .contact-form-organic label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--dark);
}

body.organic .contact-form-organic input,
body.organic .contact-form-organic select,
body.organic .contact-form-organic textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: var(--cream);
  color: var(--dark);
  font-family: inherit;
}

body.organic .contact-form-organic input:focus,
body.organic .contact-form-organic select:focus,
body.organic .contact-form-organic textarea:focus {
  outline: 2px solid var(--terracotta);
}

body.organic .contact-form-organic textarea { resize: vertical; min-height: 120px; }

body.organic .btn-pill-block { width: 100%; }

/* ==========================================================================
   Overrides for ORIGINAL component classes (styles.css) — lets interior
   pages keep their existing markup and still pick up the organic look.
   ========================================================================== */

body.organic .section-eyebrow { color: var(--terracotta); }
body.organic .section-title,
body.organic .section-subtitle { color: var(--dark); }
body.organic .section-subtitle { color: #56503F; }

body.organic .page-hero {
  background: var(--green);
  padding: 170px 0 110px;
}

body.organic .page-hero h1 { color: #fff; }
body.organic .page-hero p { color: rgba(244, 234, 217, 0.85); }
body.organic .page-hero .btn,
body.organic .page-hero .btn-primary {
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  background: var(--terracotta);
  border: none;
}

body.organic .card,
body.organic .trust-point,
body.organic .testimonial-card {
  background: var(--cream-card);
  border-radius: 20px;
  box-shadow: none;
}

body.organic .trust-check { background: rgba(192, 95, 46, 0.15); color: var(--terracotta); }

body.organic .check-list li svg,
body.organic .path-list svg { color: var(--terracotta); }

body.organic .attribute-pill {
  background: var(--cream-card);
  box-shadow: none;
  border-radius: 999px;
}

body.organic .attribute-pill svg { color: var(--terracotta); }

body.organic .rate-table {
  background: var(--cream-card);
  box-shadow: none;
  border-radius: 22px;
}

body.organic .rate-table th {
  background: var(--green);
  font-family: var(--font-display);
}

body.organic .rate-table td,
body.organic .rate-table th { border-bottom-color: rgba(33, 29, 20, 0.08); }

body.organic .rate-note { color: #56503F; }

body.organic .journey-step {
  background: var(--cream-card);
  box-shadow: none;
  border-radius: 20px;
}

body.organic .journey-step-number {
  background: var(--terracotta);
  font-family: var(--font-display);
}

body.organic .journey-arrow { color: var(--terracotta); }

body.organic .testimonial-card .stars { color: var(--terracotta); }
body.organic .testimonial-author { font-family: var(--font-display); font-weight: 700; }

body.organic .contact-info-icon {
  background: var(--cream-card);
  color: var(--terracotta);
}

body.organic .contact-info-item a:hover { color: var(--terracotta); }

body.organic .response-note {
  background: var(--sage);
  color: var(--green-dark);
  border-radius: 999px;
}

body.organic .contact-form {
  background: var(--cream-card);
  box-shadow: none;
  border-radius: 28px;
}

body.organic .contact-form label { color: var(--dark); }

body.organic .contact-form input,
body.organic .contact-form select,
body.organic .contact-form textarea {
  border: none;
  background: var(--cream);
  border-radius: 14px;
}

body.organic .contact-form input:focus,
body.organic .contact-form select:focus,
body.organic .contact-form textarea:focus {
  outline: 2px solid var(--terracotta);
  border-color: transparent;
}

body.organic .contact-form .btn-primary,
body.organic .cta-banner .btn-primary,
body.organic section .btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  background: var(--terracotta);
  border: none;
}

body.organic .btn-primary:hover { background: var(--terracotta-dark); }

body.organic .btn-outline {
  border-radius: 999px;
  border-color: var(--dark);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
}

body.organic .btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

body.organic .faq-list { max-width: 760px; margin: 0 auto; }

body.organic .cta-banner {
  background: var(--green);
  border-radius: 32px;
}

body.organic .cta-banner h2 { color: #fff; }
body.organic .cta-banner p { color: rgba(244, 234, 217, 0.85); }

body.organic .limited-note { color: var(--terracotta); }

/* ==========================================================================
   Event announcement banner (Youth Football Academy)
   ========================================================================== */

body.organic .event-banner {
  background: var(--terracotta);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}

body.organic .event-banner-label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

body.organic .event-banner h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 6px;
}

body.organic .event-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 480px;
}

body.organic .event-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

body.organic .event-banner-date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  color: #fff;
}

body.organic .btn-pill-white { background: #fff; color: var(--terracotta); }
body.organic .btn-pill-white:hover { background: var(--cream); color: var(--terracotta-dark); }

/* ==========================================================================
   Registration steps (download → sign → email)
   ========================================================================== */

body.organic .register-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  body.organic .register-steps { grid-template-columns: repeat(3, 1fr); }
}

body.organic .register-step {
  background: var(--cream-card);
  border-radius: 24px;
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.organic .register-step .step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

body.organic .register-step h3 { font-size: 19px; margin-bottom: 10px; }
body.organic .register-step p { font-size: 15px; margin-bottom: 20px; }
body.organic .register-step .btn-pill { margin-top: auto; }

body.organic .register-note {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  padding: 18px 24px;
  border: 2px solid var(--terracotta);
  border-radius: 16px;
  background: rgba(192, 95, 46, 0.08);
  font-size: 15px;
  color: var(--dark);
}

body.organic .register-note strong {
  color: var(--terracotta);
}

body.organic .copy-email-btn {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: underline;
  cursor: pointer;
}

body.organic .copy-email-btn:hover { color: var(--terracotta-dark); }
