/* ─── Rosa Chover Taberner — stylesheet ─────────────────────────────────── */

:root{
  --bg: #f8f6f1;
  --bg-2: #f1ede4;
  --bg-3: #ebe5d8;
  --fg: #1c1a17;
  --fg-2: #44403a;
  --muted: #75706a;
  --line: #e3ddd1;
  --line-2: #d9d2c2;
  --accent: #6b5b9a;
  --accent-2: #ece7f4;
  --accent-ink: #3d3261;
  --shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 20px 40px -24px rgba(28,26,23,.18);

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
}

[data-theme="dark"]{
  --bg: #14120f;
  --bg-2: #1c1a16;
  --bg-3: #25221d;
  --fg: #f3efe6;
  --fg-2: #d4cec3;
  --muted: #948e84;
  --line: #2c2823;
  --line-2: #3a342e;
  --accent: #b3a4d9;
  --accent-2: #2a2438;
  --accent-ink: #d6cde9;
}

[data-palette="tierra"]{
  --accent: #b15a3c;
  --accent-2: #f4e6df;
  --accent-ink: #6b3320;
}
[data-palette="tierra"][data-theme="dark"]{
  --accent: #e08a6b;
  --accent-2: #3a221a;
  --accent-ink: #f0c8b6;
}

[data-palette="salvia"]{
  --accent: #6e7d63;
  --accent-2: #e9ece4;
  --accent-ink: #3d4736;
}
[data-palette="salvia"][data-theme="dark"]{
  --accent: #9eae91;
  --accent-2: #25291f;
  --accent-ink: #cdd6c2;
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv01";
}

::selection{ background: var(--accent); color: #fff; }

a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── typography helpers */
.eyebrow{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.display{
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}
.lede{
  color: var(--fg-2);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 60ch;
}
.serif-italic{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* ── buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 18px 32px -16px rgba(28,26,23,.45); }
.btn-ghost{
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn-ghost:hover{ border-color: var(--fg); }
.btn .arrow{
  transition: transform .25s ease;
  display:inline-block;
}
.btn:hover .arrow{ transform: translateX(3px); }

/* ── nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand{
  display: flex; align-items: baseline; gap: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-brand .mark{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.nav-brand .name{ font-size: 15px; }
.nav-brand .role{
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}
.nav-links{
  display:flex; gap: 24px;
  font-size: 14px;
  color: var(--fg-2);
}
.nav-links a{
  position: relative;
  transition: color .2s ease;
}
.nav-links a:hover{ color: var(--fg); }
.nav-cta-wrap{ display:flex; gap: 10px; align-items: center; }

/* language switcher */
.lang{
  position: relative;
  font-size: 12px;
}
.lang-btn{
  appearance: none; background: transparent; border: 1px solid var(--line-2);
  padding: 8px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--fg-2);
}
.lang-btn:hover{ color: var(--fg); border-color: var(--fg); }
.lang-menu{
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  min-width: 170px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.2);
  display: none;
  z-index: 60;
}
.lang-menu.open{ display: block; }
.lang-item{
  display:flex; align-items:center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 13px;
  cursor: pointer;
  color: var(--fg-2);
}
.lang-item:hover{ background: var(--bg-2); color: var(--fg); }
.lang-item.active{ color: var(--accent); }
.lang-item .code{ font-size: 10px; letter-spacing: 0.12em; color: var(--muted); }
.lang-loader{
  position: fixed; left:50%; top: 90px; transform: translateX(-50%);
  background: var(--fg); color: var(--bg);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.lang-loader.on{ opacity: 1; }
.lang-loader .spin{
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  animation: spin .8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg);} }

/* ── hero */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-video{
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: #2a211a;
}
.hero-overlay{
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,11,8,.18) 0%, rgba(15,11,8,0) 35%, rgba(15,11,8,.5) 100%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(15,11,8,.35) 0%, rgba(15,11,8,.1) 25%, rgba(15,11,8,.65) 60%, rgba(15,11,8,.88) 100%);
  }
}
.hero-content{
  position: relative; z-index: 2;
  color: #fbf8f1;
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow{
  color: rgba(255,248,235,.78);
  margin-bottom: 22px;
}
.hero-eyebrow::before{ background: rgba(255,248,235,.6); }
.hero h1{
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 300;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.hero h1 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.hero p.sub{
  color: rgba(255,248,235,.82);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-cta{
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-cta .btn-primary{ background: #fbf8f1; color: #1c1a17; }
.hero-cta .btn-ghost{ color: #fbf8f1; border-color: rgba(255,248,235,.4); }
.hero-cta .btn-ghost:hover{ border-color: #fbf8f1; }
.hero-meta{
  position: absolute;
  right: var(--gutter);
  bottom: clamp(60px, 8vw, 110px);
  color: rgba(255,248,235,.7);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.7;
  z-index: 2;
}
.hero-meta .loc{ display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.hero-meta .loc::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: #c9b994;
  box-shadow: 0 0 0 4px rgba(201,185,148,.18);
}

/* ── trust strip */
.trust{
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-cell{
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.trust-cell:first-child{ border-left: 0; padding-left: 0; }
.trust-cell .label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.trust-cell .big{
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--fg);
}
.trust-cell .big .unit{
  font-size: 0.4em;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.trust-cell .caption{
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.4;
  max-width: 22ch;
}

@media (max-width: 860px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .trust-cell{ border-left: 0; padding: 0; }
  .trust-cell:nth-child(2){ border-left: 1px solid var(--line); padding-left: 24px; }
  .trust-cell:nth-child(4){ border-left: 1px solid var(--line); padding-left: 24px; }
}

/* ── section base */
section.block{
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.sec-head{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: clamp(40px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 860px){
  .sec-head{ grid-template-columns: 1fr; gap: 18px; }
}
.sec-head h2{
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 14px 0 0;
  text-wrap: balance;
}
.sec-head h2 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.sec-head .sec-intro{
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
  text-wrap: pretty;
}

/* ── services accordion */
.acc{
  border-top: 1px solid var(--line);
}
.acc-item{
  border-bottom: 1px solid var(--line);
}
.acc-btn{
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr 80px auto;
  align-items: center;
  gap: 28px;
  cursor: pointer;
  transition: padding .35s ease;
}
.acc-item.open .acc-btn{ padding-bottom: 12px; }
.acc-num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
}
.acc-title{
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.acc-tag{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: right;
}
.acc-plus{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  transition: transform .4s ease, background .25s ease, color .25s ease, border-color .25s ease;
  flex-shrink: 0;
}
.acc-item.open .acc-plus{
  transform: rotate(45deg);
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.acc-panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4,0,.2,1);
}
.acc-item.open .acc-panel{
  grid-template-rows: 1fr;
}
.acc-panel-inner{
  overflow: hidden;
  min-height: 0;
}
.acc-content{
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 28px;
  padding: 0 0 36px;
  color: var(--fg-2);
}
.acc-content .lead{
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  text-wrap: pretty;
}
.acc-content .lead .em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg);
}
.acc-content ul{
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
}
.acc-content li{
  display: flex; align-items: flex-start; gap: 10px;
}
.acc-content li::before{
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.acc-more-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-ink);
  transition: color .2s ease;
}
.acc-more-link:hover{ color: var(--accent); }
.acc-more-link .arrow{ transition: transform .25s ease; display: inline-block; }
.acc-more-link:hover .arrow{ transform: translateX(3px); }
.acc-visible-link{
  padding: 0 0 20px calc(56px + 28px);
  pointer-events: auto;
}
@media (max-width: 860px){
  .acc-visible-link{ padding-left: calc(28px + 16px); }
  .acc-btn{ grid-template-columns: 28px 1fr auto; gap: 16px; padding: 22px 0; }
  .acc-tag{ display:none; }
  .acc-num{ font-size: 18px; }
  .acc-content{ grid-template-columns: 1fr; gap: 18px; padding-bottom: 24px; }
}

/* ── about */
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px){ .about-grid{ grid-template-columns: 1fr; } }

.photo-slot{
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-slot img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.photo-slot .ph-label{
  position: relative;
  z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}
.about-body{
  display: flex; flex-direction: column;
  gap: 22px;
}
.about-body p{
  margin: 0;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
  max-width: 56ch;
}
.about-body p.pull{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--fg);
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  max-width: 32ch;
}

.creds{
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 700px){ .creds{ grid-template-columns: 1fr; } }
.cred{
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.cred .yr{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cred .ti{
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.cred .sub{
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}
.badge .dot{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.badges{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

/* ── CTA section */
.cta-block{
  background: var(--fg);
  color: var(--bg);
  padding: clamp(80px, 9vw, 130px) 0;
  border-bottom: 0;
}
[data-theme="dark"] .cta-block{
  background: var(--bg-3);
  color: var(--fg);
}
.cta-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 860px){ .cta-inner{ grid-template-columns: 1fr; gap: 32px; } }
.cta-block h2{
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.cta-block h2 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.cta-block .sub{
  color: color-mix(in oklab, var(--bg) 78%, transparent);
  font-size: 17px;
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 46ch;
  text-wrap: pretty;
}
[data-theme="dark"] .cta-block .sub{ color: var(--fg-2); }
.cta-block .btn-primary{
  background: var(--bg);
  color: var(--fg);
}
[data-theme="dark"] .cta-block .btn-primary{
  background: var(--fg);
  color: var(--bg);
}
.cta-side{
  display: flex; flex-direction: column; gap: 18px;
  border-left: 1px solid color-mix(in oklab, var(--bg) 24%, transparent);
  padding-left: 36px;
}
[data-theme="dark"] .cta-side{ border-left-color: var(--line-2); }
@media (max-width: 860px){ .cta-side{ border-left: 0; padding-left: 0; border-top: 1px solid color-mix(in oklab, var(--bg) 24%, transparent); padding-top: 24px; } }
.cta-side .row{
  display: flex; flex-direction: column; gap: 2px;
}
.cta-side .row .k{
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
}
[data-theme="dark"] .cta-side .row .k{ color: var(--muted); }
.cta-side .row .v{
  font-size: 16px;
  color: var(--bg);
  font-weight: 400;
}
[data-theme="dark"] .cta-side .row .v{ color: var(--fg); }

/* ── footer */
footer.foot{
  padding: 80px 0 40px;
  background: var(--bg);
}
.foot-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px){
  .foot-top{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
.foot-brand .mk{
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.foot-brand .nm{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.foot-brand .rl{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.foot-col h4{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot-col ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
}
.foot-col li a:hover{ color: var(--fg); }
.foot-bot{
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.foot-bot .legal{ display: flex; gap: 20px; }
.foot-credit{
  padding-top: 16px;
  font-size: 11px; color: var(--muted); opacity: .55;
  text-align: right;
}
.foot-credit a{ color: inherit; text-decoration: none; }
.foot-credit a:hover{ opacity: 1; color: var(--accent); }

/* ── small helpers */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* mobile hamburger */
.burger{
  display: none;
  appearance: none; background: transparent;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--fg);
  transition: border-color .2s ease, background .2s ease;
}
.burger:hover{ border-color: var(--fg); }
.burger .lines{
  position: relative; width: 16px; height: 12px;
}
.burger .lines span{
  position: absolute; left: 0; right: 0;
  height: 1.4px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s ease, top .3s ease, opacity .2s ease;
}
.burger .lines span:nth-child(1){ top: 1px; }
.burger .lines span:nth-child(2){ top: 50%; transform: translateY(-50%); }
.burger .lines span:nth-child(3){ bottom: 1px; top: auto; }
.burger.open .lines span:nth-child(1){ top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open .lines span:nth-child(2){ opacity: 0; }
.burger.open .lines span:nth-child(3){ bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* mobile menu sheet */
.mobile-menu{
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 49;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid var(--line);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu-inner{
  padding: 32px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu a.m-link{
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.mobile-menu a.m-link .num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.mobile-menu .m-cta{
  margin-top: 32px;
}
.mobile-menu .m-cta .btn{
  width: 100%;
}
.mobile-menu .m-foot{
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 4px;
}
body.menu-open{ overflow: hidden; }

@media (max-width: 860px){
  .nav-links{ display: none; }
  .burger{ display: inline-flex; }
  .nav-brand .role{ display: none; }
}
@media (max-width: 720px){
  .hero-meta{ display: none; }
  .nav-cta-wrap .desktop-cta{ display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEW SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── placeholder images */
.ph-suggestion{
  display: inline-block;
  font-size: 12px;
  color: var(--accent-ink);
  font-style: italic;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
  padding: 5px 12px;
  background: var(--accent-2);
  border-radius: 6px;
  border: 1px solid color-mix(in oklab, var(--accent) 20%, transparent);
}
.placeholder-img{
  background: var(--bg-3);
  border: 1.5px dashed var(--line-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  min-height: 200px;
}
.placeholder-img .phi-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-img .phi-label{
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  max-width: 30ch;
}
.placeholder-img .phi-tag{
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--line-2);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ── what is mediation section */
.what-is{
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.role-block{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 52px);
  margin-bottom: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 860px){ .role-block{ grid-template-columns: 1fr; } }
/* dialogo-mediacion: inside role-block on desktop, outside on mobile */
.role-img { display: none; }
@media (min-width: 861px) {
  .role-img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 45%;
    border-radius: 12px;
    margin-top: 1.5rem;
  }
}
.role-img-mobile {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 12px;
  display: block;
  margin: 3rem 0 2rem;
}
@media (min-width: 861px) { .role-img-mobile { display: none; } }
.role-block .rb-heading{
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0;
  text-wrap: balance;
}
.role-block .rb-heading .em{
  font-family: var(--serif);
  font-style: italic;
}
.role-block .rb-body{
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}
.role-block .rb-body strong{
  color: var(--fg);
  font-weight: 500;
}
.role-block .rb-note{
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--accent-2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--accent-ink);
  line-height: 1.5;
  font-style: italic;
}
.principles-label{
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 24px;
}
.principles-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){ .principles-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .principles-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px){ .principles-grid{ grid-template-columns: 1fr; } }
.principle-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.principle-card:hover{
  border-color: var(--accent);
  box-shadow: 0 8px 24px -12px rgba(107,91,154,.2);
}
.principle-card .pc-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}
.principle-card .pc-title{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg);
  line-height: 1.25;
}
.principle-card .pc-body{
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ── ley 1/2025 banner (home teaser) */
.ley-banner-section{
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.ley-banner{
  background: var(--accent-2);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px){ .ley-banner{ grid-template-columns: 1fr; } }
.ley-banner .lb-eyebrow{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.ley-banner .lb-eyebrow::before{
  content: "";
  width: 20px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.ley-banner h3{
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}
.ley-banner h3 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.ley-banner p{
  margin: 0;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 52ch;
  text-wrap: pretty;
}
.ley-banner .lb-cta{ flex-shrink: 0; }

/* ── publications section */
.pub-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .pub-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .pub-grid{ grid-template-columns: 1fr; } }
.pub-card{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.pub-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(28,26,23,.2);
}
.pub-card .pcard-img{
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  text-align: center;
  font-style: italic;
}
.pub-card .pcard-body{
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pub-card .pcard-tag{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
}
.pub-card .pcard-title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.35;
}
.pub-card .pcard-excerpt{
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.55;
  flex: 1;
}
.pub-card .pcard-link{
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pub-card:hover .pcard-link{ color: var(--accent); }
.pub-more{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUB-LANDING PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.sublanding-hero{
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.sublanding-hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px){ .sublanding-hero-grid{ grid-template-columns: 1fr; } }
.sublanding-breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.sublanding-breadcrumb a{ color: var(--muted); transition: color .2s ease; }
.sublanding-breadcrumb a:hover{ color: var(--fg); }
.sublanding-breadcrumb .sep{ opacity: 0.4; font-size: 10px; }
.sublanding-h1{
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
}
.sublanding-h1 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.sublanding-intro{
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.sublanding-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sublanding-tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--accent-2);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.sublanding-content{
  padding: clamp(60px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.sublanding-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px){ .sublanding-cols{ grid-template-columns: 1fr; } }
.rich-text p{
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.rich-text p:last-child{ margin-bottom: 0; }
.rich-text .pull{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--fg);
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  margin: 28px 0;
}
.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
}
.checklist li .ci{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
}
.checklist-title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 20px;
}

/* process steps */
.process-section{
  padding: clamp(60px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.steps-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 860px){ .steps-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .steps-grid{ grid-template-columns: 1fr; } }
.step-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.step-card .sc-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card .sc-title{
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-card .sc-body{
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ley 1/2025 page */
.ley-dark-block{
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  margin: 0 0 48px;
}
[data-theme="dark"] .ley-dark-block{
  background: var(--bg-3);
  color: var(--fg);
}
.ley-dark-block h2{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 16px;
  text-wrap: balance;
}
.ley-dark-block h2 .em{
  font-family: var(--serif);
  font-style: italic;
}
.ley-dark-block p{
  font-size: 17px;
  line-height: 1.65;
  color: color-mix(in oklab, var(--bg) 78%, transparent);
  max-width: 60ch;
  margin: 0;
}
[data-theme="dark"] .ley-dark-block p{ color: var(--fg-2); }
.ley-key-points{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 860px){ .ley-key-points{ grid-template-columns: 1fr; } }
.ley-point{
  padding: 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ley-point .lp-icon{
  font-size: 28px;
  margin-bottom: 14px;
}
.ley-point .lp-title{
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ley-point .lp-body{
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* publications page */
.pub-page-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px){ .pub-page-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .pub-page-grid{ grid-template-columns: 1fr; } }
.substack-banner{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 720px){ .substack-banner{ grid-template-columns: 1fr; } }
.substack-banner h3{
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--fg);
}
.substack-banner h3 .em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.substack-banner p{
  font-size: 15px;
  color: var(--fg-2);
  margin: 0;
  max-width: 48ch;
  line-height: 1.55;
}

/* ─── sub-landing hero typography ───────────────────────────────────────── */
.sublanding-hero h1{
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.sublanding-hero h1 em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.sublanding-hero__sub{
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* ─── sublanding cols ────────────────────────────────────────────────────── */
.sublanding-cols__main{ min-width: 0; }
.sublanding-cols__main h2{
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.sublanding-cols__main p{
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0 0 18px;
  font-size: 16px;
}
.sublanding-cols__aside{ min-width: 0; }

/* aside card */
.aside-card{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.aside-card h3{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--fg);
}
.aside-card p{ font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.aside-stats{ margin: 12px 0; padding: 0; }
.aside-stats dt{
  font-size: 22px;
  font-weight: 300;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 14px;
}
.aside-stats dt:first-child{ margin-top: 0; }
.aside-stats dd{
  font-size: 12.5px;
  color: var(--fg-2);
  margin: 2px 0 0;
  line-height: 1.45;
}

/* ─── step-card direct children (when not using sc- classes) ─────────────── */
.step-card .step-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step-card h3{
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step-card > p{
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}

/* ─── checklist without .ci icon (auto pseudo-element fallback) ──────────── */
.checklist li:not(:has(.ci))::before{
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── ley-1-2025 key stat bar ────────────────────────────────────────────── */
.ley-key-point{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ley-key-date{
  font-size: clamp(22px, 2.5vw, 32px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.1;
}
.ley-key-label{
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
  line-height: 1.4;
}
[data-theme="dark"] .ley-key-label{ color: var(--fg-2); }

/* ─── publications page — full article cards ─────────────────────────────── */
.pub-card--full{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.pub-card--full:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -12px rgba(28,26,23,.16);
}
.pub-card__body{
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pub-card__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pub-card__tag{
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-2);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.pub-card__date{
  font-size: 12.5px;
  color: var(--muted);
}
.pub-card__title{
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--fg);
  margin: 0 0 12px;
  text-wrap: balance;
}
.pub-card__excerpt{
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.pub-card__link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.pub-card__link:hover{ color: var(--accent-ink); }
.pub-card__link--pending{
  color: var(--muted);
  font-style: italic;
  font-size: 12.5px;
}

/* ─── publications category filter ──────────────────────────────────────── */
.pub-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pub-filter-btn{
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--bg-2);
  color: var(--fg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pub-filter-btn:hover{
  background: var(--accent-2);
  color: var(--accent-ink);
  border-color: transparent;
}
.pub-filter-btn.active{
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

/* ─── substack banner inner layout ──────────────────────────────────────── */
.substack-banner__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 720px){ .substack-banner__inner{ grid-template-columns: 1fr; } }
.substack-banner__cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ─── CSS variable alias ─────────────────────────────────────────────────── */
:root{ --fg-muted: var(--fg-2); }
