/* =============================================================
   Plant-Powered Grandma — design system
   Apron green + soft coral pink, parchment warmth.
   ============================================================= */

:root {
  /* Palette — Lynda's brand: green + pink */
  --parchment:     #FAF6EC;
  --parchment-2:   #F3EBD8;
  --cream:         #FFFDF6;

  --apron:         #6A9758;  /* Lynda's apron green, primary brand */
  --apron-soft:    #A8C99B;  /* mint-leaf tint */
  --apron-pale:    #DDE9D5;  /* whisper of green */
  --apron-deep:    #3D5B2D;  /* deep green for text on light bg */
  --apron-ink:     #1F3024;  /* deepest green-ink */

  --pink:          #F28C93;  /* BloomInJoy coral pink — primary CTA */
  --pink-deep:     #E1525F;  /* hover / active */
  --pink-soft:     #FBDCDE;  /* pale pink for tints */

  --ink:           #1F2A20;
  --ink-soft:      #4A5648;
  --ink-mute:      #8A938A;
  --hairline:      rgba(61, 91, 45, 0.14);

  /* Type */
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-body:    clamp(1.05rem, 0.95rem + 0.4vw, 1.18rem);
  --fs-lead:    clamp(1.18rem, 1.05rem + 0.6vw, 1.4rem);
  --fs-h4:      clamp(1.18rem, 1.05rem + 0.5vw, 1.35rem);
  --fs-h3:      clamp(1.4rem, 1.15rem + 1vw, 1.85rem);
  --fs-h2:      clamp(1.85rem, 1.5rem + 1.8vw, 2.85rem);
  --fs-h1:      clamp(2.4rem, 1.9rem + 3.2vw, 4.4rem);
  --fs-eyebrow: 0.86rem;

  --section-pad-y: clamp(4.5rem, 6vw, 7.5rem);
  --container:     1140px;
  --gutter:        clamp(1.25rem, 4vw, 2.25rem);
  --radius-sm:     14px;
  --radius:        22px;
  --radius-lg:     34px;

  --shadow-sm: 0 1px 2px rgba(31, 51, 36, 0.06), 0 6px 18px rgba(31, 51, 36, 0.06);
  --shadow:    0 2px 6px rgba(31, 51, 36, 0.08), 0 18px 44px rgba(31, 51, 36, 0.10);
  --shadow-lg: 0 6px 16px rgba(31, 51, 36, 0.10), 0 32px 80px rgba(31, 51, 36, 0.14);
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========== Reset / base =========== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--apron-ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); line-height: 1.05; }
h2 { font-size: var(--fs-h2); line-height: 1.12; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: var(--fs-h4); line-height: 1.3; font-weight: 700; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--pink-deep); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: 0.5em; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translateY(-110%);
  background: var(--apron-ink);
  color: var(--cream);
  padding: 0.75rem 1.1rem;
  border-bottom-right-radius: 8px;
  z-index: 100;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* =========== Layout =========== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

main { display: block; }

main > section { padding: var(--section-pad-y) 0; position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink-deep);
  margin: 0 0 1rem;
}
.eyebrow.centered { text-align: center; }

.section-title { margin-bottom: 0.6em; }
.section-title.centered,
h2.section-title,
.centered { text-align: center; }

.section-lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

/* =========== Header =========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem var(--gutter);
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 22px rgba(31, 51, 36, 0.05);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--serif);
  color: var(--apron-ink);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
}
.brand-leaf {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--apron);
}
.brand-text em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.6rem);
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 0.45rem 0.2rem;
  position: relative;
  transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--apron-ink); }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--pink);
  color: var(--cream) !important;
  padding: 0.6rem 1.05rem !important;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .site-nav { gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
  .site-nav a:not(.nav-cta) { display: none; }
}

/* =========== Buttons =========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 52px;
  text-wrap: balance;
}
.btn-primary {
  background: var(--pink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--apron-ink);
  border-color: var(--apron);
}
.btn-ghost:hover {
  background: var(--apron);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-large { padding: 1.1rem 2rem; font-size: 1.1rem; min-height: 60px; }

/* =========== Hero =========== */

.hero {
  position: relative;
  padding: clamp(4.5rem, 7vw, 8rem) 0 clamp(4rem, 6vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 201, 155, 0.38), transparent 55%),
    radial-gradient(circle at 88% 30%, rgba(242, 140, 147, 0.22), transparent 60%),
    radial-gradient(circle at 50% 95%, rgba(168, 201, 155, 0.18), transparent 60%),
    var(--parchment);
}

.hero-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  z-index: 2;
}
.hero-inner .eyebrow { color: var(--apron-deep); }

.hero-title { margin: 0 0 0.6em; }
.hero-title em {
  font-style: italic;
  color: var(--pink-deep);
}

.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto 2.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-welcome {
  max-width: 62ch;
  margin: 0 auto;
  padding: 1.85rem 2rem;
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  text-align: left;
  text-wrap: pretty;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Drifting leaf decorations */
.leaf {
  position: absolute;
  pointer-events: none;
  border-radius: 70% 30% 65% 35% / 60% 40% 60% 40%;
  filter: blur(0.5px);
  opacity: 0.55;
  z-index: 1;
}
.leaf-a {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, var(--apron-pale), var(--apron-soft));
  top: -90px; left: -80px;
  transform: rotate(-22deg);
  animation: drift 16s ease-in-out infinite alternate;
}
.leaf-b {
  width: 240px; height: 240px;
  background: radial-gradient(circle at 60% 40%, rgba(242, 140, 147, 0.55), rgba(242, 140, 147, 0.18));
  top: 12%; right: -60px;
  transform: rotate(28deg);
  animation: drift 19s ease-in-out infinite alternate-reverse;
}
.leaf-c {
  width: 200px; height: 200px;
  background: radial-gradient(circle at 50% 60%, rgba(106, 151, 88, 0.35), rgba(106, 151, 88, 0.08));
  bottom: 8%; left: 8%;
  transform: rotate(14deg);
  animation: drift 22s ease-in-out infinite alternate;
}
.leaf-d {
  width: 160px; height: 160px;
  background: radial-gradient(circle at 40% 50%, var(--pink-soft), rgba(242, 140, 147, 0.3));
  bottom: -40px; right: 14%;
  transform: rotate(-18deg);
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(var(--r, 0deg)); }
  to   { transform: translate3d(14px, -22px, 0) rotate(calc(var(--r, 0deg) + 6deg)); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid var(--apron);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--apron);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.3; }
}

/* =========== Framework / Pillars =========== */

.framework {
  background: linear-gradient(180deg, var(--parchment), var(--cream));
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pillar {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(168, 201, 155, 0.6);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--apron-pale);
  color: var(--apron-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 32px; height: 32px; }

.pillar-number {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink-deep);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.2em;
}

.pillar h3 { margin-bottom: 0.1em; }

.pillar-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--apron);
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
}
.pillar-list li strong {
  color: var(--apron-deep);
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
}

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

/* =========== Method =========== */

.method {
  background: var(--parchment-2);
  background-image:
    radial-gradient(circle at 90% 12%, rgba(242, 140, 147, 0.12), transparent 50%),
    radial-gradient(circle at 8% 88%, rgba(168, 201, 155, 0.28), transparent 55%);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; }
}

.method-text { max-width: 56ch; }
.method-text .section-title { margin-bottom: 0.4em; }

.method-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2.5rem;
  display: grid;
  gap: 1.4rem;
}
.method-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}
.check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--apron);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.check svg { width: 22px; height: 22px; }
.method-points h4 {
  margin: 0 0 0.25em;
  color: var(--apron-ink);
}
.method-points p { color: var(--ink-soft); margin: 0; }

.invitation {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-sm);
}
.invitation-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--apron-ink);
  margin: 0 0 1.25rem;
}

/* Petal motif — pinks + greens */
.method-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.petal, .petal-center {
  position: absolute;
  top: 50%;
  left: 50%;
}
.petal {
  width: 38%;
  height: 22%;
  border-radius: 50%;
  transform-origin: 50% 100%;
  opacity: 0.85;
  mix-blend-mode: multiply;
  animation: petal-pulse 8s ease-in-out infinite;
}
.petal-1 { transform: translate(-50%, -100%) rotate(0deg);   background: var(--pink); }
.petal-2 { transform: translate(-50%, -100%) rotate(60deg);  background: var(--apron-soft); }
.petal-3 { transform: translate(-50%, -100%) rotate(120deg); background: var(--pink-soft); }
.petal-4 { transform: translate(-50%, -100%) rotate(180deg); background: var(--apron); opacity: 0.65; }
.petal-5 { transform: translate(-50%, -100%) rotate(240deg); background: var(--pink); opacity: 0.7; }
.petal-6 { transform: translate(-50%, -100%) rotate(300deg); background: var(--apron-soft); opacity: 0.8; }
.petal-center {
  width: 18%;
  height: 18%;
  background: radial-gradient(circle at 35% 35%, var(--pink-soft), var(--pink));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--cream), var(--shadow);
}

.method-art { animation: petal-rotate 40s linear infinite; }

@keyframes petal-rotate { to { transform: rotate(360deg); } }
@keyframes petal-pulse  { 50% { opacity: 0.55; } }

/* =========== About =========== */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-portrait {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.portrait-frame {
  width: 100%;
  max-width: 260px;
  /* Aspect tuned to Lynda's photo (343x540 ≈ 5:8) so the entire portrait fits cleanly */
  aspect-ratio: 5 / 8;
  border-radius: 50% 50% 48% 52% / 56% 56% 44% 44%;
  background: linear-gradient(160deg, var(--pink), var(--pink-deep));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 253, 246, 0.45);
  pointer-events: none;
  z-index: 2;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.22) translate(4%, 9%);
  transform-origin: center;
  z-index: 1;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.portrait-img.img-missing { display: none; }
.portrait-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
}
.portrait-initials {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-style: italic;
}
.portrait-sprig {
  color: var(--apron);
  width: 80px;
  opacity: 0.85;
}
.portrait-sprig svg { width: 100%; }

.about-text { max-width: 62ch; }
.about-text h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.5rem);
  margin-top: 1.8em;
  color: var(--apron-ink);
}
.about-text p { color: var(--ink); }

.about-shifts {
  list-style: decimal;
  padding-left: 1.4em;
  margin: 1.25rem 0 1.5rem;
}
.about-shifts li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 0.4em;
}
.about-shifts li::marker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 600;
}
.about-shifts strong {
  color: var(--apron-deep);
  font-family: var(--serif);
}

blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--apron-pale);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--apron-ink);
  margin: 0;
}

.signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  color: var(--ink-soft);
  line-height: 1.55;
}
.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--pink-deep);
}
.signature-title {
  font-size: 0.92rem;
  color: var(--ink-mute);
}

/* =========== Work With Me =========== */

.work {
  background:
    radial-gradient(circle at 10% 0%, rgba(168, 201, 155, 0.28), transparent 50%),
    radial-gradient(circle at 92% 100%, rgba(242, 140, 147, 0.18), transparent 55%),
    var(--parchment);
}

.work .section-lead { margin-bottom: 1.2rem; }

.work > .container > h3.centered {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 0.6em;
}

.includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 900px) {
  .includes { grid-template-columns: 1fr; }
}

.include-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.include-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.include-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.include-card h4 {
  color: var(--apron-ink);
  margin-bottom: 0.85em;
}
.include-card p {
  font-size: 0.99rem;
  color: var(--ink-soft);
  margin-bottom: 0.8em;
}
.include-card p strong {
  color: var(--apron-deep);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.for-you {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.for-you h3 {
  text-align: center;
  margin-bottom: 1.2em;
}
.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.for-you-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}
.leaf-bullet {
  width: 22px;
  height: 22px;
  border-radius: 70% 30% 70% 30% / 60% 40% 60% 40%;
  background: linear-gradient(135deg, var(--apron-soft), var(--apron));
  display: inline-block;
  margin-top: 4px;
  transform: rotate(-20deg);
  box-shadow: inset 0 -2px 0 rgba(61, 91, 45, 0.18);
  flex-shrink: 0;
}

.cta-banner {
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  max-width: 780px;
  background: linear-gradient(140deg, var(--apron-ink), var(--apron-deep));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(242, 140, 147, 0.42), transparent 70%);
  top: -90px;
  right: -80px;
  pointer-events: none;
}
.cta-banner h3 {
  color: var(--cream);
  margin-bottom: 0.5em;
}
.cta-banner p {
  color: rgba(255, 253, 246, 0.88);
  max-width: 56ch;
  margin: 0 auto 1.8rem;
}
.cta-banner .btn-primary {
  background: var(--pink);
  color: var(--cream);
}
.cta-banner .btn-primary:hover {
  background: var(--pink-deep);
  color: var(--cream);
}

/* =========== Connect (homepage CTA section, form now lives at /questionnaire.html) =========== */

.connect {
  background: var(--cream);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .connect-grid { grid-template-columns: 1fr; }
}

.connect-intro { max-width: 48ch; }
.connect-intro p { color: var(--ink-soft); }
.connect-intro .btn { margin-top: 1.25rem; }

.connect-art {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, var(--pink-soft), transparent 60%),
    radial-gradient(circle at 70% 75%, var(--apron-pale), transparent 60%),
    var(--parchment-2);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.connect-art-sprig {
  width: 70%;
  color: var(--apron);
  opacity: 0.7;
}

/* =========== Footer =========== */

.site-footer {
  background: var(--apron-ink);
  color: rgba(255, 253, 246, 0.85);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  font-size: 0.95rem;
}
.site-footer .container { color: inherit; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand-leaf { color: var(--pink); width: 32px; height: 32px; }
.footer-brand .brand-text {
  display: inline-block;
  margin-left: 0.55rem;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: middle;
}
.footer-brand .brand-text em {
  font-style: italic;
  color: var(--pink);
}
.footer-tagline {
  margin: 0.8rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 253, 246, 0.7);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  text-decoration: none;
  color: rgba(255, 253, 246, 0.85);
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover { color: var(--pink); }

.footer-disclaimer {
  color: rgba(255, 253, 246, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}
.footer-disclaimer strong {
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.footer-credit {
  text-align: center;
  margin: 3rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 253, 246, 0.55);
}

/* =========== Reveal animation =========== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =============================================================
   QUESTIONNAIRE PAGE
   ============================================================= */

body.page-questionnaire { background: var(--parchment); }

.questionnaire {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
  overflow: hidden;
}
.questionnaire::before,
.questionnaire::after {
  content: "";
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.questionnaire::before {
  width: 360px; height: 360px;
  top: -100px; right: -90px;
  background: radial-gradient(circle at 30% 30%, var(--apron-pale), transparent 70%);
}
.questionnaire::after {
  width: 280px; height: 280px;
  bottom: -70px; left: -70px;
  background: radial-gradient(circle at 60% 40%, var(--pink-soft), transparent 70%);
}

.questionnaire-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.questionnaire-intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.questionnaire-intro-leads {
  max-width: 64ch;
  margin: 0 auto;
}
.questionnaire-intro-leads p + p { margin-top: 1rem; }

.questionnaire-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.questionnaire-form.is-fading {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

/* Each section is its own soft card. Visually grouped, easy to scan. */
.q-section {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease);
}
.q-section:hover { box-shadow: var(--shadow); }

.q-section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(61, 91, 45, 0.10);
}
.q-section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--pink-deep);
  line-height: 1.1;
  padding-top: 0.05rem;
}
.q-section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem);
  line-height: 1.2;
  color: var(--apron-ink);
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.q-section-lead {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.q-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
}
/* Wider row gap for sections whose questions are each substantial on their own. */
.q-section-wide .q-fields { row-gap: 3rem; }
@media (max-width: 640px) {
  .q-fields { grid-template-columns: 1fr; }
  .q-section-wide .q-fields { row-gap: 2.25rem; }
}
.q-field { display: flex; flex-direction: column; gap: 0.5rem; }
.q-field-wide { grid-column: 1 / -1; }

.q-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--apron-ink);
  letter-spacing: 0.005em;
  line-height: 1.4;
  text-wrap: pretty;
}
.q-required {
  color: var(--pink-deep);
  margin-left: 0.25rem;
  font-weight: 600;
}
.q-help {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: -0.15rem 0 0.15rem;
  font-style: italic;
}

.q-field input[type="text"],
.q-field input[type="email"],
.q-field input[type="tel"],
.q-field textarea {
  background: var(--parchment);
  border: 1px solid rgba(61, 91, 45, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.q-field textarea {
  resize: vertical;
  min-height: 110px;
}
.q-field input:focus,
.q-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(242, 140, 147, 0.18);
}

/* Single/multi-choice as soft pill chips */
.q-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}
/* Stacked variant: full-sentence options read as a list of choices, not a row of chips. */
.q-options-stack {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
}
.q-options-stack .q-option { display: flex; width: 100%; }
.q-options-stack .q-option-label {
  width: 100%;
  padding: 0.85rem 1.25rem;
  line-height: 1.45;
  text-wrap: pretty;
}
.q-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.q-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.q-option-label {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--parchment);
  border: 1px solid rgba(61, 91, 45, 0.18);
  color: var(--apron-ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: background-color 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease,
              transform 0.3s var(--ease),
              box-shadow 0.3s ease;
}
.q-option:hover .q-option-label {
  background: var(--cream);
  border-color: rgba(106, 151, 88, 0.45);
  transform: translateY(-1px);
}
.q-option input:focus-visible + .q-option-label {
  box-shadow: 0 0 0 4px rgba(106, 151, 88, 0.32);
}
.q-option input:checked + .q-option-label {
  background: linear-gradient(135deg, var(--apron) 0%, var(--apron-deep) 100%);
  border-color: var(--apron-deep);
  color: var(--cream);
  box-shadow: 0 6px 18px -8px rgba(61, 91, 45, 0.45);
}

/* Questionnaire submit button uses the green brand color. */
body.page-questionnaire .btn-primary {
  background: var(--apron);
  color: var(--cream);
}
body.page-questionnaire .btn-primary:hover {
  background: var(--apron-deep);
}

.q-field-honeypot, .field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile-wrap {
  margin: 1.5rem 0 1rem;
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.questionnaire-submit {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  margin-top: 1.25rem;
}
.questionnaire-submit .btn { min-width: 240px; }

.form-status {
  margin: 0;
  font-size: 0.98rem;
  min-height: 1.4em;
  text-wrap: pretty;
  text-align: center;
}

/* Success state */
.questionnaire-success {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
  animation: success-fade 0.5s var(--ease);
}
@keyframes success-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.questionnaire-success .btn { margin-top: 1.5rem; }

.success-bloom {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
}
.bloom-petal {
  position: absolute;
  top: 50%; left: 50%;
  width: 44%;
  height: 28%;
  border-radius: 50%;
  background: var(--pink);
  transform-origin: 50% 100%;
  animation: bloom-open 0.7s var(--ease) backwards;
}
.bloom-petal:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg);   background: var(--apron-soft); animation-delay: 0.05s; }
.bloom-petal:nth-child(2) { transform: translate(-50%, -100%) rotate(72deg);  background: var(--pink);       animation-delay: 0.12s; }
.bloom-petal:nth-child(3) { transform: translate(-50%, -100%) rotate(144deg); background: var(--apron);      animation-delay: 0.19s; opacity: 0.85; }
.bloom-petal:nth-child(4) { transform: translate(-50%, -100%) rotate(216deg); background: var(--pink-soft);  animation-delay: 0.26s; }
.bloom-petal:nth-child(5) { transform: translate(-50%, -100%) rotate(288deg); background: var(--pink-deep);  animation-delay: 0.33s; opacity: 0.85; }
.bloom-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 24%;
  height: 24%;
  background: radial-gradient(circle at 35% 35%, var(--pink-soft), var(--pink));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px var(--cream), var(--shadow-sm);
  animation: bloom-pop 0.5s var(--ease) 0.4s backwards;
}
@keyframes bloom-open {
  from { transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scale(0); opacity: 0; }
}
@keyframes bloom-pop {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* =========== Reduced motion =========== */

@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; }
  .reveal { opacity: 1; transform: none; }
  .leaf, .method-art, .petal { animation: none; }
}
