:root {
  --bg: #0b0d12;
  --bg-soft: #12151c;
  --paper: #f5f2ea;
  --paper-2: #ece7dc;
  --ink: #17191e;
  --ink-soft: #575b65;
  --line: rgba(255,255,255,.12);
  --gold: #c39b5a;
  --gold-2: #e2c58e;
  --wine: #5f1524;
  --wine-2: #7f2134;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad { padding: 110px 0; }

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .08;
  pointer-events: none;
  z-index: -1;
}
.page-glow--one { background: var(--gold); top: -160px; right: -120px; }
.page-glow--two { background: var(--wine-2); bottom: -180px; left: -150px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,13,18,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--white);
}
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,197,142,.65);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: var(--gold-2);
  box-shadow: inset 0 0 0 5px rgba(195,155,90,.06);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  letter-spacing: .15em;
  font-size: .97rem;
}
.brand-copy small {
  margin-top: 7px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .08em;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--gold-2); }

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 75% 18%, rgba(127,33,52,.36), transparent 27%),
    linear-gradient(135deg, #080a0e 0%, #11141b 62%, #1b1016 100%);
  color: var(--white);
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .72rem;
}
.eyebrow span {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light { color: var(--gold-2); }
.hero .eyebrow { color: var(--gold-2); }
.hero-kicker {
  margin: 26px 0 6px;
  color: rgba(255,255,255,.58);
  letter-spacing: .35em;
  font-size: .83rem;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 {
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  letter-spacing: -.045em;
  max-width: 820px;
}
h1 em, h2 em { color: var(--gold); font-style: italic; }
.hero-lead {
  max-width: 650px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: rgba(255,255,255,.95);
}
.hero-text {
  max-width: 690px;
  color: rgba(255,255,255,.64);
  font-size: 1rem;
}
.hero-actions, .emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-2); color: #18130a; }
.btn-outline { border: 1px solid rgba(255,255,255,.26); color: var(--white); }
.btn-light { background: var(--white); color: #16171b; }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: var(--white); }

.hero-badges {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.badge-card {
  border-top: 1px solid rgba(226,197,142,.55);
  padding-top: 15px;
}
.badge-card strong { display: block; font-family: Georgia, serif; font-size: 1.3rem; color: var(--gold-2); }
.badge-card span { color: rgba(255,255,255,.52); font-size: .82rem; }

.hero-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: var(--wine-2);
  filter: blur(80px);
  right: -40px;
  top: 20px;
  opacity: .45;
}
.panel-topline {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
}
.panel-main { padding: 36px 30px 28px; position: relative; z-index: 1; }
.panel-number {
  display: block;
  font-family: Georgia, serif;
  color: rgba(226,197,142,.92);
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: .92;
}
.panel-main h2 { margin: 24px 0 12px; font-size: 2rem; }
.panel-main p { color: rgba(255,255,255,.6); }
.panel-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.1); }
.panel-actions a {
  padding: 18px 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
}
.panel-actions a + a { border-left: 1px solid rgba(255,255,255,.1); }

.info-strip { background: #11131a; color: var(--white); border-top: 1px solid rgba(255,255,255,.07); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid > div { min-height: 110px; display: flex; align-items: center; gap: 16px; padding: 20px; border-right: 1px solid rgba(255,255,255,.08); }
.strip-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.08); }
.strip-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; }
.strip-grid p { margin: 0; color: rgba(255,255,255,.76); }

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  color: var(--ink);
  letter-spacing: -.035em;
}
.section-heading.centered { text-align: center; max-width: 860px; margin: 0 auto 56px; }
.centered-eyebrow { justify-content: center; }
.section-intro { margin-top: 24px; max-width: 680px; color: var(--ink-soft); }
.content-card {
  padding: 42px;
  border: 1px solid rgba(23,25,30,.12);
  background: rgba(255,255,255,.42);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}
.content-card p { color: var(--ink-soft); font-size: 1.03rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--ink); }

.section-alt { background: var(--paper-2); }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.partner-card {
  min-height: 250px;
  padding: 34px;
  border-radius: var(--radius);
  background: #101218;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.partner-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(226,197,142,.12);
  border-radius: 50%;
  right: -45px;
  top: -55px;
}
.partner-monogram {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(226,197,142,.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}
.partner-copy span { color: var(--gold-2); font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; }
.partner-copy h3 { margin: 10px 0 10px; font-family: Georgia, serif; font-size: 1.85rem; font-weight: 500; }
.partner-copy p { margin: 0; color: rgba(255,255,255,.55); }

.service-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 300px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(23,25,30,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.4);
}
.service-card--featured { background: var(--wine); color: var(--white); border-color: transparent; }
.service-index { font-family: Georgia, serif; color: var(--gold); font-size: 1.1rem; }
.service-card h3 { margin: auto 0 14px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.service-card p { margin: 0; color: var(--ink-soft); }
.service-card--featured p { color: rgba(255,255,255,.72); }

.emergency {
  background:
    radial-gradient(circle at 12% 35%, rgba(195,155,90,.16), transparent 20%),
    linear-gradient(120deg, #551522, #7b2034);
  color: var(--white);
}
.emergency-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.emergency-number {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: .8;
  letter-spacing: -.08em;
  color: var(--gold-2);
}
.emergency-number span { color: rgba(255,255,255,.35); }
.emergency-copy h2 { margin: 20px 0 0; color: var(--white); font-size: clamp(2.4rem, 4.6vw, 4.8rem); }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: end; }
.coverage-cards { display: grid; gap: 16px; }
.coverage-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(23,25,30,.1);
  background: rgba(255,255,255,.46);
}
.coverage-card span { color: var(--wine-2); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 700; }
.coverage-card h3 { margin: 12px 0 8px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.coverage-card p { margin: 0; color: var(--ink-soft); }

.location-section { background: #0e1015; color: var(--white); }
.location-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.location-card, .contact-card { border-radius: 30px; overflow: hidden; }
.location-card {
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(17,19,26,.94), rgba(33,21,25,.94)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 8px);
  border: 1px solid rgba(255,255,255,.1);
}
.location-card h2 { margin: 20px 0 26px; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.location-card address { font-style: normal; color: rgba(255,255,255,.66); font-size: 1.05rem; }
.location-note { margin: 26px 0; color: var(--gold-2); }
.contact-card {
  padding: 42px;
  background: var(--paper);
  color: var(--ink);
}
.contact-label { color: var(--wine-2); text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; font-weight: 700; }
.contact-card h3 { margin: 18px 0 6px; font-family: Georgia, serif; font-size: 3rem; font-weight: 500; }
.contact-subtitle { color: var(--ink-soft); }
.contact-list { margin-top: 38px; border-top: 1px solid rgba(23,25,30,.1); }
.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23,25,30,.1);
}
.contact-list span { color: var(--ink-soft); font-size: .85rem; }
.contact-list strong { font-size: 1.05rem; }
.contact-hours { margin-top: 30px; padding: 20px; border-radius: 18px; background: #e7dfd1; }
.contact-hours span { display: block; color: var(--ink-soft); font-size: .82rem; }
.contact-hours strong { display: block; margin-top: 5px; }

.site-footer { background: #090b0f; color: rgba(255,255,255,.62); padding: 48px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 44px; align-items: start; }
.brand--footer { margin-bottom: 18px; }
.site-footer p { margin: 0; max-width: 330px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--white); }
.footer-address { line-height: 1.75; }

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}
.floating-contact__toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #1f9f5f;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(0,0,0,.2);
  cursor: pointer;
}
.floating-contact__menu {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 245px;
  padding: 10px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.97);
  transition: .2s ease;
}
.floating-contact__menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.floating-contact__menu a { display: block; text-decoration: none; padding: 13px 14px; border-radius: 12px; color: #15171b; font-size: .86rem; font-weight: 700; }
.floating-contact__menu a:hover { background: #f1f1f1; }

.reveal {
  opacity: 1;
  transform: none;
  animation: riseIn .65s ease both;
}
.reveal.reveal-delay { animation-delay: .08s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
  .btn, .menu-toggle span, .floating-contact__menu { transition: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 84px 0; }
  .menu-toggle { display: block; position: relative; z-index: 70; }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    min-height: calc(100vh - 78px);
    padding: 36px 20px;
    background: rgba(9,11,15,.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 18px 8px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; }
  .hero-grid,
  .split-layout,
  .coverage-grid,
  .location-grid,
  .emergency-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .hero-panel { max-width: 620px; }
  .split-layout, .coverage-grid { gap: 42px; }
  .partner-grid, .service-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 220px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div:first-child { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-address { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .header-inner { min-height: 70px; }
  .main-nav { inset: 70px 0 auto 0; min-height: calc(100vh - 70px); }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .64rem; }
  .brand-mark { width: 41px; height: 41px; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero { padding-top: 80px; }
  .hero-actions, .emergency-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-badges { grid-template-columns: 1fr; gap: 18px; }
  .badge-card { padding-top: 12px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); min-height: 82px; }
  .content-card, .location-card, .contact-card { padding: 28px; }
  .partner-card { padding: 28px; flex-direction: column; align-items: flex-start; }
  .partner-monogram { width: 64px; height: 64px; flex-basis: 64px; }
  .service-card { min-height: 235px; }
  .emergency-grid { gap: 35px; }
  .emergency-number { font-size: clamp(5.5rem, 29vw, 8rem); }
  .contact-list a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-address { grid-column: auto; }
  .floating-contact { right: 14px; bottom: 14px; }
  .floating-contact__menu { width: min(245px, calc(100vw - 28px)); }
}

/* Contactos: ambos números funcionan como llamada y WhatsApp. */
.contact-number {
  padding: 20px 0;
  border-bottom: 1px solid rgba(23,25,30,.1);
}
.contact-number > span {
  display: block;
  color: var(--ink-soft);
  font-size: .85rem;
}
.contact-number > strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
}
.contact-number__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.contact-number__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(23,25,30,.14);
  border-radius: 999px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
}
.contact-number__actions a:last-child {
  background: #1f9f5f;
  border-color: #1f9f5f;
  color: #fff;
}
@media (max-width: 640px) {
  .contact-number__actions { display: grid; grid-template-columns: 1fr 1fr; }
}
