/* ─────────────────────────────────────────
   CALCULADORA HIPOTECA ONLINE — styles.css
   ───────────────────────────────────────── */

/* 1 · Variables & Reset */
:root {
  --ink:       #0f1117;
  --ink2:      #2a2d38;
  --ink3:      #5a5f72;
  --ink4:      #9198ad;
  --paper:     #f7f6f2;
  --paper2:    #eeece6;
  --paper3:    #e0ddd4;
  --white:     #ffffff;
  --gold:      #b8975a;
  --gold2:     #d4b07a;
  --gold-bg:   #faf5eb;
  --teal:      #2d7d6f;
  --teal-bg:   #e1f0ed;
  --danger:    #c94040;
  --danger-bg: #fdf0f0;
  --info:      #185fa5;
  --info-bg:   #e6f1fb;
  --warn:      #854f0b;
  --warn-bg:   #faeeda;
  --r:         8px;
  --r-lg:      14px;
  --max-w:     1080px;
  --nav-h:     60px;
  --shadow:    0 1px 3px rgba(15,17,23,.06),0 4px 16px rgba(15,17,23,.08);
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--paper); color: var(--ink); line-height: 1.65; font-size: 15px; }
img { max-width: 100%; display: block; }
a { color: var(--gold); }

/* 2 · Typography */
h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.18; color: var(--ink); }
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.45rem,3vw,2.1rem); margin-bottom: .5rem; }
h3 { font-size: clamp(1.05rem,2vw,1.3rem); }
p { color: var(--ink3); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--ink2); }

/* 3 · Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--alt  { background: var(--white); }
.section--dark { background: var(--ink); }
.section--tint { background: var(--paper2); }
.sec-label { display: inline-block; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-bg); padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; }
.sec-intro { max-width: 580px; font-size: 1rem; color: var(--ink3); margin-bottom: 2.5rem; line-height: 1.75; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .75rem; }
@media(max-width:768px) { .grid-3,.grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width:480px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* 4 · Navigation */
.nav { position: sticky; top: 0; z-index: 200; height: var(--nav-h); background: rgba(247,246,242,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--paper3); }
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--ink); text-decoration: none; flex-shrink: 0; }
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a { text-decoration: none; font-size: .8rem; font-weight: 500; letter-spacing: .02em; color: var(--ink3); transition: color .2s; white-space: nowrap; }
.nav__links a:hover,.nav__links a[aria-current] { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__cta { background: var(--gold) !important; color: var(--ink) !important; padding: 6px 16px; border-radius: var(--r); transition: background .2s !important; }
.nav__cta:hover { background: var(--gold2) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
@media(max-width:720px) {
  .nav__burger { display: flex; }
  .nav__links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--paper3); flex-direction: column; align-items: flex-start; padding: 1rem 1.25rem 1.5rem; gap: .85rem; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
  .nav__links.open { display: flex; }
}

/* 5 · Buttons */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: 10px 22px; border-radius: var(--r); font-size: .85rem; font-weight: 500; text-decoration: none; cursor: pointer; border: none; transition: background .15s, transform .1s, box-shadow .15s; font-family: inherit; line-height: 1; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { background: var(--gold2); box-shadow: 0 4px 12px rgba(184,151,90,.3); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--paper3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.btn--ghost { background: transparent; color: var(--ink3); border: 1px dashed var(--paper3); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.btn--sm { padding: 6px 14px; font-size: .75rem; }
.btn--icon { width: 34px; height: 34px; padding: 0; justify-content: center; }

/* 6 · Cards */
.card { background: var(--white); border: 1px solid var(--paper3); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.card-title { font-family: 'DM Sans',sans-serif; font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: var(--ink3); margin-bottom: 1.25rem; }

/* 7 · Form elements */
.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-size: .72rem; font-weight: 500; color: var(--ink3); letter-spacing: .02em; }
.field input,.field select,.field textarea { height: 38px; padding: 0 11px; border: 1px solid var(--paper3); border-radius: var(--r); font-size: .85rem; font-family: inherit; color: var(--ink); background: var(--paper); outline: none; transition: border-color .15s, box-shadow .15s; }
.field textarea { height: auto; padding: 9px 11px; resize: vertical; }
.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,90,.13); }
.field input::-webkit-inner-spin-button { opacity: .35; }

/* Tipo tabs */
.tipo-wrap { margin-bottom: 1.25rem; }
.tipo-wrap label { font-size: .72rem; font-weight: 500; color: var(--ink3); letter-spacing: .02em; display: block; margin-bottom: 5px; }
.tipo-tabs { display: flex; gap: 3px; background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--r); padding: 3px; }
.tipo-tab { flex: 1; padding: 7px 6px; border: none; border-radius: 6px; font-size: .78rem; font-weight: 500; cursor: pointer; color: var(--ink3); background: transparent; transition: .15s; font-family: inherit; text-align: center; }
.tipo-tab.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.mixta-fields { display: none; }
.mixta-fields.show { display: grid; }

/* 8 · Metrics */
.metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .65rem; margin: 1.5rem 0; }
@media(max-width:640px) { .metrics { grid-template-columns: repeat(2,minmax(0,1fr)); } }
.metric { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--r); padding: .85rem 1rem; }
.metric__label { font-size: .65rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--ink4); margin-bottom: 4px; }
.metric__value { font-size: 1.1rem; font-weight: 500; font-family: 'DM Mono',monospace; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; }
.metric__sub { font-size: .65rem; color: var(--ink4); margin-top: 3px; }
.metric--pos .metric__value { color: var(--teal); }
.metric--neg .metric__value { color: var(--danger); }
.metric--gold .metric__value { color: var(--gold); }

/* 9 · View tabs */
.view-tabs { display: flex; gap: 3px; background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--r); padding: 3px; width: fit-content; margin-bottom: 1rem; }
.view-tab { padding: 5px 14px; border-radius: 6px; font-size: .75rem; font-weight: 500; color: var(--ink3); cursor: pointer; border: none; background: transparent; font-family: inherit; transition: .15s; }
.view-tab.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }

/* 10 · Table */
.table-wrap { border: 1px solid var(--paper3); border-radius: var(--r); overflow: hidden; }
.table-scroll { max-height: 380px; overflow-y: auto; }
.table-scroll::-webkit-scrollbar { width: 4px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--paper3); border-radius: 2px; }
table { width: 100%; border-collapse: collapse; font-size: .75rem; table-layout: fixed; }
thead th { background: var(--paper); font-size: .65rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--ink3); padding: 8px 10px; text-align: right; border-bottom: 1px solid var(--paper3); }
thead th:first-child { text-align: left; }
tbody td { padding: 6px 10px; text-align: right; border-bottom: 1px solid var(--paper2); font-family: 'DM Mono',monospace; }
tbody td:first-child { text-align: left; font-family: 'DM Sans',sans-serif; }
tbody tr:last-child td { border-bottom: none; }
tr.row--fijo td:first-child { color: var(--info); }
tr.row--variable td { background: var(--paper); }
tr.row--variable td:first-child { color: var(--warn); }
tr.row--amort td { background: var(--teal-bg) !important; color: var(--teal) !important; }
.badge { display: inline-block; font-size: .58rem; font-weight: 500; padding: 1px 6px; border-radius: 20px; background: var(--teal-bg); color: var(--teal); margin-left: 4px; vertical-align: middle; }

/* 11 · Chart */
.chart-wrap { position: relative; width: 100%; height: 220px; margin: 1.25rem 0; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 12px; font-size: .72rem; color: var(--ink3); margin-bottom: .75rem; }
.chart-legend span { display: flex; align-items: center; gap: 5px; }
.leg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* 12 · Amort rows */
.amort-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: .75rem; }
.amort-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .75rem; align-items: end; background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--r); padding: 1rem; }
@media(max-width:580px) { .amort-row { grid-template-columns: 1fr 1fr; } }
.amort-row .field label { font-size: .65rem; }
.amort-num { font-size: .65rem; font-weight: 500; color: var(--gold); background: var(--gold-bg); padding: 2px 8px; border-radius: 20px; margin-bottom: .5rem; display: inline-block; }
.del-btn { width: 34px; height: 34px; border-radius: var(--r); border: 1px solid var(--paper3); background: transparent; cursor: pointer; font-size: .9rem; color: var(--ink3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: .15s; }
.del-btn:hover { background: var(--danger-bg); color: var(--danger); border-color: var(--danger); }

/* 13 · Advanced toggle */
.adv-toggle { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .8rem; font-weight: 500; color: var(--ink3); padding: .75rem 0; border-top: 1px solid var(--paper3); margin-top: 1.25rem; user-select: none; }
.adv-toggle .chevron { font-size: .65rem; transition: transform .2s; }
.adv-toggle.open .chevron { transform: rotate(180deg); }
.adv-body { display: none; padding-top: 1.25rem; }
.adv-body.open { display: block; }
.adv-note { font-size: .72rem; color: var(--ink4); line-height: 1.6; margin-top: .75rem; padding: .75rem 1rem; background: var(--paper); border-radius: var(--r); border-left: 3px solid var(--paper3); }

/* 14 · Separator */
.sep { height: 1px; background: var(--paper3); margin: 1.5rem 0; }

/* 15 · Hero */
.hero { background: var(--ink); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; }
.hero__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 5rem 1.25rem; width: 100%; }
.hero__badge { display: inline-block; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,151,90,.35); padding: 5px 14px; border-radius: 20px; margin-bottom: 1.75rem; }
.hero__h1 { font-family: 'Playfair Display',serif; font-size: clamp(2.4rem,6vw,4.4rem); font-weight: 500; line-height: 1.1; color: var(--paper); max-width: 720px; margin-bottom: 1.25rem; }
.hero__h1 em { color: var(--gold); font-style: normal; }
.hero__sub { font-size: 1rem; color: var(--ink4); max-width: 500px; line-height: 1.75; margin-bottom: 2.5rem; font-weight: 300; }
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__feats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 4rem; border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); overflow: hidden; }
@media(max-width:720px) { .hero__feats { grid-template-columns: repeat(2,1fr); } }
.hero__feat { padding: 1.5rem 1.25rem; background: rgba(255,255,255,.025); border-right: 1px solid rgba(255,255,255,.05); }
.hero__feat:last-child { border-right: none; }
.hero__feat-num { font-family: 'DM Mono',monospace; font-size: .68rem; color: var(--gold); margin-bottom: .5rem; letter-spacing: .06em; }
.hero__feat-title { font-size: .85rem; font-weight: 500; color: var(--paper); margin-bottom: .3rem; }
.hero__feat-desc { font-size: .75rem; color: var(--ink4); line-height: 1.55; }

/* Tool cards */
.tool-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
@media(max-width:720px) { .tool-grid { grid-template-columns: 1fr; } }
.tool-card { display: flex; flex-direction: column; padding: 1.75rem; background: var(--white); border: 1px solid var(--paper3); border-radius: var(--r-lg); text-decoration: none; color: var(--ink); transition: box-shadow .2s, transform .15s; box-shadow: var(--shadow); }
.tool-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }
.tool-card__icon { width: 38px; height: 38px; border-radius: var(--r); background: var(--gold-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.tool-card__title { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 500; margin-bottom: .4rem; color: var(--ink); }
.tool-card__desc { font-size: .8rem; color: var(--ink3); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.tool-card__link { font-size: .75rem; font-weight: 500; color: var(--gold); }

/* 16 · FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--paper3); }
.faq-item:first-child { border-top: 1px solid var(--paper3); }
details summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; cursor: pointer; list-style: none; font-weight: 500; font-size: .92rem; color: var(--ink2); }
details summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--gold); }
.faq-icon { flex-shrink: 0; font-size: .7rem; color: var(--ink4); transition: transform .2s; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding-bottom: 1.1rem; font-size: .88rem; line-height: 1.75; color: var(--ink3); max-width: 720px; }

/* 17 · Comparador */
.scenario-header { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.25rem; }
.scenario-pill { font-size: .68rem; font-weight: 500; padding: 3px 10px; border-radius: 20px; letter-spacing: .04em; }
.pill--a { background: var(--info-bg); color: var(--info); }
.pill--b { background: var(--gold-bg); color: var(--warn); }
.pill--c { background: var(--teal-bg); color: var(--teal); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.cmp-table th { background: var(--paper); font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--ink3); padding: 9px 12px; border-bottom: 1px solid var(--paper3); text-align: left; }
.cmp-table th:not(:first-child) { text-align: right; }
.cmp-table td { padding: 9px 12px; border-bottom: 1px solid var(--paper2); color: var(--ink); }
.cmp-table td:not(:first-child) { text-align: right; font-family: 'DM Mono',monospace; font-size: .78rem; }
.cmp-table tr:last-child td { border-bottom: none; }
.win-tag { display: inline-block; font-size: .6rem; font-weight: 500; background: var(--teal-bg); color: var(--teal); padding: 1px 6px; border-radius: 20px; margin-left: 4px; }
.cmp-bars { margin: 1.5rem 0; }
.cmp-bar-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.cmp-bar-lbl { font-size: .72rem; color: var(--ink3); width: 120px; flex-shrink: 0; }
.cmp-bar-track { flex: 1; height: 7px; background: var(--paper3); border-radius: 4px; overflow: hidden; display: flex; gap: 2px; }
.cmp-seg { height: 100%; transition: width .4s ease; min-width: 2px; }
.seg--a { background: #3266ad; }
.seg--b { background: var(--gold); }
.seg--c { background: var(--teal); }
.cmp-vals { font-family: 'DM Mono',monospace; font-size: .7rem; display: flex; gap: 6px; flex-shrink: 0; min-width: 130px; justify-content: flex-end; }

/* 18 · Ad slots */
.ad-slot { text-align: center; overflow: hidden; color: var(--ink4); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.ad-slot--banner { min-height: 90px; background: var(--paper2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin: 1.5rem 0; }
.ad-slot--rect { min-height: 250px; background: var(--paper2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin: 1.5rem auto; max-width: 300px; }
.ad-slot--side { min-height: 600px; background: var(--paper2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }

/* 19 · Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--ink2); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.15); transform: translateY(100%); transition: transform .3s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .78rem; color: rgba(247,246,242,.7); flex: 1; min-width: 200px; margin: 0; }
.cookie-banner a { color: var(--gold2); }
.cookie-banner__btns { display: flex; gap: .5rem; flex-shrink: 0; }
.ck-btn { padding: 7px 16px; border-radius: var(--r); font-size: .75rem; font-weight: 500; cursor: pointer; border: none; font-family: inherit; }
.ck-btn--accept { background: var(--gold); color: var(--ink); }
.ck-btn--reject { background: transparent; color: rgba(247,246,242,.6); border: 1px solid rgba(255,255,255,.2); }

/* 20 · Footer */
.footer { background: var(--ink); padding: 3.5rem 0 1.5rem; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
@media(max-width:640px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer__logo { font-family: 'Playfair Display',serif; font-size: 1.1rem; color: var(--paper); margin-bottom: .75rem; }
.footer__logo span { color: var(--gold); }
.footer__desc { font-size: .78rem; line-height: 1.7; color: var(--ink4); margin-bottom: 0; }
.footer__heading { font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--ink3); margin-bottom: .85rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__links li a { text-decoration: none; font-size: .78rem; color: var(--ink4); transition: color .15s; }
.footer__links li a:hover { color: var(--paper); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__disclaimer { font-size: .7rem; color: var(--ink3); line-height: 1.6; max-width: 640px; }
.footer__copy { font-size: .72rem; color: var(--ink3); white-space: nowrap; margin-top: .15rem; }

/* 21 · Page hero */
.page-hero { background: var(--ink); padding: 3.5rem 0 3rem; }
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.page-hero h1 { color: var(--paper); margin-bottom: .5rem; font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero p { color: var(--ink4); max-width: 560px; font-size: .95rem; font-weight: 300; margin: 0; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--ink3); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink3); text-decoration: none; }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span { color: var(--gold); }

/* 22 · Prose */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.prose h3 { font-size: 1rem; margin: 1.5rem 0 .4rem; }
.prose p,.prose li { font-size: .88rem; line-height: 1.8; color: var(--ink3); }
.prose ul,.prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .3rem; }
.prose a { color: var(--gold); }
.info-box { background: var(--info-bg); border-left: 3px solid var(--info); padding: .85rem 1rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.25rem 0; font-size: .82rem; color: var(--ink2); line-height: 1.65; }
.warn-box { background: var(--gold-bg); border-left: 3px solid var(--gold); padding: .85rem 1rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.25rem 0; font-size: .82rem; color: var(--ink2); line-height: 1.65; }

/* 23 · Contact & About */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:640px) { .contact-grid { grid-template-columns: 1fr; } }
.ci-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.ci-icon { width: 34px; height: 34px; border-radius: var(--r); background: var(--gold-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin: 2rem 0; }
@media(max-width:480px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card { text-align: center; padding: 1.5rem; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--paper3); }
.stat-card__num { font-family: 'Playfair Display',serif; font-size: 2.4rem; color: var(--gold); font-weight: 500; }
.stat-card__lbl { font-size: .78rem; color: var(--ink3); margin-top: .25rem; }

/* 24 · Util */
.text-center { text-align: center; }
.mt-sm { margin-top: .75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-md { margin-bottom: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
