/* ==========================================================
   Atlantink · hoja de estilos común a todas las páginas
   ========================================================== */

:root {
  --ink: #0E1A2B;
  --ink-2: #1B2A40;
  --paper: #FFFFFF;
  --soft: #F2F5F8;
  --line: #E1E6EC;
  --muted: #4B5563;
  --cyan: #00ABE8;
  --magenta: #EA148C;
  --yellow: #FFF02A;
  --cyan-dark: #0077A8;      /* cian con contraste suficiente sobre blanco */
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
  --wrap: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow); color: var(--ink);
  padding: .6rem 1rem; z-index: 100; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: .75rem; }
h3 { font-size: 1.3rem; font-weight: 700; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-intro { max-width: 46ch; color: var(--muted); margin-bottom: 2.5rem; font-size: 1.125rem; }

/* ---------- Barra superior de contacto ---------- */
.topline {
  background: var(--ink-2);
  color: #D5DDE8;
  font-size: .9rem;
}
.topline .wrap {
  display: flex; flex-wrap: wrap; gap: .25rem 1.5rem;
  justify-content: flex-end;
  padding-top: .45rem; padding-bottom: .45rem;
}
.topline a { text-decoration: none; }
.topline a:hover { color: var(--paper); text-decoration: underline; }

/* ---------- Cabecera y menú ---------- */
.site-header { background: var(--ink); color: var(--paper); position: sticky; top: 0; z-index: 50; }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.brand img { width: 176px; }

.nav ul { list-style: none; display: flex; gap: .25rem; }
.nav a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  color: #DCE3EC;
}
.nav a:hover { color: var(--paper); background: rgba(255,255,255,.08); }
.nav a[aria-current="page"] { color: var(--paper); box-shadow: inset 0 -3px 0 var(--cyan); border-radius: 8px 8px 0 0; }

.nav-toggle {
  display: none;
  background: none; border: 2px solid rgba(255,255,255,.35); color: var(--paper);
  border-radius: 10px; padding: .45rem .8rem; font: inherit; font-weight: 700; cursor: pointer;
  align-items: center; gap: .5rem;
}
.nav-toggle svg { width: 20px; height: 20px; }

.strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 6px; }
.strip span:nth-child(1) { background: var(--cyan); }
.strip span:nth-child(2) { background: var(--magenta); }
.strip span:nth-child(3) { background: var(--yellow); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.1);
    display: none;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; padding: .5rem var(--gutter) 1rem; }
  .nav a { padding: .8rem .5rem; font-size: 1.05rem; }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--cyan); border-radius: 0; padding-left: 1rem; }
  .topline .wrap { justify-content: center; }
}

/* ---------- Botones ---------- */
.btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: transparent; color: var(--ink);
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn:hover { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }

/* ---------- Portada ---------- */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero .lead { font-size: 1.2rem; color: var(--muted); max-width: 40ch; margin-bottom: 2rem; }
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 992 / 595;
  object-fit: cover;
}
.hero-photo figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--ink); color: var(--paper);
  padding: .5rem .9rem; border-radius: 10px;
  font-size: .92rem; font-weight: 700;
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo figcaption { left: .6rem; bottom: .6rem; font-size: .8rem; padding: .35rem .65rem; }
}

/* ---------- Servicios ---------- */
.services { background: var(--soft); }
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.service { grid-column: span 2; }
.service:nth-child(4), .service:nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service, .service:nth-child(4) { grid-column: span 1; }
  .service:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .service-list { grid-template-columns: 1fr; }
  .service:nth-child(5) { grid-column: span 1; }
}
.service {
  background: var(--paper);
  border-radius: 10px;
  padding: 1.5rem 1.4rem 1.6rem;
  border-top: 6px solid var(--c, var(--ink));
  display: flex; flex-direction: column; gap: .5rem;
}
.service:nth-child(4n+1) { --c: var(--cyan); }
.service:nth-child(4n+2) { --c: var(--magenta); }
.service:nth-child(4n+3) { --c: var(--yellow); }
.service:nth-child(4n+4) { --c: var(--ink); }
.service p { color: var(--muted); font-size: 1rem; flex: 1; }
.service a {
  font-weight: 700; color: var(--ink);
  text-decoration-color: var(--cyan); text-decoration-thickness: 2px; text-underline-offset: 4px;
  margin-top: .5rem;
}
.service a:hover { text-decoration-color: var(--magenta); }

/* ---------- Niveles de tinta (ventajas) ---------- */
.levels { display: grid; gap: 1.75rem; max-width: 820px; }
.level-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin-bottom: .6rem;
}
.level-head h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); }
.level-value {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tube {
  height: 28px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
.tube::after {  /* marcas de nivel como en un cartucho */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 calc(25% - 2px), rgba(14,26,43,.18) calc(25% - 2px) 25%);
  pointer-events: none;
}
.tube span {
  display: block; height: 100%;
  width: var(--level);
  background: var(--c);
  transition: width 1.4s cubic-bezier(.3,.1,.25,1);
}
.levels.pending .tube span { width: 0; }
.level:nth-child(1) { --c: var(--cyan); }
.level:nth-child(2) { --c: var(--magenta); }
.level:nth-child(3) { --c: var(--yellow); }
.level p { color: var(--muted); margin-top: .5rem; font-size: 1rem; }

/* ---------- Marcas ---------- */
.brands { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2rem 0; }
.brands .wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 2rem; }
.brands p { color: var(--muted); font-weight: 700; margin-right: .5rem; }
.brands li.more { font-family: var(--body); font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.brands ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; }
.brands li {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: .01em;
}

/* ---------- Misión ---------- */
.mission { background: var(--ink); color: var(--paper); }
.mission .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.mission img { width: clamp(88px, 12vw, 120px); }
.mission blockquote p {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.mission .text { color: #C9D3DF; max-width: 58ch; font-size: 1.1rem; }
@media (max-width: 640px) {
  .mission .wrap { grid-template-columns: 1fr; }
}

/* ---------- Visítanos / contacto ---------- */
.visit .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.info { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 2rem; margin: 1.5rem 0 2rem; font-style: normal; }
.info h3 { font-family: var(--body); font-size: .95rem; color: var(--muted); margin-bottom: .2rem; letter-spacing: 0; }
.info a { text-decoration-color: var(--cyan); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.info a:hover { text-decoration-color: var(--magenta); }
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--soft);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.form-box { background: var(--soft); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-box > p { color: var(--muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 2px solid #C5CED9;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--cyan-dark); outline-offset: 1px; }
.field textarea { min-height: 140px; resize: vertical; }
.check { display: flex; gap: .6rem; align-items: flex-start; margin: 1.25rem 0 1.5rem; font-size: .98rem; }
.check input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--ink); flex-shrink: 0; }
.check a { text-decoration-color: var(--cyan); text-decoration-thickness: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { border-radius: 10px; padding: .9rem 1rem; margin-bottom: 1.25rem; font-weight: 700; }
.notice.ok { background: #DDF5E6; color: #0E5A2B; }
.notice.error { background: #FDE2EF; color: #8A0B4E; }

@media (max-width: 900px) {
  .visit .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .info { grid-template-columns: 1fr; }
  .btns .btn { flex: 1 1 100%; }
}

/* ---------- Pie ---------- */
.site-footer { background: var(--ink); color: #C9D3DF; font-size: .95rem; }
.site-footer::before {
  content: ""; display: block; height: 6px;
  background: linear-gradient(90deg, var(--cyan) 0 33.33%, var(--magenta) 33.33% 66.66%, var(--yellow) 66.66% 100%);
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3rem; padding-bottom: 2rem;
}
.site-footer img { width: 160px; margin-bottom: 1rem; }
.site-footer h2 { font-family: var(--body); font-size: 1rem; color: var(--paper); margin-bottom: .6rem; letter-spacing: 0; }
.site-footer ul { list-style: none; display: grid; gap: .35rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.site-footer address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  font-size: .88rem;
}
.footer-bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding-top: 0; padding-bottom: 0; }
@media (max-width: 760px) {
  .site-footer .wrap { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tube span { transition: none; }
}

/* ==========================================================
   Páginas interiores
   ========================================================== */
.page-head { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-head h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-head .lead { font-size: 1.2rem; color: var(--muted); max-width: 44ch; }

/* ---------- Quiénes somos: historia ---------- */
.story .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.story-text p { max-width: 60ch; margin-bottom: 1.1rem; font-size: 1.125rem; }
.story-text .first { font-weight: 700; font-size: 1.3rem; }
.since {
  display: inline-flex; align-items: stretch;
  border: 3px solid var(--ink); border-radius: 12px; overflow: hidden;
  margin-bottom: 1.75rem;
}
.since span { padding: .5rem .9rem; font-weight: 700; display: flex; align-items: center; }
.since strong {
  font-family: var(--display); font-size: 1.9rem; line-height: 1;
  padding: .45rem .9rem; background: var(--yellow);
  border-left: 3px solid var(--ink);
  font-variant-numeric: tabular-nums;
}
.story figure img { border-radius: var(--radius); width: 100%; }
.story figcaption { color: var(--muted); font-size: .95rem; margin-top: .6rem; }
@media (max-width: 860px) {
  .story .wrap { grid-template-columns: 1fr; }
}

/* ---------- Quiénes somos: cómo trabajamos ---------- */
.ways { background: var(--soft); }
.ways-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  max-width: 980px;
}
.ways-list li { padding-left: 1.25rem; border-left: 5px solid var(--c); }
.ways-list li:nth-child(1) { --c: var(--cyan); }
.ways-list li:nth-child(2) { --c: var(--magenta); }
.ways-list li:nth-child(3) { --c: var(--yellow); }
.ways-list li:nth-child(4) { --c: var(--ink); }
.ways-list h3 { margin-bottom: .35rem; }
.ways-list p { color: var(--muted); }
@media (max-width: 700px) {
  .ways-list { grid-template-columns: 1fr; }
}

/* ---------- Franja de llamada a la acción ---------- */
.cta-band { background: var(--ink); color: var(--paper); padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; }
.cta-band h2 { margin-bottom: .35rem; }
.cta-band p { color: #C9D3DF; max-width: 48ch; }
.cta-band .btn { border-color: var(--paper); color: var(--paper); }
.cta-band .btn-primary { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.cta-band .btn:hover { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }

/* ---------- Productos: catálogo ---------- */
.catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.shelf {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 110px;
}
.shelf-head {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 2px solid var(--ink);
}
.shelf-head::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 34px; border-radius: 4px;
  background: var(--c); border: 2px solid var(--ink);
}
.shelf:nth-child(1) { --c: var(--cyan); }
.shelf:nth-child(2) { --c: var(--magenta); }
.shelf:nth-child(3) { --c: var(--yellow); }
.shelf:nth-child(4) { --c: var(--ink); }
.shelf-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin: 0; }
.shelf-body { padding: 1.3rem 1.4rem 1.5rem; }
.shelf-body > p { color: var(--muted); margin-bottom: 1rem; }
.items { list-style: none; display: grid; gap: .7rem; }
.items li { display: flex; gap: .7rem; align-items: baseline; font-size: 1.08rem; }
.items li::before {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--c);
  outline: 1.5px solid var(--ink);
  transform: translateY(-1px);
}
.shelf-body .more-link {
  display: inline-block; margin-top: 1.2rem; font-weight: 700;
  text-decoration-color: var(--cyan); text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.shelf-body .more-link:hover { text-decoration-color: var(--magenta); }
@media (max-width: 820px) {
  .catalog { grid-template-columns: 1fr; }
}

/* ---------- Garantía ---------- */
.guarantee { background: var(--soft); }
.guarantee .levels { max-width: 720px; }
.guarantee h2 { margin-bottom: 1.5rem; }

/* ---------- Servicio técnico ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.tech {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.tech-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--c);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
}
.tech-icon svg { width: 32px; height: 32px; }
.tech:nth-child(1) { --c: var(--cyan); }
.tech:nth-child(2) { --c: var(--yellow); }
.tech h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .6rem; }
.tech p { color: var(--muted); font-size: 1.1rem; max-width: 44ch; }
.tech ul { list-style: none; margin-top: 1rem; display: grid; gap: .45rem; }
.tech li { display: flex; gap: .6rem; align-items: baseline; }
.tech li::before {
  content: ""; flex-shrink: 0; width: 10px; height: 10px; border-radius: 2px;
  background: var(--c); outline: 1.5px solid var(--ink); transform: translateY(-1px);
}
@media (max-width: 820px) {
  .tech-grid { grid-template-columns: 1fr; }
}

.steps-section { background: var(--soft); }
.steps {
  list-style: none;
  counter-reset: paso;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
}
.steps::before {  /* línea que une los pasos */
  content: ""; position: absolute;
  top: 26px; left: 26px; right: calc(33.33% - 26px);
  height: 3px; background: var(--ink);
}
.steps li { counter-increment: paso; position: relative; }
.steps li::before {
  content: counter(paso);
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c); color: var(--ink);
  border: 3px solid var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
}
.steps li:nth-child(1) { --c: var(--cyan); }
.steps li:nth-child(2) { --c: var(--magenta); }
.steps li:nth-child(3) { --c: var(--yellow); }
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--muted); max-width: 32ch; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .steps::before { display: none; }
  .steps li:not(:last-child)::after {
    content: ""; position: absolute;
    left: 24px; top: 52px; bottom: -1.75rem;
    width: 3px; background: var(--ink);
  }
  .steps li { padding-left: 76px; }
  .steps li::before { position: absolute; left: 0; top: 0; margin: 0; }
}

/* ---------- Dónde estamos ---------- */
.where .wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.where .map { aspect-ratio: 16 / 11; }
.where-panel { display: grid; gap: 1.75rem; }
.where-panel h2 { font-family: var(--body); font-size: .95rem; color: var(--muted); letter-spacing: 0; margin-bottom: .25rem; }
.where-panel address { font-style: normal; font-size: 1.2rem; line-height: 1.45; }
.where-panel .hours { font-size: 1.1rem; }
.where-panel figure img { border-radius: 10px; }
.where-panel figcaption { color: var(--muted); font-size: .95rem; margin-top: .5rem; }
@media (max-width: 900px) {
  .where .wrap { grid-template-columns: 1fr; }
  .where .map { aspect-ratio: 4 / 3; }
}

/* ---------- Contactos ---------- */
.contact-page .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.methods { list-style: none; display: grid; gap: 1.5rem; }
.methods li { padding-left: 1.1rem; border-left: 5px solid var(--c); }
.methods li:nth-child(1) { --c: var(--cyan); }
.methods li:nth-child(2) { --c: var(--magenta); }
.methods li:nth-child(3) { --c: var(--yellow); }
.methods li:nth-child(4) { --c: var(--ink); }
.methods h2 { font-family: var(--body); font-size: .95rem; color: var(--muted); letter-spacing: 0; margin-bottom: .15rem; }
.methods .big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.methods a.big:hover { text-decoration: underline; text-decoration-color: var(--cyan); text-decoration-thickness: 3px; }
.methods .note { color: var(--muted); font-size: .98rem; }
.visit-link {
  margin-top: 2.25rem; padding: 1.25rem 1.4rem;
  border: 2px solid var(--ink); border-radius: var(--radius);
}
.visit-link p { margin-bottom: .6rem; }
.visit-link a { font-weight: 700; text-decoration-color: var(--cyan); text-decoration-thickness: 2px; text-underline-offset: 4px; }
@media (max-width: 900px) {
  .contact-page .wrap { grid-template-columns: 1fr; }
}
