/* =====================================================
   MD TOITURE STRASBOURG — premium stylesheet
   Brand palette: blue (#1d3a8a) + accent red (#c0392b) + ink navy
   Type: Inter (UI) + Fraunces (display serif)
   ===================================================== */

:root {
  --blue-50:  #eef2ff;
  --blue-100: #dbe5fe;
  --blue-200: #c5d3fb;
  --blue-500: #2c4fc7;
  --blue-600: #2541a8;
  --blue-700: #1d3a8a;
  --blue-800: #15306b;
  --blue-900: #0f234e;

  --brand:        #1d3a8a;
  --brand-dark:   #15306b;
  --brand-light:  #3858c4;
  --accent:       #c0392b;
  --accent-light: #e04b3c;

  --ink:        #0b1220;
  --ink-2:      #111827;
  --ink-3:      #1f2937;
  --slate:      #475569;
  --slate-2:    #64748b;
  --muted:      #94a3b8;
  --line:       #e5e7eb;
  --line-2:     #eef2f7;

  --bg:         #ffffff;
  --bg-2:       #fafaf9;
  --bg-3:       #f5f5f4;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow:    0 4px 14px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px -20px rgba(15,23,42,.25);
  --shadow-xl: 0 40px 100px -30px rgba(15,23,42,.45);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1200px;

  --ease: cubic-bezier(.2, .65, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ TOPBAR ============ */
.topbar {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #d1d5db;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.topbar__left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { color: #f5b942; flex: none; }
.topbar__item:not(:first-child) svg { color: var(--brand-light); }
.topbar__item strong { color: #fff; font-weight: 700; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__phone {
  color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px; background: rgba(56,88,196,.18);
  border: 1px solid rgba(56,88,196,.45);
  transition: background .2s var(--ease);
}
.topbar__phone:hover { background: rgba(56,88,196,.3); }
.topbar__phone svg { color: var(--brand-light); }

@media (max-width: 820px) {
  .topbar__item--hide { display: none; }
}

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(15,23,42,.06); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: var(--bg-3); border-radius: 12px;
  overflow: hidden;
}
.brand__mark img { width: 46px; height: 46px; object-fit: contain; }
.brand__mark--dark { background: rgba(255,255,255,.08); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--ink);
}
.brand__name em { color: var(--brand); font-style: normal; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__name em { color: var(--brand-light); }
.brand__tag { font-size: 11.5px; color: var(--slate-2); margin-top: 3px; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.brand--light .brand__tag { color: rgba(255,255,255,.55); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 14px; font-weight: 500; font-size: 15px; color: var(--ink-2);
  border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--brand); background: var(--blue-50); }
.nav__cta { margin-left: 10px; }

.burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 10px; padding: 0; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav {
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 8px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
  .burger { display: inline-flex; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn--sm  { padding: 10px 18px; font-size: 14px; }
.btn--lg  { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(29,58,138,.55);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(29,58,138,.7);
}

.btn--ghost {
  background: rgba(255,255,255,.92); color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); border-color: #cbd5e1; }
.btn--ghost.btn--light {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost.btn--light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }

.btn--outline {
  background: transparent; color: var(--brand); border-color: var(--brand);
}
.btn--outline:hover { background: var(--brand); color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
  z-index: -2;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,.55) 0%, rgba(11,18,32,.6) 40%, rgba(11,18,32,.88) 100%),
    radial-gradient(60% 60% at 20% 30%, rgba(29,58,138,.55) 0%, transparent 70%);
  z-index: -1;
}
.hero__inner {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px;
  align-items: center; color: #fff;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(8px);
}
.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 0 rgba(224,75,60,.7);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(224,75,60,.7); }
  50%     { box-shadow: 0 0 0 10px rgba(224,75,60,0); }
}

.hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 22px 0 18px;
}
.hero__title em {
  font-style: italic; color: #f0a89e;
  font-weight: 600;
}

.hero__lede {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 580px;
}
.hero__lede strong { color: #fff; }

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero__badges {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 14.5px; color: rgba(255,255,255,.85);
}
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { color: var(--brand-light); flex: none; }

.hero__card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid rgba(255,255,255,.6);
}
.hero__card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.rating { display: flex; align-items: center; gap: 10px; }
.rating__value {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 32px; color: var(--ink);
}
.rating__stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; line-height: 1; }
.rating__stars--sm { font-size: 13px; letter-spacing: 0; }
.rating__count { font-size: 13px; color: var(--slate); margin-left: 4px; }
.google-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--bg-3); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--slate);
}
.hero__quote {
  margin: 0; font-family: 'Fraunces', serif; font-style: italic;
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
}
.hero__quote-footer {
  margin-top: 12px; font-size: 13px; color: var(--slate-2); font-weight: 500;
}

.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  animation: float 2.4s var(--ease) infinite;
}
.hero__scroll:hover { color: #fff; }
@keyframes float {
  0%,100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 6px); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 52px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__card { max-width: 480px; }
  .hero__scroll { display: none; }
}

/* ============ TRUST STRIP ============ */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line-2);
  position: relative; z-index: 2;
}
.trust__grid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 24px;
  gap: 18px;
}
.trust__item { text-align: center; flex: 1; min-width: 100px; }
.trust__num {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 36px; color: var(--ink);
  line-height: 1; letter-spacing: -.02em;
}
.trust__num span { font-size: 18px; color: var(--brand); margin-left: 2px; font-weight: 600; }
.trust__lbl {
  font-size: 12.5px; color: var(--slate); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
}
.trust__sep {
  width: 1px; height: 42px; background: var(--line);
}
@media (max-width: 720px) {
  .trust__grid { flex-wrap: wrap; gap: 12px; }
  .trust__sep { display: none; }
  .trust__item { flex: 0 0 calc(50% - 6px); }
  .trust__num { font-size: 28px; }
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-2); }
.section--dark {
  background: linear-gradient(160deg, var(--ink) 0%, #0d1828 100%);
  color: #e5e7eb;
}
@media (max-width: 760px) { .section { padding: 72px 0; } }

.section__head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block; padding: 5px 12px;
  background: var(--blue-50); color: var(--brand-dark);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 999px;
  border: 1px solid var(--blue-200);
}
.eyebrow--light { background: rgba(56,88,196,.2); color: #b9c8ff; border-color: rgba(56,88,196,.35); }

.section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -.02em;
  font-weight: 700; color: var(--ink);
  margin: 18px 0 16px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 17px; color: var(--slate); line-height: 1.65; margin: 0;
}
.section--dark .section__sub { color: #cbd5e1; }

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.service:hover::before { transform: scaleX(1); }
.service--feature {
  background: linear-gradient(160deg, var(--ink) 0%, #112233 100%);
  color: #e2e8f0; border-color: var(--ink);
}
.service--feature::before { transform: scaleX(1); background: linear-gradient(90deg, var(--brand-light), var(--accent-light)); }
.service__badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 999px; font-size: 11px;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.service__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--brand);
  margin-bottom: 22px;
}
.service--feature .service__icon { background: rgba(56,88,196,.18); color: #b9c8ff; }
.service__title {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px;
  margin: 0 0 10px; color: var(--ink);
}
.service--feature .service__title { color: #fff; }
.service__text {
  margin: 0 0 18px; color: var(--slate); font-size: 15px; line-height: 1.65;
}
.service--feature .service__text { color: #cbd5e1; }
.service__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px dashed var(--line); padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: var(--slate);
}
.service--feature .service__list { color: #cbd5e1; border-color: rgba(255,255,255,.1); }
.service__list li { padding-left: 20px; position: relative; }
.service__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px; background: var(--brand); border-radius: 2px;
}
.service--feature .service__list li::before { background: var(--brand-light); }

.services__foot {
  margin-top: 48px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 22px;
  flex-wrap: wrap;
}
.services__foot p { margin: 0; color: var(--slate); font-size: 16px; }

@media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ============ SHOWCASE BANNER ============ */
.showcase {
  position: relative; padding: 120px 0; overflow: hidden;
  isolation: isolate;
}
.showcase__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  transform: scale(1.05);
}
.showcase::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,18,32,.92) 0%, rgba(15,30,80,.65) 60%, rgba(11,18,32,.18) 100%);
  z-index: -1;
}
.showcase__inner { display: flex; }
.showcase__card {
  max-width: 540px; color: #fff;
}
.showcase__card h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 42px); font-weight: 700;
  line-height: 1.15; margin: 14px 0 16px; letter-spacing: -.02em;
}
.showcase__card p { color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.65; }
.showcase__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

@media (max-width: 760px) { .showcase { padding: 80px 0; } }

/* ============ ABOUT ============ */
.about {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center;
}
.about__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__media img { width: 100%; height: 540px; object-fit: cover; }
.about__badge {
  position: absolute; left: -18px; bottom: -18px;
  background: #fff; padding: 16px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 4px;
}
.about__badge-top { display: flex; align-items: center; gap: 8px; }
.about__badge-top span {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--ink);
}
.about__badge-bot { font-size: 12px; color: var(--slate); }

.about__content p {
  color: var(--slate); font-size: 16.5px; line-height: 1.75;
}
.about__content p strong { color: var(--ink); }

.features {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px;
}
.features li { display: flex; gap: 14px; align-items: flex-start; }
.features svg {
  flex: none; padding: 8px;
  color: var(--brand); background: var(--blue-50); border-radius: 10px;
}
.features h4 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px;
  margin: 0 0 4px; color: var(--ink);
}
.features p { margin: 0; font-size: 14px; color: var(--slate); line-height: 1.55; }

@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__media img { height: 380px; }
  .features { grid-template-columns: 1fr; }
}

/* ============ ZONE ============ */
.zone {
  background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  color: #fff; padding: 80px 0; position: relative; overflow: hidden;
}
.zone::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(255,255,255,.16), transparent);
  border-radius: 50%;
}
.zone::after {
  content: ""; position: absolute; left: -80px; bottom: -80px; width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(192,57,43,.25), transparent);
  border-radius: 50%;
}
.zone__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.zone__text h2 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15;
  margin: 12px 0 12px; letter-spacing: -.02em;
}
.zone__text p { color: rgba(255,255,255,.9); font-size: 17px; }
.zone__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.zone__list li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 12px 16px; border-radius: 10px;
  font-weight: 500; font-size: 14.5px; color: #fff;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.zone__list li:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

@media (max-width: 860px) {
  .zone__inner { grid-template-columns: 1fr; gap: 32px; }
  .zone__list { grid-template-columns: repeat(2, 1fr); }
}

/* ============ REVIEWS ============ */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.reviews--single {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px; margin: 0 auto;
}
.review {
  background: #fff; padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: 8px; right: 22px;
  font-family: 'Fraunces', serif; font-size: 80px; line-height: 1;
  color: var(--blue-100);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review__top { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
  letter-spacing: .04em;
}
.review__name { font-weight: 600; color: var(--ink); font-size: 15px; }
.review__tag {
  background: var(--bg-3); color: var(--slate); font-size: 11px;
  padding: 2px 8px; border-radius: 999px; margin-left: 4px; font-weight: 500;
}
.review__stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-top: 2px; }
.review__text {
  margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.7;
  font-family: 'Fraunces', serif; font-style: italic;
}
.review__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: 13px; color: var(--slate-2); font-weight: 500;
}

.review--cta {
  background: linear-gradient(160deg, var(--blue-50) 0%, #fff 100%);
  border-color: var(--blue-200);
  text-align: center; align-items: center; justify-content: center;
}
.review--cta::before { display: none; }
.review--cta h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  margin: 0; color: var(--ink);
}
.review--cta p { margin: 0; color: var(--slate); font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.review__cta-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(29,58,138,.6);
}

@media (max-width: 760px) {
  .reviews, .reviews--single { grid-template-columns: 1fr; }
}

/* ============ PROCESS ============ */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.process li {
  position: relative; padding: 28px 24px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.process li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process__num {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 700; color: var(--blue-100);
  display: block; line-height: 1; letter-spacing: -.02em;
  margin-bottom: 10px;
}
.process h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px;
  margin: 0 0 8px; color: var(--ink);
}
.process p { margin: 0; color: var(--slate); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 860px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(105deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff; padding: 56px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(56,88,196,.3), transparent);
  border-radius: 50%;
}
.cta-strip::after {
  content: ""; position: absolute; left: -120px; bottom: -120px; width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(192,57,43,.25), transparent);
  border-radius: 50%;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-strip h2 {
  font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 6px; line-height: 1.2; letter-spacing: -.02em;
}
.cta-strip p { margin: 0; color: rgba(255,255,255,.75); font-size: 15px; }
.cta-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact__lede { color: #cbd5e1; font-size: 16.5px; max-width: 480px; }
.contact__info {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact__info li { display: flex; align-items: center; gap: 14px; }
.contact__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,88,196,.2); color: #b9c8ff;
  flex: none;
}
.contact__info strong { display: block; color: #fff; font-size: 13px; margin-bottom: 2px; font-weight: 600; }
.contact__info a, .contact__info span { color: #e5e7eb; font-size: 15.5px; }
.contact__info a:hover { color: #b9c8ff; }

.map {
  margin-top: 12px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.1);
  height: 240px;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

.contact__form {
  background: #fff; color: var(--ink);
  padding: 36px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(255,255,255,.5);
}
.contact__form-title {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  margin: 0 0 4px; color: var(--ink);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
}
.field input, .field select, .field textarea {
  padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--bg-2);
  font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29,58,138,.14);
}
.field textarea { resize: vertical; min-height: 90px; }
.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--slate); line-height: 1.45;
}
.check input { margin-top: 3px; accent-color: var(--brand); }
.form__note {
  margin: 4px 0 0; font-size: 12.5px; color: var(--slate-2); text-align: center;
}
.form__success {
  display: none;
  background: var(--blue-50); color: var(--brand-dark);
  padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--blue-200);
  font-size: 14.5px; font-weight: 500; text-align: center;
}
.form__success.is-on { display: block; }

@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 20px 24px;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.faq__item:hover { border-color: var(--blue-200); }
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--blue-200); }
.faq__item summary {
  cursor: pointer; list-style: none;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 400;
  color: var(--brand); transition: transform .25s var(--ease);
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); border-radius: 50%;
  flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 14px 0 0; color: var(--slate); font-size: 15px; line-height: 1.7;
}
.faq__item p strong { color: var(--ink); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: #cbd5e1;
  padding-top: 72px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__col h4 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px;
  color: #fff; margin: 0 0 16px; letter-spacing: .02em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__col ul a { transition: color .2s var(--ease); }
.footer__col ul a:hover { color: #b9c8ff; }
.footer__col--brand p { color: #94a3b8; max-width: 320px; font-size: 14.5px; line-height: 1.6; margin: 16px 0 18px; }
.footer__rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cbd5e1; }
.footer__rating strong { color: #fff; }
.footer__contact { line-height: 1.7; }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__bottom {
  padding: 22px 0;
  font-size: 13px; color: #64748b;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ STICKY CALL ============ */
.sticky-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(29,58,138,.7);
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.sticky-call:hover { background: var(--brand-dark); transform: scale(1.05); }
.sticky-call__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--brand);
  animation: callPulse 2s var(--ease) infinite;
  z-index: -1;
}
@keyframes callPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
