/* The Daily Wellness Flow — soft clay / 3D depth (CSS-only) */

:root {
  --olive: #3D4A2E;
  --olive-deep: #2A3420;
  --olive-mid: #4A5A38;
  --olive-soft: #5A6B45;
  --paper: #F3EDE3;
  --paper-warm: #E8DFD0;
  --paper-deep: #DDD3C2;
  --ink: #1A1A1A;
  --ink-muted: #4A4A4A;
  --ember: #C46B4A;
  --ember-hover: #A85738;
  --ember-glow: rgba(196, 107, 74, 0.28);
  --ember-soft: rgba(196, 107, 74, 0.12);
  --olive-wash: rgba(61, 74, 46, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  /* Soft clay / 3D depth (CSS-only — no WebGL) */
  --shadow: 0 10px 28px rgba(42, 52, 32, 0.08), 0 2px 6px rgba(26, 26, 26, 0.04);
  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 -1px 0 rgba(61, 74, 46, 0.04) inset,
    0 8px 20px rgba(61, 74, 46, 0.08),
    0 2px 6px rgba(42, 52, 32, 0.05);
  --shadow-lift:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 -1px 0 rgba(61, 74, 46, 0.05) inset,
    0 18px 36px rgba(61, 74, 46, 0.14),
    0 6px 12px rgba(42, 52, 32, 0.08);
  --shadow-press:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 2px 6px rgba(154, 79, 52, 0.28);
  --clay-face: linear-gradient(165deg, #FFFEFB 0%, #F7F1E8 48%, #EFE6D8 100%);
  --clay-inset: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -2px 6px rgba(61, 74, 46, 0.05);
  --max: 680px;
  --tap: 48px;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-serif: "Georgia", "Times New Roman", "Palatino Linotype", "Book Antiqua", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -10%, rgba(196, 107, 74, 0.09), transparent 45%),
    radial-gradient(ellipse 90% 60% at -5% 40%, rgba(61, 74, 46, 0.07), transparent 42%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 28%, var(--paper) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper grain — CSS-only texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

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

a {
  color: var(--ember);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ember-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

/* —— Layout —— */

.wrap {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2.25rem, 960px);
  margin-inline: auto;
}

/* —— Header —— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 237, 227, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(61, 74, 46, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 8px 24px rgba(61, 74, 46, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--tap);
  padding-block: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  color: var(--olive);
  text-decoration: none;
  line-height: 1.25;
  min-height: 40px;
}

.logo:hover {
  color: var(--olive-deep);
}

.logo__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 4px 10px rgba(61, 74, 46, 0.12),
    0 1px 3px rgba(42, 52, 32, 0.08);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.logo:hover .logo__mark {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 6px 14px rgba(61, 74, 46, 0.16),
    0 2px 4px rgba(42, 52, 32, 0.1);
}

.logo__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo span {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(61, 74, 46, 0.1);
  border-radius: 14px;
  background: var(--clay-face);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  color: var(--olive);
  transition: background 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.12s var(--ease);
}

.nav-toggle:hover {
  background: linear-gradient(165deg, #FFFEFB 0%, #F3EDE3 100%);
  box-shadow: var(--shadow-lift);
}

.nav-toggle:active {
  transform: translateY(1px);
  box-shadow: var(--clay-inset), 0 2px 6px rgba(61, 74, 46, 0.08);
}

.nav-toggle__bars {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.35rem 0 1rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 0.9rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: linear-gradient(165deg, #FFFEFB, rgba(196, 107, 74, 0.12));
  color: var(--ember);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 3px 8px rgba(196, 107, 74, 0.12);
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0 0.95rem;
    font-size: 0.94rem;
  }
}

/* —— Hero —— */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 3.75rem;
  isolation: isolate;
}

@media (min-width: 720px) {
  .hero {
    padding: 5.5rem 0 4.5rem;
  }
}

.hero__glow {
  position: absolute;
  inset: -35% -20% auto;
  height: 95%;
  background:
    radial-gradient(ellipse 50% 48% at 82% 12%, rgba(196, 107, 74, 0.38), transparent 60%),
    radial-gradient(ellipse 42% 46% at 10% 58%, rgba(61, 74, 46, 0.26), transparent 58%),
    radial-gradient(ellipse 35% 40% at 55% 85%, rgba(243, 237, 227, 0.95), transparent 62%),
    radial-gradient(ellipse 28% 32% at 40% 20%, rgba(255, 255, 255, 0.45), transparent 55%),
    linear-gradient(185deg, var(--paper-warm) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__shape--1 {
  width: min(300px, 58vw);
  height: min(300px, 58vw);
  right: -70px;
  top: 10px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 254, 251, 0.65), transparent 48%),
    radial-gradient(circle at 70% 75%, rgba(196, 107, 74, 0.2), transparent 55%),
    linear-gradient(145deg, rgba(61, 74, 46, 0.32), rgba(196, 107, 74, 0.24));
  filter: blur(2px);
  box-shadow:
    inset 0 0 50px rgba(255, 254, 251, 0.28),
    0 24px 48px rgba(61, 74, 46, 0.12);
  opacity: 0.95;
}

.hero__shape--2 {
  width: 120px;
  height: 120px;
  left: 5%;
  bottom: 6%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(200deg, rgba(196, 107, 74, 0.42), rgba(196, 107, 74, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(196, 107, 74, 0.18);
  opacity: 0.92;
}

.hero__shape--3 {
  width: 52px;
  height: 52px;
  right: 22%;
  bottom: 16%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    rgba(61, 74, 46, 0.2);
  border: 1px solid rgba(61, 74, 46, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 18px rgba(61, 74, 46, 0.12);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--clay-face);
  border: 1px solid rgba(61, 74, 46, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-soft);
  flex-shrink: 0;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 9vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--olive-deep);
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 400;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 38ch;
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__actions--center {
  justify-content: center;
}

/* —— Buttons —— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--tap);
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    transform 0.12s var(--ease);
  will-change: transform;
}

.btn:active {
  transform: translateY(2px) scale(0.985);
}

.btn--primary {
  background: linear-gradient(180deg, #d88a68 0%, #d07855 42%, var(--ember) 100%);
  color: #fff;
  border-color: rgba(154, 79, 52, 0.35);
  border-bottom-color: rgba(122, 58, 36, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 0 rgba(122, 58, 36, 0.18) inset,
    0 8px 0 rgba(154, 79, 52, 0.22),
    0 12px 24px var(--ember-glow);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #d07855 0%, var(--ember) 55%, var(--ember-hover) 100%);
  border-color: rgba(154, 79, 52, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(122, 58, 36, 0.2) inset,
    0 10px 0 rgba(154, 79, 52, 0.2),
    0 16px 28px rgba(196, 107, 74, 0.4);
}

.btn--primary:active {
  transform: translateY(3px) scale(0.985);
  box-shadow: var(--shadow-press);
}

.btn--ghost {
  background: var(--clay-face);
  color: var(--olive);
  border-color: rgba(61, 74, 46, 0.22);
  border-bottom-color: rgba(61, 74, 46, 0.32);
  backdrop-filter: blur(4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 5px 0 rgba(61, 74, 46, 0.08),
    0 8px 16px rgba(61, 74, 46, 0.08);
}

.btn--ghost:hover {
  background: linear-gradient(165deg, #FFFEFB 0%, #F3EDE3 100%);
  border-color: rgba(61, 74, 46, 0.4);
  color: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 7px 0 rgba(61, 74, 46, 0.1),
    0 12px 22px rgba(61, 74, 46, 0.12);
}

.btn--ghost:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: var(--clay-inset), 0 2px 6px rgba(61, 74, 46, 0.1);
}

.btn--block {
  width: 100%;
}

.btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

/* —— Sections —— */

.section {
  padding: 3.25rem 0;
}

@media (min-width: 720px) {
  .section {
    padding: 3.75rem 0;
  }
}

.section--tight-top {
  padding-top: 0.25rem;
}

.section--muted {
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(61, 74, 46, 0.045) 35%, rgba(61, 74, 46, 0.045) 65%, transparent 100%);
}

.section__head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--olive-deep);
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

/* —— Door cards —— */

.doors {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .doors {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.door {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--clay-face);
  border: 1px solid rgba(61, 74, 46, 0.12);
  border-bottom-color: rgba(61, 74, 46, 0.18);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -3px 8px rgba(61, 74, 46, 0.04) inset,
    0 10px 0 rgba(61, 74, 46, 0.06),
    0 14px 28px rgba(61, 74, 46, 0.1),
    0 4px 10px rgba(42, 52, 32, 0.05);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
  will-change: transform;
}

.door::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--door-accent, var(--ember)), rgba(255, 255, 255, 0.55));
  opacity: 0.9;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.door::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 255, 255, 0.45), transparent 55%);
  opacity: 0.7;
}

.door:hover {
  transform: translateY(-7px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -3px 8px rgba(61, 74, 46, 0.04) inset,
    0 14px 0 rgba(61, 74, 46, 0.07),
    0 22px 40px rgba(61, 74, 46, 0.14),
    0 8px 16px rgba(42, 52, 32, 0.08);
  border-color: rgba(61, 74, 46, 0.2);
  color: inherit;
}

.door:active {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 0 rgba(61, 74, 46, 0.06),
    0 8px 16px rgba(61, 74, 46, 0.1);
}

.door:focus-visible {
  outline-offset: 4px;
}

.door__orb {
  position: absolute;
  z-index: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -36px;
  right: -30px;
  opacity: 0.7;
  pointer-events: none;
  filter: blur(0.5px);
}

.door--morning {
  --door-accent: var(--ember);
}

.door--morning .door__orb {
  background: radial-gradient(circle, rgba(196, 107, 74, 0.4), transparent 68%);
}

.door--midday {
  --door-accent: var(--olive-soft);
}

.door--midday .door__orb {
  background: radial-gradient(circle, rgba(61, 74, 46, 0.35), transparent 68%);
}

.door--sleep {
  --door-accent: var(--olive-deep);
}

.door--sleep .door__orb {
  background: radial-gradient(circle, rgba(42, 52, 32, 0.45), transparent 68%);
}

.door__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--olive);
  background: linear-gradient(160deg, #FFFEFB, rgba(61, 74, 46, 0.1));
  border: 1px solid rgba(61, 74, 46, 0.12);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 10px rgba(61, 74, 46, 0.1);
}

.door--morning .door__icon {
  color: var(--ember);
  background: var(--ember-soft);
  border-color: rgba(196, 107, 74, 0.15);
}

.door__label {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}

.door--midday .door__label,
.door--sleep .door__label {
  color: var(--olive-soft);
}

.door--sleep .door__label {
  color: var(--olive);
}

.door h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
}

.door p {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  flex: 1;
}

.door__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.35rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--olive);
  transition: color 0.15s var(--ease), gap 0.15s var(--ease);
}

.door__cta::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}

.door:hover .door__cta {
  color: var(--ember);
  gap: 0.5rem;
}

.door:hover .door__cta::after {
  transform: translateX(3px);
}

/* —— Weekly short —— */

.short-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  background:
    radial-gradient(ellipse 55% 70% at 15% 0%, rgba(255, 255, 255, 0.14), transparent 45%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(196, 107, 74, 0.3), transparent 50%),
    linear-gradient(145deg, var(--olive-mid) 0%, var(--olive) 45%, var(--olive-deep) 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 0 rgba(26, 34, 18, 0.25),
    0 20px 40px rgba(26, 26, 26, 0.18);
  border: 1px solid rgba(42, 52, 32, 0.45);
}

.short-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 107, 74, 0.4), transparent 65%);
  pointer-events: none;
}

.short-card__visual {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  width: min(100%, 168px);
  margin: 0 auto;
  background:
    linear-gradient(160deg, rgba(243, 237, 227, 0.14), transparent),
    linear-gradient(45deg, var(--olive-deep), var(--olive-soft));
  border-radius: 14px;
  border: 1.5px dashed rgba(243, 237, 227, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(243, 237, 227, 0.78);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 560px) {
  .short-card {
    grid-template-columns: 168px 1fr;
    align-items: center;
    padding: 1.85rem 2rem;
  }

  .short-card__visual {
    margin: 0;
  }
}

.short-card h3 {
  position: relative;
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

.short-card p {
  position: relative;
  margin: 0 0 1.15rem;
  opacity: 0.9;
  font-size: 0.97rem;
  line-height: 1.55;
}

.short-card .btn--ghost {
  position: relative;
  color: var(--paper);
  border-color: rgba(243, 237, 227, 0.45);
  background: rgba(243, 237, 227, 0.06);
}

.short-card .btn--ghost:hover {
  background: rgba(243, 237, 227, 0.14);
  color: #fff;
  border-color: rgba(243, 237, 227, 0.65);
}

/* —— Email form —— */

.soft-ask {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--clay-face);
  border: 1px solid rgba(61, 74, 46, 0.12);
  border-bottom-color: rgba(61, 74, 46, 0.18);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -2px 8px rgba(61, 74, 46, 0.04) inset,
    0 10px 0 rgba(61, 74, 46, 0.05),
    0 16px 32px rgba(61, 74, 46, 0.1);
  overflow: hidden;
}

.soft-ask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ember), var(--olive));
  border-radius: 4px 0 0 4px;
}

@media (min-width: 560px) {
  .soft-ask {
    padding: 2.25rem 2.15rem 2.25rem 2.35rem;
  }
}

.soft-ask h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 3vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--olive-deep);
}

.soft-ask > p {
  margin: 0 0 1.4rem;
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 42ch;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .form-row {
    flex-direction: row;
    align-items: flex-end;
  }

  .form-row .btn {
    flex-shrink: 0;
  }
}

.field {
  flex: 1;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--olive);
}

.field input[type="email"] {
  width: 100%;
  min-height: var(--tap);
  padding: 0.7rem 1.15rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: linear-gradient(180deg, #F7F1E8 0%, #F3EDE3 100%);
  border: 1.5px solid rgba(61, 74, 46, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 2px 6px rgba(61, 74, 46, 0.06), 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field input[type="email"]:hover {
  border-color: rgba(61, 74, 46, 0.35);
}

.field input[type="email"]:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-soft);
  outline: none;
}

.field input[type="email"]::placeholder {
  color: #8a8a8a;
}

.form-note {
  margin: 0.95rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-status[data-state="ok"] {
  color: var(--olive);
}

.form-status[data-state="err"] {
  color: var(--ember);
}

/* —— Practice pages —— */

.practice-hero {
  position: relative;
  padding: 2.75rem 0 1.75rem;
  overflow: hidden;
}

.practice-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 95% 0%, rgba(196, 107, 74, 0.18), transparent 52%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(61, 74, 46, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper-warm), transparent);
  pointer-events: none;
}

.practice-hero .wrap {
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  margin-bottom: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  transition: color 0.15s var(--ease), gap 0.15s var(--ease);
}

.back-link:hover {
  color: var(--ember);
  gap: 0.5rem;
}

.practice-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--olive-deep);
  line-height: 1.15;
}

.practice-hero .lede {
  margin: 0;
  max-width: 44ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 1.45rem 1.35rem 1.45rem 4.5rem;
  background: var(--clay-face);
  border: 1px solid rgba(61, 74, 46, 0.1);
  border-bottom-color: rgba(61, 74, 46, 0.16);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 -2px 6px rgba(61, 74, 46, 0.04) inset,
    0 8px 0 rgba(61, 74, 46, 0.05),
    0 12px 24px rgba(61, 74, 46, 0.09);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 0 rgba(61, 74, 46, 0.06),
    0 18px 32px rgba(61, 74, 46, 0.12);
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #6A7B52, var(--olive), var(--olive-deep));
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 5px 0 rgba(42, 52, 32, 0.2),
    0 8px 16px rgba(61, 74, 46, 0.28);
}

.step h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--olive-deep);
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.boundary {
  margin: 2.25rem 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(196, 107, 74, 0.14), rgba(196, 107, 74, 0.08));
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 4px 14px rgba(196, 107, 74, 0.08);
}

.boundary strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--olive-deep);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.boundary p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.video-slot {
  margin: 2.25rem 0;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse 45% 50% at 20% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(196, 107, 74, 0.28), transparent 55%),
    linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 52, 32, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 0 rgba(26, 34, 18, 0.22),
    0 18px 36px rgba(26, 26, 26, 0.16);
}

.video-slot::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 107, 74, 0.32), transparent 70%);
  pointer-events: none;
}

.video-slot__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 200px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(243, 237, 227, 0.4);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.85rem;
  color: rgba(243, 237, 227, 0.72);
  padding: 1rem;
}

.video-slot h2 {
  position: relative;
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.video-slot p {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.88;
  max-width: 36ch;
  margin-inline: auto;
}

.practice-footer-cta {
  margin: 2.75rem 0 1rem;
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--clay-face);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 74, 46, 0.1);
  box-shadow: var(--shadow-card);
}

.practice-footer-cta p {
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* —— Privacy —— */

.prose {
  padding: 2.5rem 0 3.25rem;
}

.prose h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
}

.prose h2 {
  margin: 1.85rem 0 0.55rem;
  font-size: 1.12rem;
  color: var(--olive);
  letter-spacing: -0.01em;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  line-height: 1.65;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose__meta {
  margin-top: 2.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* —— Footer —— */

.site-footer {
  margin-top: 2.5rem;
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid rgba(61, 74, 46, 0.12);
  background:
    linear-gradient(180deg, transparent, rgba(61, 74, 46, 0.055));
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
}

.site-footer a {
  color: var(--olive);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s var(--ease);
}

.site-footer a:hover,
.site-footer a[aria-current="page"] {
  color: var(--ember);
}

@media (min-width: 600px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* —— Utility —— */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .door,
  .door__cta,
  .door__cta::after,
  .back-link,
  .step,
  .logo__mark,
  .nav-toggle {
    transition: none;
  }

  .door:hover,
  .door:active,
  .btn:hover,
  .btn:active,
  .btn--primary:hover,
  .btn--ghost:hover,
  .step:hover,
  .logo:hover .logo__mark {
    transform: none;
  }
}
