/* ============================================================
   RECIPROCAL MASSAGE WORKSHOP — HOPE ENDRENYI
   style.css
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Colors */
  --color-cream:      #F5EFE6;
  --color-terracotta: #C4714F;
  --color-blush:      #D4A59A;
  --color-blush-bg:   #EDD8D3;
  --color-brown:      #3D2B1F;
  --color-sage:       #9CAF9B;
  --color-sage-light: #C9D6C8;
  --color-terracotta-bg: #E8C4B8;
  --color-white:      #FFFFFF;

  --color-text-dark:  #3D2B1F;
  --color-text-light: #F5EFE6;
  --color-text-muted: #8a6e62;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.75rem,  1vw,    0.875rem);
  --text-sm:   clamp(0.875rem, 1.2vw,  1rem);
  --text-base: clamp(1rem,     1.5vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 2vw,    1.375rem);
  --text-xl:   clamp(1.375rem, 3vw,    2rem);
  --text-2xl:  clamp(2rem,     5vw,    3.5rem);
  --text-3xl:  clamp(2.5rem,   7vw,    5rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Misc */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-pill: 999px;
  --container-max: 1100px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --transition-base: 300ms ease;
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 6px 24px rgba(61, 43, 31, 0.13);
  --shadow-lg: 0 16px 48px rgba(61, 43, 31, 0.18);
}


/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }


/* ── 3. Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-xl);
  position: relative;
}

.section--cream    { background-color: var(--color-cream); }
.section--blush    { background-color: var(--color-blush-bg); }
.section--brown    { background-color: var(--color-brown); }
.section--sage { background-color: var(--color-sage-light); }
.section--sage .eyebrow { color: var(--color-brown); }
.section--sage .section__title { color: var(--color-brown); }
.section--sage .section__body { color: var(--color-brown); }
.section--sage .card { background-color: rgba(255, 255, 255, 0.45); }
.section--sage .flow-block__body { color: var(--color-brown); }
.section--sage .flow-block--note { background-color: rgba(255, 255, 255, 0.4); }
.section--sage .section-divider__desc { color: var(--color-brown); }

/* Section divider titles */
.section-divider {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-sm);
  text-align: center;
  position: relative;
}

.section-divider--flow {
  margin-top: -90px;
  padding-top: calc(90px + var(--space-lg));
  z-index: 1;
}

.section-divider__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-terracotta);
  letter-spacing: 0.02em;
}

.section-divider__desc {
  margin-top: var(--space-xs);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  white-space: nowrap;
  margin-inline: auto;
}


/* ── 4. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 400;
}

.section__title {
  font-size: var(--text-2xl);
  color: var(--color-brown);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--color-cream);
}

.section__body {
  font-size: var(--text-base);
  color: var(--color-text-dark);
  max-width: 700px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.section__body--light {
  color: rgba(245, 239, 230, 0.85);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: var(--space-sm);
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  max-width: 660px;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--color-terracotta);
  line-height: 1.45;
}


/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.9em 2.6em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.btn--primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #af5e3e;
  border-color: #af5e3e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-cream);
  color: var(--color-brown);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--color-blush);
  outline-offset: 3px;
}


/* ── 6. Wave Dividers ─────────────────────────────────────── */
.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Top-side waves (for sections that need a wave entering from above) */
.wave--top {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}


/* ── 7. Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--color-sage-light);
  position: relative;
  padding-block: var(--space-2xl) calc(var(--space-2xl) + 80px);
  background-image:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(156, 175, 155, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(212, 165, 154, 0.07) 0%, transparent 65%);
}

.hero__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

/* Sequential fade-in for hero children */
.hero__inner > .eyebrow,
.hero__inner > .hero__title,
.hero__inner > .hero__subtitle,
.hero__inner > .hero__buttons {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero__inner.hero--entered > .eyebrow {
  opacity: 1; transform: translateY(0);
  transition-delay: 0ms;
}
.hero__inner.hero--entered > .hero__title {
  opacity: 1; transform: translateY(0);
  transition-delay: 600ms;
}
.hero__inner.hero--entered > .hero__subtitle {
  opacity: 1; transform: translateY(0);
  transition-delay: 1200ms;
}
.hero__inner.hero--entered > .hero__buttons {
  opacity: 1; transform: translateY(0);
  transition-delay: 1800ms;
}

.hero__title {
  font-size: var(--text-3xl);
  color: var(--color-brown);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* ✦ Stars around "magical" */
.hero__sparkle {
  position: relative;
  display: inline-block;
}
.hero__sparkle .star {
  position: absolute;
  color: var(--color-terracotta);
  opacity: 0.75;
  pointer-events: none;
  line-height: 1;
}
.hero__sparkle .star:nth-child(1) { top: -0.7em;  left: -0.8em;  font-size: 0.45em; }
.hero__sparkle .star:nth-child(2) { top: 0.1em;   left: -0.6em;  font-size: 0.28em; opacity: 0.5; }
.hero__sparkle .star:nth-child(3) { bottom: -0.5em; left: 0.3em;  font-size: 0.3em;  opacity: 0.6; }
.hero__sparkle .star:nth-child(4) { top: -0.8em;  left: 50%;     font-size: 0.32em; opacity: 0.55; }
.hero__sparkle .star:nth-child(5) { top: -0.5em;  right: -0.9em; font-size: 0.35em; }
.hero__sparkle .star:nth-child(6) { top: 0.2em;   right: -0.5em; font-size: 0.4em;  opacity: 0.5; }
.hero__sparkle .star:nth-child(7) { bottom: -0.3em; right: -0.7em; font-size: 0.25em; opacity: 0.6; }
.hero__sparkle .star:nth-child(8) { bottom: -0.6em; left: 40%;    font-size: 0.28em; opacity: 0.5; }

/* Semi-bold "massage" in terracotta */
.hero__semi-bold {
  font-weight: 500;
  color: var(--color-terracotta);
}

/* Stretched "partner stretching" with terracotta double arrow underline */
.hero__stretch {
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
  padding-bottom: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'%3E%3Cline x1='4' y1='4' x2='96' y2='4' stroke='%23C4714F' stroke-width='1.2' opacity='0.6'/%3E%3Cpolyline points='7,1 1,4 7,7' fill='none' stroke='%23C4714F' stroke-width='1.2' opacity='0.6'/%3E%3Cpolyline points='93,1 99,4 93,7' fill='none' stroke='%23C4714F' stroke-width='1.2' opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 6px;
}

/* Circle around "contact improv" */
.hero__circle {
  display: inline-block;
  border: 1.5px solid var(--color-terracotta);
  border-radius: 50%;
  padding: 0.05em 0.6em;
  opacity: 0.85;
}

/* Italic "flow" in terracotta */
.hero__flow {
  color: var(--color-terracotta);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.hero__meta-sep {
  color: var(--color-blush);
  font-size: 1.1em;
}


/* ── 8. "What is Reciprocal Massage" section ──────────────── */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .intro__grid {
    grid-template-columns: 1fr 380px;
    gap: var(--space-xl);
  }
}

.intro__content {
  max-width: 660px;
}

.intro__lead {
  font-size: var(--text-lg);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.intro__image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro__img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Definition box */
.definition-box {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-sage-light);
  border-left: 3px solid var(--color-terracotta);
  border-radius: var(--radius-sm);
  max-width: 380px;
  width: 100%;
}

.definition-box__term {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.4em;
  color: var(--color-brown);
}

.definition-box__desc + .definition-box__desc {
  margin-top: 0.5em;
}

.definition-box__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text);
}

.definition-box__link {
  margin-top: 0.6em;
  font-size: var(--text-sm);
}

.definition-box__link a {
  color: var(--color-terracotta);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.definition-box__link a:hover {
  opacity: 0.75;
}

/* ── The Flow section ─────────────────────────────────────── */
.flow-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

.flow-block__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: 0.5em;
  color: var(--color-brown);
}

.flow-block__body {
  font-size: var(--text-base);
  line-height: 1.75;
}

.flow-block--note {
  background-color: var(--color-blush-bg);
  border-left: 3px solid var(--color-terracotta);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
}

/* ── Photo strip ───────────────────────────────────────────── */
.photo-strip {
  width: 100%;
  height: clamp(220px, 35vw, 480px);
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Bring photo ───────────────────────────────────────────── */
.bring-photo {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bring-photo__img {
  width: 100%;
  height: clamp(180px, 28vw, 380px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}


/* ── 9. Cards (What to Expect) ────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-blush);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: var(--space-xs);
}

.card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}


/* ── 10. Bring Section ────────────────────────────────────── */
.bring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .bring-grid { grid-template-columns: 1fr 1fr; }
}

.bring-col__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.bring-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bring-list li {
  font-size: var(--text-base);
  padding-left: 1.4em;
  position: relative;
  line-height: 1.6;
}

.bring-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-blush);
}

.bring-col p {
  font-size: var(--text-base);
  line-height: 1.8;
}

.optional {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: italic;
  margin-left: 0.25em;
}

.clothing-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
  line-height: 1.65;
  padding-left: 1.4em;
  border-left: 2px solid var(--color-blush);
}


/* ── 11. About Hope ───────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .bio-grid { grid-template-columns: 320px 1fr; }
}

.image-placeholder {
  aspect-ratio: 3 / 4;
  background-color: rgba(245, 239, 230, 0.08);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(245, 239, 230, 0.25);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-sm);
  overflow: hidden;
  width: 100%;
}

.image-placeholder__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245, 239, 230, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.bio__body {
  font-size: var(--text-base);
  color: rgba(245, 239, 230, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.bio__credits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  padding-left: 0;
}

.bio__credits li {
  font-size: var(--text-sm);
  color: rgba(245, 239, 230, 0.65);
  padding-left: 1.2em;
  position: relative;
}

.bio__credits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-size: 0.85em;
}

.bio__credits em {
  font-style: italic;
  color: rgba(245, 239, 230, 0.5);
}

.bio__credits a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.bio__credits a:hover {
  color: var(--color-terracotta);
}

.bio__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.bio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--text-sm);
  color: var(--color-blush);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
  width: fit-content;
}

.bio-link:hover,
.bio-link:focus-visible {
  color: var(--color-cream);
}

.bio__site-link {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-terracotta);
  font-size: var(--text-base);
  margin-top: var(--space-sm);
}

.bio__site-links {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.bio__site-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--color-terracotta);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  text-decoration: none;
  padding: 0.5em 1.2em;
  border: 1.5px solid var(--color-terracotta);
  border-radius: 999px;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.bio__site-link-item:hover {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
}

.bio__site-link-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.bio-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


/* ── Hero Buttons ──────────────────────────────────────────── */
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 0.65em 1.8em;
  font-size: var(--text-xs);
}

.btn--disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}


/* ── Workshop Cards ───────────────────────────────────────── */
/* Offerings card wrapper */
.offerings-card {
  border: 1.5px solid var(--color-terracotta);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.offerings-interest {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.offerings-desc {
  text-align: center;
  max-width: 800px;
  margin: var(--space-md) auto 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.offerings-arrow {
  display: inline-block;
  font-size: 1.1em;
  margin-left: 0.2em;
  animation: bounce-down 1.5s ease infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.offerings-card .workshops-list {
  margin-top: var(--space-md);
}

.offerings-card .workshop-card {
  box-shadow: none;
  border: none;
}

.workshops-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.workshop-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.workshop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.workshop-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border-radius: var(--radius-md);
  line-height: 1;
}

.workshop-card__month {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workshop-card__day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}

.workshop-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.25rem;
}

.workshop-card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.workshop-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .workshop-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .workshop-card__date {
    flex-direction: row;
    gap: 0.4em;
    justify-self: center;
  }

  .workshop-card__action {
    justify-self: center;
  }
}


/* ── Contact Form ─────────────────────────────────────────── */
.contact-form {
  max-width: 620px;
  margin-top: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group--radios {
  border: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.75em 1em;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 113, 79, 0.15);
}

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

/* Radio buttons */
.form-radios {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  line-height: 1.5;
}

.form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio__indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-blush);
  border-radius: 50%;
  margin-top: 0.1em;
  position: relative;
  transition: border-color var(--transition-base);
}

.form-radio__indicator::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-terracotta);
  transform: scale(0);
  transition: transform var(--transition-base);
}

.form-radio input[type="radio"]:checked ~ .form-radio__indicator {
  border-color: var(--color-terracotta);
}

.form-radio input[type="radio"]:checked ~ .form-radio__indicator::after {
  transform: scale(1);
}

.form-radio input[type="radio"]:focus-visible ~ .form-radio__indicator {
  outline: 3px solid var(--color-blush);
  outline-offset: 2px;
}

.form-radio__text {
  padding-top: 0.05em;
}

/* Submit button */
.btn--submit {
  margin-top: var(--space-sm);
}

/* Success message */
.form-success {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(156, 175, 155, 0.15);
  border: 1px solid var(--color-sage);
  border-radius: var(--radius-md);
  color: var(--color-brown);
  font-size: var(--text-sm);
  line-height: 1.6;
}


/* ── 12. Footer ───────────────────────────────────────────── */
.footer {
  background-color: var(--color-brown);
  color: var(--color-cream);
  padding-block: var(--space-lg) var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-lg);
}

.footer__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blush);
  margin-bottom: 0.5rem;
  display: block;
}

.footer__col p,
.footer__col address {
  font-size: var(--text-sm);
  line-height: 1.75;
  font-style: normal;
  color: rgba(245, 239, 230, 0.8);
}

.footer__col a {
  color: rgba(245, 239, 230, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.footer__col a:hover { color: var(--color-blush); }

.footer__col--cta {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.footer__copy {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  font-size: var(--text-xs);
  color: rgba(245, 239, 230, 0.35);
}


/* ── 13. Scroll-Reveal Animation ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ── Mobile Adjustments ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Section divider descriptions - prevent overflow */
  .section-divider__desc {
    white-space: normal;
  }

  /* Hero buttons stack vertically */
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Reduce hero padding */
  .hero {
    padding-block: var(--space-xl) calc(var(--space-xl) + 60px);
  }

  /* Condense Upcoming Offerings section */
  .offerings-card {
    padding: var(--space-sm);
  }

  .offerings-card .section__title {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    margin-bottom: var(--space-xs);
  }

  .offerings-card .workshops-list {
    margin-top: var(--space-sm);
  }

  .workshop-card {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }

  .workshop-card__date {
    min-width: 50px;
    padding: var(--space-xs);
  }

  .workshop-card__day {
    font-size: var(--text-lg);
  }

  .workshop-card__title {
    font-size: var(--text-base);
    margin-bottom: 0.15rem;
  }

  .workshop-card__meta {
    font-size: var(--text-xs);
  }

  .workshop-card__location {
    font-size: 0.7rem;
  }

  .offerings-interest {
    font-size: var(--text-xs);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
  }

  .offerings-desc {
    font-size: var(--text-xs);
    margin-top: var(--space-sm);
  }

  /* Flow grid full width */
  .flow-grid {
    max-width: 100%;
  }

  /* Reduce section padding on mobile */
  .section {
    padding-block: var(--space-lg);
  }

  /* Section divider spacing */
  .section-divider {
    padding-top: var(--space-md);
  }

  .section-divider--flow {
    margin-top: -60px;
    padding-top: calc(60px + var(--space-md));
  }

  /* Condense "What is Reciprocal Massage" section */
  .intro__grid {
    gap: var(--space-md);
  }

  .intro__lead {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
  }

  .section__body {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .intro__img {
    max-width: 200px;
    margin-inline: auto;
  }

  .intro__image {
    align-items: center;
  }

  .definition-box {
    max-width: 200px;
    padding: var(--space-xs);
  }

  .definition-box__desc {
    font-size: var(--text-xs);
    line-height: 1.4;
  }

  .definition-box__link {
    font-size: var(--text-xs);
  }

  .pull-quote {
    margin: var(--space-sm) 0;
  }

  /* Pull quote smaller text */
  .pull-quote p {
    font-size: var(--text-base);
  }

  .pull-quote {
    margin: var(--space-sm) 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--space-sm);
  }

  .eyebrow {
    font-size: var(--text-xs);
    margin-bottom: var(--space-xs);
  }

  /* Hero circle padding tighter */
  .hero__circle {
    padding: 0.02em 0.4em;
  }

  /* Condense Come Prepared section */
  .bring-photo {
    max-width: 280px;
    margin-inline: auto;
  }

  .bring-photo__img {
    border-radius: var(--space-sm);
  }

  .bring-grid {
    gap: var(--space-sm);
    margin-top: var(--space-sm);
  }

  .bring-col__heading {
    font-size: var(--text-base);
    margin-bottom: 0.2em;
  }

  .bring-col p {
    font-size: var(--text-xs);
    line-height: 1.5;
  }

  .bring-list li {
    font-size: var(--text-xs);
    line-height: 1.4;
  }

  .bring-list {
    gap: 0.35rem;
  }

  .clothing-note {
    font-size: var(--text-xs);
    line-height: 1.5;
  }

  .flow-block--note {
    padding: var(--space-xs);
  }

  .flow-block--note .flow-block__body {
    font-size: var(--text-xs);
    line-height: 1.4;
  }

  /* Condense About Hope section */
  .bio-grid {
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .bio__photo {
    max-width: 200px;
    margin-inline: auto;
  }

  .bio__body {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
  }

  .bio__credits {
    font-size: var(--text-xs);
    line-height: 1.5;
    gap: 0.25rem;
  }

  .bio__links {
    gap: var(--space-xs);
  }

  .bio-link {
    font-size: var(--text-xs);
  }

  /* Compact step cards on mobile */
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }

  .card {
    padding: var(--space-sm);
  }

  .card__number {
    font-size: var(--text-lg);
    margin-bottom: 0.25em;
  }

  .card__title {
    font-size: var(--text-base);
    margin-bottom: 0.2em;
  }

  .card__body {
    font-size: var(--text-xs);
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  /* Even tighter on small phones */
  .hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__subtitle {
    font-size: var(--text-sm);
  }

  .btn {
    padding: 0.75em 1.8em;
    font-size: var(--text-xs);
  }

}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn, .card {
    transition: none;
  }
}
