/* ─── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --navy:        #040c1e;
  --navy-2:      #071232;
  --navy-3:      #0d1c48;
  --navy-card:   #0a1738;
  --brand:       #d4183a;
  --brand-hover: #b81231;
  --brand-glow:  rgba(212, 24, 58, 0.28);
  --gold:        #c9973a;
  --gold-light:  #e0b96a;
  --white:       #ffffff;
  --off-white:   #f4f7fc;
  --panel-bg:    #ffffff;
  --panel-border:#dde4f0;
  --ink:         #0f172a;
  --ink-2:       #374151;
  --ink-3:       #6b7280;
  --accent-blue: #3b82f6;

  --r-2xl: 28px;
  --r-xl:  20px;
  --r-lg:  14px;
  --r-md:  10px;

  --shadow-dark: 0 32px 64px rgba(2, 7, 22, 0.5);
  --shadow-card: 0 8px 24px rgba(10, 20, 55, 0.1);
  --shadow-hover: 0 20px 40px rgba(10, 20, 55, 0.18);

  --container: min(1160px, 92vw);
  --ease: cubic-bezier(0.22, 0.68, 0, 1.2);
  --transition: 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 400ms ease;
}
body.page-ready { opacity: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container { width: var(--container); margin: 0 auto; }
section { scroll-margin-top: 80px; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1, h2, h3 { line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ─── Focus ──────────────────────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 14px var(--brand-glow);
}
.btn-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 8px 24px rgba(212, 24, 58, 0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}
.btn-lg {
  font-size: 1rem;
  padding: 0.95rem 1.7rem;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(4, 12, 30, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4, 12, 30, 0.98);
  box-shadow: 0 4px 24px rgba(2, 6, 20, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.44rem 0.8rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.desktop-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  font-weight: 600;
}
.header-cta { display: flex; align-items: center; gap: 0.65rem; }
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}
.lang-pill:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.1rem;
}
.mobile-menu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  gap: 0.2rem;
  padding: 0 0 0;
  transition: max-height 380ms ease, opacity 240ms ease, padding 240ms ease;
}
.mobile-menu[data-open="true"] {
  max-height: 360px;
  opacity: 1;
  padding: 0.6rem 0 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 0.6rem 0.2rem;
  border-radius: 6px;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 60% 0%, rgba(30,58,138,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(212,24,58,0.2) 0%, transparent 60%),
    linear-gradient(168deg, #071030 0%, var(--navy) 55%, #030916 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 151, 58, 0.14);
  border: 1px solid rgba(201, 151, 58, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero-headline em {
  color: var(--gold-light);
  font-style: normal;
}
.hero-body {
  color: rgba(255,255,255,0.84);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.72;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.14);
}

/* ─── Hero Credential Card ───────────────────────────────────────────────── */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-badge {
  background: linear-gradient(135deg, var(--brand), #ff4d6d);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.hero-card-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 24, 58, 0.18);
  border: 1px solid rgba(212, 24, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #ff6b85;
  font-size: 0.65rem;
}
.hero-card-item-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}
.hero-card-item-text strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.08rem;
}
.hero-card-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-card-cta .btn { justify-content: center; text-align: center; }
.hero-card-phone {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}
.hero-card-phone a {
  color: var(--gold-light);
  font-weight: 600;
}

/* ─── Section Shell ──────────────────────────────────────────────────────── */
.section-light { background: var(--panel-bg); padding: 80px 0; }
.section-alt    { background: var(--off-white);  padding: 80px 0; }
.section-dark   { background: var(--navy); padding: 80px 0; }
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 0.65rem;
}
.section-head h2 { color: var(--ink); margin-bottom: 0.65rem; }
.section-head p {
  color: var(--ink-2);
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }
.section-head.light h1,
.section-head.light h2 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}
.section-head.light p {
  color: rgba(255,255,255,0.84);
  font-size: 1.18rem;
  max-width: 62ch;
}
.section-head.light .eyebrow { color: var(--gold-light); }

/* ─── Service Cards ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: #c8d5ea; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fef3f5, #fff5f7);
  border: 1px solid rgba(212, 24, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; color: var(--brand); }
.service-card h3 { color: var(--ink); font-size: 1.18rem; margin: 0; }
.service-card p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border-radius: var(--r-2xl);
  padding: 2.2rem 2.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.12), transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.5rem;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Process Steps ──────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100% - 2rem);
  width: calc(100% - 1rem);
  height: 1px;
  background: var(--panel-border);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.process-step h3 { font-size: 1rem; color: var(--ink); margin: 0; }
.process-step p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.6; margin: 0; }

/* ─── Maria Teaser ───────────────────────────────────────────────────────── */
.maria-teaser {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.maria-photo-frame {
  position: relative;
}
.maria-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-2xl) + 8px);
  border: 2px solid var(--panel-border);
  pointer-events: none;
}
.maria-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-2xl);
  display: block;
}
.maria-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: var(--white);
}
.maria-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.maria-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.maria-content { display: flex; flex-direction: column; gap: 1.1rem; }
.maria-name-block { display: flex; flex-direction: column; gap: 0.25rem; }
.maria-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}
.maria-title {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.maria-quote {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.7;
  border-left: 3px solid var(--brand);
  padding-left: 1.1rem;
  font-style: italic;
}
.maria-bio { color: var(--ink-2); font-size: 0.97rem; line-height: 1.72; }
.maria-content .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212,24,58,0.22) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  border-radius: var(--r-2xl);
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.1), transparent 70%);
  top: -120px; left: -80px;
  pointer-events: none;
}
.cta-banner-text { position: relative; }
.cta-banner-text .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.cta-banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-banner-text p { color: rgba(255,255,255,0.72); max-width: 54ch; font-size: 1rem; }
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  flex-shrink: 0;
  position: relative;
}
.cta-tel {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-align: right;
}
.cta-tel a { color: var(--gold-light); font-weight: 600; }

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fef3f5, #fff5f7);
  border: 1px solid rgba(212,24,58,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--brand); }
.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 0.25rem;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.97rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.contact-form-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.contact-form-card > p {
  color: var(--ink-2);
  font-size: 0.93rem;
  margin-bottom: 1.6rem;
}
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  border: 1.5px solid var(--panel-border);
  border-radius: var(--r-lg);
  padding: 0.78rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fcfcfd;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field input:hover, .field textarea:hover { border-color: #b9c7e2; }
.field input:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212,24,58,0.1);
  outline: none;
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-weight: 600; font-size: 0.9rem; min-height: 1.2em; margin-top: 0.25rem; }
.form-status[data-state="success"] { color: #15803d; }
.form-status[data-state="error"]   { color: #b91c1c; }
.form-submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Profile Page ───────────────────────────────────────────────────────── */
.profile-hero {
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(30,58,138,0.35) 0%, transparent 65%),
    linear-gradient(168deg, #071030 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.profile-hero-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.profile-photo-wrap {
  position: relative;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-dark);
}
.profile-photo-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-2xl) + 10px);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.profile-hero-content { display: flex; flex-direction: column; gap: 1.2rem; }
.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,58,0.14);
  border: 1px solid rgba(201,151,58,0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.36rem 0.8rem;
  border-radius: 100px;
}
.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
}
.profile-role {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  margin-top: -0.3rem;
}
.profile-hero-quote {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.68;
  border-left: 3px solid var(--gold-light);
  padding-left: 1.1rem;
  font-style: italic;
}
.profile-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}
.profile-stat { display: flex; flex-direction: column; gap: 0.1rem; }
.profile-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.profile-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.profile-body-section { padding: 80px 0; background: var(--panel-bg); }
.profile-body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.profile-bio { display: flex; flex-direction: column; gap: 1rem; }
.profile-bio p { font-size: 1rem; color: var(--ink-2); line-height: 1.75; }
.profile-bio h3 { color: var(--ink); margin-top: 0.5rem; }
.profile-focus-card {
  background: var(--off-white);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: 96px;
}
.profile-focus-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.profile-focus-list { display: flex; flex-direction: column; gap: 0.65rem; }
.profile-focus-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.profile-focus-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fef3f5, #fff5f7);
  border: 1px solid rgba(212,24,58,0.1);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; color: var(--brand); }
.value-card h3 { color: var(--ink); font-size: 1.1rem; margin: 0; }
.value-card p { color: var(--ink-2); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* ─── Services Page ──────────────────────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-full-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-full-card:hover::before { opacity: 1; }
.service-full-card .service-icon { margin-bottom: 0.25rem; }
.service-full-card h3 { color: var(--ink); font-size: 1.22rem; margin: 0; }
.service-full-card p { color: var(--ink-2); font-size: 0.97rem; line-height: 1.68; margin: 0; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 36ch;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.3rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}
.footer-links-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}
.footer-links-list a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 0.68, 0, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

/* ─── Touch targets ──────────────────────────────────────────────────────── */
.btn { min-height: 44px; }
.lang-pill, .menu-toggle { min-height: 44px; min-width: 44px; }

/* ─── Section banner (replaces inline padding on dark header sections) ───── */
.section-banner { padding-top: 140px !important; padding-bottom: 72px !important; }

/* ─── Responsive: Tablet landscape (≤1200px) ─────────────────────────────── */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr 380px; }
}

/* ─── Responsive: Tablet portrait (≤1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { max-width: 540px; }
  .hero-headline { font-size: clamp(2.2rem, 5vw, 3.4rem); }
  .maria-teaser { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .profile-hero-inner { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .profile-body-grid { grid-template-columns: 1fr 260px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Responsive: Mobile landscape / small tablet (≤860px) ───────────────── */
@media (max-width: 860px) {
  .desktop-nav,
  .header-cta a.btn { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 120px 0 64px; }
  .hero-headline { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-body { font-size: 1rem; }
  .hero-trust-row { flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; margin-top: 1.6rem; }
  .hero-trust-divider { display: none; }
  .hero-card { max-width: 100%; }

  .section-banner { padding-top: 110px !important; padding-bottom: 56px !important; }
  .profile-hero { padding: 110px 0 56px; }

  .maria-teaser { grid-template-columns: 1fr; }
  .maria-photo-frame { max-width: 280px; }
  .maria-badge { right: 0; bottom: -12px; }

  .about-values-grid { grid-template-columns: 1fr; }
  .services-grid,
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .cta-banner { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .cta-banner-actions { align-items: flex-start; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .cta-tel { text-align: left; }

  /* Stats bar: 2×2 grid with clean borders */
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.8rem; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2) { border-top: none; border-left: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.1); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .profile-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .profile-photo { max-width: 240px; }
  .profile-photo-ring { display: none; }
  .profile-body-grid { grid-template-columns: 1fr; }
  .profile-focus-card { position: static; }
  .profile-stats-row { flex-wrap: wrap; gap: 1.2rem; }

  .form-row { grid-template-columns: 1fr; }
}

/* ─── Responsive: Mobile portrait (≤600px) ───────────────────────────────── */
@media (max-width: 600px) {
  :root { --container: min(1160px, 94vw); }
  h1 { font-size: clamp(1.75rem, 6.5vw, 2.2rem); }
  h2 { font-size: clamp(1.45rem, 5vw, 1.9rem); }
  h3 { font-size: 1.05rem; }

  .hero { padding: 100px 0 48px; }
  .hero-body { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-card { padding: 1.2rem; }

  .section-light,
  .section-alt,
  .section-dark { padding: 48px 0; }
  .section-banner { padding-top: 96px !important; padding-bottom: 48px !important; }
  .section-head { margin-bottom: 2rem; }
  .section-head.light p { font-size: 1rem; }

  .profile-hero { padding: 96px 0 48px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.2rem; gap: 0; }
  .stat-item { padding: 0.9rem; }

  .cta-banner { padding: 1.5rem; border-radius: 20px; }
  .cta-banner-text h2 { font-size: 1.4rem; }

  .service-card,
  .service-full-card { padding: 1.4rem; }
  .value-card { padding: 1.3rem; }

  .contact-form-card { padding: 1.4rem; }
  .contact-info-card { padding: 1rem; }

  .maria-photo-frame { max-width: 240px; }
  .maria-badge { display: none; }

  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding-left: 0; }
}

/* ─── Responsive: Very small phones (≤390px) ─────────────────────────────── */
@media (max-width: 390px) {
  .header-inner { gap: 0.75rem; }
  .brand-name { font-size: 0.95rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.5rem; }
  .hero-trust-number { font-size: 1.3rem; }
}

/* ─── Prefers reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  body { opacity: 1; }
  [data-reveal] { opacity: 1; transform: none; }
}
