/* =========================================================
   MAURO ARIAS — Personal Brand Site
   Brand: Light-gray luxe · Ofelia Text · Purple hero (#6a0dad)
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.55; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---- Tokens — exact brand palette ---- */
:root {
  /* Light-gray luxe surfaces */
  --fog:       #e8e5e0;     /* page bg, warm light gray */
  --mist:      #efede8;     /* slightly lighter surface */
  --cloud:     #dcd8d1;     /* subtle surface variation */
  --border:    #c8c4bb;     /* dividers */
  --border-soft: #d8d4cc;
  --steel:     #7d7a73;     /* secondary text */
  --charcoal:  #2a2a2c;     /* primary text */
  --ink:       #141416;     /* deepest */

  /* Brand — purple is the hero */
  --royal:       #6a0dad;
  --royal-hi:    #8b2fc9;
  --royal-soft:  #a867d9;
  --royal-deep:  #4a0978;
  --royal-ghost: rgba(106, 13, 173, 0.08);
  --royal-ghost-2: rgba(106, 13, 173, 0.14);

  /* Used sparingly */
  --blood:     #8d0000;

  /* Typography — Ofelia Text from Adobe Fonts */
  --f-serif: "ofelia-text", "Cormorant Garamond", "Times New Roman", serif;
  --f-sans:  "ofelia-text", "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Fluid scale */
  --step--1: clamp(0.78rem, 0.76rem + 0.1vw, 0.85rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.1rem);
  --step-1:  clamp(1.18rem, 1.12rem + 0.3vw, 1.35rem);
  --step-2:  clamp(1.5rem, 1.38rem + 0.6vw, 1.85rem);
  --step-3:  clamp(2rem, 1.75rem + 1.2vw, 2.6rem);
  --step-4:  clamp(2.75rem, 2.35rem + 2vw, 3.8rem);
  --step-5:  clamp(3.5rem, 2.8rem + 3.5vw, 5.5rem);
  --step-6:  clamp(4.5rem, 3.4rem + 5.5vw, 8rem);

  /* Space */
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);
  --container: 1240px;
}

/* ---- Base + ambient background ---- */
body {
  color: var(--charcoal);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: var(--step-0);
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, var(--royal-ghost-2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--royal-ghost) 0%, transparent 60%),
    var(--fog);
  background-attachment: fixed;
}

::selection { background: var(--royal); color: var(--fog); }

mark {
  background: transparent;
  color: var(--blood);
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 500;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: multiply;
}

/* ---- Layout ---- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); position: relative; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * 0.6); }

/* Meta label — small caps mono */
.label {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.label::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--royal);
  display: inline-block;
}
.label--plain::before { display: none; }
.label--accent { color: var(--royal); }

/* ---- Typography ---- */
.display {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--royal);
  font-weight: 500;
}
.display .blood {
  color: var(--blood);
  font-style: italic;
  font-weight: 500;
}
.display-xl { font-size: var(--step-6); }
.display-lg { font-size: var(--step-5); }
.display-md { font-size: var(--step-4); }
.display-sm { font-size: var(--step-3); }

.lede {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  max-width: 34ch;
}
.lede em { color: var(--royal); font-style: italic; font-weight: 500; }

.prose { max-width: 62ch; font-size: var(--step-1); line-height: 1.6; color: var(--charcoal); font-weight: 400; }
.prose p + p { margin-top: 1.1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--royal); font-style: italic; font-family: var(--f-serif); font-weight: 500; font-size: 1.05em; }

h2.heading { font-family: var(--f-serif); font-weight: 400; font-size: var(--step-3); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 0.9em; color: var(--ink); }
h2.heading em { color: var(--royal); font-style: italic; font-weight: 500; }
h3.heading { font-family: var(--f-serif); font-weight: 400; font-size: var(--step-2); line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); }

/* ---- Rule ---- */
hr.rule { border: 0; height: 1px; background: var(--border); margin-block: 0; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--fog) 85%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.brand {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
}
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--royal);
  display: inline-block;
  box-shadow: 0 0 12px var(--royal-soft);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--royal-soft); opacity: 1; }
  50%      { box-shadow: 0 0 16px var(--royal); opacity: 0.75; }
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: var(--step--1);
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  height: 1px;
  width: 0;
  background: var(--royal);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--royal); }
.nav a:hover::after { width: 100%; }
.nav a.is-active { color: var(--royal); }
.nav a.is-active::after { width: 100%; }

.nav-cta {
  font-family: var(--f-mono) !important;
  font-size: var(--step--1);
  letter-spacing: 0.08em !important;
  background: var(--royal);
  color: var(--fog) !important;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
  border: 1px solid var(--royal);
}
.nav-cta:hover { background: var(--royal-deep); transform: translateY(-1px); color: var(--fog) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 0.5rem; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav { position: fixed; inset: 0; background: var(--fog); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; padding: var(--gutter); transform: translateY(-100%); transition: transform 0.35s ease; z-index: 30; }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: var(--step-1); font-family: var(--f-serif); text-transform: none; letter-spacing: -0.01em; font-weight: 400; }
  .nav a::after { display: none; }
  .nav-cta { font-family: var(--f-mono) !important; font-size: var(--step-0) !important; align-self: flex-start; }
  .nav-toggle { display: block; z-index: 50; position: relative; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step-0);
  font-weight: 500;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1em; height: 1em; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--royal);
  color: var(--fog);
  box-shadow: 0 8px 24px -12px var(--royal);
}
.btn--primary:hover { background: var(--royal-deep); box-shadow: 0 12px 32px -10px var(--royal); color: var(--fog); }

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

.btn--outline-royal { background: transparent; color: var(--royal); border-color: var(--royal); }
.btn--outline-royal:hover { background: var(--royal); color: var(--fog); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ---- Hero ---- */
.hero {
  padding-block: clamp(4rem, 10vh, 7rem) clamp(4rem, 10vh, 6rem);
  position: relative;
}
.hero .eyebrow { margin-bottom: 2rem; }
.hero h1 { margin-bottom: 1.8rem; max-width: 16ch; }
.hero .lede { margin-bottom: 2.5rem; }

/* Hero meta strip */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-meta dt { font-family: var(--f-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--steel); margin-bottom: 0.4rem; font-weight: 500; }
.hero-meta dd { font-family: var(--f-serif); font-size: var(--step-1); line-height: 1.2; color: var(--ink); }

/* ---- Self-select cards (the "which door" section) ---- */
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.path-card {
  display: block;
  padding: 2.25rem 1.75rem 1.75rem;
  background: var(--mist);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.path-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--royal);
  transition: height 0.35s ease;
}
.path-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--royal-ghost-2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.path-card:hover { transform: translateY(-3px); border-color: var(--royal); box-shadow: 0 18px 40px -24px rgba(106,13,173,0.4); }
.path-card:hover::before { height: 100%; }
.path-card:hover::after { opacity: 1; }
.path-card .label { margin-bottom: 2.25rem; }
.path-card .path-question {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: var(--step-2);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.path-card .path-answer {
  font-size: var(--step-0);
  color: var(--steel);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.path-card .path-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.path-card .path-arrow svg { width: 1em; height: 1em; transition: transform 0.2s ease; }
.path-card:hover .path-arrow svg { transform: translateX(4px); }

/* ---- Two-column layout ---- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1.3fr; }
  .two-col--reverse { grid-template-columns: 1.3fr 1fr; }
  .two-col--even { grid-template-columns: 1fr 1fr; }
}
.two-col .col-side .label { margin-bottom: 1.5rem; }
.two-col .col-side h2 { max-width: 18ch; }

/* ---- Principles (numbered list) ---- */
.principles { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.principle:last-child { border-bottom: 1px solid var(--border); }
.principle-num {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  color: var(--royal);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.principle-body h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: var(--step-1);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.principle-body p { color: var(--charcoal); max-width: 55ch; }

/* ---- Service cards (homepage preview) ---- */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--mist);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  position: relative;
  min-height: 380px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--royal-ghost) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service:hover { transform: translateY(-3px); border-color: var(--royal); box-shadow: 0 20px 44px -26px rgba(106,13,173,0.4); }
.service:hover::after { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service .label { margin-bottom: 2rem; }
.service h3 { font-family: var(--f-serif); font-weight: 400; font-size: var(--step-2); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 0.75rem; color: var(--ink); }
.service-who { font-family: var(--f-mono); font-size: var(--step--1); color: var(--royal); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; font-weight: 500; }
.service p { color: var(--charcoal); margin-bottom: 2rem; flex: 1; line-height: 1.55; }
.service-link { font-family: var(--f-mono); font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: var(--royal); display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.service-link svg { width: 1em; height: 1em; transition: transform 0.2s ease; }
.service:hover .service-link svg { transform: translateX(4px); }

/* ---- Pull quote ---- */
.quote {
  padding-block: var(--section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--mist);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  left: 50%; top: -40%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--royal-ghost) 0%, transparent 65%);
  pointer-events: none;
}
.quote blockquote {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: var(--step-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 24ch;
  position: relative;
  font-style: italic;
}
.quote blockquote em { color: var(--royal); font-style: italic; font-weight: 500; }
.quote-attr { font-family: var(--f-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--steel); margin-top: 2rem; font-weight: 500; }

/* ---- CTA band (deep purple/ink for contrast) ---- */
.cta-band {
  background: linear-gradient(135deg, #1a0f26 0%, #0f0818 100%);
  color: var(--fog);
  padding-block: var(--section);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -10%; top: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(139, 47, 201, 0.45) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -20%; bottom: -40%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(106, 13, 173, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .label { color: var(--royal-soft); }
.cta-band .label::before { background: var(--royal-soft); }
.cta-band h2 { color: var(--fog); margin-bottom: 1.5rem; max-width: 18ch; }
.cta-band h2 em { color: var(--royal-soft); font-style: italic; }
.cta-band .prose { color: #d8d4cc; max-width: 52ch; margin-bottom: 2.5rem; }
.cta-band .prose strong { color: var(--fog); }
.cta-band .btn--primary { background: var(--fog); color: var(--ink); box-shadow: 0 12px 32px -14px rgba(255,255,255,0.2); }
.cta-band .btn--primary:hover { background: var(--royal); color: var(--fog); }
.cta-band .btn--ghost { color: var(--fog); border-color: var(--fog); }
.cta-band .btn--ghost:hover { background: var(--fog); color: var(--ink); }

/* ---- Footer ---- */
.site-footer {
  padding-block: 3rem 2rem;
  background: var(--mist);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: var(--step-0); color: var(--charcoal); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--royal); }
.footer-brand {
  font-family: var(--f-serif);
  font-size: var(--step-2);
  line-height: 1.1;
  max-width: 22ch;
  margin-bottom: 1rem;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.footer-brand em { color: var(--royal); font-style: italic; }
.footer-note { font-size: var(--step--1); color: var(--steel); max-width: 40ch; line-height: 1.55; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  font-weight: 500;
}

/* ---- Service page: hero + summary ---- */
.service-hero {
  padding-block: clamp(3rem, 7vh, 5rem) clamp(3rem, 6vh, 4rem);
  border-bottom: 1px solid var(--border);
}
.service-hero .eyebrow { margin-bottom: 1.5rem; }
.service-hero h1 { margin-bottom: 1.75rem; max-width: 18ch; }
.service-hero .lede { max-width: 42ch; }

.service-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 2.75rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 820px) {
  .service-summary { grid-template-columns: repeat(4, 1fr); }
}
.summary-item dt {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.summary-item dd { font-family: var(--f-serif); font-size: var(--step-1); line-height: 1.25; color: var(--ink); font-style: italic; font-weight: 400; }

/* ---- Process steps ---- */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 820px) {
  .step { grid-template-columns: 4rem 14rem 1fr; gap: 2rem; align-items: baseline; }
}
.step-num { font-family: var(--f-mono); font-size: var(--step--1); color: var(--royal); letter-spacing: 0.12em; font-weight: 500; }
.step-name { font-family: var(--f-serif); font-size: var(--step-2); line-height: 1.1; color: var(--ink); letter-spacing: -0.015em; font-style: italic; font-weight: 400; }
.step-desc { color: var(--charcoal); max-width: 55ch; line-height: 1.55; }

/* ---- Offer / engagement block ---- */
.offer {
  padding: 2.75rem;
  background: var(--mist);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  display: grid;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.offer::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--royal-ghost) 0%, transparent 70%);
  pointer-events: none;
}
.offer > * { position: relative; z-index: 1; }
.offer h4 { font-family: var(--f-serif); font-weight: 400; font-size: var(--step-2); line-height: 1.15; color: var(--ink); font-style: italic; }
.offer .offer-price { font-family: var(--f-mono); font-size: var(--step-0); color: var(--royal); letter-spacing: 0.04em; font-weight: 500; }
.offer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.offer li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
  line-height: 1.5;
}
.offer li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--royal);
  font-family: var(--f-mono);
  font-weight: 500;
}
.offer-note {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: var(--step--1);
  color: var(--steel);
  font-style: italic;
  font-family: var(--f-serif);
}

/* ---- FAQ ---- */
.faq { margin-top: 2rem; }
.faq details {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-serif);
  font-size: var(--step-1);
  line-height: 1.2;
  color: var(--ink);
  gap: 1rem;
  font-style: italic;
  font-weight: 400;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-mono);
  color: var(--royal);
  font-size: 1.5em;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  font-weight: 400;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  margin-top: 1rem;
  color: var(--charcoal);
  max-width: 62ch;
  line-height: 1.6;
}

/* ---- About: bio layout ---- */
.bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 860px) {
  .bio { grid-template-columns: 1.2fr 1fr; gap: 5rem; }
}

/* Portrait frame — echoes the IG profile treatment (purple halo) */
.bio-photo {
  aspect-ratio: 4/5;
  border-radius: 3px;
  position: relative;
}
.bio-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  border: 3px solid var(--royal);
  box-shadow:
    0 0 0 1px var(--royal-ghost),
    0 30px 80px -24px rgba(106, 13, 173, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  background: var(--cloud);
}
/* Ambient halo behind the photo */
.bio-photo::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--royal-ghost-2) 0%, transparent 60%);
  z-index: -1;
  animation: halo 6s ease-in-out infinite;
}
@keyframes halo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.bio-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.bio-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  font-family: var(--f-mono);
  font-size: var(--step--1);
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 500;
}
.bio-caption {
  margin-top: 1.25rem;
  font-family: var(--f-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--royal);
  text-align: center;
  font-weight: 500;
}

/* ---- Story download card — mirrors the PDF cover ---- */
.story-card {
  aspect-ratio: 3/4;
  max-width: 360px;
  margin: 0 auto;
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px -32px rgba(106, 13, 173, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.story-card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 0 40px 80px -30px rgba(106, 13, 173, 0.5);
}
.story-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -50%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at 65% 35%, var(--royal-ghost-2) 0%, transparent 45%);
  pointer-events: none;
}
.story-card > * { position: relative; z-index: 1; }

.story-card-meta {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--steel);
  font-weight: 500;
  display: block;
}
.story-card-meta strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.2em;
}
.story-card-dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--royal);
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
.story-card-rule {
  height: 1px;
  background: var(--border);
  margin: 1rem 0 2.5rem;
}
.story-card-title {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: auto 0;
  font-weight: 400;
}
.story-card-title-2 {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  display: inline;
}
.story-card-dot {
  color: var(--royal);
  font-style: italic;
}
.story-card-sub {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-top: 0.7rem;
}
.story-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--steel);
  font-weight: 500;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.max-prose { max-width: 62ch; }

/* ---- Reveal animation on load ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal > * { opacity: 0; animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.reveal > *:nth-child(1) { animation-delay: 0.05s; }
.reveal > *:nth-child(2) { animation-delay: 0.18s; }
.reveal > *:nth-child(3) { animation-delay: 0.31s; }
.reveal > *:nth-child(4) { animation-delay: 0.44s; }
.reveal > *:nth-child(5) { animation-delay: 0.57s; }
.reveal > *:nth-child(6) { animation-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
