:root {
  --ink: #17311f;
  --deep: #105532;
  --green: #418337;
  --lime: #8ec32e;
  --chartreuse: #b8c85c;
  --cream: #fffdf0;
  --beige: #fdf2a7;
  --brown: #684e13;
  --white: #fffef8;
  --line: rgba(23, 49, 31, .18);
  --shadow: 0 28px 80px rgba(16, 85, 50, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(184,200,92,.16), transparent 24rem),
    linear-gradient(110deg, rgba(255,255,255,.55), transparent 45%),
    var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  z-index: 100;
}

a { color: inherit; text-underline-offset: .22em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.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;
}
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: white; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.prototype-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem clamp(1rem, 4vw, 4.5rem);
  color: #fff;
  background: var(--deep);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.prototype-bar span:last-child { opacity: .68; }

.site-header {
  min-height: 86px;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,240,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 174px;
  height: auto;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.2rem); }
.main-nav > a { font-size: .86rem; font-weight: 700; text-decoration: none; }
.main-nav > a:hover { color: var(--green); }
.menu-button { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-button span:not(.sr-only) { display: block; width: 26px; border-top: 2px solid var(--ink); margin: 5px 0; }

.button {
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  color: white;
  min-height: 50px;
  padding: .85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,85,50,.2); background: #0b4427; }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .8rem; }
.text-link { border: 0; padding: .25rem 0; background: transparent; color: var(--deep); font-weight: 800; cursor: pointer; text-decoration: underline; text-decoration-thickness: 1px; }

.hero {
  min-height: min(780px, calc(100vh - 110px));
  padding: clamp(3.5rem, 8vw, 8rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  overflow: hidden;
}
.eyebrow { margin: 0 0 1.15rem; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero h1, .section-heading h2, .team-heading h2, .faq-intro h2, .contact-dialog h2, .audit-hero h1, .profile-copy h1, .services-hero h1, .service-hero h1, .service-section h2, .location-hero h1, .location-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.9rem, 7.4vw, 8.5rem); }
.hero h1 em { color: var(--green); font-weight: 400; }
.hero-lede { max-width: 620px; margin: 2rem 0; font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-list { margin: clamp(3rem, 7vw, 6rem) 0 0; padding: 1.25rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; list-style: none; border-top: 1px solid var(--line); }
.trust-list li { display: flex; flex-direction: column; gap: .2rem; }
.trust-list strong { font-family: var(--serif); font-size: 1.25rem; }
.trust-list span { max-width: 13rem; color: rgba(23,49,31,.68); font-size: .76rem; }

.hero-art { position: relative; min-height: 560px; color: var(--green); }
.lime-disc { position: absolute; width: min(33vw, 460px); aspect-ratio: 1; border-radius: 50%; right: -3%; top: 5%; background: var(--lime); box-shadow: inset 20px -20px 80px rgba(16,85,50,.12); }
.lime-disc::after { content: ""; position: absolute; width: 46%; height: 3%; right: 12%; top: 18%; border-radius: 50%; background: rgba(255,255,255,.55); transform: rotate(-17deg); }
.paper-card {
  position: absolute;
  width: min(280px, 63%);
  min-height: 145px;
  padding: 1.35rem;
  color: var(--ink);
  background: rgba(255,254,248,.92);
  border: 1px solid rgba(23,49,31,.12);
  box-shadow: var(--shadow);
  transform: rotate(var(--rotate));
}
.paper-card span { display: block; margin-bottom: 1.5rem; color: var(--green); font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.paper-card p { margin: 0; font-size: 1.05rem; font-weight: 800; }
.card-one { --rotate: -7deg; left: 0; top: 4%; }
.card-two { --rotate: 5deg; right: 3%; top: 39%; }
.card-three { --rotate: -2deg; left: 7%; bottom: 2%; }
.hero-line { position: absolute; inset: 2%; width: 96%; height: 96%; }

.route-section { padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); color: white; background: var(--deep); }
.section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .42fr); gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading h2 { margin: 0; font-size: clamp(3rem, 6vw, 6.4rem); }
.section-heading > p { max-width: 510px; margin: 0; color: rgba(255,255,255,.72); }
.route-section .eyebrow { color: var(--chartreuse); grid-column: 1 / -1; margin-bottom: -1rem; }
.route-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.route-form fieldset { margin: 0 0 2.5rem; padding: 0; border: 0; }
.route-form legend { margin-bottom: 1rem; font-weight: 900; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.choice { min-height: 116px; padding: 1.1rem; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); cursor: pointer; transition: background .2s; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: flex; height: 100%; flex-direction: column; justify-content: space-between; gap: 1rem; }
.choice b { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.choice small { color: rgba(255,255,255,.62); font-size: .73rem; }
.choice:has(input:checked) { color: var(--ink); background: var(--lime); }
.choice:has(input:checked) small { color: rgba(23,49,31,.7); }
.choice:has(input:focus-visible) { outline: 3px solid var(--beige); outline-offset: -4px; }
.segmented-control { display: inline-flex; flex-wrap: wrap; padding: .28rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; }
.segmented-control input { position: absolute; opacity: 0; }
.segmented-control span { display: block; border-radius: 999px; padding: .65rem 1rem; cursor: pointer; font-size: .8rem; font-weight: 800; }
.segmented-control input:checked + span { color: var(--deep); background: white; }
.segmented-control input:focus-visible + span { outline: 3px solid var(--lime); }

.route-result { position: sticky; top: 120px; min-height: 520px; padding: clamp(1.5rem, 3vw, 2.8rem); color: var(--ink); background: var(--beige); box-shadow: var(--shadow); }
.result-kicker { margin: 0; font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.result-number { margin: 2rem 0 1rem; color: var(--green); font-family: var(--serif); font-size: 5rem; line-height: 1; }
.route-result h3 { max-width: 480px; margin: 0 0 1.1rem; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 400; line-height: .98; }
.route-result > p:not(.result-kicker) { font-size: .92rem; }
.result-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.result-meta span { padding: .45rem .7rem; border: 1px solid rgba(23,49,31,.25); border-radius: 999px; font-size: .7rem; font-weight: 800; }
.result-note { padding-top: 1.25rem; border-top: 1px solid rgba(23,49,31,.2); color: rgba(23,49,31,.72); }
.result-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 1.5rem; }

.care-section { padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); }
.care-heading { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .42fr); }
.care-heading .eyebrow { margin-bottom: 1rem; }
.care-heading h2 { max-width: 920px; }
.care-heading > p { color: rgba(23,49,31,.66); }
.location-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.location-tabs button { flex: 1 0 auto; border: 0; border-bottom: 3px solid transparent; padding: 1rem .8rem; color: rgba(23,49,31,.55); background: transparent; cursor: pointer; font-weight: 900; }
.location-tabs button[aria-selected="true"] { color: var(--deep); border-color: var(--lime); }
.location-panel { min-height: 360px; padding: clamp(2rem, 6vw, 5rem); display: grid; grid-template-columns: 1fr .6fr; gap: 2rem; align-items: center; color: white; background: var(--green); }
.location-panel[hidden] { display: none; }
.panel-index { font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.location-panel h3 { margin: 1rem 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 400; line-height: .9; }
.location-panel p { max-width: 650px; font-size: 1.05rem; }
.panel-details { padding: 1.5rem 0 1.5rem 2rem; display: flex; flex-direction: column; gap: .8rem; border-left: 1px solid rgba(255,255,255,.35); }
.panel-details span { color: rgba(255,255,255,.7); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.panel-details a, .panel-details button { color: white; }
.panel-actions { margin-top: .6rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.panel-actions a { border: 1px solid rgba(255,255,255,.42); border-radius: 999px; padding: .6rem .85rem; font-size: .75rem; font-weight: 900; text-decoration: none; }
.panel-actions a:hover { color: var(--deep); background: white; }

.team-wrap {
  margin-top: clamp(5rem, 11vw, 11rem);
  padding-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .35fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.team-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.team-heading h2 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 6.3rem); }
.team-heading h2 em { color: var(--green); font-weight: 400; }
.team-heading > p:not(.eyebrow) { margin: 0; color: rgba(23,49,31,.66); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 7vw, 8rem); align-items: start; }
.team-card:nth-child(2) { margin-top: clamp(2rem, 6vw, 6rem); }
.team-photo-link { position: relative; display: block; overflow: hidden; background: var(--beige); }
.team-photo-link img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; transition: transform .5s ease; }
.team-photo-link:hover img { transform: scale(1.018); }
.team-number { position: absolute; left: 1rem; top: 1rem; z-index: 2; min-width: 46px; min-height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--deep); background: var(--beige); font-family: var(--serif); font-style: italic; box-shadow: 0 10px 30px rgba(23,49,31,.18); }
.team-card-copy { padding: 1.4rem 0; }
.team-card-copy > p { margin: 0 0 .65rem; color: var(--green); font-size: .7rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.team-card-copy h3 { max-width: 570px; margin: 0 0 .8rem; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 4rem); font-weight: 400; line-height: .95; }
.team-card-copy h3 a { text-decoration: none; }
.team-card-copy > span { display: block; margin-bottom: 1.2rem; color: rgba(23,49,31,.66); }

.faq-wrap { margin-top: clamp(5rem, 10vw, 10rem); display: grid; grid-template-columns: minmax(270px, .62fr) minmax(0, 1.1fr); gap: clamp(2rem, 7vw, 8rem); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { margin: 0 0 1.5rem; font-size: clamp(3rem, 5vw, 5.4rem); }
.faq-intro > p:not(.eyebrow) { color: rgba(23,49,31,.66); }
.audit-link { display: inline-flex; gap: .4rem; margin-top: 1.2rem; color: var(--deep); font-size: .85rem; font-weight: 900; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-family: var(--sans); transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: 0 0 1.7rem; color: rgba(23,49,31,.72); }

.site-footer { padding: 4rem clamp(1rem, 6vw, 7rem) 2rem; display: grid; grid-template-columns: .7fr 1fr .8fr; gap: 2rem; align-items: start; color: white; background: var(--ink); }
.footer-brand {
  width: fit-content;
  padding: .55rem .75rem;
  background: var(--white);
  border-radius: 2px;
}
.footer-brand .brand-logo { width: 190px; }
.footer-links { display: flex; justify-content: flex-end; gap: 1rem; flex-wrap: wrap; font-size: .84rem; font-weight: 800; }
.footer-note { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.55); font-size: .72rem; }

.contact-dialog { width: min(600px, calc(100% - 2rem)); border: 0; padding: clamp(1.5rem, 5vw, 3rem); color: var(--ink); background: var(--beige); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.contact-dialog::backdrop { background: rgba(10,35,21,.72); backdrop-filter: blur(5px); }
.contact-dialog h2 { margin: 0 2.5rem 1rem 0; font-size: clamp(2.5rem, 6vw, 4.2rem); }
.dialog-close { position: absolute; right: 1rem; top: .7rem; border: 0; padding: .4rem; color: var(--ink); background: transparent; cursor: pointer; font-size: 2rem; }
.dialog-callout { margin: 1.5rem 0; padding: 1rem; display: flex; flex-direction: column; gap: .2rem; background: rgba(255,255,255,.55); }
.dialog-alt { font-size: .82rem; }
.dialog-phones { display: flex; gap: .5rem; flex-wrap: wrap; }
.dialog-phones a { border: 1px solid rgba(23,49,31,.28); border-radius: 999px; padding: .55rem .8rem; font-size: .76rem; font-weight: 900; text-decoration: none; }

/* Perfiles profesionales */
.profile-page { background: #f6f1dc; }
.profile-page .site-header { position: static; }
.profile-main { padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 7vw, 8rem) clamp(5rem, 10vw, 10rem); }
.profile-breadcrumb { margin-bottom: 2rem; color: rgba(23,49,31,.65); font-size: .78rem; font-weight: 800; }
.profile-breadcrumb a { color: var(--deep); }
.profile-hero { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 8vw, 9rem); align-items: center; }
.profile-photo { position: relative; max-width: 620px; background: var(--beige); }
.profile-photo::before { content: ""; position: absolute; width: 42%; aspect-ratio: 1; left: -7%; bottom: -7%; z-index: -1; border-radius: 50%; background: var(--lime); }
.profile-photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; }
.profile-copy { max-width: 820px; }
.profile-copy h1 { margin: 0 0 1.5rem; font-size: clamp(3.7rem, 7.3vw, 8rem); }
.profile-title { margin: 0 0 2rem; color: var(--green); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.profile-fact { margin: 2rem 0; padding: 1.4rem 0 1.4rem 1.5rem; border-left: 4px solid var(--lime); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
.profile-copy > p:not(.eyebrow):not(.profile-title):not(.profile-fact) { max-width: 670px; color: rgba(23,49,31,.72); }
.profile-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* Servicios */
.service-page { background: #f6f1dc; }
.service-page .site-header { position: static; }
.services-main, .service-main { padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 7vw, 8rem) clamp(5rem, 10vw, 10rem); }
.services-hero { max-width: 1120px; margin-bottom: clamp(3rem, 7vw, 7rem); }
.services-hero h1 { margin: 0 0 2rem; font-size: clamp(3.7rem, 7.5vw, 8rem); }
.services-hero > p:not(.eyebrow) { max-width: 760px; font-size: clamp(1rem, 1.7vw, 1.25rem); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-index-card { min-height: 390px; padding: clamp(1.5rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: space-between; background: var(--white); text-decoration: none; transition: background .25s ease, transform .25s ease; }
.service-index-card:hover { background: var(--beige); transform: translateY(-3px); }
.service-index-number { color: var(--green); font-family: var(--serif); font-style: italic; font-size: 1.25rem; }
.service-index-card h2 { max-width: 640px; margin: 2rem 0 1rem; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4.8rem); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.service-index-card p { max-width: 590px; color: rgba(23,49,31,.68); }
.service-index-arrow { align-self: flex-end; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--deep); font-size: 1.4rem; }
.services-note { margin-top: 2rem; padding: 1.25rem 1.5rem; border-left: 4px solid var(--lime); background: rgba(255,255,255,.65); color: rgba(23,49,31,.72); font-size: .85rem; }

.service-breadcrumb { margin-bottom: 2.2rem; color: rgba(23,49,31,.62); font-size: .78rem; font-weight: 800; }
.service-breadcrumb a { color: var(--deep); }
.service-hero { min-height: 590px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr); gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.service-hero h1 { max-width: 980px; margin: 0 0 1.8rem; font-size: clamp(3.7rem, 7vw, 7.8rem); }
.service-hero-lede { max-width: 760px; font-size: clamp(1rem, 1.7vw, 1.25rem); }
.service-hero-art { position: relative; min-height: 410px; display: grid; place-items: center; }
.service-orbit { width: min(32vw, 390px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; color: var(--deep); background: var(--lime); box-shadow: inset 18px -18px 70px rgba(16,85,50,.12); font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); font-style: italic; }
.service-orbit::after { content: ""; position: absolute; width: 62%; aspect-ratio: 1; border: 1px dashed var(--green); border-radius: 50%; transform: rotate(18deg) scale(1.2, .76); }
.service-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; }
.content-attribution { margin-top: clamp(2.5rem, 5vw, 4.5rem); padding: 1.35rem 1.5rem; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1.25rem 2rem; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-attribution-label { margin: 0; color: var(--green); font-size: .75rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.content-attribution-copy { margin: 0; color: rgba(23,49,31,.76); font-size: .9rem; }
.content-attribution-copy a { color: var(--deep); font-weight: 900; }
.content-review-date { margin: 0; color: rgba(23,49,31,.56); font-size: .75rem; white-space: nowrap; }
.service-section { margin-top: clamp(5rem, 10vw, 10rem); }
.service-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr); gap: 2rem; align-items: end; margin-bottom: 3rem; }
.service-section h2 { max-width: 880px; margin: 0; font-size: clamp(3rem, 5.7vw, 6rem); }
.service-section-heading > p { margin: 0; color: rgba(23,49,31,.68); }
.service-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-point { min-height: 265px; padding: clamp(1.3rem, 3vw, 2.5rem); background: var(--white); }
.service-point span { color: var(--green); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.service-point h3 { margin: 2rem 0 .75rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 400; line-height: 1; }
.service-point p { color: rgba(23,49,31,.68); font-size: .88rem; }
.service-faq-wrap { margin-top: clamp(5rem, 10vw, 9rem); display: grid; grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 8rem); align-items: start; }
.service-faq-intro { position: sticky; top: 2rem; }
.service-faq-intro h2 { margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.service-faq-intro p { color: rgba(23,49,31,.66); }
.source-note { margin-top: 2rem; padding: 1rem; border-left: 3px solid var(--lime); background: rgba(255,255,255,.64); font-size: .75rem; }
.source-note a { color: var(--deep); font-weight: 900; }
.service-final-cta { margin-top: clamp(5rem, 10vw, 9rem); padding: clamp(2rem, 6vw, 5rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; color: white; background: var(--green); }
.service-final-cta h2 { max-width: 860px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.5vw, 5.8rem); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.service-final-cta .button { color: var(--deep); border-color: var(--beige); background: var(--beige); }

/* Sedes */
.location-page { background: #f6f1dc; }
.location-page .site-header { position: static; }
.location-main { padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 7vw, 8rem) clamp(5rem, 10vw, 10rem); }
.location-breadcrumb { margin-bottom: 2.2rem; color: rgba(23,49,31,.62); font-size: .78rem; font-weight: 800; }
.location-breadcrumb a { color: var(--deep); }
.location-hero { min-height: 560px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .56fr); gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.location-hero h1 { max-width: 920px; margin: 0 0 1.6rem; font-size: clamp(3.7rem, 7vw, 7.8rem); }
.location-hero-lede { max-width: 740px; font-size: clamp(1rem, 1.7vw, 1.25rem); }
.location-hero-mark { min-height: 390px; display: grid; place-items: center; }
.location-hero-number { width: min(31vw, 370px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--deep); background: var(--lime); font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); font-style: italic; box-shadow: inset 18px -18px 70px rgba(16,85,50,.12); }
.location-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.location-section { margin-top: clamp(5rem, 10vw, 9rem); }
.location-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr); gap: 2rem; align-items: end; margin-bottom: 3rem; }
.location-section h2 { max-width: 880px; margin: 0; font-size: clamp(3rem, 5.7vw, 6rem); }
.location-section-heading > p { margin: 0; color: rgba(23,49,31,.68); }
.location-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.location-detail-card { min-height: 260px; padding: clamp(1.4rem, 3.2vw, 2.8rem); background: var(--white); }
.location-detail-card > span { color: var(--green); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.location-detail-card h2, .location-detail-card h3 { margin: 1.5rem 0 .8rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.location-detail-card p { margin: 0; color: rgba(23,49,31,.72); font-size: 1rem; }
.location-detail-card a { color: var(--deep); font-weight: 900; }
.location-services { padding: clamp(2rem, 5vw, 4.5rem); color: white; background: var(--deep); }
.location-services h2 { color: white; }
.location-services p { max-width: 760px; color: rgba(255,255,255,.72); }
.location-service-links { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.location-service-links a { padding: 1.1rem 1.2rem; display: flex; justify-content: space-between; gap: 1rem; color: white; background: rgba(255,255,255,.06); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.6rem); text-decoration: none; }
.location-service-links a:hover { background: rgba(255,255,255,.14); }
.location-other-sites { display: flex; gap: .7rem; flex-wrap: wrap; }
.location-other-sites a { border: 1px solid var(--line); border-radius: 999px; padding: .65rem .9rem; font-size: .78rem; font-weight: 900; text-decoration: none; background: var(--white); }

/* Auditoría */
.audit-body { background: #f6f1dc; }
.audit-header { position: static; }
.audit-main { padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 8vw, 10rem); }
.audit-hero { max-width: 1100px; margin-bottom: 5rem; }
.audit-hero h1 { margin: 0 0 2rem; font-size: clamp(3.2rem, 7vw, 7.5rem); }
.audit-hero > p:not(.eyebrow) { max-width: 760px; font-size: 1.15rem; }
.audit-date { color: rgba(23,49,31,.56); font-size: .76rem !important; }
.audit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.audit-card { padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--white); }
.audit-card.full { grid-column: 1 / -1; }
.audit-rank { display: inline-flex; padding: .35rem .55rem; border-radius: 999px; color: var(--deep); background: var(--beige); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.audit-card h2 { margin: 1.4rem 0 1rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 400; line-height: 1; }
.audit-card h3 { margin-top: 2rem; }
.audit-card ul { padding-left: 1.2rem; }
.audit-card li { margin: .75rem 0; color: rgba(23,49,31,.78); }
.audit-table-wrap { overflow-x: auto; }
.audit-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.audit-table th, .audit-table td { padding: 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.audit-table th { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.status-good { color: var(--green); font-weight: 900; }
.status-gap { color: #9d5a00; font-weight: 900; }
.audit-source { margin-top: 3rem; padding: 1.3rem; border-left: 4px solid var(--lime); background: rgba(255,255,255,.56); font-size: .83rem; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; padding: 1.25rem; display: none; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 16px 40px rgba(16,85,50,.12); }
  .main-nav[data-open="true"] { display: flex; }
  .profile-page .profile-nav { position: static; display: flex; padding: 0; flex-direction: row; align-items: center; background: transparent; border: 0; box-shadow: none; }
  .profile-page .profile-nav > a:not(.button) { display: none; }
  .service-page .service-nav { position: static; display: flex; padding: 0; flex-direction: row; align-items: center; background: transparent; border: 0; box-shadow: none; }
  .service-page .service-nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 500px; max-width: 650px; width: 100%; margin: 0 auto; }
  .lime-disc { width: min(70vw, 440px); }
  .section-heading, .care-heading { grid-template-columns: 1fr; align-items: start; }
  .route-grid { grid-template-columns: 1fr; }
  .route-result { position: static; min-height: auto; }
  .team-heading { grid-template-columns: 1fr; align-items: start; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .profile-hero { grid-template-columns: 1fr; }
  .profile-photo { max-width: 560px; }
  .service-hero { grid-template-columns: 1fr; min-height: auto; }
  .service-hero-art { min-height: 360px; }
  .service-orbit { width: min(68vw, 360px); }
  .content-attribution { grid-template-columns: 1fr; gap: .65rem; }
  .content-review-date { white-space: normal; }
  .service-section-heading { grid-template-columns: 1fr; align-items: start; }
  .service-points { grid-template-columns: 1fr; }
  .service-faq-wrap { grid-template-columns: 1fr; }
  .service-faq-intro { position: static; }
  .service-final-cta { grid-template-columns: 1fr; }
  .location-hero { grid-template-columns: 1fr; min-height: auto; }
  .location-hero-mark { min-height: 350px; }
  .location-hero-number { width: min(68vw, 350px); }
  .location-section-heading { grid-template-columns: 1fr; align-items: start; }
  .location-detail-grid { grid-template-columns: 1fr; }
  .location-page .location-nav { position: static; display: flex; padding: 0; flex-direction: row; align-items: center; background: transparent; border: 0; box-shadow: none; }
  .location-page .location-nav > a:not(.button) { display: none; }
}

@media (max-width: 700px) {
  .prototype-bar { justify-content: center; text-align: center; }
  .prototype-bar span:last-child { display: none; }
  .site-header { min-height: 72px; }
  .brand-logo { width: 150px; }
  .profile-page .site-header { gap: .65rem; }
  .profile-page .profile-nav .button { min-height: 40px; padding: .55rem .7rem; font-size: .68rem; }
  .service-page .site-header { gap: .65rem; }
  .service-page .service-nav .button { min-height: 40px; padding: .55rem .7rem; font-size: .68rem; }
  .location-page .site-header { gap: .65rem; }
  .location-page .location-nav .button { min-height: 40px; padding: .55rem .7rem; font-size: .68rem; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-lede { font-size: 1rem; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
  .hero-art { min-height: 440px; }
  .paper-card { min-height: 125px; }
  .card-one { top: 0; }
  .card-two { top: 34%; }
  .card-three { bottom: 0; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice { min-height: 100px; }
  .segmented-control { width: 100%; border-radius: 18px; }
  .segmented-control label { flex: 1; text-align: center; }
  .segmented-control span { padding-inline: .45rem; }
  .location-panel { grid-template-columns: 1fr; min-height: 440px; }
  .panel-details { padding-left: 0; padding-top: 1.5rem; border-left: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:nth-child(2) { margin-top: 0; }
  .profile-main { padding-top: 1.5rem; }
  .profile-copy h1 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-index-card { min-height: 330px; }
  .service-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .location-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .location-service-links { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-note { grid-column: auto; }
  .audit-grid { grid-template-columns: 1fr; }
  .audit-card.full { grid-column: auto; }
}

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