:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --paper-deep: #efece2;
  --card: #ffffff;
  --line: #e2ddcd;
  --ink-950: #0b1d33;
  --ink-900: #10294a;
  --ink-800: #16345c;
  --blue-600: #2b6cd9;
  --blue-500: #3d82f0;
  --blue-100: #dcebfb;
  --sky-300: #9cc8ee;
  --ink: #1d2b40;
  --muted: #5b6577;
  --shadow: 0 22px 60px rgba(11, 29, 51, 0.14);
  --shadow-soft: 0 10px 30px rgba(11, 29, 51, 0.08);
  --shell: 1140px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Golos Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.1 0 0 0 0 0.18 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.site-header,
.site-footer,
.mobile-bar {
  position: relative;
  z-index: 1;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

h1,
h2 {
  font-family: "Prata", "Georgia", serif;
  font-weight: 400;
}

:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--card);
  color: var(--ink-950);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100% - 40px, var(--shell));
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.96);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: "Prata", "Georgia", serif;
  font-size: 1.12rem;
  color: var(--ink-950);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.brand-name em,
.footer-brand em {
  font-style: normal;
  color: var(--blue-600);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a {
  color: #43506a;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink-950);
  border-bottom-color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}

.language-switch button {
  min-width: 40px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switch button.is-active {
  background: var(--ink-950);
  color: var(--paper);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue-600);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--ink-900);
  transform: translateY(-1px);
}

.header-call svg {
  width: 15px;
  height: 15px;
}

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-900);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-social:hover,
.header-social:focus-visible {
  color: var(--blue-600);
  border-color: rgba(43, 108, 217, 0.42);
  transform: translateY(-1px);
}

.header-social svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-950);
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 20px 22px;
}

.mobile-nav nav {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.mobile-nav nav a {
  padding: 11px 4px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav .button {
  width: 100%;
}

.mobile-nav .button + .button {
  margin-top: 10px;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink-950);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(11, 29, 51, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink-800);
}

.button-telegram {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 14px 30px rgba(43, 108, 217, 0.28);
}

.button-telegram:hover,
.button-telegram:focus-visible {
  background: var(--ink-900);
}

.button-outline {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--line);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--blue-600);
  border-color: rgba(43, 108, 217, 0.42);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 158px 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(61, 130, 240, 0.16), transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(156, 200, 238, 0.18), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-600);
}

.hero h1 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  gap: 2px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--ink-950);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  border-radius: 240px 240px var(--radius) var(--radius);
  border: 10px solid #fff;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -18px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--ink-950);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card svg {
  width: 22px;
  height: 22px;
  color: var(--sky-300);
}

.hero-card strong {
  display: block;
  font-size: 0.94rem;
}

.hero-card span {
  display: block;
  color: rgba(247, 245, 239, 0.75);
  font-size: 0.85rem;
}

/* ---------- Info band ---------- */

.info-band {
  background: var(--ink-950);
  color: var(--paper);
}

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

.info-grid article {
  display: flex;
  gap: 16px;
  padding: 30px 28px;
  border-left: 1px solid rgba(247, 245, 239, 0.12);
}

.info-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.info-grid svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(61, 130, 240, 0.18);
  color: var(--sky-300);
}

.info-grid h2 {
  margin: 0;
  font-family: "Golos Text", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.info-grid p {
  margin: 5px 0 0;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.93rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}

.section-tint {
  background: var(--paper-deep);
}

.section-dark {
  background: var(--ink-950);
  color: var(--paper);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 48px;
  max-width: none;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.16;
}

.section-dark .section-heading h2 {
  color: var(--paper);
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(247, 245, 239, 0.72);
}

.section-dark .eyebrow {
  color: var(--sky-300);
}

.section-dark .eyebrow::before {
  background: var(--sky-300);
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
}

.service-card-wide img {
  height: 100%;
  min-height: 320px;
  max-height: 440px;
}

.service-body {
  padding: 28px;
}

.service-card h3 {
  margin: 0;
  font-family: "Prata", "Georgia", serif;
  font-weight: 400;
  color: var(--ink-950);
  font-size: 1.42rem;
  line-height: 1.25;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-900);
  font-weight: 550;
  font-size: 0.97rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232b6cd9' d='M9.6 15.4 5.9 11.8a1 1 0 0 0-1.4 1.4l4.4 4.4a1 1 0 0 0 1.4 0l9.2-9.2a1 1 0 1 0-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-help {
  margin: 36px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-help a {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.service-help a:hover,
.service-help a:focus-visible {
  text-decoration: underline;
}

/* ---------- Why us ---------- */

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(61, 130, 240, 0.22), transparent 70%);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 32px;
}

.why-grid article {
  border-top: 1px solid rgba(247, 245, 239, 0.16);
  padding-top: 22px;
}

.why-num {
  font-family: "Prata", "Georgia", serif;
  font-size: 1.9rem;
  color: var(--sky-300);
}

.why-grid h3 {
  margin: 14px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--paper);
}

.why-grid p {
  margin: 8px 0 0;
  color: rgba(247, 245, 239, 0.68);
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps-grid li {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.steps-grid h3 {
  margin: 18px 0 0;
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink-950);
}

.steps-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 190px 190px var(--radius) var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.team-card div {
  padding: 22px 24px 26px;
  text-align: center;
}

.team-card h3 {
  margin: 0;
  font-family: "Prata", "Georgia", serif;
  font-weight: 400;
  color: var(--ink-950);
  font-size: 1.3rem;
}

.team-card p {
  margin: 6px 0 0;
  color: var(--blue-600);
  font-weight: 650;
  font-size: 0.95rem;
}

/* ---------- Reviews ---------- */

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.review-layout .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.review-cards {
  display: grid;
  gap: 18px;
}

.review-cards blockquote {
  position: relative;
  margin: 0;
  padding: 30px 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.review-cards blockquote::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  right: 22px;
  font-family: "Prata", "Georgia", serif;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--blue-100);
}

.review-cards p {
  position: relative;
  margin: 0;
  font-size: 1.04rem;
  color: var(--ink);
}

.review-cards cite {
  display: block;
  margin-top: 16px;
  color: var(--ink-950);
  font-style: normal;
  font-weight: 750;
  font-size: 0.95rem;
}

.review-cards cite::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--blue-600);
}

/* ---------- Media ---------- */

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.media-layout h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.16;
}

.media-layout p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.clinic-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-950);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-2px);
}

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  color: var(--ink-950);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-100);
  transition: transform 0.25s ease;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 20px;
}

.contact-panel {
  padding: 40px 38px;
  border-radius: 22px;
  background: var(--ink-950);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.contact-panel .eyebrow {
  color: var(--sky-300);
}

.contact-panel .eyebrow::before {
  background: var(--sky-300);
}

.contact-panel h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.16;
}

.contact-panel > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(247, 245, 239, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

.contact-list a:hover span,
.contact-list a:focus-visible span {
  text-decoration: underline;
}

.contact-list svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--sky-300);
}

.contact-cta {
  margin-top: 30px;
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 14px 30px rgba(43, 108, 217, 0.35);
}

.contact-cta:hover,
.contact-cta:focus-visible {
  background: var(--blue-500);
}

.map-card {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-950);
  color: rgba(247, 245, 239, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0 40px;
}

.footer-brand {
  margin: 0 0 10px;
  font-family: "Prata", "Georgia", serif;
  font-size: 1.5rem;
  color: var(--paper);
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--sky-300);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-grid p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.footer-grid a {
  color: var(--paper);
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(247, 245, 239, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 239, 0.22);
  color: var(--paper);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--sky-300);
  color: var(--sky-300);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

/* ---------- Mobile bar ---------- */

.mobile-bar {
  display: none;
}

/* ---------- Motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy > * {
  animation: fade-up 0.7s ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hero-figure {
  animation: fade-up 0.8s ease 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-copy > *,
  .hero-figure {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 128px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-figure {
    max-width: 560px;
  }

  .hero-figure img {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
  }

  .hero-card {
    left: 14px;
    bottom: 14px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article {
    border-left: 0;
    border-top: 1px solid rgba(247, 245, 239, 0.12);
    padding: 22px 0;
  }

  .info-grid article:first-child {
    border-top: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    display: block;
  }

  .service-card-wide img {
    min-height: 0;
    height: 230px;
  }

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

  .steps-grid,
  .team-grid,
  .review-layout,
  .media-layout,
  .faq-layout,
  .contact-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

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

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .header-social {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 112px 0 52px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 0;
  }

  .hero-proof li {
    padding: 0 18px;
  }

  .hero-proof li:first-child {
    padding-left: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-body {
    padding: 24px 22px;
  }

  .contact-panel {
    padding: 30px 26px;
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
  }

  .team-card img {
    height: 340px;
  }

  .mobile-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: flex;
    box-shadow: 0 -8px 24px rgba(11, 29, 51, 0.16);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 1;
    min-height: 56px;
    padding-bottom: env(safe-area-inset-bottom);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .mobile-bar svg {
    width: 17px;
    height: 17px;
  }

  .mobile-bar-call {
    background: var(--blue-600);
  }

  .mobile-bar-telegram {
    background: var(--ink-950);
  }
}
