/* ============================================================
   Cianchi & Asociadas — Abogados
   Standalone implementation of "Estudio Cianchi - Web.dc.html"
   Design system: warm black-and-white + antique gold.
   Tokens, components and page styles compiled into one stylesheet.
   ============================================================ */

/* ── Webfonts ─────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Blair ITC";
  src:
    local("ITC Blair Medium"),
    local("ITC Blair"),
    local("Blair ITC"),
    url("fonts/ITC Blair Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blair ITC";
  src:
    local("ITC Blair Bold"),
    local("Blair ITC Bold"),
    url("fonts/ITC Blair Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* ── Color tokens ─────────────────────────────────────────── */
:root {
  --cl-black:        #0C0C0C;
  --cl-black-soft:   #1A1A1A;
  --cl-white:        #F5F5F0;
  --cl-gold:         #B8963E;
  --cl-gold-deep:    #9E7E2F;
  --cl-gray:         #6B6B6B;
  --cl-rule:         #E0E0DA;
  --cl-surface-2:    #F9F9F6;

  --surface-page:    var(--cl-white);
  --surface-card:    var(--cl-white);
  --surface-panel:   var(--cl-surface-2);
  --surface-dark:    var(--cl-black);
  --surface-dark-2:  var(--cl-black-soft);

  --text-strong:     var(--cl-black);
  --text-body:       #2A2A2A;
  --text-muted:      var(--cl-gray);
  --text-on-dark:    var(--cl-white);
  --text-on-gold:    var(--cl-black);
  --text-accent:     var(--cl-gold-deep);
  --text-accent-strong: #7A6320; /* AA-contrast gold for small text on light bg */

  --border-rule:     var(--cl-rule);
  --border-strong:   var(--cl-black);
  --accent:          var(--cl-gold);
  --accent-hover:    var(--cl-gold-deep);
  --focus-ring:      var(--cl-gold);

  /* ── Typography ─────────────────────────────────────────── */
  --font-display: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-logo:    "Blair ITC", "BlairITC", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;

  --weight-display-light: 300;
  --weight-display-semi:  600;
  --weight-body:          400;
  --weight-label:         500;
  --weight-emphasis:      600;

  --display-hero:  clamp(48px, 8vw, 88px);
  --display-xl:    clamp(40px, 6vw, 64px);
  --display-l:     clamp(30px, 4.5vw, 48px);
  --display-m:     clamp(24px, 3vw, 34px);
  --lh-display:    1.05;

  --text-xl:  22px;
  --text-lg:  18px;
  --text-md:  16px;
  --text-sm:  14px;
  --text-xs:  12px;
  --lh-body:  1.7;

  --track-display-tight: -0.01em;
  --track-display-open:   0.02em;
  --track-wordmark:       0.25em;
  --track-label:          0.3em;
  --track-body:           0;

  /* ── Spacing / geometry / motion ────────────────────────── */
  --space-1: 4px;  --space-2: 8px;  --space-3: 16px; --space-4: 24px;
  --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px; --space-9: 128px;

  --content-max: 1200px;
  --grid-gutter: 24px;
  --page-pad:    32px;

  --radius:      0px;
  --rule-weight: 1px;
  --rule-accent: 1px;

  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast:  120ms;
  --dur:       200ms;
  --dur-slow:  400ms;
}

/* ── Base reset ───────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  font-family: var(--font-body);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--cl-black); }
img { max-width: 100%; }

/* Accessible gold focus ring on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/* ── Wordmark (firm-name lockup) ──────────────────────────── */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.wordmark__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-strong);
  white-space: nowrap;
}
.wordmark__sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-top: 4px;
}
.wordmark--lg .wordmark__name { font-size: 26px; }
.wordmark--lg .wordmark__sub  { font-size: 11px; margin-top: 5px; }
.wordmark--dark .wordmark__name,
.wordmark--dark .wordmark__sub { color: var(--text-on-dark); }

/* ── SectionLabel (gold eyebrow) ──────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--weight-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-accent-strong);
}
.section-label--muted { color: var(--text-muted); }
.section-label--light { color: var(--text-on-dark); }

/* ── GoldRule ─────────────────────────────────────────────── */
.gold-rule {
  height: 1px;
  background: var(--accent);
  border: none;
  margin: 0;
}
.gold-rule--rule { background: var(--border-rule); }
.gold-rule--dark { background: var(--cl-black); }

/* ── Tag ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--cl-black);
  color: var(--text-strong);
  background: transparent;
}
.tag--gold  { border-color: var(--accent); color: var(--text-accent); }
.tag--muted { border-color: var(--border-rule); color: var(--text-muted); }
.tag--solid { border-color: var(--cl-black); color: var(--text-on-dark); background: var(--cl-black); }

/* ── Button ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--weight-emphasis);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  width: auto;
  /* default md size */
  padding: 14px 28px;
  font-size: 14px;
  min-height: 48px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn--sm { padding: 10px 18px; font-size: 13px; min-height: 40px; }
.btn--lg { padding: 18px 38px; font-size: 15px; min-height: 56px; }
.btn--full { width: 100%; }

.btn--primary { background: var(--accent); color: var(--text-on-gold); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn--dark { background: var(--cl-black); color: var(--text-on-dark); border-color: var(--cl-black); }
.btn--dark:hover { background: var(--cl-black-soft); }

.btn--outline { background: transparent; color: var(--text-strong); border-color: var(--cl-black); }
.btn--outline:hover { background: var(--cl-black); color: var(--text-on-dark); }

.btn--ghost {
  background: transparent; color: var(--text-strong); border-color: transparent;
  padding-left: 0; padding-right: 0; text-transform: none; letter-spacing: 0.02em;
}
.btn--ghost:hover { color: var(--accent-hover); }

/* Outline button placed on dark hero (light border + text) */
.btn--outline-on-dark { color: var(--text-on-dark); border-color: rgba(245,245,240,0.4); }
.btn--outline-on-dark:hover { background: var(--text-on-dark); color: var(--cl-black); border-color: var(--text-on-dark); }

/* ── ServiceCard ──────────────────────────────────────────── */
.service-card {
  display: block;
  text-decoration: none;
  background: var(--surface-card);
  border: 1px solid var(--border-rule);
  border-radius: var(--radius);
  padding: var(--space-5);
  transition: border-color var(--dur) var(--ease);
}
.service-card--seamless { border: none; }
.service-card:hover { border-color: var(--accent); }
.service-card__index {
  font-family: var(--font-display);
  font-weight: var(--weight-display-light);
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: var(--weight-display-semi);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--track-display-open);
  color: var(--text-strong);
  margin: 0 0 var(--space-3);
}
.service-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
}
.service-card__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-emphasis);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  transition: color var(--dur) var(--ease);
}
.service-card:hover .service-card__cta { color: var(--accent); }

/* ── Field (form control) ─────────────────────────────────── */
.field { display: block; font-family: var(--font-body); }
.field__label {
  display: block;
  font-size: 11px;
  font-weight: var(--weight-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.field__label .req { color: var(--text-accent-strong); }
.field__control,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--text-strong);
  background: var(--surface-card);
  border: 1px solid var(--border-rule);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
  box-sizing: border-box;
  transition: border-color var(--dur) var(--ease);
}
textarea.field__control { min-height: 120px; resize: vertical; }
.field__control:focus,
.form-select:focus { border-color: var(--accent); outline: 1px solid var(--accent); outline-offset: 0; }

/* ── Layout helpers ───────────────────────────────────────── */
.shell { max-width: var(--content-max); margin: 0 auto; }
.page-root {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  overflow-x: hidden;
}

/* ── Header / nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-rule);
}
.site-header__inner {
  max-width: var(--content-max); margin: 0 auto;
  height: 76px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a.nav-link {
  font-size: 13px; color: var(--text-strong); text-decoration: none;
  font-weight: var(--weight-label); letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease);
}
.site-nav a.nav-link:hover { color: var(--accent); }
.nav-cta {
  font-family: var(--font-body); font-size: 12px; font-weight: var(--weight-emphasis);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--accent); color: var(--text-on-gold);
  padding: 11px 20px; text-decoration: none;
  transition: background var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-toggle { display: none; }

/* ── Section + display type helpers ───────────────────────── */
.section { background: var(--surface-page); }
.section--ruled-top { border-top: 1px solid var(--border-rule); }
.section--dark { background: var(--cl-black); color: var(--text-on-dark); }
.section-pad { padding: 128px 32px; }

.display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0;
}
.display .semi { font-weight: 600; }

/* Hero */
.hero-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: stretch; }

/* Editorial portrait plate: archival caption + firm seal (signature element) */
.hero-plate { margin: 0; display: flex; flex-direction: column; border-right: 1px solid var(--cl-black); }
.hero-plate__frame {
  position: relative; flex: 1; min-height: 560px; overflow: hidden;
  background: var(--cl-black-soft);
}
.hero-plate__frame::after {
  content: ""; position: absolute; inset: 16px; z-index: 2;
  border: 1px solid rgba(184,150,62,0.45); pointer-events: none;
}
.preview-pane {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(22px, 3.2vw, 40px);
}
.preview-dark { background: #101010; }

.logo-01 {
  width: 100%;
  max-width: 92%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
}

.logo-01-name,
.logo-01-sub {
  font-family: var(--font-logo);
  text-transform: uppercase;
}

.logo-01-name {
  color: #f2f2ed;
  font-size: clamp(16px, 5vw, 50px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: clamp(0.06em, 0.55vw, 0.17em);
  max-width: 100%;
  margin: 0 auto;
}

.logo-01-name span {
  display: block;
}

.logo-01-rule {
  width: min(88%, 560px);
  height: 1px;
  background: rgba(184,150,62,0.65);
}

.logo-01-sub {
  color: rgba(245,245,240,0.84);
  font-size: clamp(10px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: clamp(0.18em, 0.7vw, 0.32em);
}

.preview-pane-label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-seal { position: absolute; right: 22px; bottom: 22px; z-index: 3; width: 92px; height: 92px; }
.hero-plate__cap {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 15px 20px; background: var(--cl-black);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-plate__cap span:first-child { color: rgba(245,245,240,0.72); }
.hero-plate__cap span:last-child  { color: var(--accent); white-space: nowrap; }

.hero-copy { padding: 104px 64px; display: flex; flex-direction: column; justify-content: center; }
.hero-title { margin: 22px 0 0; }
.hero-title__l1, .hero-title__l2 {
  display: block; font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 78px); line-height: 1.0; letter-spacing: -0.015em;
}
.hero-title__l1 { font-weight: 300; color: var(--text-strong); }
.hero-title__l2 { font-weight: 500; font-style: italic; color: var(--text-accent); margin-top: 2px; }
.hero-lede { font-size: 18px; line-height: var(--lh-body); color: var(--text-body); margin: 0; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 40px; flex-wrap: wrap; }

/* Restrained page-load entrance */
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-copy > * { animation: heroRise 0.7s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.20s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.36s; }
.hero-plate { animation: heroFade 1s var(--ease) both; }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 48px 32px; border-right: 1px solid var(--border-rule); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-weight: 300; font-size: 52px; color: var(--text-strong); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 10px; line-height: 1.5; letter-spacing: 0.02em; }

/* Generic gold-bordered card grid (team, services, modalidad, reviews) */
.card-grid { display: grid; gap: 1px; background: var(--border-rule); border: 1px solid var(--border-rule); }
.card-grid--3 { grid-template-columns: repeat(3,1fr); }
.card-grid--2 { grid-template-columns: repeat(2,1fr); }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.intro-grid h2 { font-weight: 600; font-size: var(--display-l); line-height: 1.1; letter-spacing: 0.02em; margin: 16px 0 0; }
.prose { font-size: 17px; line-height: var(--lh-body); color: var(--text-body); margin: 0; }
.prose + .prose { margin-top: 24px; }
.prose strong { color: var(--text-strong); font-weight: 600; }

/* Section heading block */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 56px; }
.head-center { text-align: center; margin-bottom: 56px; }
.head-h2 { font-weight: 300; font-size: var(--display-xl); line-height: 1.05; margin: 16px 0 0; }
.head-center .head-h2 { margin: 16px auto 0; }

/* Team cards */
.team-card { background: var(--surface-card); }
.team-photo {
  aspect-ratio: 4/5; background: var(--cl-black-soft);
  display: flex; align-items: center; justify-content: center;
  color: rgba(184,150,62,0.55); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-body { padding: 28px 28px 32px; }
.team-name { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: 0.02em; color: var(--text-strong); margin: 12px 0 14px; }
.team-desc { font-size: 14px; line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
.team-cta { background: var(--cl-black); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.team-cta h3 { font-family: var(--font-display); font-weight: 300; font-size: 30px; line-height: 1.12; color: var(--text-on-dark); margin: 0; }

.muted-note { font-size: 14px; color: var(--text-muted); margin: 24px auto 0; max-width: 680px; }
.muted-note--center { text-align: center; }
.muted-note a { color: var(--text-strong); text-decoration: underline; text-underline-offset: 3px; }

/* Citizenship dark band */
.ciud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ciud-tags { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.ciud-title { font-weight: 300; font-size: var(--display-xl); line-height: 1.05; color: var(--text-on-dark); margin: 0; max-width: 16ch; }
.ciud-lede { font-size: 18px; line-height: var(--lh-body); color: rgba(245,245,240,0.72); margin: 0 0 32px; max-width: 52ch; }
.ciud-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-bottom: 40px; }
.ciud-check { display: flex; gap: 12px; align-items: flex-start; }
.ciud-check .dash { color: var(--accent); font-size: 15px; line-height: 1.5; }
.ciud-check span:last-child { font-size: 15px; line-height: 1.5; color: rgba(245,245,240,0.85); }
.ciud-panel { background: var(--cl-black-soft); border: 1px solid rgba(184,150,62,0.3); padding: 44px; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; }
.ciud-panel__label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.consulado { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(245,245,240,0.12); }
.consulado:last-child { border-bottom: none; }
.consulado__city { font-family: var(--font-display); font-weight: 300; font-size: 24px; color: var(--text-on-dark); }
.consulado__prov { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,245,240,0.45); }
.ciud-panel__note { font-size: 13px; line-height: var(--lh-body); color: rgba(245,245,240,0.5); margin: 28px 0 0; }

/* Modalidad */
.mod-cell { background: var(--surface-card); padding: 56px 48px; }
.mod-cell h3 { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: 0.02em; color: var(--text-strong); margin: 16px 0; }
.mod-cell p { font-size: 16px; line-height: var(--lh-body); color: var(--text-muted); margin: 0; }

/* Reviews */
.rating-box { border: 1px solid var(--border-rule); padding: 24px 28px; min-width: 200px; }
.rating-box__row { display: flex; align-items: baseline; gap: 10px; }
.rating-box__num { font-family: var(--font-display); font-weight: 300; font-size: 52px; line-height: 1; color: var(--text-strong); }
.stars { letter-spacing: 0.15em; color: var(--accent); }
.rating-box__lbl { font-size: 12px; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.review { background: var(--surface-card); padding: 40px 36px; display: flex; flex-direction: column; }
.review__quote { font-family: var(--font-display); font-weight: 300; font-size: 22px; line-height: 1.4; color: var(--text-strong); margin: 24px 0 0; flex: 1; }
.review__meta { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border-rule); }
.review__name { font-size: 14px; font-weight: var(--weight-emphasis); color: var(--text-strong); }
.review__area { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; }
.contact-lede { font-size: 17px; line-height: var(--lh-body); color: var(--text-body); margin: 0 0 44px; max-width: 40ch; }
.contact-list { display: flex; flex-direction: column; }
.contact-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--border-rule); text-decoration: none; }
.contact-row:last-child { border-bottom: 1px solid var(--border-rule); }
.contact-row__k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.contact-row__v { font-family: var(--font-display); font-weight: 300; font-size: 24px; color: var(--text-strong); }
.contact-row__v--sm { font-size: 22px; }
.form-card { background: var(--surface-card); border: 1px solid var(--cl-black); padding: 44px; }
.form-stack { display: flex; flex-direction: column; gap: 20px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { min-height: 460px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.form-success h3 { font-family: var(--font-display); font-weight: 600; font-size: 32px; letter-spacing: 0.02em; color: var(--text-strong); margin: 24px 0 12px; }
.form-success p { font-size: 16px; line-height: var(--lh-body); color: var(--text-muted); margin: 0; max-width: 34ch; }
.is-hidden { display: none !important; }

/* Footer */
.site-footer { background: var(--cl-black); color: var(--text-on-dark); padding: 96px 32px 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-about { font-size: 14px; line-height: var(--lh-body); color: rgba(245,245,240,0.6); max-width: 300px; margin: 24px 0 0; }
.footer-col__h { font-size: 11px; font-weight: var(--weight-label); letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a, .footer-links span { font-size: 13px; color: rgba(245,245,240,0.75); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: rgba(245,245,240,0.5); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .section-pad { padding: 88px 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-plate { border-right: none; border-bottom: 1px solid var(--cl-black); }
  .hero-plate__frame { min-height: 340px; }
  .hero-copy { padding: 64px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .ciud-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-page); border-bottom: 1px solid var(--border-rule);
    padding: 8px 24px 20px; display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a.nav-link { padding: 14px 0; border-bottom: 1px solid var(--border-rule); }
  .nav-cta { margin-top: 14px; text-align: center; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--text-strong); display: block; }
  .site-header__inner, .site-footer, .site-header { padding-left: 0; padding-right: 0; }
  .site-header__inner { padding: 0 24px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border-rule); }
  .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .ciud-checks { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); }
}

/* ── 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;
  }
}
