@font-face{font-family:"Cormorant Garamond";font-style:normal;font-display:swap;font-weight:500;src:url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2")}
@font-face{font-family:"Cormorant Garamond";font-style:normal;font-display:swap;font-weight:600;src:url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2")}
@font-face{font-family:"Manrope";font-style:normal;font-display:swap;font-weight:400;src:url("../fonts/manrope-latin-400-normal.woff2") format("woff2")}
@font-face{font-family:"Manrope";font-style:normal;font-display:swap;font-weight:500;src:url("../fonts/manrope-latin-500-normal.woff2") format("woff2")}
@font-face{font-family:"Manrope";font-style:normal;font-display:swap;font-weight:600;src:url("../fonts/manrope-latin-600-normal.woff2") format("woff2")}
@font-face{font-family:"Manrope";font-style:normal;font-display:swap;font-weight:700;src:url("../fonts/manrope-latin-700-normal.woff2") format("woff2")}

:root {
  --ivory: #f7f2e8;
  --ivory-deep: #eee5d5;
  --navy: #071b33;
  --navy-strong: #0d2b4d;
  --gold: #c89b45;
  --gold-dark: #aa791d;
  --white: #ffffff;
  --text: #252a31;
  --muted: #5a6069;
  --line: #e5dccf;
  --shadow: 0 18px 50px rgba(10, 35, 66, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(202, 167, 101, .35); color: var(--navy); }

.container { width: min(1320px, calc(100% - 96px)); margin-inline: auto; }
.section { padding: 116px 0; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 16px; background: var(--navy); color: white;
  border-radius: 8px; transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 96px; display: flex; align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(222,214,200,.52);
  box-shadow: 0 8px 30px rgba(7,27,51,.045);
  backdrop-filter: blur(10px);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--navy); white-space: nowrap; }
.brand-mark { width: 54px; height: 42px; fill: none; stroke: var(--gold-dark); stroke-width: 2.3; stroke-linecap: square; stroke-linejoin: miter; }
.brand-mark .window { fill: var(--navy); stroke: var(--navy); stroke-width: 1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: .025em; line-height: 1; }
.brand-name em { color: var(--gold-dark); font-style: normal; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 38px; color: var(--navy); font-size: 14px; font-weight: 500; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.desktop-nav span { display: none; }
.header-phone {
  min-height: 52px; display: inline-flex; align-items: center; gap: 10px;
  padding: 0 5px; border: 0;
  color: var(--navy); font-weight: 600; transition: color .25s ease, transform .25s ease;
}
.header-phone svg, .button svg, .mobile-action-bar svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.header-phone svg { color: var(--gold-dark); }
.header-phone:hover { color: var(--gold-dark); transform: translateY(-1px); }
.header-email { min-height: 52px; border-radius: 4px; padding-inline: 28px; white-space: nowrap; }
.mobile-menu { display: none; position: relative; }
.mobile-menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
.mobile-menu-button span { display: block; width: 19px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.mobile-menu.is-open .mobile-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu.is-open .mobile-menu-button span:nth-child(2) { opacity: 0; }
.mobile-menu.is-open .mobile-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu nav { position: fixed; top: 76px; left: 0; right: 0; padding: 18px 20px 24px; background: var(--ivory); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: grid; }
.mobile-menu nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--navy); }

.hero { position: relative; overflow: hidden; padding: 0; background: var(--ivory); }
.hero::before { display: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 62px max(46px, calc((100vw - 1320px) / 2 + 40px)) 56px; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 23px; color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.hero .eyebrow { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 13px; }
.hero .eyebrow > span { width: 52px; }
.eyebrow.light { color: var(--gold); }
h1, h2, h3 { color: var(--navy); font-family: var(--serif); font-weight: 600; }
h1 { max-width: 650px; margin: 0; font-size: clamp(54px, 4.45vw, 68px); line-height: 1.03; letter-spacing: -.025em; }
h1 em { color: var(--gold-dark); font-style: normal; }
.hero-intro { max-width: 620px; margin: 29px 0 0; color: #393e45; font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 29px; }
.button { min-height: 58px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; padding: 0 25px; border: 1px solid transparent; border-radius: 4px; font-size: 15px; font-weight: 600; transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease; }
.button svg { color: var(--gold); }
.button-primary { background: var(--navy); color: white; }
.button-primary:hover { background: var(--navy-strong); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,35,66,.18); }
.button-secondary { border-color: var(--navy); color: var(--navy); }
.button-secondary:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.trust-row { display: flex; align-items: center; gap: 18px; margin-top: 34px; color: var(--navy); font-size: 12px; font-weight: 600; }
.trust-row > div { display: flex; align-items: center; gap: 9px; }
.trust-row > i { width: 1px; height: 38px; background: #d3ccbf; }
.trust-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; background: transparent; }
.trust-icon svg, .human-card-icon svg, .mini-note > svg { width: 23px; height: 23px; fill: none; stroke: var(--navy); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual { position: relative; min-width: 0; padding: 0; }
.hero-visual > img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; object-position: 58% center; border-radius: 0; box-shadow: none; }
.human-card { position: absolute; right: 28px; bottom: 0; width: min(470px, calc(100% - 56px)); min-height: 140px; display: flex; align-items: center; gap: 21px; padding: 24px 28px; background: white; border: 1px solid rgba(229,220,207,.7); border-radius: 20px; box-shadow: var(--shadow); }
.human-card-icon { width: 72px; height: 72px; flex: 0 0 72px; display: grid; place-items: center; background: var(--navy); border-radius: 50%; }
.human-card-icon svg { width: 34px; height: 34px; stroke: var(--gold); }
.human-card strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 25px; line-height: 1.15; }
.human-card small { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.two-col-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.two-col-heading h2, .section-heading h2, .city-heading h2, .faq-intro h2, .aliyah-copy h2 { margin: 0; font-size: clamp(42px, 4.1vw, 61px); line-height: 1; letter-spacing: -.025em; }
.lead-copy { padding-bottom: 4px; }
.lead-copy p { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
.promise-band { margin-top: 67px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-band > div { display: flex; align-items: center; gap: 17px; padding: 26px 30px; border-right: 1px solid var(--line); }
.promise-band > div:last-child { border-right: 0; }
.promise-band b { color: var(--gold-dark); font-size: 12px; letter-spacing: .15em; }
.promise-band span { color: var(--navy); font-family: var(--serif); font-size: 22px; font-weight: 600; }

.project-section { background: white; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 660px; margin: 24px auto 0; color: var(--muted); }
.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 58px; }
.profile-card { min-height: 330px; display: flex; flex-direction: column; padding: 31px 28px; background: var(--ivory); border: 1px solid var(--line); border-radius: 20px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(202,167,101,.65); }
.profile-number { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.profile-card h3 { margin: auto 0 14px; font-size: 30px; line-height: 1.05; }
.profile-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.process-section { position: relative; overflow: hidden; background: var(--navy); color: white; }
.process-section::after { content: ""; position: absolute; right: -240px; bottom: -360px; width: 620px; height: 620px; border: 1px solid rgba(202,167,101,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(202,167,101,.025), 0 0 0 160px rgba(202,167,101,.02); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.process-intro h2, .selection-grid h2 { margin: 0; color: white; font-size: clamp(43px, 4vw, 60px); line-height: .98; }
.process-intro > p:not(.eyebrow) { margin: 25px 0 0; color: rgba(255,255,255,.68); }
.text-link { display: inline-flex; align-items: center; gap: 15px; margin-top: 27px; color: white; font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(202,167,101,.6); padding-bottom: 5px; }
.text-link span { color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.dark { color: var(--navy); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 25px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list b { color: var(--gold); font-family: var(--serif); font-size: 33px; font-weight: 500; }
.process-list strong { display: block; color: white; font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.process-list small { display: block; margin-top: 7px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }

.aliyah-section { background: var(--ivory); }
.aliyah-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 92px; align-items: center; }
.aliyah-image { position: relative; }
.aliyah-image::before { content: ""; position: absolute; left: -24px; top: -24px; width: 130px; height: 130px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.aliyah-image img { position: relative; width: 100%; aspect-ratio: 8/6; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow); }
.aliyah-copy > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); }
.mini-note { display: flex; gap: 16px; margin-top: 30px; padding: 21px; background: white; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); font-size: 13px; }
.mini-note > svg { flex: 0 0 26px; stroke: var(--gold-dark); }
.mini-note strong { display: block; color: var(--navy); font-size: 14px; }

.city-section { background: white; }
.city-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 100px; align-items: end; }
.city-heading > p, .city-heading-copy > p { margin: 0 0 4px; color: var(--muted); }
.city-heading-copy { display: grid; gap: 17px; }
.city-heading-copy > a { width: fit-content; color: var(--navy); font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--gold); }
.city-heading-copy > a span { color: var(--gold-dark); }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 60px; }
.city-card-anchor { display: block; }
.city-card { position: relative; min-height: 286px; padding: 29px 30px 27px; background: var(--ivory); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.city-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -100px; bottom: -110px; border: 1px solid rgba(202,167,101,.32); border-radius: 50%; box-shadow: 0 0 0 24px rgba(202,167,101,.035), 0 0 0 48px rgba(202,167,101,.025); pointer-events: none; }
.city-card:hover { transform: translateY(-3px); border-color: rgba(202,167,101,.65); box-shadow: 0 14px 40px rgba(10,35,66,.08); }
.city-meta { display: flex; justify-content: space-between; align-items: center; }
.city-meta span { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.city-meta small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.city-card h3 { margin: 24px 0 11px; font-size: 31px; line-height: 1; }
.city-card p { max-width: 92%; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.city-card-link { position: absolute; left: 30px; bottom: 25px; z-index: 1; display: inline-flex; gap: 12px; color: var(--navy); font-size: 12px; font-weight: 700; }
.city-card-link span { color: var(--gold-dark); transition: transform .2s ease; }
.city-card-anchor:hover .city-card-link span { transform: translateX(4px); }
.city-orientation { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 24px; padding: 30px; background: var(--navy); color: white; }
.city-orientation > div { display: grid; gap: 5px; }
.city-orientation strong { font-family: var(--serif); font-size: 26px; line-height: 1.1; }
.city-orientation span { color: rgba(255,255,255,.66); font-size: 12px; }
.city-orientation .button { flex: 0 0 auto; background: var(--gold); color: var(--navy); }

.selection-section { background: #102d50; color: white; }
.selection-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.13); }
.criteria-grid > div { min-height: 200px; display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 28px; background: #102d50; }
.criteria-grid b { color: var(--gold); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.criteria-grid strong { display: block; color: white; font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.criteria-grid small { display: block; margin-top: 9px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.6; }

.faq-section { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 145px; }
.faq-intro > p:not(.eyebrow) { max-width: 430px; margin: 23px 0 0; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-family: var(--sans); font-size: 18px; font-weight: 400; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--ivory-deep); }
.faq-list details p { margin: -5px 58px 25px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 104px 0; background: var(--navy); color: white; text-align: center; }
.final-cta-inner { max-width: 950px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { max-width: 860px; margin: 0 auto; color: white; font-size: clamp(45px, 5vw, 70px); line-height: .96; }
.final-cta p:not(.eyebrow) { margin: 23px 0 0; color: rgba(255,255,255,.66); }
.centered-actions { justify-content: center; margin-top: 31px; }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold svg { color: var(--navy); }
.button-gold:hover { background: #d9b978; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.button-light-outline { border-color: rgba(255,255,255,.55); color: white; }
.button-light-outline:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }

.site-footer { padding: 75px 0 28px; background: #06182d; color: rgba(255,255,255,.64); }
.site-footer .brand { color: white; }
.site-footer .brand-mark .window { fill: white; stroke: white; }
.footer-main { display: grid; grid-template-columns: 1.6fr .6fr 1fr; gap: 80px; }
.footer-main > div:first-child p { max-width: 390px; margin: 20px 0 0; font-size: 13px; }
.footer-main > div:not(:first-child) { display: grid; align-content: start; gap: 9px; font-size: 13px; }
.footer-main strong { margin-bottom: 7px; color: white; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-main a:hover { color: var(--gold); }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }
.footer-legal p { max-width: 850px; margin: 0; }
.footer-legal span { white-space: nowrap; }
.mobile-action-bar { display: none; }

/* Guides SEO par ville */
.guide-header { position: sticky; top: 0; z-index: 100; min-height: 88px; display: flex; align-items: center; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.guide-header-inner { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 25px; }
.guide-header nav { justify-self: center; display: flex; gap: 25px; color: var(--navy); font-size: 13px; font-weight: 600; }
.guide-header nav a:hover { color: var(--gold-dark); }
.guide-phone { color: var(--navy); font-size: 13px; font-weight: 700; white-space: nowrap; }
.guide-mail { min-height: 48px; font-size: 13px; }
.city-guide-hero { padding: 75px 0 82px; background: var(--ivory); border-bottom: 1px solid var(--line); }
.city-guide-hero-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 95px; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 40px; color: var(--muted); font-size: 11px; }
.breadcrumbs b { color: var(--navy); }
.city-guide-hero h1 { max-width: 790px; font-size: clamp(56px, 6vw, 82px); line-height: .98; }
.city-guide-lead { max-width: 760px; margin: 26px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.city-facts { padding: 35px 38px; background: white; border-top: 3px solid var(--gold); box-shadow: 0 18px 55px rgba(7,27,51,.08); }
.city-facts > p { margin: 0 0 20px; color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.city-facts dl { margin: 0; }
.city-facts dl > div { padding: 16px 0; border-top: 1px solid var(--line); }
.city-facts dt { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.city-facts dd { margin: 5px 0 0; color: var(--navy); font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.25; }
.guide-two-col { display: grid; grid-template-columns: 1fr .82fr; gap: 110px; align-items: start; }
.guide-two-col h2, .life-grid h2, .balance-grid h2 { margin: 0; font-size: clamp(42px,4.1vw,60px); line-height: 1; }
.guide-two-col > div:last-child > p, .life-grid article > p:not(.eyebrow) { margin: 0 0 17px; color: var(--muted); }
.guide-education { background: white; }
.education-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 18px; margin-top: 55px; }
.guide-feature { min-height: 340px; padding: 32px 29px; background: var(--ivory); border: 1px solid var(--line); }
.guide-feature-main { background: var(--navy); color: white; border-color: var(--navy); }
.guide-feature > span { color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.guide-feature h3 { margin: 75px 0 17px; font-size: 29px; line-height: 1.05; }
.guide-feature-main h3 { color: white; }
.guide-feature p { margin: 0; color: var(--muted); font-size: 13px; }
.guide-feature-main p { color: rgba(255,255,255,.72); }
.guide-feature strong { display: block; margin-top: 18px; color: var(--gold); font-size: 12px; line-height: 1.5; }
.source-note { margin: 24px 0 0; color: var(--muted); font-size: 11px; }
.guide-life { background: var(--ivory); }
.life-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.life-grid article { padding: 55px; background: var(--ivory); }
.life-grid h2 { margin-bottom: 25px; }
.guide-property { background: var(--navy); color: white; }
.guide-property h2 { color: white; }
.guide-property .guide-two-col > div:last-child > p { color: rgba(255,255,255,.72); }
.guide-property strong { color: white; }
.district-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 55px; background: var(--line); }
.district-grid > div { min-height: 115px; display: flex; align-items: center; gap: 20px; padding: 25px; background: white; }
.district-grid span { color: var(--gold-dark); font-size: 11px; font-weight: 700; }
.district-grid strong { color: var(--navy); font-family: var(--serif); font-size: 25px; }
.guide-balance { background: var(--ivory); }
.balance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.balance-grid > div { padding: 48px; background: white; border-top: 3px solid var(--gold); }
.balance-grid ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.balance-grid li { position: relative; padding-left: 25px; color: var(--muted); }
.balance-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.guide-city-cta { padding: 100px 0; background: var(--navy); color: white; text-align: center; }
.guide-city-cta h2 { max-width: 850px; margin: 0 auto; color: white; font-size: clamp(46px,5vw,68px); line-height: .98; }
.guide-city-cta > .container > p:not(.eyebrow) { max-width: 680px; margin: 24px auto 0; color: rgba(255,255,255,.68); }
.related-cities { background: white; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin-top: 45px; }
.related-grid a { min-height: 190px; display: flex; flex-direction: column; padding: 25px; background: var(--ivory); border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease; }
.related-grid a:hover { transform: translateY(-3px); border-color: var(--gold); }
.related-grid small { color: var(--gold-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.related-grid strong { margin-top: auto; color: var(--navy); font-family: var(--serif); font-size: 30px; }
.related-grid span { margin-top: 8px; color: var(--muted); font-size: 11px; }
.guide-footer { padding: 28px 0; background: #06182d; color: rgba(255,255,255,.7); }
.guide-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; font-size: 11px; }

/* Questionnaire d’orientation */
.quiz-page { background: var(--ivory); }
.quiz-hero { padding: 76px 0 68px; background: var(--navy); color: white; text-align: center; }
.quiz-hero .eyebrow { justify-content: center; color: var(--gold); }
.quiz-hero h1 { max-width: 920px; margin: 0 auto; color: white; font-size: clamp(58px,6vw,82px); }
.quiz-hero p:last-child { max-width: 760px; margin: 25px auto 0; color: rgba(255,255,255,.7); font-size: 18px; }
.quiz-shell { max-width: 1060px; margin: 0 auto; }
.quiz-progress { position: sticky; top: 88px; z-index: 20; height: 5px; margin-bottom: 35px; background: var(--line); }
.quiz-progress span { display: block; height: 100%; background: var(--gold); transition: width .25s ease; }
.quiz-grid { display: grid; gap: 18px; }
.quiz-grid fieldset { margin: 0; padding: 31px; background: white; border: 1px solid var(--line); }
.quiz-grid legend { width: 100%; display: flex; gap: 17px; padding: 0; color: var(--navy); font-family: var(--serif); font-size: 27px; font-weight: 600; }
.quiz-grid legend > span { color: var(--gold-dark); font-family: var(--sans); font-size: 11px; letter-spacing: .12em; padding-top: 9px; }
.quiz-grid fieldset > div { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 22px; }
.quiz-grid label { min-height: 58px; display: flex; align-items: center; padding: 13px 16px; border: 1px solid var(--line); color: var(--muted); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.quiz-grid label:hover, .quiz-grid label.selected { border-color: var(--gold); background: var(--ivory); color: var(--navy); }
.quiz-grid input { width: 17px; height: 17px; margin: 0 12px 0 0; accent-color: var(--navy); }
.quiz-submit { width: 100%; margin-top: 24px; border: 0; cursor: pointer; }
.quiz-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.quiz-help { margin: 10px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.quiz-results { margin-top: 60px; padding-top: 58px; border-top: 1px solid var(--line); }
.quiz-results h2 { margin: 0; font-size: clamp(44px,5vw,64px); line-height: 1; }
.quiz-disclaimer { max-width: 720px; color: var(--muted); }
.quiz-results > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 35px; }
.quiz-results article { min-height: 390px; display: flex; flex-direction: column; padding: 28px; background: white; border-top: 3px solid var(--gold); }
.quiz-results article b { color: var(--gold-dark); font-size: 11px; }
.quiz-results article small { margin-top: 38px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.quiz-results article h3 { margin: 5px 0 14px; font-size: 36px; }
.quiz-results article p { margin: 0; color: var(--muted); font-size: 13px; }
.quiz-results article a { margin-top: auto; color: var(--navy); font-size: 12px; font-weight: 700; }
.quiz-mail { width: 100%; margin-top: 20px; }

a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid rgba(202,167,101,.58); outline-offset: 3px; }
@keyframes revealUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes imageIn { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
.hero-copy > * { animation: revealUp .52s ease both; }
.hero-copy > :nth-child(2) { animation-delay: .07s; }
.hero-copy > :nth-child(3) { animation-delay: .14s; }
.hero-copy > :nth-child(4) { animation-delay: .21s; }
.hero-copy > :nth-child(5) { animation-delay: .28s; }
.hero-visual > img { animation: imageIn .8s ease both; }
.human-card { animation: revealUp .58s .36s ease both; }

@media (max-width: 1180px) {
  .container { width: min(100% - 64px, 1180px); }
  .desktop-nav { gap: 14px; }
  .desktop-nav span { display: none; }
  .brand-name { font-size: 21px; }
  .header-phone { padding-inline: 0; }
  .header-email { padding-inline: 18px; }
  .hero-grid { gap: 0; }
  .hero-copy { padding-inline: 34px; }
  .hero-visual > img { height: 100%; }
  .trust-row { gap: 10px; }
  .trust-row > i { display: none; }
  .process-grid, .selection-grid { gap: 65px; }
  .faq-grid { gap: 70px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 82px; }
  .site-header { height: 78px; }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .brand-mark { width: 44px; height: 34px; }
  .brand-name { font-size: 20px; }
  .header-phone { min-height: 44px; }
  .header-phone span { display: none; }
  .header-email { display: none; }
  .hero { padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; min-height: 610px; padding: 72px max(32px, calc((100vw - 760px) / 2)) 68px; }
  h1 { font-size: 58px; }
  .hero-visual { margin-top: 0; }
  .hero-visual > img { height: auto; min-height: 0; aspect-ratio: 16/10; border-radius: 0; object-position: 55% 45%; }
  .human-card { position: relative; right: auto; bottom: auto; width: calc(100% - 48px); margin: -48px auto 0; }
  .two-col-heading, .city-heading { grid-template-columns: 1fr; gap: 30px; }
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .selection-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .aliyah-grid { grid-template-columns: 1fr; gap: 55px; }
  .aliyah-image { order: 2; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1/-1; }
  .guide-header-inner { grid-template-columns: 1fr auto auto; }
  .guide-header nav, .guide-phone { display: none; }
  .city-guide-hero-grid, .guide-two-col { grid-template-columns: 1fr; gap: 48px; }
  .education-grid { grid-template-columns: 1fr 1fr; }
  .guide-feature-main { grid-column: 1/-1; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .quiz-results > div { grid-template-columns: 1fr; }
  .quiz-results article { min-height: 300px; }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .container { width: calc(100% - 40px); }
  .section { padding: 80px 0; }
  .site-header { height: 76px; }
  .brand { gap: 8px; }
  .brand-mark { width: 39px; height: 30px; }
  .brand-name { max-width: 190px; font-size: 17px; }
  .header-phone { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-menu { grid-column: 2; }
  .hero { padding: 0; }
  .hero-copy { min-height: 0; padding: 54px 22px 48px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1.02; }
  .hero-intro { margin-top: 23px; font-size: 16px; }
  .hero-actions { display: grid; margin-top: 25px; }
  .button { width: 100%; min-height: 56px; padding: 0 17px; font-size: 14px; }
  .trust-row { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 27px; }
  .trust-row > div { gap: 12px; }
  .trust-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .hero-visual { margin-top: 0; padding-bottom: 0; }
  .hero-visual > img { aspect-ratio: 4/3; border-radius: 0; object-position: 61% center; }
  .human-card { width: calc(100% - 24px); min-height: 0; gap: 14px; margin-top: -44px; padding: 18px; border-radius: 17px; }
  .human-card-icon { width: 54px; height: 54px; flex-basis: 54px; }
  .human-card-icon svg { width: 27px; height: 27px; }
  .human-card strong { font-size: 20px; }
  .human-card small { font-size: 11px; }
  .two-col-heading h2, .section-heading h2, .city-heading h2, .faq-intro h2, .aliyah-copy h2 { font-size: 42px; }
  .promise-band { grid-template-columns: 1fr; margin-top: 42px; }
  .promise-band > div { padding: 20px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-band > div:last-child { border-bottom: 0; }
  .profile-grid, .city-grid, .criteria-grid { grid-template-columns: 1fr; }
  .profile-grid { margin-top: 40px; }
  .profile-card { min-height: 245px; }
  .process-grid { gap: 40px; }
  .process-intro h2, .selection-grid h2 { font-size: 43px; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 13px; }
  .process-list strong { font-size: 24px; }
  .aliyah-image::before { display: none; }
  .aliyah-image img { aspect-ratio: 4/3; border-radius: 24px; }
  .city-heading { gap: 20px; }
  .city-grid { margin-top: 40px; }
  .city-card { min-height: 310px; padding: 25px 23px; }
  .city-card h3 { font-size: 29px; }
  .city-card p { max-width: 100%; }
  .city-card-link { left: 23px; bottom: 23px; }
  .city-orientation { align-items: stretch; flex-direction: column; padding: 25px 22px; }
  .criteria-grid > div { min-height: 170px; padding: 23px 18px; }
  .faq-grid { gap: 35px; }
  .faq-list summary { min-height: 76px; font-size: 21px; }
  .faq-list details p { margin-right: 0; }
  .final-cta { padding: 83px 0; }
  .final-cta h2 { font-size: 45px; }
  .centered-actions { display: grid; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 16px; }
  .mobile-action-bar { position: fixed; z-index: 150; left: 0; right: 0; bottom: 0; height: calc(60px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; padding-bottom: env(safe-area-inset-bottom); background: white; box-shadow: 0 -8px 28px rgba(10,35,66,.14); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--navy); font-size: 13px; font-weight: 700; }
  .mobile-action-bar a:first-child { background: var(--navy); color: white; }
  .mobile-action-bar a:first-child svg { color: var(--gold); }
  .mobile-action-bar a + a { border-left: 1px solid var(--line); }
  .guide-header { min-height: 74px; }
  .guide-header-inner { grid-template-columns: 1fr auto; }
  .guide-header .brand-name { font-size: 16px; }
  .guide-mail { min-height: 44px; padding-inline: 13px; font-size: 11px; }
  .city-guide-hero { padding: 42px 0 58px; }
  .city-guide-hero h1 { font-size: 48px; }
  .city-guide-lead { font-size: 16px; }
  .city-facts { padding: 27px 24px; }
  .guide-two-col { gap: 30px; }
  .education-grid, .life-grid, .balance-grid, .district-grid, .related-grid { grid-template-columns: 1fr; }
  .guide-feature-main { grid-column: auto; }
  .guide-feature { min-height: 280px; }
  .guide-feature h3 { margin-top: 55px; }
  .life-grid article, .balance-grid > div { padding: 32px 25px; }
  .district-grid > div { min-height: 90px; }
  .guide-city-cta { padding: 75px 0; }
  .guide-city-cta h2 { font-size: 44px; }
  .quiz-hero { padding: 55px 0; }
  .quiz-hero h1 { font-size: 46px; }
  .quiz-hero p:last-child { font-size: 15px; }
  .quiz-progress { top: 74px; }
  .quiz-grid fieldset { padding: 24px 19px; }
  .quiz-grid legend { font-size: 23px; }
  .quiz-grid fieldset > div { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
