/* =========================================================
   GROUND UP DAYCARE — Design System
   Editorial warm aesthetic. Building One Family.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,0..100;1,9..144,300..900,0..100&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Caveat:wght@400..700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette pulled from logo */
  --coral: #E94B7F;
  --coral-soft: #F8C7D7;
  --lime: #C9DE2C;
  --lime-soft: #EBF3A8;
  --sky: #29B7E8;
  --sky-soft: #BCE7F5;
  --royal: #1E3A8A;
  --royal-deep: #16285F;
  --crimson: #B91C1C;
  --forest: #15803D;

  /* Neutrals (warm paper foundation) */
  --paper: #FAF6EE;
  --cream: #FFFCF4;
  --shell: #F0E9DC;
  --ink: #1A1A1A;
  --stone: #6B6560;
  --mist: #C8C2B7;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Scale */
  --step--2: clamp(0.69rem, 0.66rem + 0.13vw, 0.78rem);
  --step--1: clamp(0.83rem, 0.78rem + 0.22vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.93rem + 0.36vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.09rem + 0.55vw, 1.35rem);
  --step-2:  clamp(1.44rem, 1.27rem + 0.83vw, 1.62rem);
  --step-3:  clamp(1.73rem, 1.48rem + 1.23vw, 1.94rem);
  --step-4:  clamp(2.07rem, 1.71rem + 1.81vw, 2.33rem);
  --step-5:  clamp(2.49rem, 1.97rem + 2.61vw, 2.80rem);
  --step-6:  clamp(2.99rem, 2.25rem + 3.69vw, 3.36rem);
  --step-7:  clamp(3.58rem, 2.55rem + 5.16vw, 4.03rem);
  --step-8:  clamp(4.30rem, 2.87rem + 7.14vw, 4.84rem);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
input, textarea, select { font: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
h1 { font-size: var(--step-7); font-weight: 400; }
h2 { font-size: var(--step-5); font-weight: 500; }
h3 { font-size: var(--step-3); font-weight: 500; line-height: 1.15; }
h4 { font-size: var(--step-2); font-weight: 600; line-height: 1.2; }

.script {
  font-family: var(--font-script);
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--stone);
  max-width: 60ch;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: rgba(26, 26, 26, 0.08);
  background: rgba(250, 246, 238, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--royal);
  letter-spacing: -0.01em;
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text span:last-child {
  font-family: var(--font-script);
  font-size: 0.7em;
  color: var(--forest);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--coral); }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    padding: 3rem var(--gutter);
    gap: 1.5rem;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-top: 1px solid rgba(26,26,26,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: var(--step-2); font-family: var(--font-display); }
  .nav-cta { align-self: stretch; text-align: center; padding-block: 1rem; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--step-0);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(233, 75, 127, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(233, 75, 127, 0.6);
  background: var(--royal);
}
.btn-secondary {
  background: var(--ink);
  color: var(--paper);
}
.btn-secondary:hover {
  background: var(--royal);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-arrow::after {
  content: '→';
  font-size: 1.2em;
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
}

.hero-lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--stone);
  margin-bottom: 2.2rem;
  max-width: 50ch;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,26,26,0.1);
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  color: var(--royal);
  line-height: 1;
}
.hero-meta-label {
  font-size: var(--step--1);
  color: var(--stone);
  font-weight: 600;
}

/* Hero collage */
.hero-collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(26,26,26,0.35);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 {
  top: 0;
  right: 0;
  width: 65%;
  height: 60%;
  z-index: 3;
  transform: rotate(2deg);
}
.hero-img-2 {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 55%;
  z-index: 2;
  transform: rotate(-3deg);
}
.hero-img-3 {
  bottom: 8%;
  right: 8%;
  width: 38%;
  height: 38%;
  z-index: 1;
  transform: rotate(5deg);
  border: 6px solid var(--paper);
}
.hero-badge {
  position: absolute;
  top: 45%;
  left: -2%;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  font-family: var(--font-script);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-8px); }
}

/* Decorative scribbles in hero */
.scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}
.scribble-1 { top: 15%; left: 42%; width: 60px; transform: rotate(15deg); }
.scribble-2 { bottom: 8%; right: 45%; width: 70px; transform: rotate(-25deg); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-collage { aspect-ratio: 1 / 1; max-width: 500px; margin-inline: auto; }
  .hero-meta { gap: 1.5rem; }
  .hero-meta-num { font-size: var(--step-3); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--royal);
  color: var(--paper);
  overflow: hidden;
  padding-block: 1.2rem;
  border-block: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--lime);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- APPROACH SECTION ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.approach-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(26,26,26,0.2);
}
.approach-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.approach-card:hover::before { opacity: 0.5; }
.approach-card > * { position: relative; z-index: 1; }
.approach-num {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.approach-num::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--coral);
}
.approach-card h3 { margin-bottom: 0.8rem; }
.approach-card p { color: var(--stone); }

.approach-card.sky { background: var(--sky-soft); }
.approach-card.sky .approach-num { color: var(--royal); }
.approach-card.sky .approach-num::before { background: var(--royal); }
.approach-card.lime { background: var(--lime-soft); }
.approach-card.lime .approach-num { color: var(--forest); }
.approach-card.lime .approach-num::before { background: var(--forest); }

@media (max-width: 760px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-head h2 { max-width: 18ch; }
.section-head-link {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--coral);
  transition: gap 0.25s var(--ease);
}
.section-head-link:hover { gap: 1rem; }

@media (max-width: 640px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- PROGRAMS ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: transform 0.35s var(--ease);
  border: 1px solid rgba(26,26,26,0.06);
}
.program-card:hover { transform: translateY(-6px); }
.program-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.program-card:hover .program-img img { transform: scale(1.06); }
.program-age {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.program-card h3 { font-size: var(--step-2); }
.program-card p {
  color: var(--stone);
  font-size: var(--step--1);
  line-height: 1.55;
  flex: 1;
}
.program-link {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.program-link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.program-card:hover .program-link::after { transform: translateX(4px); }

/* ---------- DAY-IN-LIFE TIMELINE ---------- */
.day-section {
  background: var(--royal);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.day-section .eyebrow { color: var(--lime); }
.day-section h2 { color: var(--paper); }
.day-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.day-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
}
.day-photo img { width: 100%; height: 100%; object-fit: cover; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-time {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--lime);
  font-weight: 500;
}
.timeline-body h4 {
  color: var(--paper);
  margin-bottom: 0.3rem;
}
.timeline-body p {
  color: rgba(250, 246, 238, 0.7);
  font-size: var(--step--1);
}

@media (max-width: 880px) {
  .day-grid { grid-template-columns: 1fr; }
  .day-photo { position: static; aspect-ratio: 16/9; }
  .timeline-item { grid-template-columns: 90px 1fr; gap: 1rem; }
}

/* ---------- GALLERY ---------- */
.gallery-masonry {
  columns: 3;
  column-gap: 1.2rem;
}
.gallery-masonry > * {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery-masonry img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-masonry > *:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: white;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  font-weight: 600;
  font-size: var(--step--1);
}
.gallery-masonry > *:hover .gallery-caption { opacity: 1; }

@media (max-width: 880px) { .gallery-masonry { columns: 2; } }
@media (max-width: 520px) { .gallery-masonry { columns: 1; } }

/* Gallery filter */
.gallery-filter {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26,26,26,0.15);
  background: transparent;
  font-size: var(--step--1);
  font-weight: 600;
  transition: 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--shell);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--coral);
  line-height: 1;
  font-weight: 400;
  opacity: 0.5;
}
.testimonial-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-author-name {
  font-weight: 700;
  font-size: var(--step-0);
}
.testimonial-author-meta {
  color: var(--stone);
  font-size: var(--step--1);
}

@media (max-width: 760px) {
  .testimonial { grid-template-columns: 1fr; }
  .testimonial-img { aspect-ratio: 16/10; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  transform: translateY(-50%);
  opacity: 0.4;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--paper);
  font-size: var(--step-5);
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(201, 222, 44, 0.5);
}
.cta-banner .btn-primary:hover { background: var(--coral); color: white; }
.cta-banner .btn-outline {
  color: var(--paper);
  border-color: var(--paper);
}
.cta-banner .btn-outline:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--royal-deep);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral) 33%, var(--lime) 33%, var(--lime) 66%, var(--sky) 66%, var(--sky) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 64px; margin-bottom: 1.5rem; }
.footer-tagline {
  font-family: var(--font-script);
  color: var(--lime);
  font-size: var(--step-2);
  margin-bottom: 1rem;
}
.footer-desc {
  color: rgba(250,246,238,0.7);
  font-size: var(--step--1);
  max-width: 35ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: rgba(250,246,238,0.85);
  font-size: var(--step--1);
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--step--2);
  color: rgba(250,246,238,0.6);
}
.footer-credit {
  font-family: var(--font-script);
  font-size: var(--step-0);
  color: var(--lime);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- VALUES (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.06);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  background: var(--paper);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.value-icon.coral { background: var(--coral-soft); color: var(--coral); }
.value-icon.lime { background: var(--lime-soft); color: var(--forest); }
.value-icon.sky { background: var(--sky-soft); color: var(--royal); }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { color: var(--stone); font-size: var(--step--1); }

/* ---------- STORY (about) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,26,26,0.08);
}
.story-content .eyebrow { margin-bottom: 1rem; display: block; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p {
  color: var(--stone);
  margin-bottom: 1.2rem;
  font-size: var(--step-0);
  line-height: 1.7;
}
.story-signature {
  margin-top: 2rem;
  font-family: var(--font-script);
  font-size: var(--step-2);
  color: var(--coral);
}

@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- PROGRAM DETAIL ---------- */
.program-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  align-items: center;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.program-detail:nth-child(even) { direction: rtl; }
.program-detail:nth-child(even) > * { direction: ltr; }
.program-detail-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.program-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.program-detail-content .program-age-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--coral-soft);
  color: var(--coral);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.program-detail-content h2 { margin-bottom: 1.2rem; }
.program-detail-content p {
  color: var(--stone);
  font-size: var(--step-0);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.program-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.program-features li {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  font-size: var(--step--1);
  color: var(--ink);
}
.program-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 4px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23153D08' stroke-width='2.5' stroke-linecap='round' d='M6 10l3 3 6-6'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 880px) {
  .program-detail, .program-detail:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .program-features { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(26,26,26,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(26,26,26,0.12);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--ink);
  transition: border 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(233,75,127,0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.contact-form button[type=submit] { width: 100%; justify-content: center; margin-top: 0.5rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.06);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  transition: transform 0.25s var(--ease), border 0.25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--coral); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card.lime .contact-card-icon { background: var(--forest); }
.contact-card.sky .contact-card-icon { background: var(--royal); }
.contact-card h4 { font-size: var(--step-0); margin-bottom: 0.2rem; }
.contact-card a, .contact-card p { font-size: var(--step-0); color: var(--ink); font-weight: 600; }
.contact-card span { color: var(--stone); font-size: var(--step--1); font-weight: 500; display: block; margin-top: 0.2rem; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--coral); }
.faq-q::after {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding-bottom: 1.5rem;
  color: var(--stone);
  font-size: var(--step-0);
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.page-hero h1 .accent {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.page-hero-lede {
  font-size: var(--step-1);
  color: var(--stone);
  max-width: 55ch;
  line-height: 1.5;
}
.breadcrumb {
  font-size: var(--step--1);
  color: var(--stone);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--coral); font-weight: 600; }
.breadcrumb-sep { opacity: 0.4; }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: left;
}
.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 1rem;
  background: var(--shell);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-name { font-family: var(--font-display); font-size: var(--step-2); font-weight: 500; margin-bottom: 0.2rem; }
.team-role { color: var(--coral); font-size: var(--step--1); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ---------- ENROL BAR / FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 90;
  transition: transform 0.3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.center-text { text-align: center; max-width: 60ch; margin-inline: auto; }

/* =========================================================
   STORE PAGE
   ========================================================= */

/* ---------- HOW IT WORKS ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.how-step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.how-step:nth-child(1) { border-top: 4px solid var(--coral); }
.how-step:nth-child(2) { border-top: 4px solid var(--lime); }
.how-step:nth-child(3) { border-top: 4px solid var(--sky); }
.how-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--stone);
  opacity: 0.5;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  margin: 0 0 0.6rem;
  line-height: 1.15;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.how-step p {
  color: var(--stone);
  font-size: var(--step-0);
  line-height: 1.55;
  margin: 0;
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.product-photo {
  position: relative;
  background: var(--shell);
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  display: block;
}
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: white;
  font-family: var(--font-body);
  font-size: var(--step--2);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-badge-alt { background: var(--royal); }

.product-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: var(--step-4);
  margin: 0;
  line-height: 1.1;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
}
.product-desc {
  color: var(--stone);
  font-size: var(--step-0);
  line-height: 1.6;
  margin: 0;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-top: 1px dashed rgba(0,0,0,0.08);
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.price-currency {
  font-family: var(--font-body);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
}
.price-amount {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.price-suffix {
  font-family: var(--font-body);
  font-size: var(--step--1);
  color: var(--stone);
  margin-left: 0.4rem;
}

/* ---------- SIZE PILLS ---------- */
.size-block, .qty-block { display: flex; flex-direction: column; gap: 0.6rem; }
.size-label {
  font-family: var(--font-body);
  font-size: var(--step--2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.size-pill {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  padding: 0.55rem 1rem;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--ink);
}
.size-pill:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.size-pill.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.size-block.shake { animation: shake 0.5s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ---------- QTY STEPPER ---------- */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 99px;
  padding: 0.25rem;
  width: fit-content;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--shell); }
.qty-display {
  min-width: 36px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-0);
}

/* ---------- ADD BUTTON ---------- */
.btn-add { width: 100%; margin-top: auto; }
.btn-added { background: var(--forest) !important; transform: scale(1.02); }

/* ---------- ORDER SECTION (dark) ---------- */
.section-order {
  background: var(--royal-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-order::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 222, 44, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.order-head { padding-top: 1rem; }
.text-light { color: white; }
.eyebrow-light { color: var(--lime); }
.accent-light {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lime);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.order-sub {
  color: rgba(255,255,255,0.7);
  font-size: var(--step-0);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 36ch;
}

.order-card {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.order-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--stone);
}
.order-empty svg { margin: 0 auto 1rem; display: block; opacity: 0.4; }
.order-empty p { margin: 0; font-size: var(--step-0); }

.order-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--shell);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.order-item-info { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; flex: 1; }
.order-item-info strong { font-size: var(--step-0); }
.order-item-meta { font-size: var(--step--1); color: var(--stone); }
.order-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn-sm { width: 28px; height: 28px; font-size: 1rem; background: white; }
.order-item-qty { min-width: 24px; text-align: center; font-weight: 700; }
.order-item-total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  min-width: 90px;
  text-align: right;
  letter-spacing: -0.01em;
}
.order-item-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--stone);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}
.order-item-remove:hover { background: var(--coral); color: white; }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-top: 2px solid var(--ink);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-1);
}
.total-amount {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  letter-spacing: -0.02em;
}

.order-customer { margin-bottom: 1.5rem; }
.order-customer h4 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  margin: 0 0 1rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.order-customer .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.order-customer .form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.order-customer label {
  font-family: var(--font-body);
  font-size: var(--step--2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
}
.order-customer input {
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.order-customer input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(201, 222, 44, 0.3);
}

/* ---------- WHATSAPP CTA ---------- */
.btn-whatsapp {
  width: 100%;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-1);
  padding: 1.1rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover:not(:disabled) {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp:disabled {
  background: var(--mist);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.order-fineprint {
  font-size: var(--step--1);
  color: var(--stone);
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; gap: 2rem; }
  .order-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .order-head { padding-top: 0; }
  .product-body { padding: 1.5rem; }
  .product-name { font-size: var(--step-3); }
  .order-card { padding: 1.5rem; }
  .order-customer .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .order-item { flex-direction: column; align-items: flex-start; }
  .order-item-controls { width: 100%; justify-content: space-between; }
  .order-item-total { min-width: auto; }
  .size-pill { padding: 0.5rem 0.85rem; font-size: var(--step--2); }
  .product-photo img { padding: 1rem; }
}
