/* Marigold Movement Studio — staged brand site (showcase Asset 7).
 *
 * HARVEST DISCIPLINE — this sheet is the brand-kit scrape's color source,
 * so every hex is written directly (no custom properties: a :root var
 * classifies as "variable" context and dilutes surface purity) and each
 * brand hex stays single-purpose:
 *   #12514B teal      → background* properties ONLY (never color/border/shadow)
 *   #FAF7F0 cream     → body background + surfaces + text-on-teal
 *   #E9A23B marigold  → CTAs, link underlines, focus rings, accents
 *   #86A791 sage      → card backgrounds only, fewer declarations than teal
 *   #1E2A26 ink       → text, hairlines, shadows (rgba forms allowed)
 * No other hex colors anywhere in this file.
 */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #FAF7F0;
  color: #1E2A26;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: #1E2A26;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: #1E2A26;
  text-decoration-line: underline;
  text-decoration-color: #E9A23B;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 150ms ease;
}

a:hover {
  text-decoration-thickness: 3px;
}

:focus-visible {
  outline: 3px solid #E9A23B;
  outline-offset: 3px;
}

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ——— header ——————————————————————————————————————————————— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30, 42, 38, 0.1);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup img {
  height: 2.375rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.is-current {
  border-bottom: 2px solid #E9A23B;
}

/* ——— buttons ——————————————————————————————————————————————— */

.btn {
  display: inline-block;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.5rem;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: filter 150ms ease, transform 150ms ease;
}

.btn:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.btn-cta {
  background-color: #E9A23B;
  color: #1E2A26;
}

.btn-teal {
  background-color: #12514B;
  color: #FAF7F0;
}

/* ——— hero ——————————————————————————————————————————————————— */

.hero {
  position: relative;
  background-color: #12514B;
  color: #FAF7F0;
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero .bloom {
  position: absolute;
  top: -4rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  animation: bloom-turn 90s linear infinite;
  pointer-events: none;
}

@keyframes bloom-turn {
  to {
    transform: rotate(360deg);
  }
}

.kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FAF7F0;
  opacity: 0.85;
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 480;
  color: #FAF7F0;
  max-width: 15ch;
  margin-bottom: 0.4em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #E9A23B;
}

.hero-lede {
  font-size: 1.1875rem;
  max-width: 34rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero-actions a:not(.btn) {
  color: #FAF7F0;
  font-weight: 500;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin: 3.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(250, 247, 240, 0.25);
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* staggered load-in, reduced-motion safe */
.hero .kicker,
.hero h1,
.hero-lede,
.hero-actions,
.hero-facts {
  animation: rise-in 600ms ease-out both;
}

.hero h1 { animation-delay: 60ms; }
.hero-lede { animation-delay: 120ms; }
.hero-actions { animation-delay: 180ms; }
.hero-facts { animation-delay: 260ms; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— sections ————————————————————————————————————————————— */

.section {
  padding: 5rem 0;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E2A26;
  opacity: 0.55;
  margin: 0 0 0.75rem;
}

.section h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  max-width: 22ch;
}

.section-lede {
  font-size: 1.125rem;
  max-width: 38rem;
}

/* the idea — editorial two-column */

.idea {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.idea-media img,
.photo-band img,
.story-media img {
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(30, 42, 38, 0.16);
}

/* classes */

.classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.class-card {
  background-color: #86A791;
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30, 42, 38, 0.18);
}

.class-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.35em;
}

.class-card p {
  margin: 0;
  font-size: 0.9875rem;
}

.class-card .when {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.85rem;
}

.pill {
  display: inline-block;
  background-color: #FAF7F0;
  color: #1E2A26;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-top: 1rem;
}

/* assessment band */

.assess-band {
  background-color: #12514B;
  color: #FAF7F0;
  border-radius: 18px;
  padding: 3.25rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

.assess-band h2 {
  color: #FAF7F0;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  margin-bottom: 0.35em;
}

.assess-band p {
  margin: 0;
  opacity: 0.9;
}

/* pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.price-card {
  background-color: #FAF7F0;
  border: 1px solid rgba(30, 42, 38, 0.16);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-card.is-featured {
  background-color: #12514B;
  color: #FAF7F0;
  border: 0;
}

.price-card.is-featured h3 {
  color: #FAF7F0;
}

.price-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.price small {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
}

.price-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.85;
}

.badge-free {
  display: inline-block;
  background-color: #E9A23B;
  color: #1E2A26;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  padding: 0.4375rem 1rem;
  margin-top: 2rem;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  opacity: 0.75;
}

/* photo band */

.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ——— about page ————————————————————————————————————————————— */

.page-hero .wrap {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

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

.story-media {
  position: sticky;
  top: 6.5rem;
}

.pullline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  border-left: 3px solid #E9A23B;
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.class-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.class-detail .class-card .good-for {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  border-top: 3px solid #E9A23B;
  padding-top: 1.25rem;
}

.steps li::before {
  content: "0" counter(step);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.steps h3 {
  font-size: 1.125rem;
  margin-bottom: 0.3em;
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
}

/* ——— footer ————————————————————————————————————————————————— */

.site-footer {
  background-color: #12514B;
  color: #FAF7F0;
  margin-top: 5rem;
}

.site-footer .wrap {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.site-footer h2 {
  color: #FAF7F0;
  font-size: 1.75rem;
  max-width: 18ch;
}

.site-footer h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Work Sans", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FAF7F0;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  font-size: 0.9875rem;
  opacity: 0.92;
  margin: 0 0 0.5em;
}

.site-footer a {
  color: #FAF7F0;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9875rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.15);
}

.hours-list span:last-child {
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 240, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ——— responsive ————————————————————————————————————————————— */

@media (max-width: 52rem) {
  .idea,
  .story,
  .footer-grid,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .classes-grid,
  .class-detail,
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .assess-band {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }

  .story-media {
    position: static;
  }

  .hero .bloom {
    width: 16rem;
    height: 16rem;
    right: -7rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav .btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
