/* =========================================================
   Cabinet Ronse — Design System
   Style: Moderne & épuré
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --navy-900: #0B1B3A;
  --navy-800: #0F2447;
  --navy-700: #1A2E5C;
  --navy-100: #E8ECF4;
  --red-600:  #B30F26;
  --red-500:  #C8102E;
  --red-100:  #FCE8EB;
  --white:    #FFFFFF;
  --off:      #FAFAF7;
  --gray-50:  #F6F7F9;
  --gray-100: #EFF1F4;
  --gray-200: #E5E7EB;
  --gray-400: #9AA1AD;
  --gray-500: #6B7280;
  --gray-700: #3A4357;

  /* Typography */
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --fs-xs:   0.8125rem;   /* 13 */
  --fs-sm:   0.875rem;    /* 14 */
  --fs-base: 1rem;        /* 16 */
  --fs-md:   1.125rem;    /* 18 */
  --fs-lg:   1.25rem;     /* 20 */
  --fs-xl:   1.5rem;      /* 24 */
  --fs-2xl:  2rem;        /* 32 */
  --fs-3xl:  2.75rem;     /* 44 */
  --fs-4xl:  3.75rem;     /* 60 */
  --fs-5xl:  4.75rem;     /* 76 */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11,27,58,0.06);
  --shadow:    0 4px 24px rgba(11,27,58,0.08);
  --shadow-lg: 0 16px 48px rgba(11,27,58,0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--navy-800);
  background: var(--white);
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.25rem, 5.4vw, var(--fs-5xl)); font-weight: 300; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.625rem, 3.6vw, var(--fs-3xl)); font-weight: 350; }
h3 { font-size: var(--fs-xl); font-weight: 400; line-height: 1.25; }
h4 { font-size: var(--fs-lg); font-weight: 500; font-family: var(--font-sans); letter-spacing: -0.005em; }

p { color: var(--gray-700); line-height: 1.65; }
.lede { font-size: var(--fs-md); color: var(--gray-700); line-height: 1.7; max-width: 60ch; }

::selection { background: var(--navy-800); color: var(--white); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: clamp(4rem, 9vw, var(--sp-10)) 0; }
.section--tight { padding: clamp(3rem, 6vw, var(--sp-9)) 0; }
.section--dark { background: var(--navy-800); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--off { background: var(--off); }
.section--gray { background: var(--gray-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-500);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--red-500);
}
.section--dark .eyebrow { color: var(--red-500); }

.section-header { max-width: 720px; margin-bottom: var(--sp-8); }
.section-header .eyebrow { margin-bottom: var(--sp-4); }
.section-header h2 { margin-bottom: var(--sp-5); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 26px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all 220ms var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--navy-800); color: var(--white); }
.btn--primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { color: var(--navy-800); border-color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-800); color: var(--white); }
.btn--light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--light:hover { background: var(--white); color: var(--navy-800); border-color: var(--white); }
.btn--red { background: var(--red-500); color: var(--white); }
.btn--red:hover { background: var(--red-600); }
.btn .arrow { transition: transform 220ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--navy-800);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 200ms var(--ease);
}
.link-arrow:hover { border-bottom-color: var(--navy-800); }
.link-arrow .arrow { transition: transform 200ms var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(11,27,58,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.nav__logo { display: flex; align-items: center; gap: var(--sp-3); }
.nav__logo img { height: 84px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: var(--sp-7); }
.nav__menu a {
  font-size: var(--fs-sm);
  color: var(--navy-800);
  font-weight: 500;
  position: relative;
  transition: color 180ms var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-5); }

.lang-switch { display: flex; gap: 2px; font-size: var(--fs-xs); color: var(--gray-500); }
.lang-switch a {
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 160ms var(--ease);
}
.lang-switch a:hover { color: var(--navy-800); }
.lang-switch a.is-active { color: var(--navy-800); background: var(--gray-100); }

.nav__burger { display: none; width: 32px; height: 32px; position: relative; }
.nav__burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--navy-800);
  transition: transform 240ms var(--ease), opacity 200ms var(--ease);
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 16px; }
.nav__burger span:nth-child(3) { top: 22px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__inner { height: 84px; }
  .nav__logo img { height: 62px; }
  .nav__burger { display: block; }
  .nav__menu {
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: var(--sp-5) var(--sp-6);
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms var(--ease), opacity 200ms var(--ease);
  }
  .nav__menu a {
    width: 100%;
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--fs-md);
  }
  .nav__menu a::after { display: none; }
  .nav.is-open .nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-9);
  align-items: center;
}
.hero__body { max-width: 640px; }
.hero__body .eyebrow { margin-bottom: var(--sp-5); }
.hero h1 {
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--red-500);
  font-weight: 300;
}
.hero__lede {
  font-size: var(--fs-md);
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: 52ch;
}
.hero__cta { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: #FBF8F2;
  border: 1px solid #E8E1D3;
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  box-shadow: 0 12px 36px rgba(11,27,58,0.08), 0 2px 4px rgba(11,27,58,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(11,27,58,0.08);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.hero__visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hero__visual-header img {
  height: 80px;
  width: auto;
}
.hero__visual-stamp {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}
.hero__visual-center {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: var(--sp-5) 0;
}
.hero__visual-name {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--navy-800);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.hero__visual-rule {
  width: 32px;
  height: 1.5px;
  background: var(--red-500);
  margin: 0 auto var(--sp-4);
}
.hero__visual-tagline {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.45;
  font-weight: 300;
}
.hero__visual-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(11,27,58,0.12);
  text-align: center;
}
.hero__visual-pillar { padding: 0 var(--sp-1); }
.hero__visual-pillar-num {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.hero__visual-pillar-num em {
  font-style: normal;
  color: var(--red-500);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}
.hero__visual-pillar-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero__visual {
    aspect-ratio: auto;
    max-width: 480px;
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-5) var(--sp-5);
  }
  .hero__visual-header img { height: 58px; }
  .hero__visual-name { font-size: clamp(1.9rem, 6vw, 2.4rem); }
  .hero__visual-pillar-num { font-size: var(--fs-2xl); }
  .hero__visual-center { margin: var(--sp-5) 0 var(--sp-4); }
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  background: var(--navy-800);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  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: 64px 64px;
  pointer-events: none;
}
.page-header__inner { position: relative; max-width: 880px; }
.page-header .eyebrow { color: var(--red-500); margin-bottom: var(--sp-5); }
.page-header .eyebrow::before { background: var(--red-500); }
.page-header h1 { color: var(--white); margin-bottom: var(--sp-5); }
.page-header p { color: rgba(255,255,255,0.78); font-size: var(--fs-md); max-width: 60ch; line-height: 1.65; }
.breadcrumb {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: rgba(255,255,255,0.8); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { border-bottom-color: rgba(255,255,255,0.4); }
.breadcrumb span { margin: 0 var(--sp-2); opacity: 0.5; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- Domain cards ---------- */
.domains { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (max-width: 720px) { .domains { grid-template-columns: 1fr; } }

.domain {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  position: relative;
  transition: all 280ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-height: 320px;
}
.domain:hover {
  border-color: var(--navy-800);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.domain__num {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--red-500);
  font-weight: 300;
  font-style: italic;
}
.domain h3 { font-family: var(--font-serif); font-weight: 400; }
.domain p { font-size: var(--fs-sm); }
.domain__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-4); }
.domain__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- Avocat cards ---------- */
.avocats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
@media (max-width: 720px) { .avocats { grid-template-columns: 1fr; } }

.avocat {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 280ms var(--ease);
}
.avocat:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.avocat__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.avocat__photo::after {
  content: attr(data-initials);
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
}
.avocat__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
}
.avocat__photo:has(img)::after,
.avocat__photo:has(img) .avocat__placeholder { display: none; }
.split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
}
.avocat__placeholder {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.avocat__body { padding: var(--sp-6); }
.avocat__role {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.avocat h3 { margin-bottom: var(--sp-3); }
.avocat__bio { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.avocat__meta { display: flex; gap: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--gray-100); font-size: var(--fs-xs); color: var(--gray-500); }
.avocat__meta strong { display: block; color: var(--navy-800); font-size: var(--fs-sm); margin-top: 2px; font-weight: 500; }

/* ---------- Stats / Values ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: left; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, var(--fs-4xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.stat__num em { color: var(--red-500); font-style: italic; }
.stat__label { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value { border-top: 1px solid var(--gray-200); padding-top: var(--sp-5); }
.value__num {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--red-500);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.value h3 { margin-bottom: var(--sp-3); font-family: var(--font-serif); font-weight: 400; }
.value p { font-size: var(--fs-sm); }

/* ---------- Split / Feature row ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--sp-7); } }
.split__visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.split__visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.split__visual-quote {
  position: absolute;
  inset: var(--sp-7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.split__visual-quote .mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--red-500);
  margin-bottom: var(--sp-3);
}
.split__visual-quote p {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}
.split__visual-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: var(--sp-4);
}

/* ---------- Honoraires table ---------- */
.fees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 880px) { .fees { grid-template-columns: 1fr; } }
.fee {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.fee--feat { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.fee--feat h3, .fee--feat .fee__price { color: var(--white); }
.fee--feat p, .fee--feat li { color: rgba(255,255,255,0.78); }
.fee__label { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-500); margin-bottom: var(--sp-3); font-weight: 500; }
.fee h3 { margin-bottom: var(--sp-3); }
.fee__price { font-family: var(--font-serif); font-size: var(--fs-3xl); font-weight: 300; margin-bottom: var(--sp-2); }
.fee__price-unit { font-size: var(--fs-sm); color: var(--gray-500); font-family: var(--font-sans); }
.fee--feat .fee__price-unit { color: rgba(255,255,255,0.6); }
.fee__desc { font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.fee__list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); flex-grow: 1; }
.fee__list li { font-size: var(--fs-sm); padding-left: 24px; position: relative; line-height: 1.55; }
.fee__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--red-500); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-9);
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: var(--sp-7); } }

.form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__field label { font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); font-weight: 500; }
.form__field input,
.form__field textarea,
.form__field select {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  color: var(--navy-800);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  font-family: inherit;
}
.form__field textarea { min-height: 160px; resize: vertical; }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(15,36,71,0.08);
}
.form__legal { font-size: var(--fs-xs); color: var(--gray-500); }
.form__legal a { color: var(--navy-800); border-bottom: 1px solid var(--gray-300); }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-block { padding: var(--sp-5) 0; border-top: 1px solid var(--gray-200); }
.contact-block:first-child { border-top: none; padding-top: 0; }
.contact-block h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.contact-block p { color: var(--navy-800); font-size: var(--fs-md); line-height: 1.55; }
.contact-block a { color: var(--navy-800); border-bottom: 1px solid var(--gray-300); }
.contact-block a:hover { border-bottom-color: var(--navy-800); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-800);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) var(--sp-6);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(200,16,46,0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: var(--sp-3); position: relative; max-width: 50ch; }
.cta-banner__cta { display: flex; justify-content: flex-end; gap: var(--sp-3); flex-wrap: wrap; position: relative; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__cta { justify-content: flex-start; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-9) 0 var(--sp-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand img {
  height: 72px;
  width: auto;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-bottom: var(--sp-5);
  display: inline-block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); max-width: 32ch; }
.footer__col h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
  font-weight: 500;
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col a { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); transition: color 180ms var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
.footer__bottom-links { display: flex; gap: var(--sp-5); }
.footer__bottom a:hover { color: var(--white); }
@media (max-width: 560px) {
  .footer__bottom { flex-direction: column; gap: var(--sp-4); align-items: flex-start; }
}

/* ---------- Contact map ---------- */
.contact-map {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
@media (max-width: 720px) {
  .contact-map { aspect-ratio: 4/5; }
}

/* ---------- Misc / utilities ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: var(--white);
  padding: var(--sp-3) var(--sp-4);
  z-index: 1000;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

/* ---------- Language picker (root) ---------- */
.lang-picker {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lang-picker::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,16,46,0.14), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(15,36,71,0.4), transparent 50%);
}
.lang-picker__content { position: relative; max-width: 480px; }
.lang-picker img {
  height: 110px;
  width: auto;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  margin: 0 auto var(--sp-7);
  display: block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.lang-picker h1 {
  color: var(--white);
  font-size: var(--fs-2xl);
  font-weight: 300;
  margin-bottom: var(--sp-3);
}
.lang-picker p {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-7);
  font-size: var(--fs-sm);
}
.lang-picker__choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.lang-picker__btn {
  display: block;
  padding: var(--sp-5) var(--sp-3);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  transition: all 220ms var(--ease);
}
.lang-picker__btn:hover {
  border-color: var(--red-500);
  background: rgba(200,16,46,0.12);
  transform: translateY(-2px);
}
.lang-picker__btn strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--white);
  font-weight: 400;
}
.lang-picker__btn span {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

@media (max-width: 540px) {
  .lang-picker { padding: var(--sp-5); }
  .lang-picker__content { max-width: 360px; width: 100%; }
  .lang-picker img {
    height: 88px;
    padding: 10px 16px;
    margin-bottom: var(--sp-5);
  }
  .lang-picker h1 { font-size: var(--fs-xl); }
  .lang-picker p {
    font-size: var(--fs-xs);
    line-height: 1.5;
    margin-bottom: var(--sp-6);
  }
  .lang-picker__choices {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .lang-picker__btn {
    padding: var(--sp-4) var(--sp-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .lang-picker__btn strong { font-size: var(--fs-lg); }
  .lang-picker__btn span { margin-top: 0; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .cta-banner { display: none; }
}
