/* ==========================================================================
   Casa Clara — hoja de estilos principal
   Paleta: verde agua (limpieza/frescura) + crema cálida (hogar)
   ========================================================================== */

:root {
  /* Color */
  --brand:        #0F7A6B;
  --brand-dark:   #0A5A4F;
  --brand-light:  #14A08D;
  --brand-wash:   #E8F4F1;
  --accent:       #D98B2B;
  --accent-wash:  #FBF0E1;

  --ink:          #16241F;
  --ink-soft:     #3A4B45;
  --muted:        #66756F;
  --line:         #E4E0D8;
  --line-soft:    #EFEDE7;

  --bg:           #FBF9F5;
  --surface:      #FFFFFF;
  --surface-alt:  #F5F2EC;

  /* Tipografía */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Espacio y forma */
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --wrap:      1120px;
  --shadow:    0 1px 2px rgba(22, 36, 31, .05), 0 8px 24px -12px rgba(22, 36, 31, .16);
  --shadow-lg: 0 2px 4px rgba(22, 36, 31, .05), 0 24px 48px -20px rgba(22, 36, 31, .22);
}

/* --------------------------------------------------------------- Reset -- */

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.021em;
  margin: 0 0 .5em;
  font-weight: 640;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.35rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.3rem);  letter-spacing: -0.026em; }
h3 { font-size: 1.16rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

strong { color: var(--ink); font-weight: 620; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- Layout --- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 760px; }

section { padding: clamp(56px, 7.5vw, 92px) 0; }
section.tight { padding-block: clamp(40px, 5vw, 60px); }

.section-head { max-width: 620px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .775rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }

.bg-surface { background: var(--surface); }
.bg-alt     { background: var(--surface-alt); }

/* ------------------------------------------------------------ Botones --- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: .98rem;
  padding: .8rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .16s ease, border-color .16s ease,
              color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }

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

.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-wash); color: var(--brand-dark); }

.btn-lg { padding: .95rem 1.9rem; font-size: 1.03rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------- Header --- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 249, 245, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav { display: flex; align-items: center; gap: 1.5rem; height: 72px; }

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 680; font-size: 1.12rem; color: var(--ink);
  text-decoration: none; letter-spacing: -.02em;
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand-light), var(--brand-dark));
  display: grid; place-items: center;
}
.brand-mark svg { width: 19px; height: 19px; }

.nav-links { display: flex; align-items: center; gap: 1.45rem; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .95rem; font-weight: 520;
}
.nav-links a:hover { color: var(--brand-dark); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .5rem .6rem; cursor: pointer; color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; inset: 72px 0 auto; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem 22px 1.1rem;
  }
  .nav-links:not(.open) { display: none; }
  .nav-links a { padding: .75rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links .btn { margin-top: .9rem; border-bottom: 0; }
}

/* --------------------------------------------------------------- Hero --- */

.hero { padding-top: clamp(46px, 6vw, 76px); padding-bottom: clamp(46px, 6vw, 76px); }
.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero p.lead {
  font-size: 1.14rem; color: var(--muted); max-width: 47ch; margin-bottom: 1.7rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.6rem; }

.hero-notes {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  font-size: .9rem; color: var(--muted); list-style: none; padding: 0; margin: 0;
}
.hero-notes li { display: flex; align-items: center; gap: .4rem; margin: 0; }
.hero-notes svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* Tarjeta ilustrada del hero */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}
.hero-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.hero-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.hero-row:last-of-type { border-bottom: 0; }
.hero-row span:first-child { color: var(--muted); }
.hero-row span:last-child { font-weight: 600; color: var(--ink); }
.hero-total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: .9rem; padding-top: 1rem; border-top: 2px solid var(--ink);
}
.hero-total b { font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.hero-card small { display: block; color: var(--muted); font-size: .82rem; margin-top: .9rem; }

/* --------------------------------------------------------- Trust strip -- */

.trust {
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
  padding-block: 1.4rem;
}
.trust ul {
  display: grid; gap: 1rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.trust li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .93rem; color: var(--ink-soft); margin: 0;
}
.trust svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

/* -------------------------------------------------------------- Cards --- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .96rem; }

.icon-badge {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand-wash); color: var(--brand-dark);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.icon-badge svg { width: 21px; height: 21px; }

/* --------------------------------------------------------- Imágenes ----- */
/* Todas las imágenes se recortan con object-fit, así que puedes sustituir un
   SVG por una foto JPG de cualquier proporción sin tocar el CSS. */

.card-media {
  margin: -1.6rem -1.6rem 1.3rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--brand-wash);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--brand-wash);
  border: 1px solid var(--line);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Retrato + texto. En pantallas anchas el retrato deja de regirse por su
   proporción y se estira a la altura de la tarjeta de al lado, para que las
   dos columnas terminen a la misma altura. */
.about-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (min-width: 901px) {
  .about-grid { grid-template-columns: .82fr 1.18fr; align-items: stretch; }
  /* La imagen sale del flujo para no aportar altura: así la fila la define la
     tarjeta de texto y el retrato se estira hasta igualarla. */
  .about-grid .portrait { aspect-ratio: auto; position: relative; min-height: 340px; }
  .about-grid .portrait img { position: absolute; inset: 0; }
}

ul.checks { list-style: none; padding: 0; margin: .4rem 0 0; }
ul.checks li {
  position: relative; padding-left: 1.5rem; font-size: .93rem;
  color: var(--ink-soft); margin-bottom: .45rem;
  break-inside: avoid;
}
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-light);
}

/* ------------------------------------------------------------- Precios -- */

.price-card { position: relative; }
.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.price-tag {
  position: absolute; top: -12px; right: 1.3rem;
  background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 660; letter-spacing: .06em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 100px;
}
.price {
  display: flex; align-items: baseline; gap: .35rem;
  margin: .9rem 0 .2rem;
}
.price .amount { font-size: 2.1rem; font-weight: 680; color: var(--ink); letter-spacing: -.03em; }
.price .cur { font-size: .92rem; color: var(--muted); font-weight: 600; }
.price-note { font-size: .84rem; color: var(--muted); margin-bottom: 1.1rem; }
.price-card .btn { margin-top: auto; }
.price-card ul.checks { margin-bottom: 1.4rem; }

/* Dos columnas sólo cuando hay ancho de sobra. */
@media (min-width: 700px) {
  ul.checks--2col { columns: 2; column-gap: 2.4rem; }
}

.addons {
  margin-top: 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
}
.addons h3 { font-size: 1.02rem; margin-bottom: 1rem; }
.addons dl {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .1rem 1.8rem; margin: 0;
}
.addons div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px dashed var(--line-soft);
  font-size: .94rem;
}
.addons dt { color: var(--ink-soft); }
.addons dd { margin: 0; font-weight: 620; color: var(--ink); white-space: nowrap; }

/* ------------------------------------------------------- Antes/después -- */

.gallery { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.gallery figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img { width: 100%; height: auto; }
.gallery figcaption { padding: 1rem 1.25rem 1.15rem; }
.gallery figcaption b { display: block; color: var(--ink); font-size: .98rem; margin-bottom: .2rem; }
.gallery figcaption span { font-size: .89rem; color: var(--muted); }

/* Etiqueta ANTES / DESPUÉS sobre la imagen compuesta */
.gallery .shot { position: relative; }
.gallery .shot::before,
.gallery .shot::after {
  position: absolute; top: 12px;
  font-size: .68rem; font-weight: 680; letter-spacing: .09em;
  padding: .28rem .6rem; border-radius: 100px;
  background: rgba(22, 36, 31, .72); color: #fff;
  backdrop-filter: blur(4px);
}
.gallery .shot::before { content: "ANTES";   left: 12px; }
.gallery .shot::after  { content: "DESPUÉS"; right: 12px; }

/* --------------------------------------------------------------- Pasos -- */

.steps { counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: .96rem; font-weight: 660;
}
.step h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* -------------------------------------------------------------- Zonas --- */

.zones { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.zones li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: .42rem 1rem;
  font-size: .9rem; color: var(--ink-soft); margin: 0;
}

/* ---------------------------------------------------------- Opiniones --- */

.quote p { font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.quote footer {
  margin-top: 1rem; font-size: .88rem; color: var(--muted); font-style: normal;
}
.quote footer b { display: block; color: var(--ink); font-style: normal; }
.stars { color: var(--accent); letter-spacing: .12em; font-size: .95rem; margin-bottom: .6rem; }

/* ---------------------------------------------------------------- FAQ --- */

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.25rem;
  margin-bottom: .7rem;
}
.faq details[open] { border-color: var(--brand-light); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brand); font-weight: 500; font-size: 1.35rem;
  line-height: 1; flex: none; transition: transform .18s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .85rem 0 0; color: var(--muted); font-size: .96rem; }

/* ------------------------------------------------------------ Reserva --- */

.booking {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}

.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--ink); margin-bottom: .38rem;
}
.field .hint { font-weight: 400; color: var(--muted); }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], select, textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .85rem;
  transition: border-color .16s ease, box-shadow .16s ease;
}
textarea { min-height: 92px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-light);
  box-shadow: 0 0 0 3px var(--brand-wash);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2366756F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.3rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.checkbox {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .89rem; color: var(--muted); line-height: 1.5;
}
.checkbox input { margin-top: .25rem; accent-color: var(--brand); flex: none; }

.pay-note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .84rem; color: var(--muted); margin-top: .9rem; text-align: center;
}
.pay-note svg { width: 14px; height: 14px; flex: none; }

/* ----------------------------------------------------------- CTA band --- */

.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 52ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.4rem; }

/* ------------------------------------------------------------- Legal ---- */

.legal-page { padding-block: clamp(40px, 5vw, 64px); }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: .35rem; }
.updated { color: var(--muted); font-size: .89rem; margin-bottom: 2.2rem; }
.legal-page h2 { font-size: 1.24rem; margin-top: 2.4rem; }
.legal-page h3 { font-size: 1.02rem; margin-top: 1.6rem; }
.legal-page li { font-size: .98rem; }

.callout {
  background: var(--brand-wash);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.05rem 1.25rem;
  margin: 1.6rem 0;
  font-size: .96rem;
}
.callout p:last-child { margin-bottom: 0; }

.legal-toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.4rem; margin-bottom: 2.4rem;
}
.legal-toc h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted); margin: 0 0 .7rem; }
.legal-toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
@media (max-width: 620px) { .legal-toc ol { columns: 1; } }
.legal-toc li { font-size: .92rem; break-inside: avoid; }

.data-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .93rem; }
.data-table th, .data-table td {
  text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.data-table th { color: var(--ink); font-weight: 620; background: var(--surface-alt); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------------------------------------------------------- Contacto ---- */

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; gap: .85rem; padding: .95rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: .25rem; }
.contact-list b { display: block; color: var(--ink); font-size: .93rem; }
.contact-list span { font-size: .95rem; color: var(--muted); }

/* ------------------------------------------------------------- Footer --- */

.site-footer {
  background: var(--ink); color: rgba(255,255,255,.68);
  padding: clamp(44px, 6vw, 64px) 0 28px;
  font-size: .93rem;
}
.site-footer h4 {
  color: #fff; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .09em; margin-bottom: .9rem; font-weight: 640;
}
.site-footer a { color: rgba(255,255,255,.68); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer .brand { color: #fff; margin-bottom: .9rem; }
.site-footer .brand:hover { color: #fff; }
.footer-about { max-width: 34ch; line-height: 1.6; }

.footer-legal {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-legal p { margin: 0; }

.pay-methods { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.pay-methods span {
  border: 1px solid rgba(255,255,255,.2); border-radius: 5px;
  padding: .22rem .55rem; font-size: .72rem; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
}

/* ------------------------------------------------------------- Utils ---- */

.center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

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