/* =========================================================
   CREATIVE ASHRAM — editorial brand site
   Version 1.0 — 17 April 2026
   Brand Guide compliant: bone / ink blue / ochre accent
   Typography: Fraunces (display) + Inter (body) + IBM Plex Mono (phonetic)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --bone:      #F5F0E6;
  --paper:     #FCFAF5;
  --ink:       #1F2A44;
  --ink-soft:  #34405A;
  --muted:     #6B6B6B;
  --accent:    #B0652C;
  --accent-2:  #8E4F20;
  --rule:      #D9D2C4;
  --rule-soft: #EADFC9;
  --shadow:    rgba(31, 42, 68, 0.08);

  /* Type */
  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --f-mono:    'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Width */
  --w-prose: 680px;
  --w-page:  1200px;
  --w-wide:  1440px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw + 0.5rem, 5.25rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 1.5vw + 0.75rem, 1.85rem); line-height: 1.2; }
h4 { font-size: 1.25rem; line-height: 1.3; }

p { margin: 0 0 1.1em; max-width: 65ch; }
p.lead { font-family: var(--f-display); font-size: clamp(1.25rem, 1vw + 1rem, 1.65rem); line-height: 1.4; color: var(--ink); font-style: italic; max-width: 38ch; }
p.prose { max-width: 62ch; }
p.small { font-size: 0.9rem; color: var(--muted); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 var(--s-2);
  display: inline-block;
}

.phonetic {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin: var(--s-5) 0;
  padding: 0 0 0 var(--s-4);
  border-left: 3px solid var(--accent);
  max-width: 32ch;
}
blockquote footer { font-family: var(--f-body); font-style: normal; font-size: 0.9rem; color: var(--muted); margin-top: var(--s-2); }

/* ---------- Layout ---------- */
.page { max-width: var(--w-page); margin: 0 auto; padding: 0 var(--s-4); }
.page--wide { max-width: var(--w-wide); }
.page--narrow { max-width: 760px; }

section { padding: var(--s-7) 0; }
section.tight { padding: var(--s-5) 0; }

.row { display: grid; gap: var(--s-5); }
.row--2 { grid-template-columns: repeat(2, 1fr); }
.row--3 { grid-template-columns: repeat(3, 1fr); }
.row--aside { grid-template-columns: 1.4fr 1fr; }

@media (max-width: 820px) {
  .row--2, .row--3, .row--aside { grid-template-columns: 1fr; }
  section { padding: var(--s-6) 0; }
}

.surface { background: var(--paper); }
.surface-ink { background: var(--ink); color: var(--bone); }
.surface-ink * { color: var(--bone); }
.surface-ink .eyebrow { color: var(--rule-soft); }

.rule { border: 0; height: 1px; background: var(--rule); margin: var(--s-5) 0; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-2) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.brand {
  color: var(--ink);
  border: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand__mark {
  display: inline-block;
  width: 40px;
  height: 29px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url('../images/logo-mark.svg') center / contain no-repeat;
          mask: url('../images/logo-mark.svg') center / contain no-repeat;
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0.22em;
}
@media (max-width: 520px) {
  .brand__mark { width: 32px; height: 23px; }
  .brand__name { font-size: 0.85rem; letter-spacing: 0.18em; padding-left: 0.18em; }
}
@media (max-width: 380px) {
  .brand__name { font-size: 0.78rem; letter-spacing: 0.14em; padding-left: 0.14em; }
}
/* Manifesto anchor — quiet, weighted line as a section break */
.manifesto-anchor {
  text-align: center;
  padding: var(--s-7) 0 var(--s-6);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: var(--s-5) 0;
}
.manifesto-anchor p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto var(--s-3);
}
.manifesto-anchor__attr {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* End-of-content dingbat — small standalone mark used as section closer */
.dingbat {
  display: flex;
  justify-content: center;
  margin: var(--s-6) 0 var(--s-5);
}
.dingbat__mark {
  display: inline-block;
  width: 38px;
  height: 28px;
  background-color: var(--ink-soft, var(--ink));
  opacity: 0.55;
  -webkit-mask: url('../images/logo-mark.svg') center / contain no-repeat;
          mask: url('../images/logo-mark.svg') center / contain no-repeat;
}

/* "Let's Ashram It" — horizontal strip CTA used to plant the verb in repetition */
.ashram-strip {
  background: var(--rule-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ashram-strip .page {
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.ashram-strip p {
  margin: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  max-width: 56ch;
}
.ashram-strip p strong {
  font-style: normal;
  font-weight: 500;
}
.ashram-strip .btn {
  flex-shrink: 0;
}

/* Footer tagline — small verb-drop above the © row, on every page */
.footer-tagline {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  text-align: center;
}
.footer-tagline p {
  margin: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.footer-tagline p .muted {
  color: rgba(245, 240, 230, 0.6);
  font-style: normal;
}
.footer-tagline p a {
  color: var(--bone);
  border-bottom-color: rgba(245, 240, 230, 0.4);
}
.footer-tagline p a:hover {
  border-bottom-color: var(--bone);
}

.nav__links { display: flex; gap: var(--s-3); align-items: center; }
.nav__links a {
  border: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 6px 4px;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 0;
  height: 1px;
  background: var(--accent);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bone); border-bottom: 1px solid var(--rule); padding: var(--s-2); }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 8px; border-bottom: 1px solid var(--rule-soft); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 2px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  text-decoration: none;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bone); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn--sm { padding: 10px 16px; font-size: 0.85rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }

/* ---------- Hero ---------- */
.hero {
  padding: var(--s-8) 0 var(--s-7);
  position: relative;
}
.hero .phonetic { margin-bottom: var(--s-3); }
.hero h1 { margin-bottom: var(--s-3); max-width: 14ch; }
.hero p.lead { max-width: 40ch; margin-bottom: var(--s-4); color: var(--ink-soft); }
.hero-meta {
  margin-top: var(--s-6);
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-meta strong { color: var(--ink); font-weight: 500; }

/* ---------- Hero variant: full-bleed cover (homepage) ---------- */
.hero--cover {
  position: relative;
  min-height: 86vh;
  padding: var(--s-8) 0 var(--s-7);
  color: var(--bone);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero--cover .hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero--cover .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,38,0.55) 0%, rgba(15,20,38,0.1) 35%, rgba(15,20,38,0.05) 60%, rgba(15,20,38,0.7) 100%);
}
.hero--cover .page { position: relative; z-index: 1; width: 100%; }
/* Embossed CA mark — quiet watermark, top-right corner of the night sky */
.hero--cover .hero__watermark {
  position: absolute;
  top: clamp(var(--s-3), 4vw, var(--s-6));
  right: clamp(var(--s-3), 4vw, var(--s-6));
  width: clamp(72px, 9vw, 120px);
  height: clamp(52px, 6.5vw, 88px);
  background-color: var(--bone);
  opacity: 0.22;
  -webkit-mask: url('../images/logo-mark.svg') center / contain no-repeat;
          mask: url('../images/logo-mark.svg') center / contain no-repeat;
  filter:
    drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.08))
    drop-shadow(-1px -1px 0 rgba(0, 0, 0, 0.35));
  z-index: 1;
  pointer-events: none;
}
.hero--cover .eyebrow { color: rgba(245,240,230,0.78); }
.hero--cover h1,
.hero--cover .lead { color: var(--bone); }
.hero--cover h1 { max-width: 16ch; }
.hero--cover p.lead { max-width: 44ch; color: rgba(245,240,230,0.86); }
.hero--cover .btn--ghost { color: var(--bone); border-color: rgba(245,240,230,0.45); }
.hero--cover .btn--ghost:hover { background: rgba(245,240,230,0.08); border-color: var(--bone); }
.hero--cover .btn--accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.hero--cover .btn--accent:hover { filter: brightness(0.95); }

/* ---------- Hero variant: split layout (sub-pages) ---------- */
.hero--split { padding: 0; }
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}
.hero--split .hero__text {
  padding: var(--s-7) var(--s-5) var(--s-7) max(var(--s-5), calc((100vw - 1140px) / 2 + var(--s-5)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--split .hero__media {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 360px;
}
@media (max-width: 760px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero--split .hero__text { padding: var(--s-7) var(--s-4); }
  .hero--split .hero__media { min-height: 56vw; max-height: 70vh; }
  .hero--cover { min-height: 78vh; }
}

/* ---------- Section figure (in-page accent image) ---------- */
.section-figure {
  margin: var(--s-5) 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bone-deep, #ebe4d6);
}
.section-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.section-figure--portrait {
  max-width: 460px;
}
.section-figure figcaption {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: var(--s-2) var(--s-3);
  background: var(--surface, #fff);
}

/* ---------- Section break: phonetic device ---------- */
.phonetic-break {
  text-align: center;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: var(--s-5) 0;
}
.phonetic-break .word {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.phonetic-break .phon {
  font-family: var(--f-mono);
  font-size: clamp(0.95rem, 0.7vw + 0.7rem, 1.2rem);
  color: var(--muted);
  display: inline-block;
  margin: 0 var(--s-2);
}
.phonetic-break .sep {
  font-family: var(--f-mono);
  color: var(--rule);
  margin: 0 var(--s-1);
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-4);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  position: relative;
}
.card:hover { border-color: var(--accent); }
.card h3 { margin-bottom: var(--s-1); }
.card .meta { font-size: 0.85rem; color: var(--muted); font-family: var(--f-mono); letter-spacing: 0.02em; }
.card p { font-size: 0.95rem; color: var(--ink-soft); }
.card .tag {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.card .more {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink);
  border: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
}

.card--feature {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--ink);
  padding: var(--s-4) 0 0;
  border-radius: 0;
}
.card--feature:hover { border-color: var(--accent); }

/* ---------- Persona / offering blocks ---------- */
.persona {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--accent);
  border-radius: 2px;
}
.persona h3 { margin-bottom: var(--s-1); }
.persona .role { font-size: 0.85rem; color: var(--muted); margin-bottom: var(--s-3); font-family: var(--f-mono); }
.persona p { font-size: 0.95rem; margin-bottom: var(--s-3); }
.persona .pays { border-top: 1px solid var(--rule); padding-top: var(--s-2); font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule-soft);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .n {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  padding-top: 5px;
  white-space: nowrap;
}
.feature-list h4 { margin: 0 0 var(--s-1); }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Quote spread ---------- */
.quote-spread {
  background: var(--ink);
  color: var(--bone);
  padding: var(--s-8) 0;
  text-align: left;
}
.quote-spread * { color: var(--bone); }
.quote-spread .page { max-width: 920px; }
.quote-spread p.quote {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 var(--s-3);
  max-width: 22ch;
}
.quote-spread .attr {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--rule-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Signup (Substack embed slot) ---------- */
.signup {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-5);
  border-radius: 2px;
}
.signup__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-5); align-items: center; }
@media (max-width: 760px) { .signup__grid { grid-template-columns: 1fr; } }
.signup h3 { margin-bottom: var(--s-2); max-width: 14ch; }
.signup p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }

.substack-slot {
  padding: var(--s-4);
  background: var(--bone);
  border: 1px dashed var(--rule);
  border-radius: 2px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.substack-slot strong { color: var(--ink); font-family: var(--f-body); font-weight: 600; display: block; margin-bottom: var(--s-1); }

/* simple inline form fallback */
.email-form { display: flex; gap: 8px; flex-wrap: wrap; }
.email-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.email-form input[type="email"]:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: var(--bone);
  padding: var(--s-7) 0 var(--s-4);
  margin-top: var(--s-7);
}
footer.site * { color: var(--bone); }
footer.site a { color: var(--bone); border-bottom-color: rgba(245, 240, 230, 0.3); }
footer.site a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(217, 210, 196, 0.18);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { font-family: var(--f-body); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rule-soft); margin-bottom: var(--s-3); font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.95rem; }
.footer-grid p { font-size: 0.95rem; color: var(--rule-soft); max-width: 32ch; }

.footer-bottom {
  padding-top: var(--s-4);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 0.8rem;
  color: var(--rule-soft);
  flex-wrap: wrap;
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

/* ---------- Small components ---------- */
.kicker { font-family: var(--f-mono); font-size: 0.75rem; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; }
.credit-strip { display: flex; flex-wrap: wrap; gap: var(--s-4); font-family: var(--f-mono); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; padding: var(--s-4) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin: var(--s-4) 0; }
.credit-strip span { white-space: nowrap; }
.credit-strip span::before { content: '//  '; color: var(--accent); }
.credit-strip span:first-child::before { content: ''; }

.badge { display: inline-block; padding: 4px 10px; border: 1px solid var(--ink); font-size: 0.72rem; font-family: var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; color: var(--ink); }
.badge--accent { border-color: var(--accent); color: var(--accent); }

.price { font-family: var(--f-display); font-size: 2rem; color: var(--ink); font-weight: 500; }
.price small { font-family: var(--f-body); font-size: 0.85rem; color: var(--muted); margin-left: 6px; font-weight: 400; }

/* Skip link for accessibility */
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: var(--s-2); top: var(--s-2); background: var(--ink); color: var(--bone); padding: 10px 14px; z-index: 100; border: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
