:root {
  --ink: #152335;
  --muted: #667080;
  --paper: #f6f0e6;
  --white: #fffdf9;
  --gold: #b68a43;
  --paris: #6d8198;
  --line: rgba(21, 35, 53, .13);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(182, 138, 67, .15), transparent 25rem),
    linear-gradient(180deg, #fbf8f2 0, var(--paper) 58%, #efe7da 100%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .09em; }
.brand small { display: block; margin-top: -3px; color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--ink), var(--paris));
  box-shadow: 0 10px 26px rgba(21, 35, 53, .2);
  font-family: Georgia, serif;
  font-size: 24px;
}
nav, .footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
nav a, .footer-links a { color: var(--muted); font-size: 14px; text-decoration: none; }
nav a:hover, .footer-links a:hover { color: var(--ink); }

main { min-height: 65vh; }
.hero, .page-hero, .content, footer { width: min(1100px, calc(100% - 32px)); margin-inline: auto; }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; padding: 92px 0 74px; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 760px; margin: 14px 0 18px; font-size: clamp(48px, 7vw, 88px); }
h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); }
h3 { margin: 30px 0 8px; font-size: 18px; }
.lede { max-width: 680px; color: var(--muted); font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.button.secondary { background: transparent; color: var(--ink); }
.phone-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 48px;
  color: #fff;
  background: linear-gradient(145deg, #18283a 0, #526b86 58%, #a2783f 130%);
  box-shadow: 0 34px 90px rgba(34, 48, 65, .25);
}
.phone-card::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  transform: rotate(-5deg);
}
.phone-card > * { position: relative; z-index: 1; }
.phone-card .sky { height: 230px; margin: 14px 0 22px; border-radius: 30px; background: radial-gradient(circle at 75% 25%, #f5d9a9, transparent 14%), linear-gradient(160deg, #93a4b7, #d7b38a 55%, #35485f); }
.phone-card .sky::after { content: "PARIS"; display: grid; height: 100%; place-items: end start; padding: 22px; font: 42px Georgia, serif; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.13); font-size: 13px; }
.trust-strip, .cards { width: min(1100px, calc(100% - 32px)); margin: 0 auto 92px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,253,249,.72); backdrop-filter: blur(12px); }
.card strong { display: block; margin-bottom: 7px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }

.page-hero { padding: 74px 0 32px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); }
.content { max-width: 820px; padding-bottom: 90px; }
.content section { padding: 24px 0; border-top: 1px solid var(--line); }
.content p, .content li { color: #4f5a68; }
.content li + li { margin-top: 8px; }
.note { padding: 18px 20px; border-left: 3px solid var(--gold); border-radius: 0 16px 16px 0; background: rgba(255,253,249,.72); }
.steps { counter-reset: steps; list-style: none; padding: 0; }
.steps li { position: relative; min-height: 48px; padding-left: 60px; }
.steps li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 13px; color: #fff; background: var(--ink); font-weight: 800; }

footer { display: grid; grid-template-columns: .8fr 1.3fr; gap: 28px; padding: 36px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-note { grid-column: 1 / -1; font-size: 12px; }

@media (max-width: 780px) {
  .site-header { align-items: flex-start; padding: 18px 0; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 38px; padding-top: 60px; }
  .phone-card { min-height: 440px; }
  .trust-strip, .cards { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-note { grid-column: auto; }
}

.service-grid{width:min(1100px,calc(100% - 32px));margin:0 auto 92px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.service-grid .card{min-height:155px}.service-grid .icon{font-size:25px}.legal-list{display:flex;flex-wrap:wrap;gap:10px}.legal-list a{padding:8px 12px;border:1px solid var(--line);border-radius:999px;text-decoration:none}@media(max-width:900px){.service-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.service-grid{grid-template-columns:1fr}}
