/* First Class Movers — Montreal, QC
   Brand: Red / Black / Grey / White
   Type: Nimbus Sans → Helvetica Neue / Arial */

:root {
  --red: #E11A1A;
  --red-deep: #B30F0F;
  --red-ink: #7A0808;
  --black: #0B0B0B;
  --ink: #141414;
  --panel: #1A1A1A;
  --line: #2A2A2A;
  --muted: #737373;
  --grey-50: #FAFAFA;
  --grey-100: #F2F2F2;
  --grey-200: #E5E5E5;
  --grey-300: #D4D4D4;
  --grey-700: #404040;
  --white: #FFFFFF;

  --font-sans: "Inter Tight", "Helvetica Neue", "Helvetica", "Arial", system-ui, -apple-system, sans-serif;
  --font-display: "Inter Tight", "Helvetica Neue", "Helvetica", "Arial Black", sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", Times, serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.18), 0 8px 22px rgba(0,0,0,.08);
  --shadow-red: 0 14px 40px rgba(225,26,26,.35), 0 4px 12px rgba(225,26,26,.25);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ───── layout ───── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}
.eyebrow.light { color: #ff6b6b; }
.eyebrow.light::before { background: #ff6b6b; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}
h1 { font-size: clamp(44px, 6.4vw, 92px); letter-spacing: -.035em; }
h2 { font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -.025em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.01em; }
h4 { font-size: 16px; letter-spacing: .04em; }
h1 em, h2 em, h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; text-transform: none; }
p  { margin: 0; }
.lead { font-size: clamp(16px, 1.25vw, 19px); color: var(--grey-700); max-width: 56ch; line-height: 1.55; }
.lead.on-dark { color: #C9C9C9; }

/* ───── buttons ───── */
.btn {
  --bg: var(--red);
  --fg: #fff;
  --bd: var(--red);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bd);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform .25s var(--ease-out), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease-out);
  white-space: nowrap;
  box-shadow: var(--shadow-red);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
  z-index: -1;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); box-shadow: 0 18px 50px rgba(225,26,26,.45), 0 6px 14px rgba(225,26,26,.3); }
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(0); transition-duration: .08s; }
.btn .icon-arrow { transition: transform .25s var(--ease-out); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn-ghost, .btn-outline { box-shadow: none; }
.btn-ghost:hover, .btn-outline:hover { box-shadow: var(--shadow-md); }
.btn-ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.35); }
.btn-ghost:hover { --bg: #fff; --fg: var(--black); --bd: #fff; background: #fff; color: var(--black); border-color: #fff; }
.btn-dark { --bg: var(--black); --fg: #fff; --bd: var(--black); }
.btn-dark:hover { --bg: var(--ink); border-color: var(--ink); background: var(--ink); }
.btn-outline { --bg: transparent; --fg: var(--black); --bd: var(--black); }
.btn-outline:hover { --bg: var(--black); --fg: #fff; background: var(--black); color: #fff; }
.btn-block { display: flex; width: 100%; }

.icon-arrow { width: 16px; height: 16px; }

/* ───── nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled { background: rgba(11,11,11,.94); border-bottom-color: rgba(255,255,255,.1); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 28px;
  list-style: none;
  padding: 0;
}
@media (max-width: 1100px) {
  .nav-links { gap: 16px; margin-left: 18px; }
  .nav-links a { font-size: 13px; }
}
.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 6px 12px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-toggle button.active { background: var(--red); color: #fff; }
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 44px; height: 44px;
  padding: 0;
}
.nav-burger svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-links, .nav-right .btn, .nav-phone span { display: none; }
  .nav-right .nav-phone { display: inline-flex; }
  .nav-burger { display: inline-flex; align-items:center; justify-content:center; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 38px; }
  .nav-right { gap: 10px; }
  .lang-toggle button { padding: 5px 9px; font-size: 11px; }
}
.mobile-menu {
  display: none;
  background: var(--black);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px var(--gutter) 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.mobile-menu .btn { margin-top: 14px; }

/* ───── topbar ───── */
.topbar {
  background: var(--black);
  color: #C9C9C9;
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 16px;
}
.topbar-inner .pin { display: inline-flex; align-items: center; gap: 8px; line-height: 1.3; }
.topbar-inner .pin svg { width: 12px; height: 12px; opacity: .8; flex-shrink: 0; }
.topbar a { color: #fff; white-space: nowrap; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right svg { width: 14px; height: 14px; }
@media (max-width: 720px) { .topbar-right .hide-sm { display: none; } }
@media (max-width: 640px) { .topbar { display: none; } }

/* ───── hero ───── */
.hero {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-block: 0; /* .hero-grid handles hero spacing */
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/photo-7.jpg");
  background-size: cover;
  background-position: center 35%;
  filter: saturate(105%) contrast(110%);
  transform: scale(1.06);
  animation: hero-pan 36s ease-in-out infinite alternate;
}
@keyframes hero-pan {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-2.5%, -2%, 0); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 25% 45%, rgba(11,11,11,.25) 0%, rgba(11,11,11,.85) 100%),
    linear-gradient(180deg, rgba(11,11,11,.55) 0%, rgba(11,11,11,.35) 45%, rgba(11,11,11,.96) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(225,26,26,.6) 30%, rgba(225,26,26,.6) 70%, transparent 100%);
  z-index: 2;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px) clamp(56px, 7vw, 96px);
}
.hero-copy { max-width: 740px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-pill .live-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #34D67D;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 rgba(52,214,125,.7);
  animation: live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,214,125,.7); }
  50% { box-shadow: 0 0 0 8px rgba(52,214,125,0); }
}
.hero-pill .stack { display: inline-flex; align-items: center; gap: 4px; }
.hero-pill .stack img { width: 22px; height: 22px; border-radius: 999px; border: 2px solid #fff; object-fit: cover; margin-left: -8px; }
.hero-pill .stack img:first-child { margin-left: 0; }

.hero h1 {
  color: #fff;
  margin-top: 0;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 900;
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  display: inline-block;
}
.hero h1 .red { color: var(--red); }
.hero h1 em {
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.25vw, 19px);
  color: #D4D4D4;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn { padding: 16px 26px; font-size: 14px; }
.hero-actions .response-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: #D4D4D4;
}
.hero-actions .response-line svg { width: 14px; height: 14px; color: #34D67D; }

.hero-marquee {
  position: relative;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-marquee-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8B8B8B;
  margin-bottom: 16px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 32px;
  align-items: start;
}
.hero-trust-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -.025em;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-trust-item .lab { font-size: 11px; color: #B5B5B5; text-transform: uppercase; letter-spacing: .14em; line-height: 1.4; }
.hero-stars { display: inline-flex; gap: 2px; color: #FFC83D; }
.hero-stars svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 48px 64px; gap: 44px; align-items: start; min-height: 0; }
  .hero { min-height: 0; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); gap: 12px 8px; margin-top: 26px; padding-top: 26px; }
  .hero-trust-item { gap: 4px; }
  .hero-trust-item strong { font-size: clamp(20px, 5.5vw, 26px); }
  .hero-trust-item .lab { font-size: 9.5px; letter-spacing: .1em; line-height: 1.3; }
  .hero h1 { font-size: clamp(38px, 10vw, 60px); line-height: 1.04; }
  .hero-pill { margin-bottom: 26px; font-size: 11.5px; padding: 6px 12px 6px 7px; }
  .hero-marquee { margin-top: 38px; padding-top: 26px; }
  .hero-marquee-label { font-size: 10.5px; letter-spacing: .18em; margin-bottom: 14px; }
  .quote-card { padding: 24px; border-radius: 14px; }
  .quote-card h2 { font-size: 22px; }
  .hero-sub { margin-top: 24px; font-size: 15.5px; line-height: 1.6; }
  .hero-actions { margin-top: 32px; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 18px 22px; font-size: 14px; }
  .hero-actions .response-line { justify-content: center; }
}

/* ───── quote card (hero form) — slim version ───── */
.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.quote-card .ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.quote-card .ribbon::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(225,26,26,.2);
}
.quote-card h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.quote-card .small { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.5; }
.quote-card .form-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.quote-card .form-foot svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.quote-card .or-call {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.quote-card .or-call a { color: var(--ink); font-weight: 700; }

/* ───── form ───── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-700);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,26,26,.15);
}
.form-msg {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-status.success { display: block; background: #E9F8EE; color: #0E6C2D; border: 1px solid #B5E0BF; }
.form-status.error { display: block; background: #FDECEC; color: #8A0E0E; border: 1px solid #F2C2C2; }

/* ───── trust strip ───── */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}
.trust-tile {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-tile:last-child { border-right: 0; }
.trust-tile .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -.02em;
}
.trust-tile .lab { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-tile:nth-child(2n) { border-right: 0; }
  .trust-tile:nth-child(-n+2) { border-bottom: 1px solid var(--grey-200); }
}

/* ───── services ───── */
.section-light { background: var(--grey-50); color: var(--ink); position: relative; }
.section-dark  { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 80% 0%, rgba(225,26,26,.08) 0%, transparent 60%),
    radial-gradient(40% 60% at 10% 100%, rgba(225,26,26,.05) 0%, transparent 60%);
  pointer-events: none;
}
.section-dark > * { position: relative; }
.section-white { background: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 { max-width: 16ch; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--grey-300); }
.service-card .photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .8s var(--ease-out);
}
.service-card:hover .photo { transform: scale(1.06); }
.service-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
  transition: background .35s var(--ease);
}
.service-card:hover .photo::after { background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%); }
.service-card .num {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 6px 10px;
  border-radius: 2px;
}
.service-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 22px; }
.service-card p { color: var(--grey-700); margin-top: 10px; font-size: 15px; line-height: 1.55; }
.service-card .arrow {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
  transition: gap .25s var(--ease-out);
}
.service-card:hover .arrow { gap: 12px; }

/* ───── why-us split ───── */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.why-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.why-photo .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.1;
  box-shadow: 0 14px 40px rgba(225,26,26,.45);
  text-transform: uppercase;
}
.why-photo .badge small { display: block; font-size: 11px; font-weight: 700; opacity: .9; letter-spacing: .14em; margin-bottom: 4px; }
.why-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.why-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.why-list .dot {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-display);
}
.why-list .dot svg { width: 20px; height: 20px; }
.why-list h4 { font-size: 17px; text-transform: none; letter-spacing: 0; margin: 4px 0 4px; font-weight: 800; }
.why-list p { color: var(--grey-700); font-size: 15px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ───── process ───── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  background: linear-gradient(180deg, var(--panel) 0%, #161616 100%);
  color: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease);
  overflow: hidden;
}
.process-card::after {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,26,26,.5), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(225,26,26,.3); }
.process-card:hover::after { opacity: 1; }
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  display: block;
  letter-spacing: -.04em;
  line-height: 1;
}
.process-card h4 {
  font-size: 18px; text-transform: uppercase; letter-spacing: .02em;
  margin-top: 16px;
}
.process-card p { color: #B5B5B5; margin-top: 10px; font-size: 14.5px; line-height: 1.6; }

/* ───── service areas ───── */
.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.areas-grid .pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.area-pill {
  border: 1.5px solid var(--grey-200);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--ink);
  transition: transform .2s var(--ease-out), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.area-pill:hover { background: var(--black); color: #fff; border-color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.areas-photo {
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.areas-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.6));
}
.areas-photo .stamp {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  color: #fff;
  display: flex; gap: 12px; align-items: center;
  font-weight: 700;
}
.areas-photo .stamp svg { width: 22px; height: 22px; color: var(--red); }
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }

/* ───── testimonials ───── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  background: linear-gradient(180deg, var(--panel) 0%, #151515 100%);
  color: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.t-card:hover { transform: translateY(-4px); border-color: rgba(225,26,26,.25); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.t-card::before {
  content: "\201C";
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: rgba(225,26,26,.18);
  font-style: italic;
  pointer-events: none;
}
.t-stars { color: #FFC83D; display: inline-flex; gap: 2px; }
.t-stars svg { width: 16px; height: 16px; }
.t-quote { margin-top: 18px; font-size: 16px; line-height: 1.65; color: #E5E5E5; flex: 1; text-wrap: pretty; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
}
.t-name { font-weight: 800; }
.t-name small { display: block; color: #9A9A9A; font-weight: 500; font-size: 12px; letter-spacing: .04em; }

/* ───── gallery ───── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.gallery .g {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease-out);
  cursor: pointer;
}
.gallery .g::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .35s var(--ease);
}
.gallery .g:hover { transform: scale(1.015); }
.gallery .g:hover::after { background: rgba(0,0,0,.15); }
.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; }
.g3 { grid-column: span 2; }
.g4 { grid-column: span 1; }
.g5 { grid-column: span 3; grid-row: span 2; }
.g6 { grid-column: span 3; }
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .g { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ───── CTA band ───── */
.cta-band {
  background:
    linear-gradient(rgba(225,26,26,.92), rgba(225,26,26,.92)),
    url("assets/photo-8.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 12px auto 0; }
.cta-band p { color: #fff; opacity: .9; max-width: 56ch; margin: 18px auto 0; }
.cta-band .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.cta-band .btn { background: #fff; color: var(--black); border-color: #fff; }
.cta-band .btn:hover { background: var(--black); color: #fff; border-color: var(--black); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--red); border-color: #fff; }

/* ───── faq ───── */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--grey-200);
}
.faq details {
  border-bottom: 1px solid var(--grey-200);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  gap: 16px;
  transition: color .2s var(--ease);
}
.faq summary:hover { color: var(--red); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 14px; color: var(--grey-700); line-height: 1.65; max-width: 76ch; }

/* ───── contact split ───── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-split .left {
  padding: clamp(32px, 4vw, 56px);
  background: var(--black);
}
.contact-split .left h2 { color: #fff; }
.contact-split .left p { color: #C9C9C9; margin-top: 14px; max-width: 48ch; }
.contact-split ul { list-style: none; padding: 0; margin-top: 28px; display: grid; gap: 18px; }
.contact-split li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.contact-split li svg { width: 20px; height: 20px; color: var(--red); margin-top: 4px; }
.contact-split li strong { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #9A9A9A; margin-bottom: 2px; font-weight: 700; }
.contact-split li a { color: #fff; font-weight: 700; font-size: 16px; }
.contact-split .right {
  padding: clamp(32px, 4vw, 56px);
  background: #fff;
  color: var(--ink);
}
.contact-split .right h3 { font-size: clamp(22px, 2.4vw, 30px); }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }

/* ───── footer ───── */
footer {
  background: var(--black);
  color: #C9C9C9;
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 800;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { color: #C9C9C9; font-size: 14px; }
footer a:hover { color: #fff; }
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { margin-top: 16px; color: #9A9A9A; font-size: 14px; line-height: 1.6; max-width: 36ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
  color: #9A9A9A;
  letter-spacing: .02em;
}

/* ───── sticky mobile CTA bar ───── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  gap: 0;
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 40px rgba(0,0,0,.35);
  transform: translateY(110%);
  transition: transform .45s var(--ease-out);
}
.mobile-cta-bar.show { transform: translateY(0); }
.m-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform .15s var(--ease);
}
.m-cta:active { transform: scale(.97); }
.m-cta-call {
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.m-cta-call svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.m-cta-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 3px; }
.m-cta-stack small { font-size: 9.5px; letter-spacing: .14em; color: #9A9A9A; text-transform: uppercase; font-weight: 600; }
.m-cta-stack strong { font-size: 13px; letter-spacing: 0; color: #fff; }
.m-cta-quote {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(225,26,26,.45);
}
.m-cta-quote svg { width: 16px; height: 16px; flex-shrink: 0; }
.m-cta-quote:active { background: var(--red-deep); }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; gap: 8px; }
  body { padding-bottom: 78px; }
}

/* ───── scroll progress bar ───── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 70;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff4747 100%);
  box-shadow: 0 0 12px rgba(225,26,26,.6);
  transition: width .08s linear;
}

/* ───── reveal on scroll ───── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
/* stagger child reveals when reveal lives on a grid container */
.service-grid > .reveal:nth-child(1).in,
.t-grid > .reveal:nth-child(1).in,
.process-grid > .reveal:nth-child(1).in { transition-delay: .04s; }
.service-grid > .reveal:nth-child(2).in,
.t-grid > .reveal:nth-child(2).in,
.process-grid > .reveal:nth-child(2).in { transition-delay: .12s; }
.service-grid > .reveal:nth-child(3).in,
.t-grid > .reveal:nth-child(3).in,
.process-grid > .reveal:nth-child(3).in { transition-delay: .2s; }
.service-grid > .reveal:nth-child(4).in,
.process-grid > .reveal:nth-child(4).in { transition-delay: .28s; }
.service-grid > .reveal:nth-child(5).in { transition-delay: .36s; }
.service-grid > .reveal:nth-child(6).in { transition-delay: .44s; }

/* ───── hero entrance animation ───── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero .hero-pill { animation: hero-rise .7s .1s var(--ease) backwards; }
.hero h1 { animation: hero-rise .9s .2s var(--ease) backwards; }
.hero .hero-sub { animation: hero-rise .9s .35s var(--ease) backwards; }
.hero .hero-actions { animation: hero-rise .9s .5s var(--ease) backwards; }
.hero .hero-marquee { animation: hero-fade 1.2s .8s var(--ease) backwards; }
.hero .quote-card { animation: hero-rise 1s .35s var(--ease) backwards; }

/* highlight pulse when form is targeted */
@keyframes form-flash {
  0% { box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2), 0 0 0 0 rgba(225,26,26,0); }
  35% { box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2), 0 0 0 6px rgba(225,26,26,.5); }
  100% { box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2), 0 0 0 0 rgba(225,26,26,0); }
}
.quote-card.flash { animation: form-flash 1.4s var(--ease); }

/* prefers-reduced-motion: kill non-essential motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero .hero-pill,
  .hero h1,
  .hero .hero-sub,
  .hero .hero-actions,
  .hero .hero-marquee,
  .hero .quote-card { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ───── utility ───── */
.kicker { color: var(--red); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ───── floating desktop CTA ───── */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 65;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(225,26,26,.45), 0 6px 14px rgba(225,26,26,.3);
  transform: translateY(20px) scale(.92);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease-out), box-shadow .25s var(--ease-out), background .2s var(--ease);
  isolation: isolate;
}
.floating-cta.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--red-deep);
  box-shadow: 0 24px 50px rgba(225,26,26,.55), 0 8px 18px rgba(225,26,26,.35);
  transform: translateY(-2px) scale(1.02);
}
.floating-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.floating-cta .fc-pulse {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  z-index: 0;
  animation: fc-pulse 2.4s ease-out infinite;
}
@keyframes fc-pulse {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.fc-label { display: inline-flex; flex-direction: column; line-height: 1; gap: 4px; align-items: flex-start; }
.fc-label small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.fc-label strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
}
@media (min-width: 721px) {
  .floating-cta { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta .fc-pulse { animation: none; }
}

/* lang visibility */
[data-lang] { display: none; }
html[lang="en"] [data-lang="en"],
html[lang="fr"] [data-lang="fr"] { display: inline; }
html[lang="en"] [data-lang="en"].block,
html[lang="fr"] [data-lang="fr"].block { display: block; }
/* Block-level elements that carry data-lang directly (no .block class) */
html[lang="en"] article[data-lang="en"],
html[lang="fr"] article[data-lang="fr"],
html[lang="en"] section[data-lang="en"],
html[lang="fr"] section[data-lang="fr"],
html[lang="en"] div[data-lang="en"],
html[lang="fr"] div[data-lang="fr"],
html[lang="en"] p[data-lang="en"],
html[lang="fr"] p[data-lang="fr"],
html[lang="en"] h1[data-lang="en"],
html[lang="fr"] h1[data-lang="fr"],
html[lang="en"] h2[data-lang="en"],
html[lang="fr"] h2[data-lang="fr"],
html[lang="en"] h3[data-lang="en"],
html[lang="fr"] h3[data-lang="fr"],
html[lang="en"] h4[data-lang="en"],
html[lang="fr"] h4[data-lang="fr"],
html[lang="en"] li[data-lang="en"],
html[lang="fr"] li[data-lang="fr"] { display: block; }
html[lang="en"] [data-lang="en"].grid,
html[lang="fr"] [data-lang="fr"].grid { display: grid; }
html[lang="en"] [data-lang="en"].flex,
html[lang="fr"] [data-lang="fr"].flex { display: flex; }

/* ============================================================
   PRICING STRIP — transparency band
   ============================================================ */
.pricing-strip {
  background: #fff;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding-block: clamp(48px, 6vw, 80px);
}
.pricing-strip .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-tier {
  position: relative;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 32px);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-tier:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-tier.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.price-tier.featured h4, .price-tier.featured .price-amount { color: #fff; }
.price-tier.featured ul li { color: #D4D4D4; }
.price-tier.featured::before {
  content: "Most popular";
  position: absolute; top: -12px; left: clamp(20px, 2vw, 28px);
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
html[lang="fr"] .price-tier.featured::before { content: "Le plus choisi"; }
.price-tier h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; color: var(--grey-700);
}
.price-tier .price-amount {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  margin: 14px 0 4px;
}
.price-tier .price-amount sup {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--grey-600); margin-right: 4px;
  vertical-align: top; top: 8px; position: relative;
}
.price-tier .price-amount small {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--grey-600);
}
.price-tier ul {
  list-style: none; padding: 0; margin: 18px 0 22px;
  display: grid; gap: 8px;
}
.price-tier ul li {
  font-size: 14px; color: var(--grey-700); line-height: 1.45;
  display: grid; grid-template-columns: 16px 1fr; gap: 8px;
}
.price-tier ul li::before {
  content: "+";
  color: var(--red); font-weight: 700;
}
.price-tier .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.price-tier .actions .btn { width: 100%; justify-content: center; }
.pricing-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--grey-600);
}

/* ============================================================
   GUARANTEE — risk reversal block
   ============================================================ */
.guarantee {
  background: linear-gradient(180deg, var(--grey-50), #fff);
  padding-block: clamp(64px, 8vw, 100px);
  position: relative;
}
.guarantee .container { position: relative; }
.guarantee-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.guarantee-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 14px;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 32px);
  text-align: left;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.guarantee-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--red); }
.guarantee-card .icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: #fff;
}
.guarantee-card .icon svg { width: 26px; height: 26px; }
.guarantee-card h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.005em;
  margin-bottom: 8px;
}
.guarantee-card p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.55;
}
.guarantee-stamp {
  position: absolute;
  right: 16px; top: 16px;
  font-size: 10px; font-weight: 800;
  color: var(--red); letter-spacing: .12em; text-transform: uppercase;
  background: rgba(225, 26, 26, .08);
  padding: 4px 8px; border-radius: 999px;
}

/* ============================================================
   BLOG ARTICLE — long-form reading layout
   ============================================================ */
.article-hero {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.55), rgba(11,11,11,.85));
  z-index: 0;
}
.article-hero .photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.9) brightness(.85);
}
.article-hero .container { position: relative; z-index: 1; padding-block: clamp(72px, 9vw, 128px); }
.article-hero .breadcrumbs { font-size: 12px; color: #B5B5B5; letter-spacing: .14em; text-transform: uppercase; }
.article-hero .breadcrumbs a { color: #fff; }
.article-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; letter-spacing: -.02em;
  margin-top: 18px; max-width: 22ch;
}
.article-hero .deck {
  margin-top: 20px; color: #D4D4D4;
  max-width: 60ch; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55;
}
.article-hero .meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px; font-size: 13px; color: #D4D4D4;
  letter-spacing: .04em;
}
.article-hero .meta .tag {
  display: inline-block; background: var(--red); color: #fff;
  padding: 4px 12px; border-radius: 2px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 11px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-block: clamp(56px, 7vw, 96px);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.75;
  color: var(--ink);
}
.article-body p {
  margin: 0 0 1.4em;
}
.article-body h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2; letter-spacing: -.01em;
  margin: 2.4em 0 .6em;
  color: var(--ink);
}
.article-body h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  margin: 1.8em 0 .5em;
  color: var(--ink);
}
.article-body ul, .article-body ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.article-body ul li, .article-body ol li {
  margin-bottom: .55em;
  padding-left: .25em;
}
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body a:not(.btn) {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
}
.article-body a:not(.btn):hover { text-decoration-thickness: 2.5px; }
.article-body .btn,
.article-cta .btn { color: #fff; text-decoration: none; }
.article-body .btn-ghost,
.article-cta .btn-ghost { color: #fff; }
.article-body .btn-outline {
  color: var(--ink); background: transparent; border: 2px solid var(--ink);
  text-decoration: none;
}
.article-body blockquote {
  margin: 2em 0;
  padding: 1em 1.4em;
  border-left: 3px solid var(--red);
  background: var(--grey-50);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.18em;
  line-height: 1.5;
  color: var(--ink);
  border-radius: 4px;
}
.article-body .callout {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 22px 26px;
  margin: 2em 0;
  font-size: .95em;
  line-height: 1.6;
}
.article-body .callout strong { display: block; margin-bottom: .25em; letter-spacing: .04em; }
.article-body figure {
  margin: 2em -8px;
}
.article-body figure img {
  width: 100%;
  border-radius: 8px;
}
.article-body figure figcaption {
  font-size: 13px; color: var(--grey-600);
  margin-top: .5em; text-align: center;
  font-style: italic;
}

.article-cta {
  margin: 3em 0 0;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { color: #fff; font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 12px; }
.article-cta p { color: #D4D4D4; margin-bottom: 22px; }
.article-cta .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.article-related {
  background: var(--grey-50);
  padding-block: clamp(56px, 7vw, 96px);
}
.article-related h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 32px; }
.article-related .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .article-related .grid { grid-template-columns: 1fr; } }
.article-related .post-card { background: #fff; }

@media (max-width: 760px) {
  .article-body { padding-inline: 4px; }
  .article-body figure { margin-inline: -4px; }
}
