:root {
  --bg: #f6f3ee;
  --bg-deep: #14110f;
  --paper: #fffaf1;
  --ink: #17110d;
  --muted: #716760;
  --accent: #e43d1f;
  --accent-dark: #b52a15;
  --accent-soft: #ffe2d8;
  --gold: #d79d35;
  --green: #2f5d50;
  --shadow: 0 24px 70px rgba(35, 21, 12, 0.13);
  --shadow-soft: 0 14px 40px rgba(35, 21, 12, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(228, 61, 31, 0.14), transparent 27rem),
    radial-gradient(circle at 88% 10%, rgba(215, 157, 53, 0.16), transparent 30rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 56%, #eee7dc 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding-top: 118px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.26;
  z-index: 0;
  background-image:
    linear-gradient(rgba(23, 17, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 17, 13, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 17, 13, 0.10);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(23, 17, 13, 0.08);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 1 310px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffaf1;
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 12px 26px rgba(23, 17, 13, 0.12);
  flex: 0 0 auto;
  overflow: hidden;
  padding: 3px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.brand__mark:hover {
  transform: translateY(-1px);
  border-color: rgba(228, 61, 31, 0.22);
  box-shadow: 0 14px 30px rgba(23, 17, 13, 0.16);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand__name {
  width: fit-content;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__role {
  font-size: 12px;
  line-height: 1.1;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__phone {
  width: fit-content;
  color: var(--accent-dark);
  font-size: 15px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand__phone:hover {
  color: var(--accent);
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #4d433c;
  font-size: 14px;
  font-weight: 650;
  flex: 1 1 auto;
}

.nav__links a {
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  display: none;
  flex: 0 0 auto;
}

/* Services dropdown */

.nav__links > .nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav__links > .nav__item > .nav__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: inherit;
  font: inherit;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__links > .nav__item > .nav__trigger:hover,
.nav__links > .nav__item:focus-within > .nav__trigger {
  color: var(--accent);
}

.nav__trigger-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.nav__links > .nav__item:hover .nav__trigger-icon,
.nav__links > .nav__item:focus-within .nav__trigger-icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 100;
  width: min(380px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 24px 60px rgba(23, 17, 13, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.nav__item:hover > .nav-dropdown,
.nav__item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__head {
  display: grid;
  gap: 4px;
  padding: 12px 12px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(23, 17, 13, 0.08);
}

.nav-dropdown__head strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
  white-space: normal;
}

.nav-dropdown__head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
}

.nav-dropdown > a {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border-radius: 16px;
  color: #4d433c;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  white-space: normal;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown > a:hover,
.nav-dropdown > a:focus-visible {
  color: var(--accent-dark);
  background: var(--accent-soft);
  transform: translateX(2px);
}

/* Buttons */

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 18px 38px rgba(228, 61, 31, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 22px 48px rgba(228, 61, 31, 0.36);
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(23, 17, 13, 0.14);
}

.btn--secondary:hover {
  border-color: rgba(228, 61, 31, 0.35);
  color: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(23, 17, 13, 0.08);
}

.btn--light {
  width: 100%;
  color: var(--accent-dark);
  background: #fffaf1;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.btn--light:hover {
  color: var(--ink);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

/* Hero */

.hero {
  padding: 38px 0 86px;
}

.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-title {
  margin: 0;
  max-width: 720px;
  display: grid;
  gap: 8px;
}

.hero-title__eyebrow {
  display: block;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-title__main,
.hero-title__bottom {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero-title__main {
  color: var(--accent);
}

.hero__lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: #5c514a;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.hero__actions--center {
  justify-content: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.stat {
  padding: 20px;
  border: 1px solid rgba(23, 17, 13, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 12px 34px rgba(23, 17, 13, 0.06);
}

.stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.002em;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-experience {
  margin-top: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 12px 30px rgba(23, 17, 13, 0.055);
}

.hero-experience p {
  margin: 0;
  color: #5e534d;
  font-size: 16px;
  line-height: 1.65;
}

/* Expert card */

.expert-card {
  position: relative;
  min-height: 570px;
  padding: 20px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.92), rgba(255, 244, 223, 0.82));
  border: 1px solid rgba(23, 17, 13, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.expert-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 61, 31, 0.24), transparent 70%);
}

.expert-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 93, 80, 0.20), transparent 68%);
}

.hero-expert-card {
  min-height: 0;
}

.portrait {
  position: relative;
  min-height: 310px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.04), rgba(20, 17, 15, 0.18));
  border: 1px solid rgba(23, 17, 13, 0.10);
}

.portrait__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.04), rgba(20, 17, 15, 0.18));
  pointer-events: none;
}

.portrait__badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 14px 15px;
  border-radius: 22px;
  color: #fff;
  background: rgba(20, 17, 15, 0.78);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hero-expert-card .portrait__badge {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  border-radius: 0 0 30px 30px;
}

.portrait__badge strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0;
}

.portrait__badge span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.portrait__seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  flex: 0 0 auto;
}

.expert-card__body {
  position: relative;
  z-index: 1;
  padding: 24px 2px 4px;
}

.hero-expert-card .expert-card__body {
  padding-bottom: 0;
}

.expert-card__body h2 {
  margin: 0;
  font-size: clamp(26px, 4.4vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.012em;
  word-spacing: 0.01em;
  font-weight: 850;
  text-wrap: balance;
}

.expert-card__body p {
  margin: 16px 0 0;
  color: #5e534d;
  font-size: 16px;
  line-height: 1.58;
}

.expert-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #4f453e;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 17, 13, 0.08);
  font-size: 14px;
  line-height: 1.5;
}

.expert-card__actions {
  margin-top: 18px;
}

.expert-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(228, 61, 31, 0.18);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.expert-card__link:hover {
  transform: translateY(-2px);
  color: var(--accent);
  background: rgba(255, 250, 241, 0.96);
  border-color: rgba(228, 61, 31, 0.32);
  box-shadow: 0 14px 30px rgba(23, 17, 13, 0.08);
}

/* Common sections */

.section {
  padding: 72px 0;
}

.section--compact {
  padding: 32px 0 72px;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(228, 61, 31, 0.33), transparent 27rem),
    radial-gradient(circle at 8% 80%, rgba(215, 157, 53, 0.18), transparent 24rem),
    var(--bg-deep);
  border-radius: 42px;
  margin: 0 12px;
  overflow: hidden;
}

.section__head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section__kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.012em;
  word-spacing: 0.01em;
  font-weight: 850;
  text-wrap: balance;
}

.section__text {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section--dark .section__text {
  color: rgba(255, 255, 255, 0.68);
}

/* TLDR */

.tldr-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 16px 42px rgba(35, 21, 12, 0.08);
}

.tldr-panel__label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tldr-panel__content p {
  margin: 0;
  max-width: 920px;
  color: #4f453e;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  font-weight: 650;
}

.tldr-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.tldr-point {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 17, 13, 0.08);
}

.tldr-point strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

.tldr-point span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Services/cards */

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 235px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 12px 30px rgba(23, 17, 13, 0.055);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(228, 61, 31, 0.08);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 61, 31, 0.25);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
  transform: scale(1.18);
  opacity: 0.9;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 22px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
  letter-spacing: -0.002em;
  font-weight: 800;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #665b53;
  font-size: 15px;
  line-height: 1.55;
}

a.service-card {
  display: block;
  color: inherit;
}

a.service-card:hover {
  color: inherit;
}

a.service-card:focus-visible {
  outline: 3px solid rgba(228, 61, 31, 0.34);
  outline-offset: 4px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.section-actions--center {
  justify-content: center;
  text-align: center;
}

.section-actions .btn {
  min-width: 220px;
}

/* Proof */

.proof {
  display: grid;
  gap: 22px;
}

.proof__panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-title {
  max-width: 920px;
  display: grid;
  gap: 8px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.proof-title span {
  display: block;
}

.proof__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.logo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.84);
  transition: background 0.24s ease, transform 0.24s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.105);
}

.logo-card__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  color: var(--gold);
  flex: 0 0 auto;
}

.logo-card strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.logo-card span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

/* Quote */

.quote {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fffaf1;
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.quote::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: -26px;
  color: rgba(228, 61, 31, 0.14);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.quote p {
  position: relative;
  margin: 0;
  color: #3c332e;
  font-size: 19px;
  line-height: 1.55;
}

.quote__person {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 17, 13, 0.10);
}

.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(23, 17, 13, 0.08);
  flex: 0 0 auto;
}

.quote__person strong {
  display: block;
  font-size: 14px;
}

.quote__person span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* Process */

.process {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.66);
  border: 1px solid rgba(23, 17, 13, 0.10);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--bg-deep);
  font-weight: 800;
}

.step h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 800;
}

.step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* FAQ */

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 12px 30px rgba(23, 17, 13, 0.055);
}

.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 850;
}

.faq-item p {
  margin: 10px 0 0;
  color: #665b53;
  font-size: 15px;
  line-height: 1.58;
}

/* CTA */

.cta {
  padding: 0 0 78px;
}

.cta__box {
  display: grid;
  gap: 30px;
  padding: 34px;
  border-radius: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(228, 61, 31, 0.92), rgba(181, 42, 21, 0.95)),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.26), transparent 20rem);
  box-shadow: 0 34px 90px rgba(181, 42, 21, 0.32);
  overflow: hidden;
  position: relative;
}

.cta__box::after {
  content: "";
  position: absolute;
  inset: auto -90px -160px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.08);
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cta h2 {
  margin: 0;
  font-size: clamp(32px, 5.2vw, 50px);
  line-height: 1.14;
  font-weight: 850;
  max-width: 720px;
}

.cta p {
  margin: 20px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.cta-call {
  width: 100%;
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
}

.cta-call__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cta-call__label {
  display: block;
  color: #fff;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.25;
  font-weight: 800;
}

.cta-call__hint {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.cta-call__link {
  flex: 0 0 auto;
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(20, 17, 15, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.cta-call__link:hover {
  transform: translateY(-2px);
  background: rgba(20, 17, 15, 0.30);
  border-color: rgba(255, 255, 255, 0.30);
}

.cta-call__action {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-call__number {
  display: block;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  font-weight: 850;
  white-space: nowrap;
}

/* Forms */

.contact-form {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: #fff;
  background: rgba(20, 17, 15, 0.18);
  outline: none;
  padding: 14px 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
  overflow: hidden;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(20, 17, 15, 0.26);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.form-consent {
  display: grid;
  gap: 7px;
  margin: 4px 0 2px;
}

.form-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent__label input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: #fffaf1;
  cursor: pointer;
}

.form-consent__label a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-consent__error {
  min-height: 17px;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

/* Footer */

.footer {
  padding: 44px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #0f0c0b;
}

.footer__grid {
  display: grid;
  gap: 26px;
}

.footer .brand__mark {
  background: #fffaf1;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.footer .brand__name {
  color: #fff;
}

.footer .brand__role {
  color: rgba(255, 255, 255, 0.54);
}

.footer__text {
  margin: 16px 0 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  line-height: 1.4;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.52);
}

.footer__legal a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Inner pages */

.page-hero {
  padding: 42px 0 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.breadcrumbs a {
  color: var(--accent-dark);
  font-weight: 750;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.page-hero__grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 61, 31, 0.08), transparent 28rem),
    rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(23, 17, 13, 0.08);
  box-shadow: 0 22px 64px rgba(35, 21, 12, 0.08);
}

.page-hero__title {
  margin: 0;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-wrap: balance;
}

.page-hero__lead {
  margin: 22px 0 0;
  max-width: 760px;
  color: #5c514a;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.page-hero__note {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 14px 36px rgba(23, 17, 13, 0.065);
}

.page-hero__note strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.page-hero__note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-table-wrap {
  overflow-x: auto;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.84);
}

.service-table th,
.service-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.service-table th {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.service-table td {
  font-size: 15px;
  line-height: 1.5;
}

.service-table a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-table a:hover {
  color: var(--gold);
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.expert-summary {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 14px 40px rgba(35, 21, 12, 0.07);
}

.expert-summary h2 {
  margin: 6px 0 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.012em;
  font-weight: 850;
  text-wrap: balance;
}

.expert-summary p {
  margin: 0;
  max-width: 780px;
  color: #5e534d;
  font-size: 16px;
  line-height: 1.6;
}

/* Legal pages */

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero__grid {
  grid-template-columns: 1fr;
}

.legal-section {
  padding-top: 24px;
}

.legal-doc {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 16px 42px rgba(35, 21, 12, 0.08);
}

.legal-doc__date {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.legal-doc h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 850;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 14px;
  color: #51463f;
  font-size: 16px;
  line-height: 1.68;
}

.legal-doc ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #51463f;
}

.legal-doc li {
  margin: 7px 0;
  line-height: 1.58;
}

.legal-doc a:not(.btn) {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-doc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 17, 13, 0.10);
}

/* 404 page */

.error-page {
  padding-bottom: 96px;
}

.error-page__box {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 15%, rgba(228, 61, 31, 0.14), transparent 26rem),
    rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 26px 80px rgba(35, 21, 12, 0.10);
}

.error-page__code {
  position: absolute;
  right: clamp(18px, 5vw, 54px);
  top: clamp(10px, 3vw, 26px);
  color: rgba(228, 61, 31, 0.075);
  font-size: clamp(96px, 18vw, 220px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.error-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.error-page__content {
  min-width: 0;
}

.error-page__title {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.error-page__text {
  margin: 22px 0 0;
  max-width: 720px;
  color: #5c514a;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.error-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(23, 17, 13, 0.10);
  box-shadow: 0 18px 44px rgba(23, 17, 13, 0.08);
}

.error-contact__label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.14;
  font-weight: 850;
}

.error-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.error-contact__phone {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(228, 61, 31, 0.92), rgba(181, 42, 21, 0.95));
  box-shadow: 0 18px 38px rgba(228, 61, 31, 0.22);
}

.error-contact__phone span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-contact__phone strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.error-contact .btn {
  width: 100%;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(23, 17, 13, 0.12);
  box-shadow: 0 24px 70px rgba(23, 17, 13, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner__text {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.cookie-banner__text strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.cookie-banner__text span {
  display: block;
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner__button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
}

.cookie-banner__button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 14px 30px rgba(228, 61, 31, 0.24);
}

.cookie-banner__button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 17, 13, 0.12);
}

.cookie-banner__button--secondary:hover {
  color: var(--accent-dark);
  border-color: rgba(228, 61, 31, 0.28);
  box-shadow: 0 12px 26px rgba(23, 17, 13, 0.08);
}

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

/* Animation */

.reveal {
  opacity: 1;
  transform: none;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-ready .delay-1 {
  transition-delay: 0.08s;
}

html.js-ready .delay-2 {
  transition-delay: 0.16s;
}

html.js-ready .delay-3 {
  transition-delay: 0.24s;
}

/* Responsive and mobile */

/* Mobile-only components are hidden by default on desktop */
.mobile-menu-toggle,
.mobile-menu,
.mobile-service-map,
.mobile-info-cards {
  display: none;
}

/* Contact page: 2x2 contact cards on desktop */
@media (min-width: 900px) {
  .contact-methods,
  .services.contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-inline: auto;
  }

  .contact-methods .service-card,
  .services.contact-methods .service-card {
    min-height: 245px;
  }
}

/* Mobile and tablet header/menu */
@media (max-width: 899px) {
  html.mobile-menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .nav {
    padding: 10px 0;
  }

  .nav__inner {
    gap: 12px;
  }

  .nav__links,
  .nav__cta,
  .nav-dropdown {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand__copy {
    min-width: 0;
  }

  .brand__name,
  .brand__role,
  .brand__phone {
    max-width: 100%;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 92px;
    height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(23, 17, 13, 0.12);
    border-radius: 999px;
    color: var(--ink);
    background: #fffaf1;
    box-shadow: 0 10px 24px rgba(23, 17, 13, 0.10);
    cursor: pointer;
    overflow: visible;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease,
      background 0.18s ease,
      color 0.18s ease;
  }

  .mobile-menu-toggle::before,
  .mobile-menu-toggle::after {
    content: none;
    display: none;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    transform: translateY(-1px);
    color: var(--accent-dark);
    background: #fffaf1;
    border-color: rgba(228, 61, 31, 0.28);
    box-shadow: 0 14px 30px rgba(23, 17, 13, 0.14);
  }

  .mobile-menu-toggle:focus-visible {
    outline: 3px solid rgba(228, 61, 31, 0.22);
    outline-offset: 3px;
  }

  .mobile-menu-toggle.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: rgba(181, 42, 21, 0.40);
    box-shadow: 0 14px 30px rgba(228, 61, 31, 0.24);
  }

  .mobile-menu-toggle__text {
    display: block;
    margin: 0;
    padding: 0;
    color: currentColor;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.01em;
    font-style: normal;
    text-decoration: none;
    transform: none;
    opacity: 1;
  }

  .mobile-menu-toggle__bars {
    display: grid;
    gap: 5px;
    width: 18px;
    height: auto;
    margin: 0;
    padding: 0;
    font-style: normal;
    transform: none;
    opacity: 1;
  }

  .mobile-menu-toggle__bars i {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    background: currentColor;
    box-shadow: none;
    transform: none;
    opacity: 1;
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }

  .mobile-menu-toggle.is-active .mobile-menu-toggle__bars i:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-active .mobile-menu-toggle__bars i:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    top: var(--mobile-menu-top, 92px);
    z-index: 60;
    display: grid;
    gap: 13px;
    height: calc(var(--mobile-vh, 100vh) - var(--mobile-menu-top, 92px) - 14px);
    max-height: none;
    margin: 0;
    padding: 14px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    border-radius: 26px;
    color: var(--ink);
    background:
      radial-gradient(circle at 88% 0%, rgba(228, 61, 31, 0.10), transparent 18rem),
      linear-gradient(180deg, rgba(255, 250, 241, 0.99), rgba(255, 246, 232, 0.98));
    border: 1px solid rgba(23, 17, 13, 0.10);
    box-shadow:
      0 26px 72px rgba(23, 17, 13, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu__section {
    display: grid;
    gap: 7px;
    padding: 0 0 13px;
    border-bottom: 1px solid rgba(23, 17, 13, 0.08);
  }

  .mobile-menu__section:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .mobile-menu__title {
    margin: 0 0 3px;
    color: var(--accent-dark);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-menu a:not(.btn) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 16px;
    color: #3f352f;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 760;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(23, 17, 13, 0.065);
    box-shadow: 0 6px 14px rgba(23, 17, 13, 0.035);
  }

  .mobile-menu a:not(.btn)::after {
    content: none;
    display: none;
  }

  .mobile-menu a:not(.btn):hover,
  .mobile-menu a:not(.btn):focus-visible {
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-color: rgba(228, 61, 31, 0.16);
  }

  .mobile-menu__cta {
    width: 100%;
    min-height: 52px;
    margin-top: 0;
    flex: 0 0 auto;
  }

  .page-shell {
    padding-top: 112px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 64px;
  }

  .hero__grid {
    gap: 22px;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero-experience {
    margin-top: 14px;
  }

  .expert-card {
    min-height: auto;
  }

  .portrait {
    min-height: 340px;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 66px;
  }

  .page-hero__grid {
    padding: 24px;
    border-radius: 30px;
  }

  .page-hero__title {
    font-size: clamp(34px, 8vw, 48px);
    letter-spacing: -0.026em;
  }

  .page-hero__lead {
    font-size: 17px;
  }

  .page-hero__note {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section--compact {
    padding: 26px 0 64px;
  }

  .section--dark {
    border-radius: 30px;
    margin: 0 8px;
  }

  .section__head {
    margin-bottom: 28px;
  }

  .section__title {
    font-size: clamp(29px, 6vw, 40px);
  }

  .section__text {
    font-size: 16px;
  }

  .service-card {
    min-height: auto;
  }

  .service-table {
    min-width: 680px;
  }

  .cta {
    padding-bottom: 72px;
  }

  .cta__box {
    padding: 26px;
    border-radius: 30px;
  }

  .footer__grid,
  .footer__cols {
    gap: 22px;
  }

  .error-page {
    padding-bottom: 74px;
  }
}

/* Mobile service map on /services */
@media (max-width: 760px) {
  #service-map .service-map-table {
    display: none;
  }

  #service-map .mobile-service-map {
    display: grid;
    gap: 14px;
  }

  .mobile-service-card {
    padding: 18px;
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .mobile-service-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(228, 61, 31, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-service-card h3 {
    margin: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.24;
    font-weight: 850;
    letter-spacing: -0.003em;
  }

  .mobile-service-card dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
  }

  .mobile-service-card dl > div {
    display: grid;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .mobile-service-card dt {
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-service-card dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-service-card a {
    color: #fff;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .mobile-service-card a:hover,
  .mobile-service-card a:focus-visible {
    color: var(--gold);
  }
}

/* Explicit mobile cards for service pages.
   Use these classes when a specific service table is manually duplicated as cards.
   We do not auto-convert all tables through CSS: it loses meaning and breaks labels. */
@media (max-width: 760px) {
  .mobile-hide-on-phone {
    display: none;
  }

  .mobile-info-cards {
    display: grid;
    gap: 14px;
  }

  .mobile-info-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.86);
    border: 1px solid rgba(23, 17, 13, 0.10);
    box-shadow: 0 12px 30px rgba(23, 17, 13, 0.06);
  }

  .section--dark .mobile-info-card {
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .mobile-info-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .section--dark .mobile-info-card__label {
    color: #fff;
    background: rgba(228, 61, 31, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-info-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.24;
    font-weight: 850;
    letter-spacing: -0.003em;
  }

  .section--dark .mobile-info-card h3 {
    color: #fff;
  }

  .mobile-info-card dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
  }

  .mobile-info-card dl > div {
    display: grid;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(23, 17, 13, 0.09);
  }

  .section--dark .mobile-info-card dl > div {
    border-top-color: rgba(255, 255, 255, 0.10);
  }

  .mobile-info-card dt {
    color: var(--accent-dark);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .section--dark .mobile-info-card dt {
    color: rgba(255, 255, 255, 0.54);
  }

  .mobile-info-card dd {
    margin: 0;
    color: #5f554e;
    font-size: 14px;
    line-height: 1.5;
  }

  .section--dark .mobile-info-card dd {
    color: rgba(255, 255, 255, 0.84);
  }

  .mobile-info-card a {
    color: inherit;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .section--dark .mobile-info-card a {
    color: #fff;
  }

  .section--dark .mobile-info-card a:hover,
  .section--dark .mobile-info-card a:focus-visible {
    color: var(--gold);
  }
}

/* Phones */
@media (max-width: 559px) {
  html {
    scroll-padding-top: 104px;
  }

  .page-shell {
    padding-top: 104px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav {
    padding: 9px 0;
  }

  .nav__inner {
    padding: 10px 11px;
    border-radius: 24px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 13px;
  }

  .brand__role {
    font-size: 10px;
  }

  .brand__phone {
    font-size: 13px;
  }

  .mobile-menu-toggle {
    min-width: 82px;
    height: 40px;
    padding: 0 13px;
    gap: 8px;
  }

  .mobile-menu-toggle__text {
    font-size: 12px;
  }

  .mobile-menu-toggle__bars,
  .mobile-menu-toggle__bars i {
    width: 16px;
  }

  .mobile-menu {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    padding: 12px;
    border-radius: 22px;
  }

  .mobile-menu a:not(.btn) {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 58px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero-title {
    gap: 6px;
  }

  .hero-title__eyebrow {
    font-size: 15px;
    letter-spacing: 0.07em;
  }

  .hero-title__main,
  .hero-title__bottom {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.026em;
  }

  .hero__lead,
  .page-hero__lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero__actions,
  .section-actions,
  .error-page__actions,
  .legal-doc__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .section-actions .btn,
  .error-page__actions .btn,
  .legal-doc__actions .btn {
    width: 100%;
  }

  .hero__stats,
  .services,
  .faq-list,
  .tldr-points,
  .process,
  .logos,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 18px;
  }

  .hero-experience {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-experience p {
    font-size: 15px;
  }

  .expert-card {
    padding: 16px;
    border-radius: 30px;
  }

  .portrait {
    min-height: 320px;
    border-radius: 24px;
  }

  .hero-expert-card .portrait__badge {
    padding: 13px 14px;
    border-radius: 0 0 24px 24px;
  }

  .portrait__badge strong {
    font-size: 14px;
  }

  .portrait__badge span {
    font-size: 11px;
  }

  .expert-card__body {
    padding-top: 20px;
  }

  .expert-card__body h2 {
    font-size: 25px;
  }

  .expert-card__body p {
    font-size: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .section--compact {
    padding: 24px 0 58px;
  }

  .section--dark {
    border-radius: 26px;
    margin: 0 6px;
  }

  .section__head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section__title,
  .proof-title {
    font-size: 28px;
    line-height: 1.16;
  }

  .section__text {
    font-size: 15px;
  }

  .tldr-panel {
    padding: 20px;
    border-radius: 26px;
  }

  .tldr-panel__content p {
    font-size: 17px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .service-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }

  .page-hero {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-hero__grid {
    padding: 22px;
    border-radius: 26px;
  }

  .page-hero__title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .page-hero__note {
    padding: 18px;
    border-radius: 22px;
  }

  .breadcrumbs {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .service-table-wrap {
    border-radius: 20px;
  }

  .service-table {
    min-width: 620px;
  }

  .service-table th,
  .service-table td {
    padding: 14px;
    font-size: 14px;
  }

  .faq-item {
    padding: 20px;
    border-radius: 22px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .cta__box {
    padding: 22px;
    border-radius: 26px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-call {
    display: grid;
    text-align: center;
    gap: 16px;
    padding: 20px 18px;
  }

  .cta-call__link {
    width: 100%;
  }

  .cta-call__number {
    white-space: normal;
    font-size: 22px;
  }

  .contact-form {
    padding: 15px;
    border-radius: 24px;
  }

  .field input,
  .field textarea {
    border-radius: 16px;
  }

  .form-consent__label {
    font-size: 12px;
  }

  .legal-doc {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 15px;
  }

  .error-page {
    padding-bottom: 64px;
  }

  .error-page__box {
    border-radius: 30px;
  }

  .error-contact {
    border-radius: 24px;
  }

  .error-contact__phone strong {
    white-space: normal;
  }

  .cookie-banner {
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-banner.is-visible {
    display: grid;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .footer {
    padding-bottom: 28px;
  }

  .footer__bottom {
    gap: 8px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand__role {
    display: none;
  }

  .brand__name {
    font-size: 12px;
  }

  .brand__phone {
    font-size: 12px;
  }

  .hero-title__main,
  .hero-title__bottom {
    font-size: 32px;
  }

  .page-hero__title {
    font-size: 30px;
  }

  .btn {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .mobile-menu a:not(.btn) {
    font-size: 13px;
  }
}

/* Medium screens */
@media (min-width: 560px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .services,
  .logos,
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .tldr-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 900px) {
  .container {
    width: min(calc(100% - 54px), var(--container));
  }

  .nav__links,
  .nav__cta {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.56fr);
    gap: 42px;
    align-items: center;
    padding: 38px;
    border-radius: 42px;
    background:
      radial-gradient(circle at 0% 0%, rgba(228, 61, 31, 0.08), transparent 28rem),
      rgba(255, 250, 241, 0.50);
    border: 1px solid rgba(23, 17, 13, 0.08);
    box-shadow: 0 26px 80px rgba(35, 21, 12, 0.08);
  }

  .hero__actions--center {
    justify-content: center;
  }

  .hero__stats--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__stats--three .stat {
    min-height: 142px;
  }

  .hero-title__main,
  .hero-title__bottom {
    font-size: 56px;
  }

  .hero-expert-card {
    max-width: 420px;
    justify-self: end;
    padding: 22px;
  }

  .hero-expert-card .portrait {
    min-height: 380px;
  }

  .section {
    padding: 102px 0;
  }

  .section--compact {
    padding: 24px 0 96px;
  }

  .section__head {
    grid-template-columns: 1fr 0.82fr;
    align-items: end;
    gap: 42px;
    margin-bottom: 44px;
  }

  .section__title {
    font-size: 44px;
  }

  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .services--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof {
    grid-template-columns: 1fr 0.72fr;
    align-items: stretch;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta {
    padding: 0 0 106px;
  }

  .cta__box {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: stretch;
    gap: 44px;
    padding: 44px;
  }

  .contact-form {
    align-self: center;
  }

  .page-hero {
    padding: 50px 0 92px;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    gap: 34px;
    padding: 38px;
  }

  .page-hero__note {
    align-self: center;
    justify-self: center;
    width: fit-content;
    min-width: min(100%, 320px);
    max-width: 430px;
  }

  .expert-summary {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
    padding: 32px;
  }

  .error-page__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr 0.9fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1180px) {
  .hero-title__main,
  .hero-title__bottom {
    font-size: 58px;
  }

  .section__title {
    font-size: 46px;
  }

  .proof-title {
    font-size: 44px;
  }
}

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

  html.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Mobile polish for service detail pages
   STU is the reference layout
   ========================================================= */

@media (max-width: 760px) {
  .page-hero {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .breadcrumbs {
    margin-bottom: 16px;
    font-size: 12px;
    gap: 6px;
  }

  .page-hero__grid {
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .page-hero__title {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.024em;
  }

  .page-hero__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.56;
  }

  .page-hero .hero__actions {
    margin-top: 22px;
  }

  .page-hero__note {
    padding: 16px;
    border-radius: 20px;
    background:
      radial-gradient(circle at 92% 0%, rgba(228, 61, 31, 0.08), transparent 10rem),
      rgba(255, 250, 241, 0.92);
  }

  .page-hero__note strong {
    font-size: 17px;
  }

  .page-hero__note p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.48;
  }

  .section {
    padding: 48px 0;
  }

  .section--compact {
    padding: 18px 0 48px;
  }

  .section--dark {
    margin: 0 8px;
    border-radius: 26px;
  }

  .section__head {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section__kicker {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .section__title {
    font-size: clamp(26px, 7.8vw, 34px);
    line-height: 1.13;
  }

  .section__text {
    font-size: 15px;
    line-height: 1.55;
  }

  .tldr-panel {
    gap: 15px;
    padding: 18px;
    border-radius: 24px;
  }

  .tldr-panel__label {
    padding: 7px 10px;
    font-size: 11px;
  }

  .tldr-panel__content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .tldr-points {
    gap: 10px;
    margin-top: 16px;
  }

  .tldr-point {
    padding: 15px;
    border-radius: 18px;
  }

  .tldr-point strong {
    font-size: 15px;
  }

  .tldr-point span {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .services,
  .services--two,
  .process,
  .faq-list {
    gap: 12px;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .service-card p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .expert-summary {
    gap: 14px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 24px;
  }

  .expert-summary h2 {
    font-size: 24px;
    line-height: 1.17;
  }

  .expert-summary p {
    font-size: 14px;
    line-height: 1.55;
  }

  .expert-summary .hero__actions {
    margin-top: 18px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 17px;
    border-radius: 20px;
  }

  .step__num {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  .step h3 {
    font-size: 17px;
  }

  .step p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.48;
  }

  .mobile-info-cards {
    gap: 12px;
  }

  .mobile-info-card {
    padding: 17px;
    border-radius: 20px;
  }

  .mobile-info-card__label {
    margin-bottom: 9px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .mobile-info-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .mobile-info-card dl {
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-info-card dl > div {
    padding-top: 10px;
  }

  .mobile-info-card dt {
    font-size: 10px;
  }

  .mobile-info-card dd {
    font-size: 14px;
    line-height: 1.48;
  }

  .faq-item {
    padding: 18px;
    border-radius: 20px;
  }

  .faq-item h3 {
    font-size: 17px;
    line-height: 1.26;
  }

  .faq-item p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.52;
  }

  .cta {
    padding-bottom: 58px;
  }

  .cta__box {
    gap: 22px;
    padding: 20px;
    border-radius: 26px;
  }

  .cta h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.15;
  }

  .cta p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .cta-call {
    margin-top: 22px;
    padding: 17px;
    border-radius: 20px;
  }

  .cta-call__label {
    font-size: 16px;
  }

  .cta-call__hint {
    font-size: 13px;
  }

  .cta-call__link {
    padding: 13px 15px;
    border-radius: 17px;
  }

  .cta-call__number {
    font-size: 20px;
  }

  .contact-form {
    padding: 14px;
    border-radius: 22px;
  }

  .form-grid {
    gap: 9px;
  }

  .field label {
    font-size: 11px;
  }

  .field input,
  .field textarea {
    padding: 13px 14px;
    border-radius: 15px;
  }

  .field textarea {
    min-height: 128px;
  }

  .form-note {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .page-hero__title {
    font-size: 28px;
  }

  .section__title {
    font-size: 25px;
  }

  .service-card,
  .mobile-info-card,
  .faq-item,
  .expert-summary {
    padding: 16px;
  }

  .cta__box {
    padding: 18px;
  }
}

/* =========================================================
   Mobile page overview block
   ========================================================= */

.mobile-page-overview {
  display: none;
}

@media (max-width: 760px) {
  .mobile-page-overview {
    display: grid;
    gap: 14px;
    margin: -20px auto 18px;
    padding: 16px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 92% 0%, rgba(228, 61, 31, 0.08), transparent 12rem),
      rgba(255, 250, 241, 0.90);
    border: 1px solid rgba(23, 17, 13, 0.10);
    box-shadow: 0 14px 34px rgba(23, 17, 13, 0.07);
  }

  .mobile-page-overview__head {
    display: grid;
    gap: 5px;
  }

  .mobile-page-overview__head p {
    width: fit-content;
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-page-overview__head h2 {
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -0.01em;
  }

  .mobile-page-overview__head span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .mobile-page-overview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-page-overview__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 11px;
    padding: 14px;
    border-radius: 20px;
    color: inherit;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(23, 17, 13, 0.08);
    box-shadow: 0 8px 20px rgba(23, 17, 13, 0.045);
  }

  .mobile-page-overview__item span {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--bg-deep);
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
  }

  .mobile-page-overview__item strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.22;
    font-weight: 850;
  }

  .mobile-page-overview__item em {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
    font-style: normal;
  }

  .mobile-page-overview__item:hover,
  .mobile-page-overview__item:focus-visible {
    border-color: rgba(228, 61, 31, 0.20);
    background: #fffaf1;
  }

  .mobile-page-overview__item:hover span,
  .mobile-page-overview__item:focus-visible span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  }
}

@media (max-width: 380px) {
  .mobile-page-overview {
    padding: 14px;
    border-radius: 24px;
  }

  .mobile-page-overview__item {
    padding: 13px;
    border-radius: 18px;
  }

  .mobile-page-overview__head h2 {
    font-size: 20px;
  }
}

/* =========================================================
   Mobile polish for homepage
   ========================================================= */

@media (max-width: 760px) {
  .mobile-home-overview {
    margin-top: -18px;
    margin-bottom: 22px;
  }

  main#top .hero {
    padding-top: 20px;
    padding-bottom: 42px;
  }

  main#top .hero__grid {
    gap: 18px;
  }

  main#top .hero-title {
    gap: 5px;
  }

  main#top .hero-title__eyebrow {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  main#top .hero-title__main,
  main#top .hero-title__bottom {
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.026em;
  }

  main#top .hero__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.56;
  }

  main#top .hero__actions {
    margin-top: 22px;
  }

  main#top .hero__stats {
    gap: 9px;
    margin-top: 22px;
  }

  main#top .stat {
    padding: 15px;
    border-radius: 18px;
  }

  main#top .stat strong {
    font-size: 18px;
  }

  main#top .stat span {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.42;
  }

  main#top .hero-experience {
    margin-top: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  main#top .hero-experience p {
    font-size: 14px;
    line-height: 1.5;
  }

  main#top .hero-expert-card {
    margin-top: 2px;
    padding: 14px;
    border-radius: 26px;
  }

  main#top .hero-expert-card .portrait {
    min-height: 308px;
    border-radius: 22px;
  }

  main#top .hero-expert-card .portrait__badge {
    padding: 10px 12px;
    border-radius: 0 0 22px 22px;
  }

  main#top .hero-expert-card .portrait__badge strong {
    font-size: 14px;
    line-height: 1.2;
  }

  main#top .hero-expert-card .portrait__badge span {
    font-size: 11px;
    line-height: 1.3;
  }

  main#top .portrait__seal {
    width: 34px;
    height: 34px;
  }

  main#top .expert-card__body {
    padding-top: 18px;
  }

  main#top .expert-card__body h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  main#top .expert-card__body p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.52;
  }

  main#top .expert-note {
    margin-top: 13px;
    padding: 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  main#top .expert-card__actions {
    margin-top: 14px;
  }

  main#top .expert-card__link {
    padding: 14px 15px;
    border-radius: 17px;
    font-size: 14px;
  }

  main#top #services .services {
    gap: 11px;
  }

  main#top #services .service-card {
    padding: 17px;
  }

  main#top #proof .proof__panel {
    padding: 18px;
    border-radius: 24px;
  }

  main#top #proof .logos {
    gap: 10px;
    margin-top: 18px;
  }

  main#top #proof .logo-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  main#top #proof .quote {
    padding: 20px;
    border-radius: 24px;
  }

  main#top #proof .quote p {
    font-size: 16px;
    line-height: 1.52;
  }

  main#top #proof .quote__person {
    margin-top: 18px;
    padding-top: 16px;
  }

  main#top #process .process {
    gap: 11px;
  }

  main#top #faq .faq-list {
    gap: 11px;
  }
}

@media (max-width: 380px) {
  main#top .hero-title__main,
  main#top .hero-title__bottom {
    font-size: 30px;
  }

  main#top .hero-expert-card .portrait {
    min-height: 286px;
  }
}

/* =========================================================
   Mobile polish for /services overview page
   ========================================================= */

@media (max-width: 760px) {
  .mobile-services-overview {
    margin-top: -18px;
    margin-bottom: 22px;
  }

  #service-map .section__head {
    margin-bottom: 20px;
  }

  #service-map .mobile-service-map {
    gap: 12px;
  }

  #service-map .mobile-service-card {
    padding: 17px;
    border-radius: 20px;
  }

  #service-map .mobile-service-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  #service-map .mobile-service-card dl {
    gap: 10px;
    margin-top: 14px;
  }

  #service-map .mobile-service-card dl > div {
    padding-top: 10px;
  }

  #service-map .mobile-service-card dd {
    font-size: 14px;
    line-height: 1.48;
  }
}

/* =========================================================
   Mobile polish for /contacts page
   ========================================================= */

@media (max-width: 760px) {
  .mobile-contacts-overview {
    margin-top: -18px;
    margin-bottom: 22px;
  }

  #contact-methods .contact-methods {
    gap: 12px;
  }

  #contact-methods .service-card {
    padding: 17px;
    border-radius: 20px;
  }

  #contact-methods .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  #contact-methods .service-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  #contact-methods .service-card p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* =========================================================
   Real form sending states
   ========================================================= */

.form-status {
  min-height: 0;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(20, 17, 15, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  color: #fff;
  background: rgba(47, 93, 80, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
}

.form-status--error {
  color: #fff;
  background: rgba(20, 17, 15, 0.22);
  border-color: rgba(255, 226, 216, 0.34);
}

.form-website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form.is-sending {
  pointer-events: none;
}

.contact-form.is-sending .btn {
  opacity: 0.78;
}