/* ---------------------------------------------------------------------------
   Mariela CM — app.css
   Estilos globales + componentes. Todo el sitio usa este único archivo.
   Orden: reset → typography → layout → components → utilities → print.
   --------------------------------------------------------------------------- */

@import url('./tokens.css');

/* ==========================================================================
   1. Reset moderno (basado en andy-bell + tweaks)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  min-height: 100svh;
  line-height: var(--lh-body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--primary-hover); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--clay-100); color: var(--ink-900); }

/* ==========================================================================
   2. Tipografía
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: var(--lh-heading);
  letter-spacing: -0.015em;
  text-wrap: balance;
  font-weight: 500;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.025em;
  font-weight: 400;
}

p { text-wrap: pretty; }
.lead { font-size: var(--fs-lead); color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-small); }
.xs    { font-size: var(--fs-xs); }

/* ==========================================================================
   3. Layout
   ========================================================================== */

.container      { width: min(100% - 2 * var(--space-4), var(--container-base));  margin-inline: auto; }
.container-wide { width: min(100% - 2 * var(--space-4), var(--container-wide));  margin-inline: auto; }
.container-narrow { width: min(100% - 2 * var(--space-4), var(--container-narrow)); margin-inline: auto; }

.section { padding-block: var(--space-8); }
.section-lg { padding-block: var(--space-9); }
.section + .section-alt,
.section-alt + .section { position: relative; }
.section-alt { background: var(--bg-alt); }

.stack > * + * { margin-top: var(--flow, var(--space-4)); }
.stack-sm { --flow: var(--space-2); }
.stack-md { --flow: var(--space-4); }
.stack-lg { --flow: var(--space-6); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }

/* ==========================================================================
   4. Skip link + header
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100px; left: var(--space-4);
  z-index: 100;
  background: var(--ink-900);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: var(--space-4); color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  height: var(--header-height);
  background: rgba(251,248,244,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(251,248,244,.95);
}
.site-header .inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.brand:hover { color: var(--ink-900); }
.brand .dot { color: var(--clay-600); }

.primary-nav { display: flex; gap: var(--space-5); align-items: center; }
.primary-nav a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: var(--fs-small);
  font-weight: 500;
}
.primary-nav a:hover { color: var(--ink-900); }
.primary-nav .cta { display: none; }

@media (min-width: 48rem) {
  .primary-nav .cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-md);
  color: var(--ink-700);
}
.nav-toggle:hover { background: var(--sand-100); }
@media (min-width: 40rem) { .nav-toggle { display: none; } }

@media (max-width: 40rem) {
  .primary-nav { display: none; }
  .primary-nav[data-open="true"] {
    display: flex;
    position: absolute;
    top: var(--header-height); left: 0; right: 0;
    background: var(--surface);
    padding: var(--space-5);
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .primary-nav[data-open="true"] .cta { display: inline-flex; justify-content: center; }
}

/* ==========================================================================
   5. Footer
   ========================================================================== */

.site-footer {
  margin-top: var(--space-9);
  padding-block: var(--space-7);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: var(--fs-small);
}
.site-footer .cols {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.site-footer a { color: var(--text-soft); text-decoration: none; }
.site-footer a:hover { color: var(--primary); text-decoration: underline; }
.site-footer .legal {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  min-height: 44px; /* touch target */
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--primary); color: var(--text-on-primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-hover); color: var(--text-on-primary); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--ink-900);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--white); border-color: var(--clay-300); color: var(--ink-900); }

.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--text-on-primary); }

.btn-sm  { padding: var(--space-2) var(--space-4); font-size: var(--fs-small); min-height: 36px; }
.btn-lg  { padding: var(--space-4) var(--space-6); font-size: var(--fs-lead); }
.btn-block { width: 100%; }

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
  background: var(--grad-hero);
  padding-block: var(--space-9) var(--space-8);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: auto -10% -40% auto;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(122,155,127,.18), transparent 70%);
  pointer-events: none;
}
.hero .inner {
  display: grid; gap: var(--space-7);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 60rem) {
  .hero .inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); }
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--clay-50); color: var(--clay-800);
  border-radius: var(--radius-full);
  font-size: var(--fs-small); font-weight: 500;
  border: 1px solid var(--clay-100);
}
.hero h1 { margin-top: var(--space-4); }
.hero p.lead { margin-top: var(--space-4); }
.hero .actions { margin-top: var(--space-6); }
.hero .micro-trust { margin-top: var(--space-4); font-size: var(--fs-small); color: var(--text-muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--grad-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--sand-200);
}
.hero-visual svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   8. Trust bar
   ========================================================================== */

.trust-bar {
  background: var(--sage-100);
  padding-block: var(--space-5);
  border-block: 1px solid var(--sage-300);
}
.trust-bar .items {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: var(--space-3) var(--space-7);
  color: var(--sage-700);
  font-size: var(--fs-small);
  font-weight: 500;
}
.trust-bar .items li {
  display: inline-flex; align-items: center; gap: var(--space-2);
  list-style: none;
}

/* ==========================================================================
   9. Feature cards / step cards
   ========================================================================== */

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  height: 100%;
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-card .index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--clay-50); color: var(--clay-700);
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.125rem;
}
.step-card h3 { margin-top: var(--space-4); margin-bottom: var(--space-2); }
.step-card p { color: var(--text-soft); }

/* ==========================================================================
   10. Pricing / highlight card
   ========================================================================== */

.price-card {
  background: var(--grad-card);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-200);
  max-width: 32rem; margin-inline: auto;
  text-align: center;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3vw + 1rem, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-900);
}
.price-card .amount sup { font-size: 0.5em; vertical-align: super; margin-right: 4px; color: var(--text-muted); }
.price-card .amount-ars {
  margin-top: var(--space-2);
  color: var(--text-soft);
  font-size: var(--fs-small);
}
.price-card ul {
  list-style: none; padding: 0; margin-top: var(--space-5);
  text-align: left;
}
.price-card ul li {
  padding-left: 1.75rem; position: relative; color: var(--text-soft);
  margin-block: var(--space-2);
}
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: .4em;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--sage-100);
  box-shadow: inset 0 0 0 1px var(--sage-300);
}
.price-card ul li::after {
  content: ""; position: absolute; left: .35rem; top: .75em;
  width: .4rem; height: .25rem;
  border-left: 2px solid var(--sage-700);
  border-bottom: 2px solid var(--sage-700);
  transform: rotate(-45deg);
}

/* ==========================================================================
   11. FAQ (accordion)
   ========================================================================== */

.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
}
.faq details[open] summary > .chev { transform: rotate(180deg); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--fs-h3); font-weight: 500;
  color: var(--ink-900);
  padding-block: var(--space-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none;
  transition: transform var(--dur-base) var(--ease-out);
  color: var(--clay-600);
}
.faq details > .answer {
  margin-top: var(--space-3);
  color: var(--text-soft);
  max-width: 60ch;
}

/* ==========================================================================
   12. Sobre mí
   ========================================================================== */

.about {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 52rem) {
  .about { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); }
}
.about-portrait {
  aspect-ratio: 1 / 1;
  max-width: 22rem;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  background: var(--grad-sage);
  border: 2px solid var(--sage-300);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.about-portrait svg, .about-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   13. Forms
   ========================================================================== */

.field { display: block; margin-bottom: var(--space-4); }
.field > label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: var(--space-2);
}

.input,
input[type="text"].input, input[type="email"].input, input[type="tel"].input,
select.input, textarea.input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  color: var(--ink-900);
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.input:focus,
input.input:focus, select.input:focus, textarea.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}
.input[aria-invalid="true"], .input.is-invalid { border-color: var(--err-600); }

.help { display: block; margin-top: var(--space-1); font-size: var(--fs-xs); color: var(--text-muted); }
.error-text { display: block; margin-top: var(--space-1); font-size: var(--fs-xs); color: var(--err-700); }

/* Honeypot — hidden from humans and accessible tech, but still in the DOM. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ==========================================================================
   14. Slot picker
   ========================================================================== */

.range-controls {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.range-btn {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--ink-700);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.range-btn:hover { border-color: var(--clay-300); }
.range-btn[aria-pressed="true"] {
  background: var(--clay-600); color: var(--white); border-color: var(--clay-600);
}

.slot-list {
  display: grid; gap: var(--space-2);
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  max-height: 26rem;
  overflow-y: auto;
  padding: var(--space-1);
  scrollbar-gutter: stable;
}
.slot-option {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3) var(--space-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  color: var(--ink-700);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  text-align: center;
  line-height: 1.3;
  min-height: 52px;
}
.slot-option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.slot-option:hover { border-color: var(--clay-300); background: var(--clay-50); }
.slot-option:has(input:checked) {
  background: var(--clay-600); color: var(--white);
  border-color: var(--clay-600);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.slot-option:has(input:focus-visible) { box-shadow: var(--focus-ring); }

.slot-day-heading {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--clay-700);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: var(--space-3);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--sand-200);
}
.slot-day-heading:first-child { margin-top: 0; }

.skeleton {
  background: linear-gradient(90deg, var(--sand-100) 0%, var(--sand-200) 50%, var(--sand-100) 100%);
  background-size: 200% 100%;
  animation: sk 1.4s linear infinite;
  border-radius: var(--radius-md);
  min-height: 52px;
}
@keyframes sk { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* ==========================================================================
   15. Booking wizard (2-step)
   ========================================================================== */

.wizard { display: grid; gap: var(--space-6); }
@media (min-width: 56rem) {
  .wizard { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.wizard-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.wizard-step header { margin-bottom: var(--space-4); }
.wizard-step header .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--clay-600); color: var(--white);
  font-size: var(--fs-small); font-weight: 600;
  margin-right: var(--space-3);
}
.wizard-summary {
  background: var(--grad-card);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: sticky;
  top: calc(var(--header-height) + var(--space-4));
}
.wizard-summary dl { margin: 0; display: grid; gap: var(--space-2); }
.wizard-summary dt { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.wizard-summary dd { margin: 0; color: var(--ink-900); }
.wizard-summary .price-row {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: baseline;
}
.wizard-summary .price-row .amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ink-900);
}

/* ==========================================================================
   16. Timeline / status stepper
   ========================================================================== */

.stepper {
  display: grid; gap: var(--space-4);
  padding: 0; margin: 0; list-style: none;
}
.stepper li {
  display: grid; grid-template-columns: 32px 1fr; gap: var(--space-3);
  align-items: start;
}
.stepper .dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sand-100); color: var(--ink-400);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--fs-small); font-weight: 600;
  border: 1px solid var(--border);
}
.stepper li.done .dot { background: var(--sage-500); color: var(--white); border-color: var(--sage-500); }
.stepper li.current .dot { background: var(--clay-600); color: var(--white); border-color: var(--clay-600); }
.stepper li h4 { font-family: var(--font-sans); font-size: var(--fs-body); color: var(--ink-900); }
.stepper li p { color: var(--text-soft); font-size: var(--fs-small); margin-top: var(--space-1); }

/* ==========================================================================
   17. Status cards (success, manage, cancel)
   ========================================================================== */

.status-card {
  background: var(--grad-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--sand-200);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
  max-width: 42rem; margin-inline: auto;
}
.status-card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-100); color: var(--sage-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.status-card .icon.is-error { background: var(--err-50); color: var(--err-700); }
.status-card .icon.is-warn  { background: var(--warn-50); color: var(--warn-600); }
.status-card h1 { margin-bottom: var(--space-3); }
.status-card .details {
  margin-top: var(--space-5);
  display: grid; gap: var(--space-3);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.status-card .details dt { color: var(--text-muted); font-size: var(--fs-small); font-weight: 500; }
.status-card .details dd { margin: 0; color: var(--ink-900); font-weight: 500; }

.calendar-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-top: var(--space-4);
}

/* Countdown */
.countdown {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--clay-50); color: var(--clay-800);
  border: 1px solid var(--clay-100);
  border-radius: var(--radius-full);
  font-size: var(--fs-small); font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.countdown.is-warn { background: var(--warn-50); color: var(--warn-600); border-color: #E8C98A; }
.countdown.is-blocked { background: var(--err-50); color: var(--err-700); border-color: #E8B8B6; }

/* ==========================================================================
   18. Badges / alerts
   ========================================================================== */

.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs); font-weight: 600;
  line-height: 1.6;
  background: var(--sand-100); color: var(--ink-700);
}
.badge.ok   { background: var(--ok-50); color: var(--ok-700); }
.badge.warn { background: var(--warn-50); color: var(--warn-600); }
.badge.err  { background: var(--err-50); color: var(--err-700); }

.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; gap: var(--space-3); align-items: flex-start;
}
.alert-ok   { background: var(--ok-50); border-color: #B6DAC1; color: var(--ok-700); }
.alert-warn { background: var(--warn-50); border-color: #E8C98A; color: var(--warn-600); }
.alert-err  { background: var(--err-50); border-color: #E8B8B6; color: var(--err-700); }
.alert-info { background: var(--clay-50); border-color: var(--clay-100); color: var(--clay-800); }

/* ==========================================================================
   19. Testimonials
   ========================================================================== */

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--space-3);
  height: 100%;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-700);
  font-style: italic;
  margin: 0;
}
.testimonial figcaption {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: auto;
}

/* ==========================================================================
   20. Utilities
   ========================================================================== */

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.mx-auto       { margin-inline: auto; }
.mt-2          { margin-top: var(--space-2); }
.mt-4          { margin-top: var(--space-4); }
.mt-6          { margin-top: var(--space-6); }
.mb-2          { margin-bottom: var(--space-2); }
.mb-4          { margin-bottom: var(--space-4); }
.mb-6          { margin-bottom: var(--space-6); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }
.htmx-request .htmx-indicator { display: block; }
.htmx-indicator { display: none; }

/* ==========================================================================
   21. Print
   ========================================================================== */

@media print {
  .site-header, .site-footer, .skip-link, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
