/* ============================================================
   Clinica Chirurgia Plastica — Design System
   Palette: Petrol Teal + Terracotta accent + Mist Blue (ING-384)
   ============================================================ */

/* -- CSS Variables ----------------------------------------- */
:root {
  --navy:        #00607D;   /* Petrol Teal – primary (logo) */
  --navy-dark:   #002028;   /* Ink Petrol – text / dark bg */
  --navy-mid:    #004E68;   /* mid teal shade */
  --gold:        #A6502D;   /* Terracotta – CTA / accent */
  --gold-light:  #C46A3E;   /* lighter terracotta */
  --gold-pale:   #F7FAFA;   /* off-white tint (Mist Blue 3%) */
  --mist-blue:   #C8DADD;   /* Mist Blue – bg / badges */
  --white:       #FFFFFF;
  --off-white:   #F7FAFA;
  --blue-pale:   #F0F5F6;
  --text:        #002028;   /* Ink Petrol */
  --text-mid:    #3A5560;
  --text-light:  #6B7E82;
  --border:      #E4EDEE;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,96,125,.08);
  --shadow-md:   0 6px 24px rgba(0,96,125,.12);
  --shadow-lg:   0 16px 48px rgba(0,96,125,.16);
  --transition:  all .25s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width:   1240px;
  --section-pad: 96px 0;
}

/* -- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* -- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-mid); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { color: var(--text-light); max-width: 640px; }

/* -- Layout ------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

/* -- Header / Navigation ----------------------------------- */
.site-header .container { max-width: 100%; padding: 0 32px; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,43,82,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text-wrap { line-height: 1.2; display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  display: block;
  white-space: nowrap;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
}
.logo-badge {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 2px 8px;
}

/* -- Hero Slider ----------------------------------------- */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,20,50,.65) 0%, rgba(10,20,50,.42) 55%, rgba(10,20,50,.18) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; }

/* -- Slider dots ----------------------------------------- */
.slider-dots {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s;
}
.slider-dot.active { background: var(--gold); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(200,169,110,.1);
}
.nav-link svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all .2s ease;
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dropdown-col { padding: 8px 0; }
.dropdown-label {
  padding: 6px 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 450;
}
.dropdown a:hover { color: var(--navy); background: var(--blue-pale); }

/* Lang switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-switch a {
  padding: 4px 8px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lang-switch a:hover, .lang-switch a.active {
  color: var(--navy-dark);
  background: var(--gold);
}

/* CTA Header */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}
.btn-header {
  padding: 9px 20px;
  background: #A6502D;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header:hover { background: #c26035; }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile header social icons — always hidden (icons live inside mobile menu) */
.mobile-header-social { display: none !important; }

/* Social links inside mobile menu */
.mobile-menu-social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-social-link {
  color: rgba(255,255,255,.78);
  line-height: 0;
  transition: color .2s;
}
.mobile-social-link:hover { color: #fff; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; right: 0; bottom: 0; left: 0;
  background: var(--navy-dark);
  z-index: 999;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.mobile-menu.open { display: block; }
.mobile-menu-wrap {
  padding: 16px 24px 48px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 8px;
}
.mobile-nav-link {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-link:hover { color: var(--gold); }
/* Accordion */
.mobile-acc-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
}
.mobile-acc-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform .22s ease;
}
.mobile-acc-toggle[aria-expanded="true"] .mobile-acc-chevron {
  transform: rotate(180deg);
}
.mobile-acc-panel {
  display: none;
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-acc-panel.is-open { display: block; }
.mobile-sub-group {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  padding: 10px 0 4px 14px;
}
.mobile-sub-link {
  display: block;
  padding: 7px 0 7px 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  border-left: 2px solid rgba(255,255,255,.12);
  margin-bottom: 1px;
}
.mobile-sub-overview {
  display: block;
  padding: 7px 0 7px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  margin-bottom: 4px;
}
.mobile-sub-link:hover, .mobile-sub-overview:hover { color: #fff; }
.mobile-lang-row {
  display: flex;
  gap: 14px;
  padding: 18px 0 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-lang-row a { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 500; }
.mobile-lang-row a.ml-active { color: #fff; font-weight: 700; }
.mobile-cta-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding: 13px 20px;
}
/* legacy section classes — no-op */
.mobile-menu-section { display: contents; }
.mobile-menu-label { display: none; }

/* -- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #1e3a6e 100%);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-chirurgia-plastica.jpg');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,169,110,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,169,110,.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* -- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary {
  background: #A6502D;
  color: var(--white);
}
.btn-primary:hover {
  background: #c26035;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(166,80,45,.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: #A6502D;
  color: #A6502D;
}
.btn-navy {
  background: #00607D;
  color: var(--white);
}
.btn-navy:hover {
  background: #00799d;
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-icon { width: 20px; height: 20px; }

/* -- Service Cards ----------------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-pale), var(--gold-pale));
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card-text {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.service-card-link:hover { color: #00607D; gap: 10px; }

/* -- Feature strip ----------------------------------------- */
.feature-strip {
  background: var(--navy);
  padding: 48px 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item {
  text-align: center;
}
.feature-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.feature-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* -- About Section ----------------------------------------- */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-pale), var(--gold-pale));
  min-height: 400px;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  background: var(--gold-pale);
  padding: 20px;
  text-align: center;
}
.about-accent-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.about-accent-label { font-size: .7rem; color: var(--text-light); }

/* About section layout for EN/FR/DE/ES pages */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.about { overflow: hidden; }
.section-pad { padding: var(--section-pad); }
.bg-mist { background: var(--blue-pale); }
.about-image-wrap,
.about-image,
.about-image-block { position: relative; }
.about-image-block .about-img-main { margin-bottom: 20px; }
.about-quote {
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.about-quote p { font-size: .92rem; font-style: italic; margin-bottom: 8px; color: rgba(255,255,255,.9); }
.about-quote cite { font-size: .78rem; color: var(--gold); font-style: normal; }
.about-content { padding: 24px 0 24px 40px; }
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.credential-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.credential-text strong { display: block; font-size: .9rem; color: var(--navy); }
.credential-text span { font-size: .82rem; color: var(--text-light); }

/* -- Procedure Page ---------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center top;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,50,.72) 0%, rgba(0,40,70,.55) 100%);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: #00607D; }
.breadcrumb span { color: #A6502D; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }

/* Procedure content layout */
.procedure-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.procedure-content h2 {
  font-size: 1.6rem;
  margin: 36px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.procedure-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.procedure-content p { margin-bottom: 16px; }
.procedure-content ul { margin: 0 0 16px 0; }
.procedure-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-mid);
  font-size: .95rem;
}
.procedure-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  position: sticky;
  top: 90px;
}
.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}
.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label { color: var(--text-light); }
.sidebar-info-val { font-weight: 600; color: var(--navy); text-align: right; }
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,.65); font-size: .85rem; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-phones a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.sidebar-phones a:hover { color: var(--gold); }
.sidebar-phones a:last-child { border-bottom: none; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  user-select: none;
  transition: var(--transition);
  gap: 12px;
}
.faq-q:hover { background: var(--blue-pale); }
.faq-q svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* -- Locations -------------------------------------------- */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.location-map {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-pale), var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-pin { font-size: 3rem; }
.location-body { padding: 24px; }
.location-city {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.location-region {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .9rem;
  color: var(--text-mid);
}
.location-detail svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* -- Contact form ------------------------------------------ */
.contact-wrap { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-detail-text a { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-detail-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,43,82,.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-privacy {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.form-privacy a { color: var(--navy); text-decoration: underline; }

/* -- Footer ------------------------------------------------ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { font-size: 1.1rem; }
.footer-brand .logo-sub { margin-bottom: 16px; display: block; }
.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer-social:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item strong { color: var(--white); display: block; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }
.footer-lang-bar {
  background: rgba(255,255,255,.04);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 0;
}
.footer-lang-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-lang-bar a {
  color: rgba(255,255,255,.5);
  padding: 4px 10px;
  border-radius: 4px;
  transition: var(--transition);
  font-weight: 500;
}
.footer-lang-bar a:hover, .footer-lang-bar a.active { color: var(--gold); background: rgba(200,169,110,.1); }

/* -- Cookie banner ---------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 520px;
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  border: 1px solid rgba(200,169,110,.2);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner h5 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.cookie-banner p { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; }

/* -- Utility ----------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.gap-center { text-align: center; }
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }
.tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 600;
}
.tag--gold { background: var(--gold-pale); color: var(--navy); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* -- Testimonials ------------------------------------------ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .92rem; color: var(--text-mid); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-meta { font-size: .78rem; color: var(--text-light); }
.testimonial-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3rem;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .procedure-layout { grid-template-columns: 1fr 280px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-wrap .contact-info { order: 1; }
  .contact-wrap .contact-form { order: 0; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .main-nav, .header-cta, .lang-switch { display: none; }
  .mobile-toggle { display: flex; }
  .logo-name { font-size: .9rem; }
  .logo-sub { font-size: .6rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; padding: 64px 24px; }
  .about-content { padding: 0; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-content { padding: 32px 0 0 0; }
  .about-img-accent { right: 0; }
  .procedure-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: 100%; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card-footer { flex-direction: column; }
  .location-card-footer .btn { flex: none; width: 100%; }
  .hero { min-height: 85vh; }
  .hero-content { padding-top: 100px; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
}

/* -- Locations grid (EN/FR/DE/ES pages) --------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.location-card article,
article.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
article.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.location-card-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 28px 28px 20px;
  position: relative;
}
.location-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(166,80,45,.18);
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.location-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 4px;
}
.location-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.location-card-body {
  padding: 24px 28px;
  flex: 1;
}
.location-card-body .location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: var(--text-mid);
}
.location-card-body .location-detail .location-detail-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.location-card-body .location-detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.location-card-body .location-detail strong {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  font-weight: 600;
}
.location-card-body .location-detail span,
.location-card-body .location-detail a {
  color: var(--text-mid);
  line-height: 1.5;
}
.location-card-body .location-detail a:hover { color: var(--gold); }
.location-card-footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-card-footer .btn { flex: 1; min-width: 120px; text-align: center; }

/* -- Cookie / Privacy banner --------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  max-width: 360px;
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border: 1px solid rgba(200,169,110,.2);
  display: none;
  animation: slideUpCookie .35s ease;
}
.cookie-banner.visible { display: block; }
@keyframes slideUpCookie {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0 0 14px;
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn-accept {
  flex: 1;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: .82rem;
  cursor: pointer;
  transition: all .2s;
}
.cookie-btn-reject:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-banner-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

/* -- Animate on scroll -------------------------------------- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
