/* =========================================================================
   Sit Still. Be Quiet. — Site styles
   Brand:  warm watercolor — orange, navy, lilac wash, cream
   ========================================================================= */

:root {
  --orange:        #E85D2C;
  --orange-deep:   #C9491D;
  --navy:          #1E3A8A;
  --navy-deep:     #142668;
  --lilac:         #ECE6F4;
  --lilac-deep:    #D7CDE7;
  --cream:         #FAF6E8;
  --cream-deep:    #F2EBD3;
  --ink:           #1A1A2E;
  --ink-soft:      #3A3A4E;
  --muted:         #5A5A6E;
  --line:          rgba(30, 58, 138, 0.12);
  --shadow-sm:     0 2px 6px rgba(20, 30, 80, 0.06);
  --shadow-md:     0 8px 24px rgba(20, 30, 80, 0.10);
  --shadow-lg:     0 18px 48px rgba(20, 30, 80, 0.14);
  --radius-sm:     10px;
  --radius:        18px;
  --radius-lg:     28px;
  --maxw:          1140px;
  --display:       'Quicksand', 'Nunito', 'Avenir Next', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --body:          'Inter', 'Source Sans 3', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(232,93,44,0.08), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(30,58,138,0.06), transparent 60%),
    linear-gradient(180deg, var(--lilac) 0%, var(--cream) 60%, var(--cream) 100%);
  background-attachment: fixed;
}

/* Typography ----------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1em; }
a  { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--orange); }
strong { font-weight: 700; }
em { font-style: italic; }
.subtle { color: var(--muted); }
.center { text-align: center; }

/* Layout --------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; position: relative; }
section.tight { padding: 48px 0; }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 64ch;
}
hr.soft {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 56px auto;
  max-width: 320px;
}

/* Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 232, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 16px;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy); font-family: var(--display);
  font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em;
}
.brand .brand-icon {
  width: 44px; height: auto;
  display: block;
  /* No background — Ronald floats free. */
}
/* Legacy fallback if any old markup still uses .dino */
.brand .dino {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd166 0%, #f4a13a 70%, #d97a14 100%);
  position: relative;
}
.brand .dino::after {
  content: ""; position: absolute; left: 50%; top: -6px; transform: translateX(-50%);
  width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 10px solid var(--navy);
}
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 1px; }
.nav-links {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); background: rgba(30, 58, 138, 0.06); }
.nav-links a.active { color: var(--navy); background: rgba(30,58,138,0.08); }
.nav-links a.cta {
  background: var(--orange); color: white;
  padding: 9px 18px;
  margin-left: 8px;
}
.nav-links a.cta:hover { background: var(--orange-deep); color: white; }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--navy); }
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px; gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 12px; border-radius: 10px; }
  .nav-links a.cta { margin-left: 0; text-align: center; margin-top: 6px; }
}

/* Hero ----------------------------------------------------------------- */
.hero {
  padding: 56px 0 40px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.85rem; color: var(--navy); font-weight: 600; letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { margin-top: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero .lede { margin: 18px 0 28px; font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 32px;
  color: var(--muted); font-size: 0.95rem;
}
.hero-stats div strong { display:block; font-family: var(--display); color: var(--navy); font-size: 1.2rem; }
.hero-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-art img {
  max-width: 100%; height: auto;
  filter: drop-shadow(0 30px 50px rgba(20,30,80,0.18));
  border-radius: 8px;
  transform: rotate(-2deg);
}
.hero-art .badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--orange); color: white;
  font-family: var(--display); font-weight: 700;
  padding: 14px 18px; border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art img { max-width: 320px; }
  .hero-stats { gap: 18px; }
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--display); font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-deep); color: white; }
.btn-secondary { background: white; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* Cards ---------------------------------------------------------------- */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 4px; }
.card.flat { box-shadow: none; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lilac); color: var(--navy);
  margin-bottom: 14px;
  font-size: 22px;
}
.card-icon.orange { background: rgba(232,93,44,0.15); color: var(--orange-deep); }
.card-icon.navy   { background: rgba(30,58,138,0.12);  color: var(--navy); }
.card-icon.green  { background: rgba(46,160,67,0.15);  color: #1f7a36; }

/* Audience cards ------------------------------------------------------- */
.audience-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.audience-card {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.audience-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--orange); color: inherit; }
.audience-card h3 { color: var(--navy); margin-bottom: 6px; }
.audience-card .arrow { color: var(--orange); font-weight: 700; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }

/* Story strip ---------------------------------------------------------- */
.story {
  background:
    radial-gradient(900px 500px at 80% 100%, rgba(232,93,44,0.10), transparent 60%),
    var(--lilac);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.story-step {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.story-step img { width: 100%; height: 320px; object-fit: cover; display: block; }
.story-step .step-body { padding: 22px 24px; }
.story-step .step-num {
  font-family: var(--display); color: var(--orange);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.story-step h3 { margin: 4px 0 6px; }
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* Quote / pull ---------------------------------------------------------- */
.pull {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
}
.pull .accent { color: var(--orange); }

/* Stomp callout -------------------------------------------------------- */
.stomp-callout {
  background: linear-gradient(135deg, var(--orange) 0%, #f0904a 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.stomp-callout h2 { color: white; }
.stomp-callout p { color: rgba(255,255,255,0.95); }
.stomp-callout .moves {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.12); padding: 22px; border-radius: var(--radius); text-align: center;
}
.stomp-callout .moves span { display: inline-block; padding: 0 6px; }
.stomp-callout .btn-primary { background: white; color: var(--orange-deep); }
.stomp-callout .btn-primary:hover { background: var(--cream); color: var(--orange-deep); }
.stomp-callout .btn-ghost { color: white; border-color: rgba(255,255,255,0.6); }
.stomp-callout .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.12); }
@media (max-width: 880px) { .stomp-callout { grid-template-columns: 1fr; padding: 32px; } }

/* Bullets -------------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding: 8px 0 8px 36px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(46,160,67,0.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f7a36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}

/* Faq accordion -------------------------------------------------------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  padding: 0 22px;
  margin-bottom: 12px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display); font-weight: 700; color: var(--navy);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--orange); font-weight: 700; font-size: 1.4rem;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  padding-bottom: 18px;
  color: var(--ink-soft);
}

/* Buy grid ------------------------------------------------------------- */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.buy-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.buy-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--orange); color: inherit; }
.buy-card .retailer { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.2rem; }
.buy-card .format { color: var(--muted); font-size: 0.92rem; }
.buy-card .price { color: var(--orange-deep); font-weight: 700; }
.buy-card .arrow { color: var(--orange); font-weight: 700; margin-top: 8px; }

/* Video embed --------------------------------------------------------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  display: block;
  background: #000;
}
.video-wrap { margin: 0; }
figure.video-wrap > figcaption {
  position: static;
  margin-top: 14px;
  text-align: center;
  font-size: 0.95rem;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; text-align: center; padding: 24px;
}
.video-placeholder .play {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.video-placeholder .play::after {
  content: ""; width: 0; height: 0;
  border-left: 22px solid white; border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-placeholder small { color: rgba(255,255,255,0.7); margin-top: 6px; font-size: 0.85rem; }

/* Two-up content blocks ----------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.split.flip > :first-child { order: 2; }
.split img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.flip > :first-child { order: 0; }
}

/* Bands ---------------------------------------------------------------- */
.band-cream { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-lilac { background: var(--lilac); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-navy  { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: white; }
.band-navy h1, .band-navy h2, .band-navy h3 { color: white; }
.band-navy a { color: #ffd9c2; }
.band-navy a:hover { color: white; }

/* Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
  margin-top: 80px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 { color: white; font-family: var(--display); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--orange); }
.site-footer .legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 880px) { .site-footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .container { grid-template-columns: 1fr; } }

/* Page header for inner pages ---------------------------------------- */
.page-header {
  padding: 64px 0 36px;
  background:
    radial-gradient(700px 300px at 90% 30%, rgba(232,93,44,0.10), transparent 60%),
    transparent;
}
.page-header .eyebrow {
  font-family: var(--display); font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.page-header h1 { max-width: 22ch; }
.page-header .lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; margin-top: 12px; }

/* Skip link / accessibility ----------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: white; padding: 10px 14px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; z-index: 100; }

/* Helpers */
.tag {
  display: inline-block; background: var(--lilac); color: var(--navy);
  padding: 4px 10px; border-radius: 999px; font-size: 0.8rem;
  font-weight: 600; margin-right: 6px; margin-bottom: 6px;
}
.tag.orange { background: rgba(232,93,44,0.14); color: var(--orange-deep); }
.tag.green  { background: rgba(46,160,67,0.14); color: #1f7a36; }

.note {
  background: white; border-left: 4px solid var(--orange);
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  margin: 22px 0;
}

.section-eyebrow {
  display: inline-block;
  background: white; border: 1px solid var(--line);
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.8rem; color: var(--navy); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
