:root {
  --ink: #071316;
  --deep: #0b1d22;
  --paper: #f0eadf;
  --paper-soft: #f7f3ec;
  --white: #fffdf8;
  --accent: #d59a59;
  --accent-dark: #9b6430;
  --line: rgba(7, 19, 22, 0.18);
  --muted: #566065;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.shell { width: min(1420px, calc(100% - 80px)); margin-inline: auto; }
.section-pad { padding-block: clamp(90px, 10vw, 160px); }

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 54% 48%, rgba(213,154,89,.1), transparent 28%),
    linear-gradient(115deg, #071316 0%, #0b1d22 70%, #061013 100%);
  position: relative;
}
.site-header {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  position: relative;
  z-index: 4;
}
.brand { display: inline-flex; flex-direction: column; width: max-content; text-transform: uppercase; }
.brand span { font: 500 27px/1 Georgia, "Times New Roman", serif; letter-spacing: .08em; }
.brand small { margin-top: 8px; font-size: 9px; letter-spacing: .14em; color: var(--accent); }
.site-header nav { display: flex; gap: 36px; font-size: 13px; letter-spacing: .05em; }
.site-header nav a { color: rgba(255,255,255,.78); transition: color .25s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--accent); }
.header-phone { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; }
.header-phone span { font-size: 16px; letter-spacing: .03em; }
.header-phone small { margin-top: 7px; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .12em; }

.hero-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
  gap: 7vw;
  padding: clamp(64px, 8vh, 92px) 0 50px;
  position: relative;
  z-index: 2;
}
.hero-copy { padding: 0; }
.eyebrow, .section-index {
  margin: 0 0 30px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--accent);
}
.hero h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(48px, 4.9vw, 82px); line-height: .98; }
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead { max-width: 680px; margin: 38px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.25vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.button { min-height: 58px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--ink); }
.button-accent:hover { background: #e4ad70; }
.button-ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.button-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-portrait { margin: 0; height: clamp(560px, 60vh, 660px); position: relative; align-self: start; overflow: hidden; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: saturate(.82) contrast(1.04); position: relative; transform: scale(1.2); transform-origin: 50% 30%; }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #071316 0, rgba(7,19,22,.78) 18px, rgba(7,19,22,.24) 58px, transparent 84px),
    linear-gradient(0deg, #071316 0, rgba(7,19,22,.62) 18px, transparent 42px),
    linear-gradient(180deg, transparent 58%, rgba(4,14,17,.72));
  pointer-events: none;
}
.hero-portrait figcaption { position: absolute; z-index: 2; left: 30px; bottom: 28px; display: flex; flex-direction: column; }
.hero-portrait figcaption span { font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.hero-portrait figcaption small { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }

.fact-strip { min-height: 170px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.fact-strip div { padding: 30px 32px 30px 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.14); }
.fact-strip div:not(:first-child) { padding-left: 32px; }
.fact-strip div:last-child { border-right: 0; }
.fact-strip strong { color: var(--accent); font: 400 40px/1 Georgia, "Times New Roman", serif; white-space: nowrap; }
.fact-strip span { max-width: 175px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.58; }

h2 { font-size: clamp(44px, 5vw, 76px); line-height: 1; }
.intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 12vw; }
.intro-copy { padding-top: 54px; }
.intro-copy p { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.intro-copy .large-copy { margin-top: 0; color: var(--ink); font: 400 clamp(25px, 2.2vw, 36px)/1.4 Georgia, "Times New Roman", serif; }

.services { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.section-heading > p { max-width: 540px; margin: 0 0 8px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-heading.compact { grid-template-columns: 1fr; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; }
.audience-card { min-height: 680px; padding: clamp(36px, 5vw, 74px); display: flex; flex-direction: column; }
.light-card { background: var(--white); }
.dark-card { background: var(--deep); color: var(--white); }
.card-kicker { display: flex; align-items: center; gap: 18px; text-transform: uppercase; font-size: 11px; letter-spacing: .2em; }
.card-kicker span { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--accent); }
.audience-card h3 { max-width: 560px; margin: 60px 0 44px; font: 400 clamp(30px, 2.6vw, 42px)/1.2 Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.audience-card ul { list-style: none; margin: 0; padding: 0; }
.audience-card li { position: relative; padding: 15px 0 15px 25px; border-top: 1px solid currentColor; border-color: rgba(7,19,22,.14); font-size: 14px; line-height: 1.45; }
.dark-card li { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.7); }
.audience-card li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); position: absolute; left: 2px; top: 22px; }
.audience-card > a { margin-top: auto; padding-top: 42px; display: flex; justify-content: space-between; border-bottom: 1px solid currentColor; padding-bottom: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-height: 310px; padding: 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.process-grid article:first-child { padding-left: 0; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { color: var(--accent-dark); font: 400 18px Georgia, "Times New Roman", serif; }
.process-grid h3 { margin: auto 0 18px; font: 400 32px Georgia, "Times New Roman", serif; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.practice { background: var(--deep); color: var(--white); }
.practice .section-heading > p { color: rgba(255,255,255,.56); }
.practice-list { border-top: 1px solid rgba(255,255,255,.2); }
.practice-list article { min-height: 300px; display: grid; grid-template-columns: 64px .92fr 1.12fr .78fr; gap: clamp(24px, 3.2vw, 52px); align-items: start; padding-block: 48px; border-bottom: 1px solid rgba(255,255,255,.2); transition: background .3s ease, padding .3s ease; }
.practice-list article:hover { background: rgba(255,255,255,.035); padding-inline: 18px; }
.practice-number { color: var(--accent); font: 400 20px Georgia, "Times New Roman", serif; }
.practice-list small { color: var(--accent); text-transform: uppercase; letter-spacing: .17em; font-size: 10px; }
.practice-list h3 { margin: 14px 0 0; font: 400 clamp(24px, 2.3vw, 36px)/1.2 Georgia, "Times New Roman", serif; }
.practice-story { display: grid; gap: 28px; }
.practice-story div { display: grid; gap: 10px; }
.practice-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.practice-outcome { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; gap: 14px; }
.practice-outcome strong { color: var(--white); font: 400 clamp(24px, 2.1vw, 34px)/1.15 Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
.practice-outcome p { font-size: 13px; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.about-visual { min-width: 0; }
.about-photo { width: 100%; max-width: 520px; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--deep); box-shadow: 0 30px 60px -44px rgba(7,19,22,.55); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: saturate(.88) contrast(1.02); }
.about-statement { padding-top: 54px; }
.about-statement blockquote { margin: 0 0 50px; max-width: 820px; font: 400 clamp(28px, 3vw, 46px)/1.38 Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
.about-statement > p { max-width: 740px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.credentials { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border-top: 1px solid var(--line); }
.credentials div { min-height: 130px; padding: 26px 20px 0 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.credentials div:not(:first-child) { padding-left: 24px; }
.credentials div:last-child { border-right: 0; }
.credentials strong { font: 400 26px Georgia, "Times New Roman", serif; }
.credentials span { margin-top: 12px; color: var(--muted); font-size: 11px; }

.reviews { background: var(--paper-soft); border-top: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.review-card { min-height: 360px; padding: clamp(34px, 4vw, 58px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.5); }
.review-card:nth-child(even) { border-right: 0; }
.review-topline { display: flex; align-items: center; gap: 18px; }
.review-topline > span { color: var(--accent-dark); font: 400 17px Georgia, "Times New Roman", serif; }
.review-topline small { color: var(--muted); text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.review-card blockquote { margin: 52px 0 36px; color: var(--ink); font: 400 clamp(22px, 2vw, 31px)/1.42 Georgia, "Times New Roman", serif; letter-spacing: -.02em; }
.review-card > p { margin: auto 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.reviews-source { min-height: 92px; display: flex; justify-content: space-between; align-items: center; gap: 32px; border-bottom: 1px solid var(--line); }
.reviews-source > span { color: var(--muted); font-size: 12px; }
.reviews-source a { display: inline-flex; align-items: center; gap: 18px; color: var(--accent-dark); text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.reviews-source a:hover { color: var(--ink); }

.consultation { padding-top: 0; }
.consultation-box { padding: clamp(42px, 7vw, 94px); background: var(--accent); display: grid; grid-template-columns: 1fr .8fr; gap: 8vw; align-items: end; }
.consultation-box .section-index { color: var(--ink); opacity: .7; }
.consultation-box p { margin-top: 0; max-width: 540px; font-size: 16px; line-height: 1.75; }
.consultation-facts { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; font-size: 13px; }
.consultation-facts li { position: relative; padding-left: 18px; }
.consultation-facts li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.button-dark { margin-top: 28px; background: var(--ink); color: var(--white); }

.faq { border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font: 400 clamp(22px, 2vw, 30px) Georgia, "Times New Roman", serif; }
summary::-webkit-details-marker { display: none; }
summary b { font: 400 32px Arial, sans-serif; color: var(--accent-dark); transition: transform .25s ease; }
details[open] summary b { transform: rotate(45deg); }
details > p { max-width: 760px; margin: -10px 0 36px; color: var(--muted); line-height: 1.75; }

.contact { background: var(--ink); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.contact-lead { max-width: 570px; margin-top: 40px; color: rgba(255,255,255,.6); font-size: 17px; line-height: 1.8; }
.meeting-facts { display: grid; gap: 0; max-width: 570px; margin-top: 54px; border-top: 1px solid rgba(255,255,255,.22); }
.meeting-facts div { display: grid; grid-template-columns: 145px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.meeting-facts small { color: var(--accent); text-transform: uppercase; font-size: 9px; letter-spacing: .2em; }
.meeting-facts strong { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.78); }

.meeting-form { background: var(--paper-soft); color: var(--ink); padding: clamp(30px, 4vw, 54px); }
.meeting-form-heading { margin-bottom: 34px; }
.meeting-form-heading .section-index { margin-bottom: 16px; color: var(--accent-dark); }
.meeting-form-heading h3 { margin: 0; font: 400 clamp(28px, 2.6vw, 40px)/1.12 Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.meeting-form-heading > p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.meeting-form > label, .meeting-form-row label { display: grid; gap: 8px; margin-top: 18px; }
.meeting-form label > span { color: var(--muted); text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.meeting-form input, .meeting-form select, .meeting-form textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--white); color: var(--ink); font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.meeting-form textarea { min-height: 112px; resize: vertical; line-height: 1.55; }
.meeting-form input:focus, .meeting-form select:focus, .meeting-form textarea:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(155,100,48,.12); }
.meeting-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.meeting-submit { width: 100%; min-height: 60px; margin-top: 24px; padding: 14px 18px; border: 0; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .1em; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.meeting-submit:hover { background: #e4ad70; transform: translateY(-2px); }
.meeting-submit:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.meeting-submit:disabled { opacity: .58; cursor: not-allowed; transform: none; }
.meeting-consent { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 11px !important; margin-top: 20px !important; }
.meeting-consent input { width: 18px; min-height: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent-dark); }
.meeting-consent > span { color: var(--muted) !important; font-size: 11px !important; font-weight: 400 !important; line-height: 1.55; letter-spacing: 0 !important; text-transform: none !important; }
.meeting-consent a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.meeting-form-status { min-height: 20px; margin: 14px 0 0; color: var(--accent-dark); font-size: 12px; line-height: 1.5; }
.meeting-form-status.is-error { color: #9b3228; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.meeting-form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.contact-options { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 72px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-options a { min-height: 140px; padding: 0 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-options a:first-child { padding-left: 0; }
.contact-options a:last-child { border-right: 0; padding-right: 0; }
.contact-options small { grid-column: 1; color: var(--accent); text-transform: uppercase; font-size: 10px; letter-spacing: .18em; }
.contact-options strong { grid-column: 1; min-width: 0; overflow-wrap: anywhere; font: 400 clamp(19px, 1.8vw, 29px) Georgia, "Times New Roman", serif; }
.contact-options > a > span { grid-column: 2; grid-row: 1 / 3; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; color: var(--accent); transition: background .25s ease; }
.contact-options a:hover > span { background: var(--accent); color: var(--ink); }
.address-row { margin-top: 64px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: 1.4fr 1.2fr .7fr; gap: 50px; }
.address-row p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }
.address-row span { display: block; margin-bottom: 8px; color: var(--accent); text-transform: uppercase; font-size: 9px; letter-spacing: .2em; }

footer { background: #030a0c; color: rgba(255,255,255,.55); padding: 55px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr .9fr auto; gap: 34px; align-items: end; }
.footer-brand span { color: var(--white); }
.footer-grid p { margin: 0; font-size: 11px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.footer-links a:hover { color: var(--accent); }
.footer-messengers a { color: rgba(255,255,255,.82); }

.mobile-call-button { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-portrait { animation: reveal .8s ease both; }
  .hero-portrait { animation-delay: .16s; }
  @keyframes reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 1050px) {
  .shell { width: min(100% - 44px, 920px); }
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 36px; }
  .hero-grid { padding: 72px 0 36px; }
  .hero-copy { padding: 0; }
  .hero-portrait { height: 560px; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact-strip div:nth-child(2) { border-right: 0; }
  .fact-strip div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .section-heading, .about-grid, .intro, .contact-grid { gap: 6vw; }
  .practice-list article { grid-template-columns: 48px .88fr 1fr .72fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 620px); }
  .section-pad { padding-block: 78px; }
  .site-header { min-height: 88px; }
  .brand span { font-size: 22px; }
  .header-phone small { display: none; }
  .header-phone span { font-size: 13px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .hero-grid { padding: 72px 0 24px; }
  .hero-copy { padding: 0 0 52px; }
  .hero h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero h1 span { white-space: normal; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-portrait { width: calc(100% + 30px); height: 520px; margin-left: -15px; }
  .hero-portrait img { transform: none; }
  .hero-portrait::after { background: linear-gradient(180deg, transparent 54%, rgba(4,14,17,.8)); }
  .fact-strip { grid-template-columns: 1fr 1fr; width: 100%; }
  .fact-strip div { padding: 22px 15px !important; flex-direction: column; align-items: flex-start; gap: 8px; }
  .fact-strip strong { font-size: 28px; }
  .fact-strip span { font-size: 13px; line-height: 1.5; }
  .intro, .section-heading, .about-grid, .contact-grid, .consultation-box { grid-template-columns: 1fr; }
  .intro-copy, .about-statement { padding-top: 0; }
  .about-grid { gap: 46px; }
  .about-photo { max-width: none; }
  .section-heading { align-items: start; margin-bottom: 46px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 630px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { min-height: 250px; border-bottom: 1px solid var(--line); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:first-child { padding-left: 30px; }
  .practice-list article { grid-template-columns: 38px 1fr; gap: 20px; padding: 34px 0; }
  .practice-title, .practice-story, .practice-outcome { grid-column: 2; }
  .practice-story { margin-top: 8px; }
  .practice-outcome { margin-top: 8px; padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .credentials { grid-template-columns: 1fr; }
  .credentials div, .credentials div:not(:first-child) { min-height: 100px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .consultation-box { gap: 40px; }
  .contact-options { grid-template-columns: 1fr; margin-top: 54px; }
  .contact-options a, .contact-options a:first-child, .contact-options a:last-child { padding-inline: 0; border-right: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 320px; border-right: 0; }
  .reviews-source { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; padding-block: 24px; }
  .address-row { grid-template-columns: 1fr; gap: 28px; margin-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }

  .mobile-call-button {
    position: fixed;
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 100;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(3,10,12,.34);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-call-button::before {
    content: "";
    position: absolute;
    inset: -1px;
    border: 2px solid rgba(213,154,89,.7);
    border-radius: inherit;
    animation: mobile-call-pulse 2.1s ease-out infinite;
    pointer-events: none;
  }
  .mobile-call-button span {
    position: relative;
    z-index: 1;
    font: 400 29px/1 Arial, sans-serif;
    transform: rotate(-18deg);
  }
  .mobile-call-button:active { transform: scale(.95); }
  .mobile-call-button:focus-visible { outline: 3px solid var(--white); outline-offset: 4px; }
}

@media (max-width: 430px) {
  .header-phone span { font-size: 0; }
  .header-phone span::after { content: "Позвонить"; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip div { border-right: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { border-right: 0; }
  .meeting-form-row { grid-template-columns: 1fr; gap: 0; }
  .meeting-facts div { grid-template-columns: 1fr; gap: 8px; }
}

@keyframes mobile-call-pulse {
  0% { opacity: .72; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.48); }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-call-button::before { animation: none; }
}


/* Юридические страницы */
.legal-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.legal-header .brand { color: var(--ink); }
.legal-back { color: var(--muted); font-size: 13px; }
.legal-back:hover { color: var(--accent-dark); }
.legal-page { width: min(820px, calc(100% - 48px)); margin-inline: auto; padding: 72px 0 110px; }
.legal-page h1 { margin: 0; font: 400 clamp(38px, 6vw, 66px)/1.04 Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
.legal-meta { margin: 22px 0 48px; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.legal-page h2 { margin: 46px 0 14px; font: 400 clamp(24px, 3vw, 32px)/1.2 Georgia, "Times New Roman", serif; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-page p { margin: 0 0 16px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-box { margin: 34px 0; padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.legal-footer { padding: 34px 0; background: var(--ink); color: rgba(255,255,255,.68); }
.legal-footer .shell { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12px; }
.legal-footer a:hover { color: var(--accent); }
@media (max-width: 760px) { .legal-page { width: min(100% - 30px, 620px); padding: 50px 0 80px; } .legal-header { min-height: 76px; } }
