/* ============================================================
   NOTARÍA ANTONIETA MENDOZA ESCALAS
   16ª Notaría de Santiago · Conservador de Minas
   Estilo: Mineral Heritage Earth — telúrico, premium-industrial
   Paleta: terracota profundo · cobre · slate · cream · oro
   Tipografía: Crimson Pro + IBM Plex Sans + IBM Plex Mono
   ============================================================ */

:root {
  --terracota: #8b3e2f;
  --terracota-deep: #6b2d22;
  --terracota-bright: #a64d3a;
  --copper: #b87333;
  --copper-light: #d49154;
  --copper-deep: #7a4a1f;
  --slate: #2c2e33;
  --slate-soft: #4a4d54;
  --cream: #f0e6d2;
  --cream-light: #f7f0e0;
  --cream-deep: #e6d9bc;
  --gold: #a67c00;
  --jet: #1a1a1a;
  --rule: #c9b893;
  --rule-soft: #ddd0b4;
  --muted: #8a7e6a;

  --max: 1340px;
  --serif: "Crimson Pro", "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0 0 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 96px; }
body {
  background: var(--cream-light);
  color: var(--jet);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "ss01";
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }

/* Focus visible — accesibilidad */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-primary:focus-visible,
.btn-submit:focus-visible,
.nav-cta:focus-visible {
  outline-color: var(--copper-light);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 36px; position: relative; z-index: 2; }
main { position: relative; z-index: 2; }
.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;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--jet);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid var(--copper-deep);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.reg-mark {
  background: var(--copper);
  color: var(--jet);
  padding: 4px 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.topbar-divider { width: 1px; height: 12px; background: var(--copper-deep); }
.topbar-item { color: var(--cream); display: inline-flex; align-items: center; gap: 8px; }
.topbar-highlight { color: var(--copper-light); font-weight: 600; }
.hex-icon { width: 12px; height: 12px; }
.topbar-link { color: var(--cream); transition: color 0.2s ease; }
.topbar-link:hover { color: var(--copper-light); }

/* ============================================================
   STICKY NAV
   ============================================================ */
.nav {
  background: var(--cream-light);
  border-bottom: 1px solid var(--copper-deep);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(184, 115, 51, 0.15);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--jet);
}
.brand-mark {
  width: 44px;
  height: 44px;
  color: var(--copper);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--jet);
}
.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  padding: 12px 0;
  position: relative;
  color: var(--slate);
  transition: color 0.25s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transition: right 0.3s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--terracota); }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-links .nav-cta {
  background: var(--jet);
  color: var(--cream);
  padding: 11px 22px;
  border: 1px solid var(--jet);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--copper);
  color: var(--jet);
  border-color: var(--copper);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--jet);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 36px 0;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: var(--jet);
}
.hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 56px;
  align-items: start;
  padding-top: 60px;
}

/* Hero side */
.hero-side { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.hero-coords { display: flex; flex-direction: column; gap: 6px; }
.coord-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
}
.coord-value {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: var(--jet);
  font-weight: 500;
}

/* Hero main */
.hero-main { padding-right: 16px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: 28px;
}
.eyebrow-dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--jet);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title-line { display: block; }
.title-amp {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
  font-size: 0.85em;
  line-height: 1;
  padding-left: 24px;
}
.title-line-accent {
  color: var(--terracota);
  font-style: italic;
  font-weight: 600;
  border-bottom: 3px solid var(--copper);
  padding-bottom: 6px;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  color: var(--slate);
  margin-top: 36px;
  max-width: 580px;
  font-weight: 400;
}
.hero-lead em {
  font-style: italic;
  color: var(--terracota);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--jet);
  color: var(--cream);
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.25s ease;
  border: 1px solid var(--jet);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 145, 84, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { background: var(--terracota); border-color: var(--terracota); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--terracota);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { color: var(--terracota-deep); border-color: var(--terracota); }

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-stats li { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  color: var(--terracota);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-soft);
  line-height: 1.4;
}

/* Hero figure / mineral card */
.hero-figure { position: relative; padding-top: 8px; }
.mineral-card {
  background: var(--jet);
  border: 1px solid var(--copper-deep);
  padding: 24px;
  position: relative;
  box-shadow: 8px 8px 0 var(--terracota);
}
.mineral-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--copper-deep);
  margin-bottom: 18px;
}
.card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
}
.card-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.mineral-svg {
  background: linear-gradient(135deg, #1f1f1f 0%, #0d0d0d 100%);
  padding: 16px;
  border: 1px solid var(--copper-deep);
}
.mineral-svg svg { width: 100%; height: auto; }
.mineral-caption {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.4;
}
.mineral-caption strong {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--copper-light);
  font-style: italic;
}
.mineral-caption span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero runner — marquee-like ticker */
.hero-runner {
  margin-top: 80px;
  padding: 16px 0;
  border-top: 1px solid var(--jet);
  border-bottom: 1px solid var(--jet);
  background: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.hero-runner::before, .hero-runner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.hero-runner::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.hero-runner::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.runner-track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
  animation: runner 42s linear infinite;
  will-change: transform;
}
.runner-track > span { flex-shrink: 0; }
.runner-sep { color: var(--copper); }
@keyframes runner {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .runner-track { animation: none; }
  .hero-runner { overflow-x: auto; }
}

/* ============================================================
   MINAS — destacado
   ============================================================ */
.minas {
  background: var(--slate);
  color: var(--cream);
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
}
.minas-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 115, 51, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 62, 47, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.minas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent 0, transparent 44px, rgba(184, 115, 51, 0.05) 44px, rgba(184, 115, 51, 0.05) 45px),
    repeating-linear-gradient(120deg, transparent 0, transparent 44px, rgba(184, 115, 51, 0.05) 44px, rgba(184, 115, 51, 0.05) 45px);
  pointer-events: none;
  z-index: 0;
  will-change: auto;
}
@media (max-width: 720px) {
  .minas::before { background-image: none; }
}
.minas .container { position: relative; z-index: 2; }

.minas-head {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}
.minas-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--copper);
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}
.minas-tag svg { width: 14px; height: 14px; }
.minas-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 32px;
}
.minas-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-light);
}
.minas-badge-line {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.minas-badge {
  background: var(--copper);
  color: var(--jet);
  padding: 5px 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.minas-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(247,240,224,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: badgeShimmer 4.5s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 60% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .minas-badge::before { animation: none; display: none; }
}
.minas-deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
  max-width: 700px;
  margin: 0 auto;
}

.minas-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 72px;
}
.minas-card {
  background: rgba(240, 230, 210, 0.04);
  border: 1px solid rgba(184, 115, 51, 0.35);
  padding: 32px 28px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.minas-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transition: width 0.4s ease;
}
.minas-card:hover {
  border-color: var(--copper);
  background: rgba(240, 230, 210, 0.07);
  transform: translateY(-4px);
}
.minas-card:hover::before { width: 100%; }
.minas-card-feature {
  grid-row: 1 / 3;
  background: rgba(139, 62, 47, 0.18);
  border-color: var(--terracota);
}
.minas-card-feature::before { width: 100%; background: var(--terracota-bright); }
.minas-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--copper-light);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.minas-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.minas-card-feature h3 { font-size: 32px; }
.minas-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
}
.minas-points {
  list-style: none;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  display: grid;
  gap: 8px;
}
.minas-points li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  padding-left: 14px;
  position: relative;
}
.minas-points li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 8px;
  top: 4px;
}

.minas-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  border-top: 1px solid rgba(184, 115, 51, 0.3);
}
.minas-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  color: var(--cream);
}
.quote-glyph {
  color: var(--copper);
  font-style: normal;
  font-weight: 600;
  font-size: 1.2em;
}
.minas-meta { display: flex; flex-direction: column; gap: 18px; }
.minas-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-left: 2px solid var(--copper);
  background: rgba(184, 115, 51, 0.06);
}
.meta-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
}
.meta-val {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.4;
}

/* ============================================================
   SECTION RULE
   ============================================================ */
.section-rule {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 12px;
}
.rule-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  flex-shrink: 0;
}
.section-rule h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--jet);
}
.rule-line {
  flex: 1;
  height: 1px;
  background: var(--jet);
  align-self: center;
  margin-left: 12px;
}
.rule-light .rule-num { color: var(--copper-light); }
.rule-light h2 { color: var(--cream); }
.rule-light .rule-line { background: var(--copper-light); }

/* ============================================================
   TITULAR
   ============================================================ */
.titular {
  padding: 110px 0;
  background: var(--cream-light);
  position: relative;
}
.titular-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.titular-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
.titular-portrait {
  border: 1px solid var(--copper-deep);
  background: var(--jet);
  position: relative;
  box-shadow: 6px 6px 0 var(--terracota);
}
.titular-portrait svg { width: 100%; height: auto; display: block; }
.portrait-credit {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--jet);
  font-weight: 600;
  line-height: 1.3;
}
.portrait-credit span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-top: 6px;
  font-weight: 500;
}
.titular-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--copper);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--rule);
}
.card-row:last-child { border-bottom: 0; padding-bottom: 0; }
.card-row span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.card-row strong {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--jet);
  font-weight: 600;
  text-align: right;
}

.titular-text { padding-top: 8px; }
.titular-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: 20px;
}
.titular-statement {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--jet);
  margin-bottom: 36px;
}
.titular-prose { display: flex; flex-direction: column; gap: 20px; max-width: 680px; }
.titular-prose p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--slate);
}
.titular-prose strong { color: var(--jet); font-weight: 600; }
.titular-prose em {
  font-style: italic;
  color: var(--terracota);
  font-weight: 500;
}

.titular-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 22px 20px;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar:hover { transform: translateY(-3px); border-color: var(--copper); }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.pillar h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--jet);
  margin-bottom: 6px;
}
.pillar p {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.45;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.servicios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--jet);
}
.servicios-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--slate);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.5;
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
}
.servicio {
  background: var(--cream-light);
  padding: 36px 32px;
  border-right: 1px solid var(--copper);
  border-bottom: 1px solid var(--copper);
  position: relative;
  transition: background 0.3s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.servicio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(184, 115, 51, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.servicio:hover { background: var(--cream); }
.servicio:hover::after { transform: translateX(100%); }
.servicio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.servicio-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
}
.servicio-ico {
  width: 36px;
  height: 36px;
  color: var(--copper);
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.4s ease;
}
.servicio:hover .servicio-ico { color: var(--terracota); transform: rotate(15deg); }
.servicio h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--jet);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.servicio p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}
.servicio-feature {
  background: var(--jet);
  color: var(--cream);
  border-color: var(--terracota);
}
.servicio-feature .servicio-num { color: var(--copper-light); }
.servicio-feature .servicio-ico { color: var(--copper-light); }
.servicio-feature h3 { color: var(--cream); }
.servicio-feature p { color: var(--cream); opacity: 0.95; }
.servicio-feature:hover { background: var(--slate); }
.servicio-feature:hover .servicio-ico { color: var(--copper-light); }
.servicio-more {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.2s ease;
}
.servicio-more:hover { color: var(--cream); }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.ubicacion {
  padding: 110px 0;
  background: var(--jet);
  color: var(--cream);
  position: relative;
}
.ubicacion-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.ubicacion-info { display: flex; flex-direction: column; gap: 24px; }
.info-block {
  padding: 24px;
  background: rgba(240, 230, 210, 0.04);
  border-left: 3px solid var(--copper);
  border-top: 1px solid rgba(184, 115, 51, 0.25);
  border-right: 1px solid rgba(184, 115, 51, 0.25);
  border-bottom: 1px solid rgba(184, 115, 51, 0.25);
}
.info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.info-label-accent {
  color: var(--terracota-bright);
  background: var(--cream);
  padding: 5px 10px;
  display: inline-block;
}
.info-address {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--cream);
}
.info-address a {
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.info-address a:hover { color: var(--copper-light); }
.info-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.info-link:hover { color: var(--cream); }

.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.hours-table td {
  padding: 7px 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  border-bottom: 1px dashed rgba(184, 115, 51, 0.25);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--copper-light);
  letter-spacing: 0.05em;
}
.hours-faint td { opacity: 0.5; }
.hours-faint td:last-child { font-style: italic; text-transform: lowercase; }
.info-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  margin-top: 8px;
}
.info-note strong { color: var(--copper-light); font-style: normal; font-weight: 600; }

.info-block-special {
  background: rgba(139, 62, 47, 0.18);
  border-left-color: var(--terracota-bright);
  position: relative;
}
.info-block-special::before {
  content: "JUL";
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--terracota);
  color: var(--cream);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.ubicacion-mapa { display: flex; flex-direction: column; gap: 14px; }
.mapa-frame {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--copper-deep);
  overflow: hidden;
  background: var(--slate);
  position: relative;
  box-shadow: 8px 8px 0 var(--terracota);
  min-height: 240px;
}
.mapa-frame iframe {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 240px;
  border: 0;
  filter: contrast(1.05) saturate(0.9);
  display: block;
}
.mapa-coords {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--copper-light);
  text-transform: uppercase;
  padding: 6px 4px;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  padding: 110px 0;
  background: var(--cream-light);
  position: relative;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

.contacto-side { padding-top: 8px; }
.contacto-side h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  color: var(--jet);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.contacto-side > p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 32px;
}
.contacto-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.contacto-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--slate);
}
.contacto-points li svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
  flex-shrink: 0;
}

.contacto-direct {
  background: var(--jet);
  color: var(--cream);
  padding: 24px;
  border: 1px solid var(--copper-deep);
}
.direct-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.direct-phone {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.direct-phone:hover { color: var(--copper-light); }
.direct-mail {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
}
.direct-mail:hover { color: var(--copper-light); }

.contacto-form {
  background: var(--cream);
  border: 1px solid var(--copper-deep);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.contacto-form::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--terracota), var(--copper), var(--gold));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--jet);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--jet);
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--terracota); border-bottom-width: 2px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); font-style: italic; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%238b3e2f' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  padding-right: 24px;
  cursor: pointer;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--jet);
  color: var(--cream);
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 145, 84, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-submit:hover { background: var(--terracota); }
.btn-submit:hover::before { transform: translateX(100%); }
.btn-submit svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-submit span { position: relative; z-index: 1; }

.form-disclaimer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--jet);
  color: var(--cream);
  padding: 72px 0 24px;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--terracota);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-mark { width: 48px; height: 48px; color: var(--copper); flex-shrink: 0; }
.footer-mark svg { width: 100%; height: 100%; }
.footer-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.footer-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  line-height: 1.5;
}
.footer-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-col p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
}
.footer-col a {
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--copper-light); }
.footer-faint {
  display: block;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.65;
  font-style: italic;
  margin-top: 4px;
}
.footer-legal {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-typo { color: var(--muted); }
.footer-back {
  color: var(--copper-light);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.footer-back:hover { color: var(--cream); }

/* ============================================================
   RESPONSIVE — 320 / 375 / 414 / 768 / 1024 / 1440 / 1920
   ============================================================ */

/* Wide displays — 1920+ */
@media (min-width: 1600px) {
  :root { --max: 1480px; }
}

/* Mid-large desktop tablet landscape — <= 1180px */
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 180px 1fr; gap: 40px; }
  .hero-figure { grid-column: 1 / -1; max-width: 460px; margin: 32px auto 0; }
  .minas-grid { grid-template-columns: 1fr 1fr; }
  .minas-card-feature { grid-row: auto; grid-column: 1 / -1; }
  .titular-grid { grid-template-columns: 1fr; gap: 48px; }
  .titular-aside { position: static; max-width: 380px; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .ubicacion-grid { grid-template-columns: 1fr; gap: 36px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col-wide { grid-column: 1 / -1; }
}

/* Tablet / Small laptop — <= 1024 */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner, .topbar-inner { padding-left: 28px; padding-right: 28px; }
  .hero { padding: 64px 28px 0; }
  .hero::before { left: 28px; right: 28px; }
  .minas { padding: 96px 0 88px; }
  .titular, .servicios, .ubicacion, .contacto { padding: 96px 0; }
  .nav-links { gap: 22px; font-size: 12px; }
}

/* Tablet portrait — <= 820 */
@media (max-width: 820px) {
  .container { padding: 0 24px; }
  .topbar-inner { padding: 8px 24px; flex-wrap: wrap; gap: 8px 14px; font-size: 10px; }
  .topbar-divider { display: none; }
  .topbar-right { gap: 12px; }
  .reg-mark { padding: 3px 8px; font-size: 10px; }
  .nav-inner { padding: 14px 24px; gap: 16px; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-top: 1px solid var(--copper-deep);
    border-bottom: 1px solid var(--copper-deep);
    gap: 4px;
    align-items: stretch;
    box-shadow: 0 12px 24px rgba(26,26,26,0.12);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(184,115,51,0.15);
    width: 100%;
    text-align: left;
    min-height: 48px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 12px;
  }
  .brand-name { font-size: 19px; }
  .brand-sub { font-size: 10px; }
  .brand-mark { width: 40px; height: 40px; }

  .hero { padding: 48px 24px 0; }
  .hero::before { left: 24px; right: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 36px; }
  .hero-main { padding-right: 0; }
  .hero-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    order: 2;
  }
  .hero-coords { gap: 4px; }
  .coord-value { font-size: 15px; }
  .title-amp { padding-left: 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-num { font-size: 32px; }
  .hero-figure { max-width: 400px; }
  .hero-runner { margin-top: 56px; }

  .minas { padding: 80px 0 72px; }
  .minas-head { margin-bottom: 48px; }
  .minas-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .minas-card { padding: 26px 22px; }
  .minas-card-feature h3 { font-size: 26px; }
  .minas-foot { grid-template-columns: 1fr; gap: 28px; padding-top: 32px; }

  .titular, .servicios, .ubicacion, .contacto { padding: 72px 0; }
  .titular-aside { max-width: 100%; }
  .titular-portrait { max-width: 320px; }
  .titular-pillars { grid-template-columns: 1fr 1fr; gap: 14px; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contacto-form { padding: 28px 22px; }
  .form-foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-submit { width: 100%; justify-content: center; }

  .footer { padding: 56px 0 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-col-wide { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
}

/* Mobile — <= 560 */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .topbar { font-size: 10px; letter-spacing: 0.06em; }
  .topbar-inner { padding: 8px 18px; gap: 6px 10px; }
  .topbar-left, .topbar-right { gap: 10px; row-gap: 4px; width: 100%; justify-content: flex-start; }
  .topbar-right { justify-content: flex-start; }
  .topbar-highlight { font-size: 10px; }

  .nav-inner { padding: 12px 18px; gap: 12px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.14em; }

  .hero { padding: 36px 18px 0; }
  .hero::before { left: 18px; right: 18px; }
  .hero-grid { padding-top: 28px; gap: 28px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; gap: 10px; }
  .eyebrow-dash { width: 20px; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); line-height: 0.96; }
  .title-amp { font-size: 0.7em; padding-left: 0; }
  .title-line-accent { padding-bottom: 4px; border-bottom-width: 2px; }
  .hero-lead { font-size: 17px; line-height: 1.55; margin-top: 24px; }

  .hero-cta { gap: 16px; margin-top: 28px; }
  .btn-primary { padding: 14px 22px; font-size: 12px; min-height: 48px; width: 100%; justify-content: center; }
  .btn-ghost { font-size: 16px; }

  .hero-side {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    padding-top: 0;
  }
  .coord-label { font-size: 9px; letter-spacing: 0.18em; }
  .coord-value { font-size: 14px; line-height: 1.3; }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; letter-spacing: 0.14em; }

  .hero-figure { max-width: 100%; margin: 24px auto 0; padding-top: 0; }
  .mineral-card { padding: 18px; box-shadow: 6px 6px 0 var(--terracota); }
  .mineral-svg { padding: 12px; }
  .mineral-caption { font-size: 15px; }

  .hero-runner { margin-top: 44px; padding: 14px 0; font-size: 10px; }

  .minas { padding: 64px 0 56px; }
  .minas-head { margin-bottom: 40px; }
  .minas-tag {
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 7px 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
  }
  .minas-title { font-size: clamp(44px, 13vw, 64px); margin-bottom: 18px; }
  .minas-badge-line { font-size: 10px; gap: 8px; }
  .minas-badge { padding: 4px 10px; font-size: 10px; }
  .minas-deck { font-size: 17px; line-height: 1.55; }
  .minas-card { padding: 22px 18px; }
  .minas-card h3, .minas-card-feature h3 { font-size: 22px; }
  .minas-card p { font-size: 16px; }
  .minas-quote p { font-size: 18px; line-height: 1.5; }
  .minas-meta > div { padding: 12px 14px; }

  .section-rule { gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
  .section-rule h2 { font-size: clamp(30px, 9vw, 44px); }
  .rule-line { display: none; }

  .titular, .servicios, .ubicacion, .contacto { padding: 56px 0; }
  .titular-portrait { max-width: 240px; }
  .titular-statement { font-size: clamp(26px, 7.5vw, 36px); margin-bottom: 24px; }
  .titular-prose p { font-size: 17px; line-height: 1.6; }
  .titular-pillars { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; padding-top: 28px; }

  .servicios-intro { font-size: 18px; margin-bottom: 36px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicio { padding: 26px 22px; }
  .servicio h3 { font-size: 22px; }
  .servicio p { font-size: 16px; }
  .servicio-ico { width: 32px; height: 32px; }

  .info-block { padding: 20px; }
  .info-address { font-size: 17px; }
  .info-block-special::before { font-size: 9px; padding: 3px 8px; }
  .hours-table td { font-size: 15px; padding: 6px 0; }
  .hours-table td:last-child { font-size: 12px; }

  .mapa-frame { aspect-ratio: 4 / 3; min-height: 280px; box-shadow: 5px 5px 0 var(--terracota); }
  .mapa-coords { font-size: 10px; flex-wrap: wrap; gap: 6px; }

  .contacto-side h3 { font-size: 26px; }
  .contacto-side > p { font-size: 16px; margin-bottom: 24px; }
  .contacto-points li { font-size: 15px; }
  .contacto-direct { padding: 20px; }
  .direct-phone { font-size: 24px; }
  .contacto-form { padding: 22px 18px; gap: 18px; }
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 12px 0;
    min-height: 44px;
  }
  .form-field textarea { min-height: 110px; }
  .btn-submit { padding: 16px 22px; min-height: 48px; }

  .footer { padding: 44px 0 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
}

/* Small mobile — <= 380 (iPhone SE / 320 reach) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .topbar-inner { padding: 8px 14px; }
  .nav-inner { padding: 12px 14px; }
  .hero { padding: 28px 14px 0; }
  .hero::before { left: 14px; right: 14px; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 8px; letter-spacing: 0.12em; }
  .brand-mark { width: 32px; height: 32px; }
  .hero-title { font-size: clamp(34px, 12vw, 48px); }
  .hero-side { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-num { font-size: 24px; }
  .minas-title { font-size: clamp(38px, 14vw, 52px); }
  .section-rule h2 { font-size: clamp(26px, 10vw, 36px); }
  .titular-statement { font-size: clamp(24px, 8vw, 32px); }
  .mapa-frame { aspect-ratio: 1 / 1; min-height: 260px; }
  .reg-mark { font-size: 9px; padding: 3px 6px; }
}
