/* ============================================================
   MÍA ERA  ·  theme.css  (v2 design, 2026-09-17)
   Layout language: the "Anna" Squarespace 7.1 coaching template
   (oversized uppercase serif, italic lowercase words inside headings,
   Montserrat body, pill buttons, sticker ovals, marquee, bold color
   blocks, scattered cards, numbered blog list, giant footer name).
   Type: Instrument Serif + Montserrat, same faces as the template.
   Color: Mía Era palette swapped in for the template's yellow/blue.
   Legacy pages that still need the dark system load styles.css instead.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* ---------- Tokens ---------- */
:root {
  /* ground + ink */
  --ground:   #F4EDE1;   /* page background, a hair lighter than brand cream */
  --cream:    #EFE6D6;   /* brand cream: cards, inputs, text on dark */
  --white:    #FFFCF6;   /* card face on the rose block */
  --ink:      #231F20;   /* brand charcoal */
  --ink-soft: rgba(35, 31, 32, .74);
  --line:     rgba(35, 31, 32, .18);
  /* pulse */
  --papaya:      #BD6809;
  --papaya-text: #D07A16;   /* papaya for text on dark ground (4.5:1+) */
  --papaya-deep: #9E4E06;
  --merlot:      #6E1423;
  /* breath */
  --rose:   #C8A099;
  --gold:   #AB8552;
  /* ground blocks */
  --peacock: #14403F;
  --emerald: #0E6E52;
  --palm:    #2F4731;
  /* legacy aliases used by inline styles on older pages */
  --vervain: #121B13; --teal: #1F4A54; --oxblood: #3D1419; --paradise: #9A3F4A;
  --err-text: #8E1F2B; --charcoal: #231F20;

  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans:  "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --wrap: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.6; letter-spacing: -.01em;
  color: var(--ink); background: var(--ground);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--papaya); color: var(--cream); }

/* ---------- Type ---------- */
h1, h2, h3, h4, .serif {
  font-family: var(--serif); font-weight: 400;
  text-transform: uppercase; letter-spacing: -.03em; line-height: 1.05;
}
/* the template's signature: a lowercase italic word inside an uppercase line */
h1 em, h2 em, h3 em, h4 em, .serif em, .marquee em {
  font-style: italic; text-transform: none; letter-spacing: -.02em;
}
.h-xl { font-size: clamp(38px, 5.6vw, 76px); }
.h-lg { font-size: clamp(32px, 4.4vw, 58px); }
.h-md { font-size: clamp(26px, 3.2vw, 40px); }
.h-sm { font-size: clamp(22px, 2.4vw, 30px); }
.lead { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; }
.kicker, .eyebrow, .read__meta, .post__eyebrow, .legal__updated {
  font-family: var(--sans); font-weight: 600;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--papaya-deep);
}
.kicker--center { display: block; text-align: center; }
.kicker--light, .t-bold .kicker, .t-dark .kicker { color: var(--papaya-text); }
p + p { margin-top: 1em; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }

.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;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--ground); padding: 12px 18px;
  text-decoration: none; letter-spacing: .04em;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--papaya); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 300px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn--papaya { background: var(--papaya); color: var(--cream); }
.btn--papaya:hover { background: var(--merlot); }
.btn--ink { background: var(--ink); color: var(--ground); }
.btn--ink:hover { background: var(--papaya); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--papaya); color: var(--cream); }
.btn--outline { border-color: currentColor; background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--ground); border-color: var(--ink); }
.t-bold .btn--outline:hover, .t-dark .btn--outline:hover {
  background: var(--cream); color: var(--peacock); border-color: var(--cream);
}
.btn--sm { padding: 12px 20px; font-size: 11px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--gutter);
  background: rgba(244, 237, 225, .86); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 34px); }
.nav__links a {
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; transition: color .2s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--papaya-deep); }
.nav__cta {
  background: var(--ink); color: var(--ground) !important;
  padding: 11px 20px; border-radius: 300px; font-weight: 600;
}
.nav__cta:hover { background: var(--papaya); color: var(--cream) !important; }
.nav__toggle {
  display: none; font: 600 11.5px/1 var(--sans); letter-spacing: .14em;
  text-transform: uppercase; background: none; border: 1.5px solid var(--ink);
  border-radius: 300px; padding: 10px 16px; color: var(--ink); cursor: pointer;
}
@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }
  .nav__toggle { display: inline-block; margin-left: auto; }
  .nav__links {
    display: none; flex-basis: 100%; flex-direction: column; align-items: flex-start;
    gap: 16px; padding: 18px 0 8px; border-top: 1px solid var(--line); margin-top: 12px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: 13px; }
}

/* ---------- Sections ---------- */
.sec { padding: clamp(64px, 9vw, 120px) var(--gutter); }
.sec--tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 860px; margin: 0 auto; }
.t-light { background: var(--ground); color: var(--ink); }
.t-cream { background: var(--cream); color: var(--ink); }
.t-bright { background: var(--rose); color: var(--ink); }
.t-bold { background: var(--peacock); color: var(--cream); }
.t-dark { background: var(--ink); color: var(--cream); }
.t-bold h1, .t-bold h2, .t-bold h3, .t-dark h2, .t-dark h3 { color: var(--papaya-text); }
.t-bold .h-on-cream, .t-dark .h-on-cream { color: var(--cream); }
.t-bold a, .t-dark a { color: inherit; }

/* two-column story block (image + copy) */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split--rev > :first-child { order: 2; }
.split > * { min-width: 0; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
}
.split__copy h2 { margin-bottom: 22px; }
.split__copy p { max-width: 54ch; }
.split__copy .btn { margin-top: 30px; }

/* framed photo, the template's polaroid feel */
.frame {
  position: relative; background: var(--white); padding: 12px;
  box-shadow: 0 24px 60px -30px rgba(35, 31, 32, .45);
}
.frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.frame--land img { aspect-ratio: 5 / 4; }
.frame--sq img { aspect-ratio: 1; }

/* sticker oval */
.sticker {
  position: absolute; z-index: 3; display: inline-block;
  font-family: var(--serif); font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
  padding: 18px 34px; border-radius: 50%;
  background: var(--peacock); color: var(--cream);
  transform: rotate(-12deg); pointer-events: none;
}
.sticker--papaya { background: var(--papaya); color: var(--cream); }
.sticker--rose { background: var(--rose); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 56px) var(--gutter) 0; }
.hero__name {
  display: block; text-align: center; white-space: nowrap;
  font-size: clamp(72px, 18.4vw, 300px); line-height: .86;
  color: var(--papaya); letter-spacing: -.045em;
  margin: 0 calc(var(--gutter) * -1); position: relative; z-index: 1;
  user-select: none;
}
.hero__stage {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 540px) minmax(0, 1fr);
  gap: 0 clamp(16px, 3vw, 48px); margin-top: clamp(-90px, -4.2vw, -24px);
}
.hero__img { grid-column: 2; align-self: end; width: 100%; }
.hero__img img { width: 100%; height: auto; display: block; }
.hero__copy { grid-column: 1; align-self: end; padding-bottom: clamp(24px, 4vw, 56px); max-width: 34ch; }
.hero__copy p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.5; margin-bottom: 24px; }
.hero__side { grid-column: 3; align-self: start; margin-top: clamp(12px, 3.5vw, 64px); display: flex; flex-direction: column; align-items: flex-end; width: 100%; }
.hero__title { text-align: right; font-size: clamp(30px, 3.9vw, 56px); color: var(--ink); }
.hero__form { margin-top: 24px; justify-content: flex-end; width: 100%; max-width: 420px; }
.hero__form input[type="email"] { flex: 1 1 100%; text-align: center; }
.hero__form button { flex: 1 1 100%; }
.hero__form .signup__msg { text-align: right; }
.hero__fine { margin-top: 10px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); text-align: right; }
.hero .sticker { top: clamp(60px, 9vw, 150px); left: clamp(8px, 6vw, 110px); }
@media (max-width: 820px) {
  .hero { padding-top: 8px; }
  .hero__name { font-size: 19vw; }
  .hero__stage { grid-template-columns: 1fr; margin-top: -2vw; }
  .hero__img { grid-column: 1; width: min(78%, 420px); margin: 0 auto; }
  .hero__side { grid-column: 1; align-items: flex-start; margin-top: 28px; order: 2; }
  .hero__title { text-align: left; }
  .hero__form { justify-content: flex-start; max-width: none; }
  .hero__form .signup__msg, .hero__fine { text-align: left; }
  .hero__copy { grid-column: 1; order: 3; padding: 20px 0 48px; max-width: none; }
  .hero .sticker { top: 18vw; left: 4px; padding: 14px 24px; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: clamp(10px, 1.6vw, 22px) 0;
}
.marquee__track { display: inline-block; will-change: transform; animation: marquee 26s linear infinite; }
.marquee__track span {
  display: inline-block; padding-right: .35em;
  font-family: var(--serif); text-transform: uppercase; letter-spacing: -.03em;
  font-size: clamp(56px, 9.6vw, 150px); line-height: 1; color: var(--ink);
}
.marquee__track span i { font-style: normal; color: var(--papaya); padding: 0 .12em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Programs (bold block, three cards) ---------- */
.progs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 900px) { .progs { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.prog { display: flex; flex-direction: column; }
.prog__img { position: relative; overflow: hidden; background: var(--palm); }
.prog__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s var(--ease); }
.prog:hover .prog__img img { transform: scale(1.03); }
.prog__tag {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--serif); text-transform: uppercase; letter-spacing: .02em;
  font-size: 14px; padding: 8px 14px; background: var(--cream); color: var(--ink);
}
.prog h3 { font-size: clamp(26px, 2.6vw, 34px); margin: 22px 0 10px; }
.prog p { color: rgba(239, 230, 214, .84); font-size: 15px; max-width: 40ch; }
.prog .btn { margin-top: auto; align-self: flex-start; margin-top: 22px; }

/* ---------- Words (bright block, scattered cards) ---------- */
.words__head { text-align: center; max-width: 30ch; margin: 0 auto clamp(36px, 6vw, 72px); }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1080px; margin: 0 auto;
}
.card {
  background: var(--white); padding: 30px 28px 26px; text-decoration: none; color: var(--ink);
  box-shadow: 0 18px 40px -26px rgba(35, 31, 32, .5);
  display: flex; flex-direction: column; min-height: 210px;
}
.card__n { font-family: var(--serif); font-size: 15px; letter-spacing: .1em; color: var(--papaya-deep); }
.card__w { font-size: clamp(30px, 2.8vw, 38px); margin: 14px 0 6px; }
.card__w em { color: var(--merlot); }
.card__t { font-size: 14.5px; color: var(--ink-soft); margin-top: auto; }
.card--cta { background: var(--ink); color: var(--cream); }
.card--cta .card__n, .card--cta .card__w em { color: var(--papaya-text); }
.card--cta .card__t { color: rgba(239, 230, 214, .8); }
.card--cta .btn { margin-top: 18px; align-self: flex-start; }
@media (min-width: 901px) {
  .cards > :nth-child(2) { transform: translateY(44px) rotate(1.2deg); }
  .cards > :nth-child(3) { transform: translateY(-14px) rotate(-1.4deg); }
  .cards > :nth-child(4) { transform: translateY(10px) rotate(-.8deg); }
  .cards > :nth-child(5) { transform: translateY(50px) rotate(1.6deg); }
  .cards > :nth-child(6) { transform: translateY(-8px) rotate(-1deg); }
  .cards > :nth-child(7) { transform: translateY(26px) rotate(.9deg); }
  .cards { padding-bottom: 50px; }
}
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Reads: numbered list (template blog) ---------- */
.reads { max-width: var(--wrap); margin: 0 auto; }
.reads__head { text-align: center; margin-bottom: clamp(30px, 5vw, 56px); }
.reads__title { font-size: clamp(36px, 5.6vw, 76px); margin-bottom: 14px; }
.reads__sub { max-width: 52ch; margin: 0 auto; color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px); }
.reads__grid { counter-reset: read; display: grid; grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; }
.read {
  counter-increment: read; position: relative;
  display: grid; grid-template-columns: 90px 1fr; gap: 0 28px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .2s var(--ease);
}
.reads__grid > .read:last-child { border-bottom: 1px solid var(--line); }
.read::before {
  content: counter(read, decimal-leading-zero) "."; grid-row: 1 / span 4;
  font-family: var(--serif); font-size: clamp(38px, 4.6vw, 64px); line-height: .9;
  color: var(--papaya); letter-spacing: -.03em;
}
.read__meta { margin-bottom: 8px; }
.read__title { font-size: clamp(24px, 3vw, 40px); margin-bottom: 8px; }
.read__dek { color: var(--ink-soft); max-width: 62ch; font-size: 15.5px; }
.read__go {
  margin-top: 14px; font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1.5px solid var(--papaya); align-self: start; justify-self: start;
}
.read:hover .read__title, .read:focus-visible .read__title { color: var(--merlot); }
.reads__more { text-align: center; margin-top: clamp(30px, 5vw, 56px); }
@media (max-width: 560px) {
  .read { grid-template-columns: 1fr; }
  .read::before { grid-row: auto; margin-bottom: 8px; }
}

/* ---------- Meet ---------- */
.meet__fig {
  position: relative; background: var(--rose); border-radius: 300px 300px 0 0;
  padding: 40px 24px 0; overflow: hidden; display: flex; align-items: flex-end; justify-content: center;
  min-height: 420px;
}
.meet__fig img { width: auto; max-width: 100%; max-height: 640px; height: auto; }
.meet__fig .sticker { right: 34px; top: 64px; left: auto; }
.meet__fig--wide img { max-width: 520px; max-height: none; }
.meet__hi { margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; border-top: 1px solid var(--line); padding-top: 24px; }
.stat__n { font-family: var(--serif); font-size: clamp(30px, 3.2vw, 44px); line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.stat__l { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; line-height: 1.4; }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Join (bold block with the guide form) ---------- */
.join { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.join__fig { align-self: end; }
.join__fig img { width: min(100%, 440px); margin: 0 auto; }
.join__copy { padding-bottom: clamp(0px, 3vw, 40px); }
.join__copy h2 { margin: 14px 0 18px; font-size: clamp(40px, 5.4vw, 74px); }
.join__copy .lead { color: rgba(239, 230, 214, .88); max-width: 48ch; margin-bottom: 30px; }
@media (max-width: 820px) {
  .join { grid-template-columns: 1fr; }
  .join__fig { order: 2; margin-top: 30px; }
}

/* signup form: same ids/classes main.js expects */
.signup { display: flex; flex-wrap: wrap; gap: 12px; max-width: 560px; }
.signup input[type="email"] {
  flex: 1 1 240px; font-family: var(--sans); font-size: 16px;
  padding: 16px 22px; color: var(--ink); background: var(--cream);
  border: 1.5px solid transparent; border-radius: 300px; outline: none;
  transition: border-color .2s var(--ease);
}
.signup input::placeholder { color: rgba(35, 31, 32, .55); }
.signup input:focus { border-color: var(--papaya); }
.signup button {
  font-family: var(--sans); font-weight: 600; font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; white-space: nowrap; padding: 16px 28px; cursor: pointer;
  color: var(--cream); background: var(--papaya); border: none; border-radius: 300px;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.signup button:hover { background: var(--merlot); transform: translateY(-1px); }
.signup button:disabled { opacity: .6; cursor: wait; }
.signup__msg { flex-basis: 100%; font-size: 14px; min-height: 1.2em; }
.signup__msg.is-ok { color: var(--cream); }
.signup__msg.is-err { color: #F0B3AD; }
.t-light .signup__msg.is-ok, .t-bright .signup__msg.is-ok { color: var(--ink); }
.t-light .signup__msg.is-err, .t-bright .signup__msg.is-err { color: var(--merlot); }
.t-light .signup input[type="email"], .t-bright .signup input[type="email"] { background: var(--white); border-color: var(--line); }
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}
.guide-dl {
  flex-basis: 100%; display: block; margin-top: 4px; padding: 15px 22px; border-radius: 300px;
  background: var(--cream); color: var(--ink); font-weight: 600; text-align: center;
  text-decoration: none; letter-spacing: .08em; text-transform: uppercase; font-size: 12.5px;
}
.guide-dl:hover, .guide-dl:focus { background: var(--papaya); color: var(--cream); }
.reassure { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 13.5px; line-height: 1.5; color: rgba(239, 230, 214, .82); max-width: 52ch; }
.reassure svg { flex: 0 0 auto; margin-top: 2px; }
.reassure b { color: var(--cream); font-weight: 600; }
.t-light .reassure, .t-bright .reassure { color: var(--ink-soft); }
.t-light .reassure b, .t-bright .reassure b { color: var(--ink); }
.proofline { margin-top: 22px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: rgba(239, 230, 214, .7); }
.proofline b { color: var(--papaya-text); font-weight: 600; }

/* ---------- Closer ---------- */
.closer { text-align: center; }
.closer__title { font-size: clamp(40px, 7vw, 96px); max-width: 14ch; margin: 0 auto 18px; }
.closer__sub { max-width: 46ch; margin: 0 auto 32px; font-size: clamp(16px, 1.6vw, 19px); }

/* ---------- Footer ---------- */
.foot { background: var(--peacock); color: var(--cream); padding: clamp(48px, 7vw, 96px) var(--gutter) 40px; }
.foot__name {
  display: block; text-align: center; white-space: nowrap; font-family: var(--serif);
  text-transform: uppercase; letter-spacing: -.045em; line-height: .86;
  font-size: clamp(64px, 18vw, 290px); color: var(--cream); margin: 0 calc(var(--gutter) * -1) clamp(36px, 5vw, 72px);
  user-select: none;
}
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; max-width: var(--wrap); margin: 0 auto; }
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h4 { font-size: 22px; color: var(--papaya-text); margin-bottom: 14px; }
.foot ul { list-style: none; }
.foot li { margin-bottom: 8px; font-size: 14px; }
.foot a { color: var(--cream); text-decoration: none; }
.foot a:hover { color: var(--papaya-text); }
.foot__brand { font-family: var(--sans); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 14px; margin-bottom: 12px; }
.foot__line { font-size: 14px; color: rgba(239, 230, 214, .82); margin-bottom: 6px; }
.foot__line a { color: var(--cream); text-decoration: none; }
.foot__legal { margin-top: 10px; font-size: 12px; letter-spacing: .04em; color: rgba(239, 230, 214, .8); }
.foot__legal a { margin-right: 10px; }
.foot__disclaimer {
  font-size: 11.5px; line-height: 1.6; color: rgba(239, 230, 214, .7);
  max-width: 64ch; margin: 18px auto 0;
}
.foot__bottom { max-width: var(--wrap); margin: clamp(36px, 5vw, 60px) auto 0; padding-top: 22px; border-top: 1px solid rgba(239, 230, 214, .18); text-align: center; }
.foot__social { display: flex; gap: 14px; flex-wrap: wrap; }
.foot__social a { display: inline-block; border: 1px solid rgba(239, 230, 214, .4); border-radius: 300px; padding: 8px 14px; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; }
.foot__social a:hover { background: var(--cream); color: var(--peacock); }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(56px, 9vw, 96px) var(--gutter) clamp(64px, 10vw, 110px); }
.legal__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.legal__title { font-size: clamp(40px, 7vw, 84px); }
.legal__updated { margin-top: 16px; }
.legal__body { font-size: 16px; line-height: 1.72; }
.legal__body h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 44px 0 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.legal__body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal__body p { margin: 0 0 16px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin-bottom: 8px; }
.legal__body strong { color: var(--merlot); font-weight: 600; }
.legal__body a { color: var(--papaya-deep); }
.legal__body .lede { font-size: 18px; padding-left: 18px; border-left: 2px solid var(--papaya); margin-bottom: 30px; }
.legal__accept { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-style: italic; color: var(--ink-soft); }

/* ---------- Long-form post ---------- */
.post { max-width: 46rem; margin: 0 auto; padding: clamp(40px, 7vw, 84px) var(--gutter) 0; }
.post__eyebrow { margin-bottom: 18px; }
.post h1 { font-size: clamp(38px, 6vw, 72px); margin-bottom: 20px; }
.post__dek { font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: var(--merlot); margin-bottom: 26px; }
.post__meta { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin-bottom: 40px; }
.post__body { font-size: 17px; line-height: 1.75; }
.post__body p { margin: 0 0 1.15em; max-width: 64ch; }
.post__body h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 2em 0 .6em; }
.post__body ul { margin: 0 0 1.3em 1.1em; max-width: 64ch; }
.post__body li { margin-bottom: .5em; padding-left: .2em; }
.post__body strong { font-weight: 600; }
.post__body q { quotes: "\201C" "\201D"; font-style: normal; }
.cause { border-left: 2px solid var(--papaya); padding: 2px 0 2px 18px; margin: 0 0 1.15em; max-width: 64ch; }
.cause p { margin: 0; }
.cause strong { display: block; font-family: var(--serif); text-transform: uppercase; letter-spacing: -.02em; font-size: 22px; color: var(--merlot); margin-bottom: .25em; }
.pullquote { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 36px); line-height: 1.2; letter-spacing: -.02em; margin: 1.6em 0; padding-left: 22px; border-left: 3px solid var(--papaya); max-width: 30ch; }
.post__note { margin: 52px 0 0; padding: 22px 24px; background: var(--white); border: 1px solid var(--line); font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 64ch; }
.post__foot { max-width: 46rem; margin: 0 auto; padding: 44px var(--gutter) 72px; font-size: 14px; color: var(--ink-soft); }
.post__foot a { color: var(--papaya-deep); }

/* ---------- Photo strip ---------- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); align-items: end; }
.strip img { width: 100%; object-fit: cover; }
.strip > :nth-child(1) img { aspect-ratio: 4 / 5; }
.strip > :nth-child(2) img { aspect-ratio: 3 / 4; }
.strip > :nth-child(3) img { aspect-ratio: 4 / 5; }
@media (max-width: 640px) { .strip { grid-template-columns: 1fr 1fr; } .strip > :nth-child(3) { display: none; } }

/* ---------- Values (about page) ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value { border-top: 1.5px solid var(--ink); padding-top: 18px; }
.value h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 10px; }
.value p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values { grid-template-columns: 1fr; } }

/* ---------- Offers (about page) ---------- */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 44px); }
@media (max-width: 760px) { .offers { grid-template-columns: 1fr; } }
.offer { padding: clamp(24px, 3vw, 40px); background: rgba(239, 230, 214, .06); border: 1px solid rgba(239, 230, 214, .22); display: flex; flex-direction: column; }
.offer h3 { font-size: clamp(28px, 3vw, 40px); margin: 10px 0 12px; }
.offer p { color: rgba(239, 230, 214, .84); }
.offer .btn { margin-top: 26px; align-self: flex-start; }

/* ---------- reveal on scroll (main.js adds .reveal/.is-in) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}
