@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --ink: #0b0b0a;
  --surface: #151515;
  --surface-2: #1c1c1c;
  --line: #2a2520;
  --cream: #ede8e0;
  --muted: #a09888;
  --gold: #c9a84c;
  --gold-2: #e2ca84;
  --white: #fffdf8;
  --danger: #a53c32;
  --max: 1180px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 10px 14px; border-radius: 8px; background: var(--gold-2); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 12px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 132px) 0; }
.section-tight { padding: clamp(58px, 7vw, 92px) 0; }
.section-warm { background: var(--cream); color: #171612; }
.section-surface { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  font-weight: 700;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.section-warm .eyebrow { color: #80691f; }
.display, h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
h1 { margin: 18px 0 24px; font-size: clamp(3rem, 7vw, 6.2rem); max-width: 12ch; }
h2 { margin: 14px 0 18px; font-size: clamp(2.25rem, 4.7vw, 4rem); }
h3, h4, p { margin-top: 0; }
.accent { color: var(--gold-2); font-style: italic; }
.section-warm .accent { color: #8a6f1c; }
.lede { color: var(--muted); font-size: clamp(1.03rem, 1.6vw, 1.18rem); max-width: 650px; }
.section-warm .lede { color: #5c574e; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .lede { margin-inline: auto; }
.kicker { color: var(--gold-2); font-weight: 700; }
.note { color: var(--muted); font-size: .85rem; }
.gold-link { color: var(--gold-2); text-decoration: underline; text-underline-offset: 4px; }

.topbar { display:none; }
.topbar-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-list { display: flex; gap: 24px; align-items: center; }
.topbar a:hover { color: var(--gold-2); }
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(11,11,10,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; font-family: var(--serif); font-size: 1.06rem; font-weight: 600; letter-spacing: .035em; }
.brand img { width: 150px; height: 54px; object-fit: contain; object-position: center; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 31px); }
.nav-links > a { color: #bbb3a5; font-size: .89rem; font-weight: 600; position: relative; }
.nav-links > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-links > a:hover, .nav-links > a[aria-current='page'] { color: var(--white); }
.nav-links > a:hover::after, .nav-links > a[aria-current='page']::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-services-toggle { appearance: none; border: 0; padding: 0; background: transparent; color: #bbb3a5; font-size: .89rem; font-weight: 600; cursor: pointer; }
.nav-services-toggle::after { content: '⌄'; margin-left: 6px; color: var(--gold-2); font-size: .8rem; }
.nav-dropdown:hover .nav-services-toggle, .nav-dropdown:focus-within .nav-services-toggle, .nav-dropdown.is-open .nav-services-toggle, .nav-services-toggle[aria-current='page'] { color: var(--white); }
.submenu { position: absolute; top: calc(100% + 18px); left: 50%; width: 290px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(15,15,13,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.submenu::before { content: ''; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu, .nav-dropdown.is-open .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.submenu a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--muted); font-size: .84rem; line-height: 1.25; }
.submenu a:hover, .submenu a:focus { background: #24221c; color: var(--gold-2); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #11100c;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta { min-height: 42px; padding-inline: 18px; font-size: .85rem; }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,168,76,.19); }
.btn-secondary { background: transparent; color: var(--cream); border-color: #4c493f; }
.btn-secondary:hover { border-color: var(--gold); box-shadow: none; }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-sm { min-height: 42px; font-size: .86rem; padding-inline: 18px; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--cream); cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }
.mobile-menu { display: none; }
.mobile-services-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 15px 10px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--cream); text-align: left; cursor: pointer; font: 500 1.4rem/1.2 var(--serif); }
.mobile-services-toggle::after { content: '+'; color: var(--gold); font: 500 1.5rem/1 var(--serif); }
.mobile-services-group.is-open .mobile-services-toggle::after { content: '−'; }
.mobile-services { display: none; }
.mobile-services-group.is-open .mobile-services { display: grid; }

.hero { position: relative; overflow: clip; padding: clamp(74px, 9vw, 124px) 0 60px; }
.hero::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(201,168,76,.12); filter: blur(120px); top: -240px; right: -160px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(38px, 7vw, 92px); align-items: center; }
.hero h1 { max-width: 10.5ch; }
.hero h1 em { color: var(--gold-2); font-style: italic; }
.hero-copy .lede { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 42px; }
.proof { min-width: 116px; }
.proof strong { display: block; color: var(--white); font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.proof span { display: block; color: var(--muted); font-size: .78rem; margin-top: 5px; }
.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid #5f5230; border-radius: 160px 160px 24px 24px; }
.hero-visual img { position: relative; width: 100%; aspect-ratio: .86; object-fit: cover; border-radius: 160px 160px 24px 24px; box-shadow: var(--shadow); }
.emergency-card { position: absolute; z-index: 2; left: -34px; bottom: 30px; max-width: 240px; padding: 20px; background: rgba(20,19,16,.93); border: 1px solid #4b4536; border-radius: 18px; backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.emergency-card strong { display: block; color: var(--white); margin-bottom: 4px; }
.emergency-card a { color: var(--gold-2); font-size: 1.18rem; font-weight: 700; }

.trust-strip { border-block: 1px solid var(--line); background: #0f0f0d; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 94px; display: flex; align-items: center; gap: 13px; padding: 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(201,168,76,.12); color: var(--gold-2); font-weight: 800; }
.trust-item strong { display: block; font-size: .88rem; }
.trust-item span { color: var(--muted); font-size: .76rem; }

.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.service-card, .info-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.service-card:hover, .info-card:hover { transform: translateY(-5px); border-color: #63583c; }
.service-card img { width: 100%; aspect-ratio: 1.45; object-fit: cover; filter: saturate(.85); }
.service-card-body { padding: 25px; }
.service-num { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.service-card h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: 1.45rem; }
.service-card p, .info-card p { color: var(--muted); font-size: .91rem; }
.service-card a { color: var(--gold-2); font-size: .86rem; font-weight: 700; }
.info-card { padding: 28px; }
.info-card h3 { margin-bottom: 8px; }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 13px; background: var(--gold); color: var(--ink); font-weight: 800; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 100px); }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius); }
.entretien-photo { grid-column: 1 / -1; width: 100%; }
.entretien-photo img { display: block; width: 100%; height: auto !important; min-height: 0 !important; aspect-ratio: auto !important; object-fit: initial !important; background: transparent; }
.history-portrait { width: min(100%, 360px); max-width: 360px; margin-inline: auto; }
.history-portrait img { display: block; width: 100%; height: auto; min-height: 0; max-height: 415px; aspect-ratio: 668 / 768; object-fit: cover; object-position: center top; }
.metric { position: absolute; right: -24px; bottom: 32px; padding: 22px 26px; background: var(--gold); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); }
.metric strong { display: block; font: 600 2.1rem/1 var(--serif); }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li::before { content: '✓'; display: grid; place-items: center; width: 23px; height: 23px; flex: 0 0 23px; margin-top: 1px; border-radius: 50%; background: rgba(201,168,76,.15); color: var(--gold-2); font-size: .78rem; font-weight: 800; }
.section-warm .check-list li::before { background: #dfd19f; color: #4c3d0d; }
.heritage-signature { margin-top: 32px; padding: 24px 26px; border-left: 3px solid #8a6f1c; border-radius: 0 14px 14px 0; background: rgba(138,111,28,.09); }
.heritage-signature strong { display: block; margin-bottom: 4px; color: #1b1914; font-family: var(--serif); font-size: 1.22rem; letter-spacing: .02em; }
.heritage-signature span { color: #6d591a; font-family: var(--serif); font-size: 1.05rem; font-style: italic; }

.review-summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 32px; margin-bottom: 24px; border: 1px solid #d3cbbb; border-radius: var(--radius); background: #fffaf0; }
.rating-big { display: flex; align-items: center; gap: 18px; }
.rating-big strong { font: 600 3.3rem/1 var(--serif); }
.stars { color: #a9820c; letter-spacing: 3px; }
.review-card { display: flex; flex-direction: column; min-height: 280px; padding: 27px; border: 1px solid #d3cbbb; border-radius: var(--radius); background: #fffaf0; }
.review-card blockquote { margin: 16px 0 24px; color: #4f4a41; flex: 1; }
.review-author { border-top: 1px solid #ddd4c4; padding-top: 17px; }
.review-author strong { display: block; }
.review-author span { color: #6b655c; font-size: .79rem; }

.cta-band { background: linear-gradient(120deg, #b08b2c, #e2ca84); color: var(--ink); }
.cta-band-inner { min-height: 280px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 720px; margin-bottom: 10px; }
.cta-band p { margin-bottom: 0; color: #41350f; }

.page-hero { padding: clamp(92px, 11vw, 150px) 0 clamp(72px, 9vw, 110px); text-align:center; background: radial-gradient(circle at 50% 0%, rgba(201,168,76,.12), transparent 38%); border-bottom: 1px solid var(--line); }
.page-hero h1,.page-hero .lede{margin-left:auto;margin-right:auto;}
.page-hero h1 { max-width: 13ch; font-size: clamp(3rem, 6vw, 5.2rem); }
.breadcrumb { color: var(--muted); font-size: .8rem; }
.breadcrumb a { color: var(--gold-2); }

.service-detail { display: grid; grid-template-columns: 80px 1fr auto; gap: 26px; align-items: center; padding: 30px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail .number { font: 500 2rem/1 var(--serif); color: var(--gold); }
.service-detail h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 1.65rem; }
.service-detail p { color: var(--muted); margin: 0; max-width: 700px; }

.timeline { border-left: 1px solid #cabc91; margin-left: 16px; padding-left: 34px; display: grid; gap: 42px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ''; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: #8a6f1c; left: -41px; top: 6px; box-shadow: 0 0 0 7px #e6dcc2; }
.timeline-item span { color: #80691f; font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.timeline-item h3 { margin: 6px 0 8px; font-family: var(--serif); font-size: 1.55rem; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.city-card { position: relative; min-height: 220px; padding: 27px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.city-card::before { content: ''; position: absolute; width: 150px; height: 150px; right: -45px; top: -45px; border: 1px solid rgba(201,168,76,.28); border-radius: 50%; }
.city-card .postal { color: var(--gold); font-weight: 700; font-size: .78rem; }
.city-card h3 { margin: 6px 0 8px; font-family: var(--serif); font-size: 1.5rem; }
.city-card p { color: var(--muted); font-size: .87rem; margin-bottom: 0; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-card { position: relative; min-height: 460px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.project-card.wide { grid-column: 1 / -1; min-height: 560px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 5s cubic-bezier(.25,.46,.45,.94); }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,7,6,.9) 100%); }
.project-card:hover img { transform: scale(1.045); }
.project-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(24px, 4vw, 42px); }
.project-tag { display: inline-flex; margin-bottom: 12px; padding: 6px 13px; border: 1px solid rgba(232,213,160,.4); border-radius: 999px; background: rgba(13,13,13,.68); color: var(--gold-2); font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.project-content h2, .project-content h3 { margin: 0 0 7px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.6rem); font-weight: 400; }
.project-content p { max-width: 620px; margin-bottom: 0; color: #c5beb1; font-size: .9rem; }
.case-study { margin-top: 34px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 24px; background: var(--surface); color: var(--cream); }
.case-study .eyebrow { color: var(--gold-2); }
.case-study:first-of-type { margin-top: 0; }
.case-study-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: end; margin-bottom: 28px; }
.case-study-head h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.case-study-head p { margin: 0; color: var(--muted); }
.sequence-grid { display: grid; gap: 16px; }
.sequence-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.sequence-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.sequence-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.sequence-card { position: relative; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 17px; background: #0d0d0c; }
.sequence-card img { display: block; width: 100%; height: 430px; object-fit: cover; }
.sequence-grid.cols-4 .sequence-card img { height: 310px; }
.sequence-card figcaption { display: grid; gap: 4px; padding: 15px 16px 17px; color: var(--muted); font-size: .82rem; }
.sequence-card figcaption strong { color: var(--cream); font-size: .95rem; }
.sequence-step { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 7px 11px; border-radius: 999px; background: rgba(10,10,9,.88); color: var(--gold-2); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.project-facts { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.project-fact { padding: 28px; border-right: 1px solid var(--line); }
.project-fact:last-child { border-right: 0; }
.project-fact strong { display: block; color: var(--gold-2); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.project-fact span { color: var(--muted); font-size: .8rem; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: start; }
.contact-panel, .contact-form { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-panel h2, .contact-form h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.contact-list { display: grid; gap: 20px; margin-top: 34px; }
.contact-line { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; }
.contact-line .symbol { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,168,76,.14); color: var(--gold-2); font-weight: 800; }
.contact-line strong { display: block; color: var(--white); }
.contact-line span, .contact-line a { color: var(--muted); font-size: .91rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d3cdc1; font-size: .8rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid #3b382f; border-radius: 12px; background: #0e0e0d; color: var(--cream); }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f695f; }
.form-note { color: var(--muted); font-size: .78rem; margin-top: 13px; }
.form-status { color: var(--gold-2); min-height: 24px; font-size: .86rem; margin: 12px 0 0; }

.faq { display: grid; gap: 11px; }
.faq details { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 54px 20px 22px; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 21px; top: 15px; color: var(--gold); font: 500 1.6rem/1 var(--serif); }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

.site-footer { padding: 68px 0 26px; border-top: 1px solid var(--line); background: #080808; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 50px; padding-bottom: 44px; }
.footer-grid .brand { margin-bottom: 16px; }
.footer-grid .brand img { width: 190px; height: 70px; }
.footer-grid p { color: var(--muted); font-size: .87rem; max-width: 32ch; }
.footer-grid h3 { color: var(--gold-2); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: var(--muted); font-size: .87rem; }
.footer-links a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #777166; font-size: .77rem; }
.mobile-call { display: none; }
.location-card { position: absolute; z-index: 2; left: -34px; bottom: 30px; max-width: 270px; padding: 20px; background: rgba(20,19,16,.94); border: 1px solid #4b4536; border-radius: 18px; backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.location-card strong,.location-card span { display:block; }.location-card span { margin-top:5px; color:var(--muted); font-size:.82rem; }
.hero--classic { padding: 150px 0 60px; text-align: center; }
.hero--classic .hero-grid { display: block; }
.hero--classic .hero-copy { max-width: 1200px; margin-inline: auto; }
.hero--classic h1 { max-width: none; margin: 18px auto 22px; font-size: clamp(2.8rem, 5.6vw, 4.65rem); line-height: 1.05; }
.hero--classic .lede { max-width: 650px; margin: 0 auto 32px; }
.hero--classic .hero-actions,.hero--classic .hero-proof { justify-content: center; }
.hero--classic .hero-visual { max-width: 1000px; margin: 56px auto 0; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.hero--classic .hero-visual::before { display: none; }
.hero--classic .hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.hero--classic .location-card { display: none; }
.data-panel { display:grid; gap:10px; padding:clamp(30px,5vw,54px); border:1px solid #cfc4aa; border-radius:var(--radius); background:#fffaf0; box-shadow:0 24px 60px rgba(0,0,0,.08); }
.data-panel span { color:#80691f; font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }.data-panel strong { color:#171612; font:500 clamp(1.5rem,3vw,2.4rem)/1.12 var(--serif); }.data-panel small { color:#696258; }
.eyebrow.dark { color:#4b3b0c; }.content-stack { display:grid; gap:20px; }.content-box { padding:clamp(25px,4vw,40px); border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); }.content-box h2,.content-box h3 { margin-top:0; }.content-box p:last-child { margin-bottom:0; }.field-list { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:28px; }.field-card { padding:22px; border:1px dashed #6e6245; border-radius:15px; background:#121210; }.field-card strong { display:block; color:var(--gold-2); }.field-card span { color:var(--muted); font-size:.82rem; }.legal-copy { max-width:850px; }.legal-copy h2 { margin-top:48px; font-size:clamp(1.8rem,3.5vw,2.8rem); }.legal-copy p,.legal-copy li { color:var(--muted); }.notice { padding:20px 22px; border-left:3px solid var(--gold); border-radius:0 12px 12px 0; background:rgba(201,168,76,.1); color:var(--cream); }

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-links, .nav > .nav-cta { display: none; }
  .burger { display: block; }
  .mobile-menu { position: fixed; inset: 77px 0 0; z-index: 29; padding: 24px 20px 100px; background: rgba(11,11,10,.98); backdrop-filter: blur(20px); overflow-y: auto; }
  .mobile-menu.open { display: grid; align-content: start; gap: 8px; }
  .mobile-menu a { padding: 15px 10px; border-bottom: 1px solid var(--line); font: 500 1.4rem/1.2 var(--serif); }
  .mobile-services { margin: 2px 0 8px 18px; padding-left: 14px; border-left: 1px solid #51472e; }
  .mobile-services a { padding: 9px 6px; border-bottom: 0; color: var(--muted); font: 600 .94rem/1.25 var(--sans); }
  .mobile-services a:hover { color: var(--gold-2); }
  .mobile-menu .btn { margin-top: 16px; font: 700 .95rem/1 var(--sans); }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 640px; }
  .hero-visual img { aspect-ratio: 1.05; border-radius: 100px 100px 22px 22px; }
  .hero-visual::before { border-radius: 100px 100px 22px 22px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-3, .cards-4, .city-grid { grid-template-columns: 1fr 1fr; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .project-fact:nth-child(2) { border-right: 0; }
  .project-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
  .case-study-head { grid-template-columns: 1fr; align-items: start; }
  .sequence-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .brand { font-size: .91rem; }
  .brand img { width: 128px; height: 46px; }
  .footer-grid .brand img { width: 175px; height: 64px; }
  .hero { padding-top: 58px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 18px; }
  .emergency-card { left: 12px; right: 12px; bottom: 14px; max-width: none; }
  .location-card { left:12px; right:12px; bottom:14px; max-width:none; }
  .hero-visual::before { display: none; }
  .trust-grid, .cards-3, .cards-4, .city-grid, .footer-grid, .form-grid, .project-grid, .project-facts { grid-template-columns: 1fr; }
  .field-list { grid-template-columns:1fr; }
  .project-card.wide { grid-column: auto; min-height: 440px; }
  .project-card { min-height: 410px; }
  .sequence-grid.cols-2, .sequence-grid.cols-3, .sequence-grid.cols-4 { grid-template-columns: 1fr; }
  .sequence-card img, .sequence-grid.cols-4 .sequence-card img { height: 410px; }
  .project-fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .project-fact:last-child { border-bottom: 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .split-media img { min-height: 380px; }
  .entretien-photo { grid-column: auto; }
  .entretien-photo img { width: 100%; height: auto !important; min-height: 0 !important; aspect-ratio: auto !important; }
  .metric { right: 12px; bottom: 15px; }
  .review-summary { align-items: flex-start; flex-direction: column; }
  .service-detail { grid-template-columns: 54px 1fr; align-items: start; }
  .service-detail .btn { grid-column: 2; justify-self: start; }
  .field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { position: fixed; z-index: 25; left: 14px; right: 14px; bottom: 14px; display: flex; min-height: 52px; align-items: center; justify-content: center; border-radius: 999px; background: var(--gold); color: var(--ink); font-weight: 800; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
  .site-footer { padding-bottom: 96px; }
}

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