:root {
  --ink: #1a1c1c;
  --ink-soft: #5f5e5e;
  --muted: #5d5e5f;
  --hint: #747878;
  --line: #c4c7c7;
  --line-soft: #e8e8e8;
  --paper: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(26, 28, 28, 0.08);
  --font-display: Poppins, Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #e2e2e2;
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(249, 249, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link.is-active {
  font-weight: 700;
  border-bottom: 2px solid var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.phone-link:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
  border-color: #c0c0c0;
}

.btn-dark .icon {
  transition: transform 0.2s ease;
}

.btn-dark:hover .icon {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--ink);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline .icon {
  transition: transform 0.2s ease;
}

.btn-outline:hover .icon {
  transform: translateX(4px);
}

.btn-sm {
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  padding: 68px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
}

.lead {
  margin: 0;
  max-width: 36rem;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-photo {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}

.frame {
  border: 1px solid var(--line-soft);
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-photo .frame {
  padding: 8px;
  border: 1px solid var(--line-soft);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 486px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.hero-photo:hover img {
  transform: scale(1.03);
}

.photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
}

.photo-caption span {
  font-size: 12px;
  color: var(--muted);
}

.discover {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  opacity: 0.6;
}

.discover:hover {
  opacity: 1;
  color: var(--ink);
}

.discover span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.bounce {
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 40px;
}

.kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.rule {
  width: 48px;
  height: 4px;
  background: var(--ink);
  margin: 16px 0;
}

.section-head p {
  max-width: 42rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.section-head-row p {
  flex: 1;
}

.areas-search {
  position: relative;
  flex-shrink: 0;
  width: min(320px, 100%);
}

.areas-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hint);
  pointer-events: none;
}

.areas-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px 12px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.areas-search input::placeholder {
  color: var(--hint);
}

.areas-search input:focus {
  border-color: var(--ink);
}

.areas-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.area-card,
.cta-panel {
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.area-card {
  padding: 28px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.area-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--ink);
}

.icon-wrap svg {
  display: block;
}

.area-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.area-card p {
  margin: 0 0 24px;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  flex: 1;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: gap 0.2s ease;
  margin-top: auto;
}

.area-card .more::after {
  content: "→";
  transition: transform 0.2s ease;
}

.area-card:hover .more::after {
  transform: translateX(3px);
}

.featured-card {
  grid-column: span 2;
  background: #1c1b1b;
  color: #fff;
  border: 1px solid #1c1b1b;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.featured-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-icon {
  display: inline-flex;
  color: #fff;
}

.featured-icon svg {
  width: 28px;
  height: 28px;
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c6c6c7;
  background: #2f3131;
  padding: 4px 10px;
}

.featured-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.featured-card p {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #e2e2e2;
  min-height: 0;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #444748;
}

.featured-dots {
  display: flex;
  gap: 6px;
}

.featured-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.featured-dots span:nth-child(2) {
  background: rgba(255, 255, 255, 0.5);
}

.featured-dots span.is-active {
  background: #fff;
}

.featured-cta {
  background: none;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 0 0 2px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.featured-cta:hover {
  color: #c6c6c7;
  border-color: #c6c6c7;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 64px;
  padding: 40px 48px;
  background: #f3f3f4;
  border: 1px solid #e2e2e2;
  overflow: hidden;
}

.cta-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cta-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.cta-copy .btn {
  justify-self: start;
  margin-top: 8px;
}

.cta-visual {
  border: 1px solid var(--line-soft);
  background: var(--white);
  padding: 8px;
  box-shadow: 0 10px 24px rgba(26, 28, 28, 0.08);
}

.cta-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.95;
  transition: filter 0.4s ease;
}

.cta-panel img:hover {
  filter: grayscale(0);
}

/* About */
.about {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.values {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.value h4 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.team-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 10px 14px;
}

.team-chip strong {
  display: block;
  font-size: 13px;
}

.team-chip span {
  font-size: 12px;
  color: var(--muted);
}

.quote {
  background: #1c1b1b;
  color: var(--white);
  padding: 32px;
  margin-top: 20px;
}

.quote p {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c6c6c7;
}

.sede-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 0;
  align-items: center;
}

.sede-photo {
  position: relative;
  height: 360px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  padding: 8px;
  overflow: hidden;
}

.sede-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.45s ease;
}

.sede-photo:hover img {
  filter: grayscale(0);
}

.sede-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.sede-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.sede-copy h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 12px;
}

.sede-info {
  list-style: none;
  margin: 8px 0 20px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.sede-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sede-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--ink);
}

.sede-info strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.sede-info p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.sede-copy .btn-outline {
  justify-self: start;
  margin-top: 4px;
}

/* Contact */
.contact-section {
  background: var(--paper);
}

/* Aliados Estratégicos */
.allies-section {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}

.allies-head {
  max-width: 40rem;
}

.allies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ally-item {
  border: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 28px 22px;
  display: grid;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ally-item:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.ally-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.ally-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.ally-item span:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Mantente Informado */
.informed-section {
  background: #1c1b1b;
  color: #fff;
  border-top: 0;
}

.informed-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.informed-copy .kicker {
  color: #9a9a9a;
}

.informed-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.informed-heading > p {
  margin: 0;
  max-width: 36rem;
  justify-self: end;
  font-size: 15px;
  line-height: 1.75;
  color: #bdbdbd;
}

.subscription-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
}

.subscription-link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: end;
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  background: transparent;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}

.subscription-link:hover {
  background: #f1f1f1;
  color: #111;
  transform: none;
}

.subscription-number {
  align-self: start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
}

.subscription-link:hover .subscription-number,
.subscription-link:hover .subscription-label small {
  color: #666;
}

.subscription-label {
  display: grid;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}

.subscription-label small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
}

.subscription-arrow {
  font-size: 22px;
  font-weight: 400;
  color: inherit;
  transition: transform 0.2s ease;
}

.subscription-link:hover .subscription-arrow {
  transform: translateX(4px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info .lead {
  max-width: 40ch;
  margin: 12px 0 18px;
}

.hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  box-shadow: 0 1px 2px rgba(26, 28, 28, 0.04);
}

.hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45);
  animation: hours-pulse 1.8s ease-out infinite;
}

@keyframes hours-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

.info-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--white);
  color: var(--ink);
}

.info-list h4 {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.info-list p,
.info-list a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
  font-size: 12px;
}

.info-list a:hover {
  color: var(--ink);
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(196, 199, 199, 0.6);
  padding: 36px 40px;
  box-shadow: 0 8px 24px rgba(26, 28, 28, 0.04);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 28px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form .field.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1c1c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.contact-submit {
  width: 100%;
  margin-top: 28px;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
}

.form-error {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #8a1f1f;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.success {
  background: #f3f3f4;
  border: 1px solid var(--ink);
  padding: 28px;
}

.success h4 {
  font-family: var(--font-display);
  margin: 0 0 8px;
}

.success p {
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.footer {
  background: #1c1b1b;
  color: var(--white);
  padding: 64px 0 28px;
  margin-top: auto;
  border-top: 1px solid #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #333;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 0 14px;
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 38ch;
  margin: 0 0 20px;
  color: #c6c6c7;
  font-size: 13px;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  border: 0;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-cta:hover {
  background: #e2e2e2;
  color: var(--ink);
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-nav ul,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-nav button {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  color: #c6c6c7;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.footer-nav button:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c6c6c7;
  font-size: 12px;
  line-height: 1.6;
}

.footer-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
}

.footer-contact a {
  color: #c6c6c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal {
  margin-top: 0;
  padding-top: 20px;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: #747878;
}

/* Modals */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.overlay.is-open {
  display: flex;
}

.modal {
  width: min(576px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-area {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.modal-header {
  display: block;
  padding: 0 32px 16px 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.modal-header .kicker {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.modal-header h3,
.modal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.modal-body {
  padding: 0;
  overflow: auto;
  flex: 1;
  min-height: 0;
}

.modal-body > p {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.modal-scope {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: var(--hint);
  cursor: pointer;
  z-index: 5;
  transition: color 0.2s ease;
}

.close svg {
  pointer-events: none;
}

.close:hover {
  color: var(--ink);
}

.modal-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.modal-list li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.modal-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1c1c' stroke-width='2.6'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E")
    center / 10px 10px no-repeat;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}

.modal-back {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.modal-back:hover {
  color: var(--ink);
}

.modal-footer .btn {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.modal-consult {
  width: min(520px, 100%);
  padding: 28px 28px 32px;
}

.consult-head {
  margin-bottom: 24px;
  padding-right: 28px;
}

.consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--muted);
}

.consult-badge svg {
  flex-shrink: 0;
  color: var(--ink);
}

.consult-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-consult .modal-title {
  font-size: 26px;
  margin-bottom: 6px;
}

.consult-lead {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.consult-lead a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consult-form {
  display: grid;
  gap: 14px;
}

.consult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-consult .field {
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-consult input,
.modal-consult select,
.modal-consult textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  border-radius: 2px;
}

.modal-consult input:focus,
.modal-consult select:focus,
.modal-consult textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.modal-consult textarea {
  min-height: 84px;
  resize: none;
  line-height: 1.5;
}

.consult-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-submit svg {
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 960px) {
  .brand-logo {
    height: 42px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .header-actions.is-open,
  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header.is-open .nav,
  .header.is-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header.is-open .header-inner {
    flex-wrap: wrap;
    padding: 16px 0 20px;
  }

  .hero-grid,
  .areas-grid,
  .about-grid,
  .sede-grid,
  .contact-grid,
  .form-grid,
  .footer-grid,
  .cta-panel,
  .allies-grid,
  .informed-heading,
  .subscription-links {
    grid-template-columns: 1fr;
  }

  .informed-heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .informed-heading > p {
    justify-self: start;
  }

  .subscription-link {
    min-height: 150px;
  }

  .cta-panel {
    padding: 28px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-card {
    padding: 28px 22px;
  }

  .featured-card {
    grid-column: span 1;
  }

  .section-head-row {
    flex-direction: column;
    align-items: stretch;
  }

  .areas-search {
    width: 100%;
  }

  .area-card p {
    min-height: 0;
  }

  .hero-photo {
    margin: 0 auto;
  }

  .hero-photo img {
    height: 426px;
  }

  .legal {
    flex-direction: column;
    gap: 8px;
  }

  .modal-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .consult-row {
    grid-template-columns: 1fr;
  }

  .modal-consult {
    padding: 24px 20px 28px;
  }
}
