/* ═══════════════════════════════════════════════════════════
   ALFA CAPITAL — Sovereign Copper
   Light editorial · ivory / navy / copper
   ═══════════════════════════════════════════════════════════ */

:root {
  --ivory: #F7F4EF;
  --white: #FFFFFF;
  --navy: #0B1D3A;
  --navy-soft: #1A3358;
  --copper: #B87333;
  --copper-light: #E8C9A8;
  --copper-dim: #9A5F28;
  --text: #1C2B3F;
  --muted: #5C6B7E;
  --muted-light: #8A96A6;
  --border: rgba(11, 29, 58, 0.1);
  --border-copper: rgba(184, 115, 51, 0.35);
  --shadow: 0 20px 60px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 32px 80px rgba(11, 29, 58, 0.12);
  --paper: var(--ivory);
  --ink: var(--navy);
  --bg: var(--ivory);
  --bg-alt: var(--white);
  --text-dark: var(--text);
  --border-light: var(--border);
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: Georgia, "Times New Roman", serif;
  --ribbon-h: 34px;
  --header-h: 76px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-acap-fonts] {
  --font: "Sora", system-ui, sans-serif;
  --font-head: "Lora", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--ribbon-h) + var(--header-h) + 1rem); }
body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s, border-color 0.25s, transform 0.25s; }
.container, .wrap { width: min(1140px, 92%); margin-inline: auto; }

/* ─── COMPLIANCE RIBBON (Google Ads / servicios financieros) ─── */
.compliance-ribbon {
  position: relative;
  z-index: 400;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(184, 115, 51, 0.35);
}
.compliance-ribbon a {
  color: var(--copper-light);
  text-decoration: underline;
  font-weight: 600;
}
.compliance-ribbon a:hover { color: #fff; }

/* ─── BUSINESS IDENTITY (NAP visible) ─── */
.business-id {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.business-id__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.business-id__inner strong {
  color: var(--navy);
  font-weight: 700;
}
.business-id__inner a {
  color: var(--copper);
  font-weight: 600;
}
.business-id__inner a:hover { text-decoration: underline; }

/* ─── ADS TRANSPARENCY ─── */
.ads-transparency {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.ads-transparency__box {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
}
.ads-transparency__box h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.ads-transparency__box p,
.ads-transparency__box li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.65rem;
}
.ads-transparency__box ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}
.ads-transparency__box a { color: var(--copper); font-weight: 600; }

/* subtle paper texture */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: var(--ribbon-h);
  left: 0;
  right: 0;
  z-index: 300;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.site-header.is-scrolled .site-header__bar {
  background: rgba(247, 244, 239, 0.94);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(11, 29, 58, 0.06);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid transparent;
}
body.legal .site-header { position: fixed; top: var(--ribbon-h); left: 0; right: 0; width: 100%; }
body.legal .site-header__inner {
  width: min(1140px, 92%);
  margin-inline: auto;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
.logo__glyph {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--copper);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 2px solid var(--copper);
}
.logo__glyph.sm { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 8px; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo__text span { color: var(--navy); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.site-nav a:not(.btn):hover { color: var(--copper); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.menu-toggle i {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}
.menu-toggle i:nth-child(1) { top: 14px; }
.menu-toggle i:nth-child(2) { top: 21px; }
.menu-toggle i:nth-child(3) { top: 28px; }
.menu-toggle.is-open i:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open i:nth-child(2) { opacity: 0; }
.menu-toggle.is-open i:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.75rem; }
.btn-xl { padding: 0.95rem 1.75rem; font-size: 0.9375rem; }
.btn-block { width: 100%; }
.btn-copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3);
}
.btn-copper:hover { background: var(--copper-dim); transform: translateY(-2px); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); color: var(--white); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); }

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--copper-light); }
.center { text-align: center; }
.sub { color: var(--muted); max-width: 560px; margin-inline: auto; margin-top: 0.75rem; }
h2 { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--navy); line-height: 1.15; }
h2 em { font-style: italic; color: var(--copper); }

/* ─── HERO DIAGONAL SPLIT ─── */
.copper-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--ribbon-h) + var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}
.copper-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ivory) 48%, var(--navy) 48%);
  z-index: 0;
}
.copper-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 42%;
  width: 120px;
  height: 100%;
  background: var(--copper);
  transform: skewX(-8deg);
  z-index: 1;
  opacity: 0.85;
}
.copper-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.copper-hero__copy { color: var(--text); }
.copper-hero__copy .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid var(--border-copper);
  color: var(--copper-dim);
}
.copper-hero__disclaimer { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem; }
.copper-hero__disclaimer a { color: var(--copper); text-decoration: underline; }
.copper-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.copper-hero__title .accent { color: var(--copper); font-style: italic; }
.copper-hero__lead { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin-bottom: 2rem; line-height: 1.75; }
.copper-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.copper-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.copper-hero__stats strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--copper); }
.copper-hero__stats span { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.copper-hero__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.copper-hero__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.copper-hero__panel-head span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.copper-hero__panel-sample {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  opacity: 0.85;
  margin-bottom: 0.35rem;
}
.copper-hero__panel-head strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--copper-light); }
.copper-hero__stats-note {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.copper-hero__stats-note a { color: var(--copper); text-decoration: underline; }
.copper-hero__metrics { display: grid; gap: 1rem; }
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}
.metric-row:last-child { border-bottom: none; }
.metric-row em { font-style: normal; color: var(--copper-light); font-weight: 600; }
.copper-hero__badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--copper);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
}

/* hero visual stack */
.copper-hero__visual {
  position: relative;
  display: grid;
  gap: 1rem;
}
.hero-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.15);
}
.hero-visual__img {
  width: 100%;
  height: clamp(240px, 32vw, 380px);
  object-fit: cover;
  display: block;
}
.hero-visual__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(11, 29, 58, 0.85));
}
.hero-visual__float {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: min(42%, 200px);
  border-radius: var(--radius-sm);
  border: 3px solid var(--copper-light);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.copper-hero__visual .copper-hero__panel {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  box-shadow: var(--shadow-lg);
}

/* ─── VISUAL GALLERY ─── */
.visual-gallery {
  padding: 0 0 4rem;
  background: var(--ivory);
}
.visual-gallery__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 640px;
  margin-inline: auto;
}
.visual-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
.gallery-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 200px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.25rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(transparent, rgba(11, 29, 58, 0.88));
}
.gallery-card--wide { grid-column: span 7; grid-row: span 2; min-height: 320px; }
.gallery-card--wide img { min-height: 320px; }
.gallery-card--tall { grid-column: span 5; grid-row: span 2; min-height: 320px; }
.gallery-card:not(.gallery-card--wide):not(.gallery-card--tall) { grid-column: span 6; }

/* ─── SHOWCASE BAND ─── */
.showcase-band {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.showcase-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.showcase-band:hover > img { transform: scale(1.06); }
.showcase-band__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(105deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.55) 55%, rgba(11, 29, 58, 0.35) 100%);
}
.showcase-band__content { max-width: 560px; color: var(--white); }
.showcase-band__content h2 { color: var(--white); margin-bottom: 1rem; }
.showcase-band__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
}

/* service card images */
.svc-bento__media {
  margin: -1.75rem -1.75rem 1.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  height: 160px;
}
.svc-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-bento:hover .svc-bento__media img { transform: scale(1.06); }
.svc-bento--featured .svc-bento__media {
  margin: -1.75rem -1.75rem 1.25rem;
  height: 200px;
}
.svc-bento--featured .svc-bento__media--featured img { filter: brightness(0.85) saturate(1.1); }

/* advantages split with image */
.advantages__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.advantages__visual {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.advantages__visual img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.advantages__visual figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border-top: 3px solid var(--copper);
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

/* testimonials avatars */
.testimonial-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--copper-light);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--copper-light);
}
.testimonial-card__avatar--img {
  object-fit: cover;
  padding: 0;
  background: none;
}
.testimonial-card .stars { margin-bottom: 0; }

/* contact image */
.contact-visual {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ─── TRUST BAND ─── */
.trust-band {
  background: var(--white);
  border-top: 3px solid var(--copper);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.trust-item span { font-size: 0.8125rem; color: var(--muted); }

/* ─── BENTO SERVICES ─── */
.services-bento {
  padding: 5rem 0;
  background: var(--ivory);
}
.services-bento__head { margin-bottom: 2.5rem; max-width: 640px; }
.services-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-bento {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.svc-bento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--copper);
  transition: height 0.35s var(--ease);
}
.svc-bento:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-copper); }
.svc-bento:hover::before { height: 100%; }
.svc-bento--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-color: transparent;
}
.svc-bento--featured h3,
.svc-bento--featured p { color: var(--white); }
.svc-bento--featured p { opacity: 0.85; }
.svc-bento--featured .svc-bento__price { color: var(--copper-light); }
.svc-bento__n {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.svc-bento h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--navy); }
.svc-bento p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.svc-bento__price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper);
}
.svc-bento__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--copper);
}
.svc-bento__link:hover { text-decoration: underline; }

/* ─── METHODOLOGY TIMELINE ─── */
.methodology {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
}
.methodology__head { margin-bottom: 3rem; }
.methodology__head h2 { color: var(--white); }
.methodology__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.methodology__timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
  opacity: 0.5;
}
.timeline-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.timeline-step__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border: 2px solid var(--copper);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--copper-light);
  position: relative;
  z-index: 1;
}
.timeline-step h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.8125rem; opacity: 0.75; line-height: 1.6; }

/* ─── PRICING TABLE ─── */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
}
.pricing-section__head { margin-bottom: 2.5rem; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.pricing-table thead { background: var(--navy); color: var(--white); }
.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(184, 115, 51, 0.04); }
.pricing-table .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--copper);
  white-space: nowrap;
}
.pricing-table .tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(184, 115, 51, 0.15);
  color: var(--copper-dim);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 0.5rem;
}
.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}
.pricing-note a { color: var(--copper); font-weight: 600; text-decoration: underline; }

/* ─── ADVANTAGES ─── */
.advantages {
  padding: 5rem 0;
  background: var(--ivory);
}
.advantages__content header { text-align: left; }
.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.adv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.adv-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.12);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--copper);
}
.adv-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.adv-card p { font-size: 0.875rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}
.faq-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  background: var(--ivory);
  overflow: hidden;
}
.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::after { content: "+"; color: var(--copper); font-size: 1.25rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-list a { color: var(--copper); text-decoration: underline; }

/* ─── TESTIMONIALS ─── */
.testimonials { display: grid; gap: 1rem; }
.testimonial-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.testimonial-card .stars { color: var(--copper); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-card p { font-family: var(--font-head); font-style: italic; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.75rem; line-height: 1.65; }
.testimonial-card footer { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

/* ─── CONTACT ─── */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-list { list-style: none; margin: 1.5rem 0 2rem; }
.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--muted);
}
.info-list strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 0.25rem; }
.info-list a { color: var(--copper); font-weight: 600; }
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  min-height: 220px;
  background: var(--ivory);
}
.map-box iframe { width: 100%; height: 220px; border: none; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-note { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 0.5rem; }
.field label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  background: var(--ivory);
  transition: border-color 0.25s;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--copper); }
.err { display: block; font-size: 0.75rem; color: #C0392B; margin-bottom: 0.5rem; min-height: 1rem; }
.check { display: flex; gap: 0.5rem; font-size: 0.8125rem; color: var(--muted); margin: 1rem 0; align-items: flex-start; }
.check input { margin-top: 0.2rem; accent-color: var(--copper); }
.check a { color: var(--copper); text-decoration: underline; }
.ok { font-size: 0.875rem; color: #1E7A4C; margin-top: 1rem; padding: 0.75rem; background: rgba(30, 122, 76, 0.08); border-radius: var(--radius-sm); }

/* ─── LEGAL HUB ─── */
.legal-hub {
  padding: 5rem 0;
  background: var(--ivory);
}
.legal-hub__head { margin-bottom: 2.5rem; }
.legal-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.legal-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}
.legal-card:hover { transform: translateY(-3px); border-color: var(--border-copper); box-shadow: var(--shadow); }
.legal-card--btn { background: var(--white); }
.legal-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.legal-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.legal-card p { font-size: 0.8125rem; color: var(--muted); }

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 1.25rem 1rem;
  background: var(--navy);
  font-size: 0.75rem;
}
.legal-strip a,
.legal-strip button {
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.legal-strip a:hover,
.legal-strip button:hover { color: var(--copper-light); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer__brand p { font-size: 0.875rem; margin-top: 1rem; line-height: 1.65; max-width: 280px; }
.site-footer h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-light);
  margin-bottom: 1rem;
}
.site-footer a,
.site-footer button.footer-cookie-btn {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.site-footer a:hover,
.site-footer button.footer-cookie-btn:hover { color: var(--copper-light); }
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}
.site-footer__bar a { color: var(--copper-light); }

.compliance-bar {
  padding: 0.875rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--ivory);
  border-top: 1px solid var(--border);
}
.compliance-bar a,
.compliance-bar .link-btn {
  color: var(--copper);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .copper-hero__layout { grid-template-columns: 1fr; }
  .copper-hero::before { background: linear-gradient(180deg, var(--ivory) 55%, var(--navy) 55%); }
  .copper-hero::after { display: none; }
  .hero-visual__float { display: none; }
  .copper-hero__visual .copper-hero__panel { margin: -2rem 1rem 0; }
  .visual-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card--wide,
  .gallery-card--tall,
  .gallery-card:not(.gallery-card--wide):not(.gallery-card--tall) { grid-column: span 1; grid-row: span 1; }
  .advantages__layout { grid-template-columns: 1fr; }
  .advantages__visual { position: static; }
  .advantages__visual img { min-height: 280px; }
  .services-bento__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-bento--featured { grid-column: span 2; }
  .methodology__timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .methodology__timeline::before { display: none; }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .legal-hub__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 250;
  }
  .site-nav.is-open,
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1.1rem; }
  .copper-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .visual-gallery__grid { grid-template-columns: 1fr; }
  .showcase-band { min-height: 360px; }
  .showcase-band__content h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .services-bento__grid,
  .svc-bento--featured { grid-template-columns: 1fr; }
  .svc-bento--featured { grid-column: span 1; }
  .methodology__timeline { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }
  .faq-section__grid,
  .contact-section__grid { grid-template-columns: 1fr; }
  .legal-hub__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .pricing-table { display: block; overflow-x: auto; }
  .site-footer__bar { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .copper-hero__actions .btn { width: 100%; }
  .trust-band__grid { grid-template-columns: 1fr; }
}
