/* =========================================================
   MATEOS Y MARCO ABOGADOS — CSS Principal
   ========================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:      #1a2e4a;
  --azul-claro:#2a4a7f;
  --dorado:    #c9a84c;
  --gris-claro:#f5f5f5;
  --gris-texto:#555;
  --blanco:    #ffffff;
  --header-h:  92px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #ffffff;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TIPOGRAFÍAS CDN ---- */
/* Cargadas en <head> */

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: -50px;
}
.site-logo img {
  width: auto;
  height: 76px;
  object-fit: contain;
  display: block;
}

/* Navegación */
.site-nav {
  margin-right: -50px;
}
.site-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--azul);
  letter-spacing: .3px;
  transition: color .25s;
}

.site-nav a:hover { color: var(--dorado); }

/* Botón hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--azul);
  border-radius: 2px;
  transition: all .3s;
}

/* Menú móvil */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--azul);
  z-index: 999;
  padding: 20px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .4px;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--dorado); }

/* =========================================================
   OFFSET HEADER
   ========================================================= */
.page-top-offset { padding-top: var(--header-h); }

/* =========================================================
   BANNER — solo imagen, sin texto, sin overlay
   ========================================================= */
.site-banner {
  width: 100%;
  line-height: 0;
  margin-top: 0;
}

.site-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================================================
   BLOQUE INTRO (texto debajo del banner)
   ========================================================= */
.intro-section {
  background: #fff;
  text-align: center;
  padding: 52px 32px 44px;
}

.intro-section h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  color: var(--azul);
  margin-bottom: 16px;
  line-height: 1.3;
}

.intro-section p {
  font-size: 18px;
  color: var(--gris-texto);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   ÁREAS DE PRÁCTICA
   ========================================================= */
.areas-section {
  background: #ffffff;
  padding: 64px 32px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  color: var(--azul);
  text-align: center;
  margin-bottom: 8px;
}

.section-title-line {
  width: 60px;
  height: 3px;
  background: var(--dorado);
  margin: 0 auto 44px;
  border-radius: 2px;
}

.areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  background: #F8F9FB;
  border-radius: 14px;
  padding: 24px;
  border: 2px solid #E8D9B8;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.area-card:hover {
  transform: translateY(-3px);
  border-color: #c9a84c;
  box-shadow: 0 8px 28px rgba(201,168,76,.18), 0 2px 8px rgba(0,0,0,.07);
}

/* Caja del icono — cuadrado redondeado azul marino */
.area-card .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--azul);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

/* Bloque de texto a la derecha del icono */
.area-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.area-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.25;
}

.area-card p {
  font-size: 18px;
  color: #5a6a7e;
  line-height: 1.55;
}

/* Sin botón visible */
.area-card .btn-area {
  display: none;
}

/* El h2 hereda el color de la card-enlace */
.area-card h3 {
  color: var(--azul);
}
.area-card:hover h3 {
  color: var(--azul);
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  background: var(--azul);
  color: #fff;
  text-align: center;
  padding: 56px 32px;
}

.cta-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dorado);
  color: #fff;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .3px;
  transition: background .25s;
}
.btn-primary:hover { background: #b8933e; }

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .3px;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: #fff; color: var(--azul); }

/* =========================================================
   CONTACTO (sección home)
   ========================================================= */
.contact-section {
  background: #fff;
  padding: 64px 32px;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: var(--azul);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-item .ci-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  color: var(--dorado);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--azul);
  font-size: 15px;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-item p, .contact-item a {
  font-size: 17px;
  color: #444;
}

.contact-item a:hover { color: var(--dorado); }

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--azul);
  color: #ccc;
  padding: 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Col 1 — Nombre + slogan */
.footer-brand h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 16px;
  color: #aab5c8;
  line-height: 1.5;
}

/* Col 2 — Contacto */
.footer-contact h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item .fc-icon {
  color: var(--dorado);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 16px;
  color: #aab5c8;
  line-height: 1.4;
  transition: color .2s;
}

.footer-contact-item a:hover { color: #fff; }

/* Col 3 — Redes */
.footer-social h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  transition: background .25s, color .25s;
  text-decoration: none;
}

.footer-social-icons a:hover {
  background: var(--dorado);
  color: #fff;
}

/* Línea divisoria + copyright */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 32px;
  max-width: 100%;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #7a8fa8;
}

.footer-bottom a { color: var(--dorado); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   ANIMACIONES ENTRADA
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =========================================================
   RESPONSIVE — MÓVIL
   ========================================================= */
@media (max-width: 640px) {
  :root { --header-h: 70px; }

  .site-logo {
    margin-left: 0;
  }
  .site-logo img {
    height: 55px;
    width: auto;
  }

  .site-nav { display: none; margin-right: 0; }
  .hamburger { display: flex; }

  .areas-grid { grid-template-columns: 1fr; }

  /* Icono centrado arriba en móvil */
  .area-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .area-card .icon {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .area-card-body {
    align-items: center;
    text-align: center;
  }

  .area-card-body h3 { text-align: center; }
  .area-card-body p  { text-align: center; }

  .intro-section h1 { font-size: 28px; }
  .section-title { font-size: 26px; }

  .cta-btns { flex-direction: column; align-items: center; }

  /* Footer móvil: columna única */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .site-footer { padding-top: 0; }
  .footer-bottom { padding: 16px 20px; }
}

/* =========================================================
   ACCESIBILIDAD, CONFIANZA Y CONVERSIÓN
   ========================================================= */
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: #fff;
  color: var(--azul);
  border: 2px solid var(--dorado);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #d6b85f;
  outline-offset: 4px;
}

.site-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--dorado);
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #957629;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-light { color: #efd77e; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azul);
  border-bottom: 1px solid var(--dorado);
  font-weight: 750;
}

.text-link:hover { color: #9c7826; }

.home-trust {
  padding: 18px 32px 72px;
  background: #fff;
}

.home-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #e4d7b7;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8f9fb, #fff);
  box-shadow: 0 16px 45px rgba(22, 42, 68, .07);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-trust-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--azul);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.home-trust-copy p {
  color: #536479;
  margin-bottom: 20px;
  font-size: 1.03rem;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-facts div {
  min-height: 118px;
  padding: 20px 12px;
  border-radius: 12px;
  background: var(--azul);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.trust-facts strong {
  color: #efd77e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.trust-facts span {
  margin-top: 7px;
  color: #d9e0e9;
  font-size: .76rem;
  line-height: 1.35;
}

.map-card {
  min-height: 320px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,.17), transparent 34%),
    linear-gradient(145deg, #f7f9fb, #e8eef4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 38px;
  color: var(--azul);
  box-shadow: 0 10px 28px rgba(25,45,72,.09);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.map-card:hover {
  transform: translateY(-3px);
  border-color: var(--dorado);
  box-shadow: 0 16px 35px rgba(25,45,72,.13);
}

.map-pin {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--dorado);
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.map-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.map-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.map-card small {
  color: #586b80;
  font-size: .92rem;
}

.map-card b {
  margin-top: 15px;
  color: #927126;
  font-size: .9rem;
}

.contact-page-section { padding-top: 52px; }

.contact-options-section {
  background: #f5f7fa;
  padding: 20px 32px 72px;
}

.contact-options-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-options-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--azul);
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-options-inner > p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #58697d;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-choice {
  min-height: 165px;
  padding: 26px;
  border: 1px solid #dde4eb;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(25,45,72,.06);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.contact-choice:hover {
  transform: translateY(-3px);
  border-color: var(--dorado);
  box-shadow: 0 12px 30px rgba(25,45,72,.1);
}

.contact-choice > span { font-size: 1.8rem; }
.contact-choice strong { color: var(--azul); font-size: 1.15rem; margin-top: 8px; }
.contact-choice small { color: #647487; margin-top: 5px; }

.privacy-note {
  margin-top: 24px !important;
  font-size: .88rem;
}

.privacy-note a {
  color: var(--azul);
  text-decoration: underline;
}

/* Página El despacho */
.about-hero {
  background:
    linear-gradient(90deg, rgba(16,35,58,.96), rgba(24,52,82,.88)),
    url("/images/abogados-alicante.webp") center/cover;
  color: #fff;
  padding: 34px 32px 82px;
}

.about-breadcrumb {
  max-width: 1100px;
  margin: 0 auto 70px;
  color: #d8e0e9;
}

.about-breadcrumb a { color: #efd77e; }
.about-breadcrumb span { margin: 0 7px; }

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-hero h1 {
  max-width: 750px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 680px;
  color: #dfe6ed;
  font-size: 1.18rem;
}

.about-intro,
.team-section,
.method-section,
.transparency-section {
  padding: 76px 32px;
}

.about-intro-inner,
.team-inner,
.method-inner,
.transparency-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.about-intro h2,
.team-section h2,
.method-section h2,
.transparency-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--azul);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.about-copy p {
  margin-bottom: 18px;
  color: #526478;
  font-size: 1.04rem;
}

.team-section { background: #f5f7fa; }
.section-lead { max-width: 700px; color: #596a7e; margin: 14px 0 30px; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.team-card {
  padding: 28px;
  border: 1px solid #dce3eb;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  box-shadow: 0 10px 28px rgba(25,45,72,.06);
}

.team-monogram {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--azul);
  color: var(--dorado);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.team-role {
  color: #9a7828;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.team-card h3 {
  color: var(--azul);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin: 3px 0 9px;
}

.team-card p { color: #596a7e; font-size: .95rem; }
.team-card a { display: inline-block; color: var(--azul); font-weight: 700; margin-top: 14px; }
.team-card a:hover { color: #9a7828; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.method-grid article {
  padding: 25px 22px;
  border-top: 3px solid var(--dorado);
  background: #fff;
  box-shadow: 0 8px 24px rgba(25,45,72,.07);
}

.method-grid article > span {
  color: #a98935;
  font-weight: 800;
  font-size: .82rem;
}

.method-grid h3 {
  color: var(--azul);
  font-size: 1.1rem;
  margin: 12px 0 8px;
}

.method-grid p { color: #607083; font-size: .92rem; }

.transparency-section { background: #f5f7fa; }

.transparency-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}

.transparency-inner > div:first-child p {
  color: #586a7e;
  margin-top: 16px;
}

.verification-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--azul);
  color: #fff;
}

.verification-card strong {
  display: block;
  color: #efd77e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.verification-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.verification-card li {
  position: relative;
  padding-left: 20px;
  color: #dce4ec;
}

.verification-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dorado);
}

.home-guide,
.home-faq {
  padding: 72px 32px;
}

.home-guide {
  background: #fff;
}

.home-faq {
  background: #f5f7fa;
}

.home-guide-inner,
.home-faq-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.home-guide h2,
.home-faq h2 {
  max-width: 760px;
  margin: 6px 0 16px;
  color: var(--azul);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.home-guide-lead {
  max-width: 800px;
  color: #596a7e;
  font-size: 1.02rem;
}

.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.home-guide-grid article {
  padding: 26px;
  border: 1px solid #dce3eb;
  border-radius: 14px;
  background: #f9fafb;
}

.home-guide-grid article > span {
  color: #9a7828;
  font-size: .8rem;
  font-weight: 800;
}

.home-guide-grid h3 {
  margin: 10px 0 8px;
  color: var(--azul);
  font-size: 1.08rem;
}

.home-guide-grid p {
  color: #607083;
  font-size: .94rem;
}

.home-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.home-faq-list details {
  border: 1px solid #dce3eb;
  border-radius: 12px;
  background: #fff;
}

.home-faq-list summary {
  padding: 20px 54px 20px 22px;
  color: var(--azul);
  font-weight: 750;
  cursor: pointer;
}

.home-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #596a7e;
}

.contact-prep-section {
  padding: 66px 32px;
  background: #f5f7fa;
}

.contact-prep-section h2 {
  margin: 6px 0 12px;
  color: var(--azul);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.contact-prep-section .contact-options-inner > p {
  max-width: 760px;
  color: #596a7e;
}

.contact-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-prep-grid article {
  padding: 24px;
  border: 1px solid #dce3eb;
  border-radius: 13px;
  background: #fff;
}

.contact-prep-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--azul);
}

.contact-prep-grid p,
.contact-response-note p {
  color: #607083;
  font-size: .94rem;
}

.contact-response-note {
  margin-top: 22px;
  padding: 24px;
  border-left: 4px solid var(--dorado);
  border-radius: 0 12px 12px 0;
  background: #fff;
}

.contact-response-note h3 {
  margin: 0 0 8px;
  color: var(--azul);
}

.contact-faq-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.contact-faq-mini h3 {
  margin: 0 0 9px;
  color: var(--azul);
  font-size: 1rem;
}

.contact-faq-mini p {
  color: #607083;
  font-size: .92rem;
}

@media (max-width: 900px) {
  .home-trust-inner,
  .about-intro-inner,
  .transparency-inner { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .home-guide-grid,
  .contact-prep-grid,
  .contact-faq-mini { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .home-trust { padding: 8px 18px 52px; }
  .home-trust-inner { padding: 27px 22px; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts div { min-height: 92px; }
  .contact-choice-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 240px; padding: 26px 20px; flex-direction: column; text-align: center; }
  .about-hero { padding: 25px 22px 58px; }
  .about-breadcrumb { margin-bottom: 48px; }
  .about-intro,
  .team-section,
  .method-section,
  .transparency-section { padding: 54px 22px; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-monogram { margin: 0 auto; }
  .method-grid { grid-template-columns: 1fr; }
  .home-guide,
  .home-faq,
  .contact-prep-section { padding: 52px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
