:root {
  --ink: #271a2d;
  --muted: #6a5e70;
  --purple: #603070;
  --purple-soft: #a080c0;
  --lavender: #f0e8f5;
  --green: #6e9f45;
  --yellow: #e5bc3c;
  --coral: #d95145;
  --paper: #fffaf7;
  --line: #eadfeb;
  --shadow: 0 18px 50px rgba(65, 39, 75, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: #fff;
  background: var(--purple);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  color: var(--muted);
}

.main-nav a,
.header-call,
.accessibility-toggle,
.button {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--purple);
}

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

.header-call,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

.header-call {
  padding: 0 18px;
  color: white;
  background: var(--purple);
}

.secondary-call {
  color: var(--purple);
  background: #fff;
  border: 1px solid var(--line);
}

.accessibility-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--purple);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.accessibility-toggle:hover {
  border-color: var(--purple-soft);
}

.accessibility-toggle[aria-pressed="true"] {
  color: #fff;
  background: #000;
  border-color: #000;
}

.vision-panel {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 3px solid #000;
}

.vision-panel[hidden] {
  display: none;
}

.vision-panel-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 12px 0;
}

.vision-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vision-control > span {
  color: #000;
  font-size: 16px;
  font-weight: 800;
}

.vision-options {
  display: inline-flex;
  gap: 6px;
}

.vision-options button,
.vision-option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.vision-options button[aria-pressed="true"],
.vision-option-button[aria-pressed="true"] {
  color: #fff;
  background: #000;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 226, 165, 0.38) 0%, rgba(255, 226, 165, 0.18) 22%, rgba(255, 226, 165, 0) 45%),
    linear-gradient(120deg, rgba(240, 232, 245, 0.28) 0%, rgba(255, 238, 224, 0.18) 52%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(255, 250, 247, 0.99) 0%, rgba(255, 250, 247, 0.9) 40%, rgba(255, 250, 247, 0.08) 82%),
    linear-gradient(0deg, rgba(255, 250, 247, 0.7), rgba(255, 250, 247, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(40px, 7vw, 86px) clamp(18px, 6vw, 84px);
  padding-top: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 760;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--purple);
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.12;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4d4153;
  font-size: 18px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(720px, 100%);
  margin-top: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 223, 235, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-trust span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px;
  color: var(--purple);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: var(--purple);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--purple);
  background: #fff;
  border: 1px solid var(--line);
}

.button.max-button,
.max-button {
  color: var(--purple);
  background: #edf8f0;
  border: 1px solid #b9dfc4;
}

.band {
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-inner,
.section,
.contacts,
.visual-band,
.birthday,
.center-space {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section-inner {
  padding: 54px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.two-column p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.intro-layout > p:last-child {
  align-self: center;
  max-width: 620px;
}

.section {
  padding: clamp(70px, 9vw, 116px) 0;
  scroll-margin-top: 24px;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 34px;
}

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

.service-grid,
.team-grid,
.document-grid,
.paid-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.service-card,
.team-grid article,
.document-grid article,
.info-panel,
.paid-grid article,
.quality-grid article {
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  border-top: 6px solid var(--purple);
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.08);
}

.service-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--purple);
  font-weight: 800;
}

.more-services {
  margin-top: 18px;
}

.more-services summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.more-services summary::-webkit-details-marker {
  display: none;
}

.more-services summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
}

.more-services[open] summary::after {
  content: "−";
}

.more-services .service-grid {
  margin-top: 18px;
}

.service-card p,
.team-grid p,
.document-grid p,
.info-panel p,
.paid-grid p,
.quality-grid p {
  margin: 0;
  color: var(--muted);
}

.center-space {
  padding: clamp(70px, 9vw, 116px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.space-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.space-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.space-feature .image-link {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.space-feature .image-link img {
  box-shadow: none;
}

.image-link img {
  transition: filter 180ms ease, transform 180ms ease;
}

.image-link:hover img {
  filter: saturate(1.06);
  transform: translateY(-2px);
}

.space-feature p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.space-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.06);
}

.space-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.space-grid div {
  padding: 22px;
}

.space-grid p {
  margin: 0;
  color: var(--muted);
}

.space-video {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.06);
}

.space-video p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.space-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #120b16;
  border-radius: 8px;
}

.equipment-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  margin-top: 34px;
  padding: clamp(28px, 5vw, 46px);
  background: linear-gradient(135deg, var(--lavender), #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.equipment-block > div > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.equipment-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(160, 128, 192, 0.28);
  border-radius: 8px;
}

.equipment-grid h4 {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 16px;
  line-height: 1.2;
}

.equipment-grid p {
  margin: 0;
  color: var(--muted);
}

.paid-services {
  border-top: 1px solid var(--line);
}

.paid-services-details {
  margin-top: 22px;
}

.paid-services-details > summary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.paid-services-details > summary::-webkit-details-marker {
  display: none;
}

.paid-services-details > summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.paid-services-details[open] > summary::after {
  content: "−";
}

.paid-services-details .price-note {
  margin-top: 22px;
}

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

.paid-grid article {
  background: linear-gradient(180deg, #fff, #fbf6fd);
}

.price-note {
  margin: -10px 0 22px;
  padding: 18px 20px;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-note p {
  margin: 0;
  font-weight: 700;
}

.price-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 14px;
  padding: 0 16px;
  color: #fff;
  background: var(--purple);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.rates-grid {
  display: grid;
  gap: 16px;
}

.rate-card {
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.06);
}

.rate-card h3 {
  color: var(--purple);
}

.rate-card ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.rate-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.rate-card li span {
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.rate-card li strong {
  color: var(--ink);
  white-space: nowrap;
}

.muted-rate {
  background: linear-gradient(180deg, var(--lavender), #fff);
}

.muted-rate p {
  margin: 18px 0 0;
  color: var(--muted);
}

.specialist-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--purple);
  background: var(--lavender);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-grid > .specialist-card:not(.owner-card) {
  display: flex;
  flex-direction: column;
}

.team-grid > .specialist-card:not(.owner-card) .specialist-details {
  margin-top: auto;
}

.owner-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  background: linear-gradient(135deg, #fff, var(--lavender));
}

.owner-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.owner-copy {
  min-width: 0;
}

.owner-copy .button {
  margin-top: 22px;
}

.specialist-details {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.specialist-details summary {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--purple);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.specialist-details summary span {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  text-transform: none;
}

.specialist-details summary::after {
  content: "+";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.specialist-details[open] summary::after {
  content: "−";
}

.specialist-details div {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.specialist-details h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

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

.accent-green {
  border-top-color: var(--green);
}

.accent-yellow {
  border-top-color: var(--yellow);
}

.accent-coral {
  border-top-color: var(--coral);
}

.visual-band,
.birthday,
.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.visual-band {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-copy p:last-child,
.birthday-copy p {
  color: var(--muted);
  font-size: 18px;
}

.visual-band img,
.birthday img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-panel {
  background: var(--lavender);
}

.info-panel.muted {
  background: #fff;
}

.birthday {
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.paid-services-details .birthday {
  width: 100%;
  padding: 42px 0 0;
  border-bottom: 0;
}

.birthday img {
  max-height: 560px;
  object-position: top center;
}

.birthday-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
}

.birthday-gallery img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.birthday-gallery img:first-child {
  aspect-ratio: 16 / 9;
}

.birthday-offer {
  display: block;
  margin: 12px 0 0;
  padding: 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.birthday-stat {
  display: block;
  margin-top: 18px;
  color: var(--purple);
  font-weight: 800;
}

.birthday-program {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(340px, 1.1fr);
  align-items: stretch;
  gap: 16px;
  width: 100%;
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 18px 0 0;
  text-align: left;
  background: transparent;
  border-top: 1px solid var(--line);
}

.birthday-program-main {
  display: grid;
  align-content: center;
  padding: 20px 24px;
  color: var(--purple);
  background: linear-gradient(135deg, rgba(249, 229, 238, 0.94), rgba(241, 232, 246, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.birthday-program h3 {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: clamp(22px, 1.55vw, 28px);
}

.birthday-tags {
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--purple);
  background: transparent;
  border-radius: 0;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.32;
  font-weight: 800;
}

.birthday-program-note {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px 0 14px 2px;
}

.birthday-program p {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.birthday-program-note p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dt {
  font-weight: 800;
}

.price-list dd {
  color: var(--purple);
  font-weight: 800;
  white-space: nowrap;
}

.documents {
  background: #fff;
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
}

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

.documents-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.06);
}

.documents-panel > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.documents-panel > summary::-webkit-details-marker {
  display: none;
}

.documents-panel > summary::after {
  content: "+";
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 999px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.documents-panel[open] > summary::after {
  content: "−";
}

.documents-panel > summary span {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.12;
}

.documents-panel > summary small {
  grid-column: 1;
  color: var(--muted);
  font-size: 16px;
}

.documents-panel .document-grid {
  padding: 0 24px 24px;
}

.documents-card {
  grid-column: auto;
}

.document-grid details {
  min-height: 100%;
}

.document-grid summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.document-grid summary::-webkit-details-marker {
  display: none;
}

.document-grid summary::after {
  content: "+";
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 999px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.document-grid details[open] summary::after {
  content: "−";
}

.document-grid summary span {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.document-grid summary small {
  grid-column: 1;
  color: var(--muted);
  font-size: 15px;
}

.document-grid details > p,
.document-grid details > ul,
.document-grid details > a {
  margin-top: 18px;
}

.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.document-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.document-links a:hover {
  background: #fff;
}

.quality {
  border-top: 1px solid var(--line);
}

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

.quality-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, #fbf6fd);
  box-shadow: 0 12px 34px rgba(75, 47, 88, 0.06);
}

.quality-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--purple);
  font-weight: 800;
}

.quality-grid .price-link {
  margin-top: auto;
}

.faq {
  border-top: 1px solid var(--line);
}

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

.faq-list details {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  font-size: 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 46px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.map-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.map-copy .button {
  margin-top: 24px;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contacts {
  padding: 70px 0;
}

.contacts p {
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-list span {
  grid-column: 1 / -1;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--purple);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  font-weight: 800;
  text-decoration: none;
}

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

.contact-hint {
  margin: 0;
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--purple);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .service-grid,
  .team-grid,
  .paid-grid,
  .rates-grid,
  .space-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-layout,
  .document-grid,
  .space-feature,
  .space-video,
  .equipment-block,
  .owner-card,
  .visual-band,
  .birthday,
  .birthday-gallery,
  .map-section,
  .contacts,
  .two-column {
    grid-template-columns: 1fr;
  }

  .documents-card {
    grid-column: auto;
  }

  .documents-panel .document-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 136px;
  }

  .header-call {
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.9) 50%, rgba(255, 250, 247, 0.22) 100%);
  }

  .hero-content {
    margin: 0 18px 34px;
  }

  .service-grid,
  .team-grid,
  .document-grid,
  .paid-grid,
  .rates-grid,
  .space-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .space-feature {
    padding-bottom: 28px;
  }

  .space-feature img,
  .space-grid img {
    aspect-ratio: 16 / 11;
  }

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

  .owner-card .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .owner-photo {
    max-width: 220px;
  }

  .documents-panel > summary {
    padding: 20px;
  }

  .documents-panel .document-grid {
    padding: 0 20px 20px;
  }

  .contact-list article {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }

  .rate-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}

body.vision-mode {
  --ink: #000;
  --muted: #111;
  --purple: #000;
  --purple-soft: #000;
  --lavender: #fff;
  --green: #000;
  --yellow: #000;
  --coral: #000;
  --paper: #fff;
  --line: #000;
  --shadow: none;
  color: #000;
  background: #fff;
  font-size: 20px;
  line-height: 1.7;
}

body.vision-mode.vision-font-large {
  font-size: 22px;
}

body.vision-mode.vision-font-xlarge {
  font-size: 24px;
}

body.vision-mode.vision-spacing-wide {
  letter-spacing: 0.04em;
  line-height: 1.95;
}

body.vision-mode .site-header {
  background: #fff;
  border-bottom: 3px solid #000;
  backdrop-filter: none;
}

body.vision-mode .site-header,
body.vision-mode .main-nav,
body.vision-mode .header-actions {
  gap: 14px;
}

body.vision-mode .brand img {
  filter: grayscale(1) contrast(1.4);
}

body.vision-mode .hero,
body.vision-mode .band,
body.vision-mode .visual-band,
body.vision-mode .birthday,
body.vision-mode .birthday-program,
body.vision-mode .contacts,
body.vision-mode .map-section,
body.vision-mode .quality,
body.vision-mode .section,
body.vision-mode .payment-layout,
body.vision-mode .documents-panel {
  background: #fff;
}

body.vision-mode .hero::before {
  opacity: 0;
}

body.vision-mode .hero-media {
  opacity: 0.28;
}

body.vision-mode .hero-media::after {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 255, 255, 0.62) 100%);
}

body.vision-mode .main-nav a,
body.vision-mode .eyebrow,
body.vision-mode h1,
body.vision-mode h2,
body.vision-mode h3,
body.vision-mode h4,
body.vision-mode p,
body.vision-mode li,
body.vision-mode summary,
body.vision-mode small,
body.vision-mode label,
body.vision-mode .team-grid p,
body.vision-mode .document-grid p,
body.vision-mode .quality-grid p {
  color: #000;
}

body.vision-mode h1 {
  font-size: clamp(50px, 6vw, 92px);
}

body.vision-mode h2 {
  font-size: clamp(40px, 5vw, 76px);
}

body.vision-mode .main-nav a,
body.vision-mode .button,
body.vision-mode .accessibility-toggle,
body.vision-mode .header-call,
body.vision-mode summary,
body.vision-mode .document-links a,
body.vision-mode .price-link {
  font-size: 19px;
}

body.vision-mode .button,
body.vision-mode .header-call,
body.vision-mode .accessibility-toggle,
body.vision-mode .document-links a,
body.vision-mode .price-link,
body.vision-mode .paid-services-details > summary,
body.vision-mode .document-grid summary::after,
body.vision-mode .specialist-details summary::after {
  border: 2px solid #000;
  box-shadow: none;
}

body.vision-mode .button.primary,
body.vision-mode .button.max-button,
body.vision-mode .header-call,
body.vision-mode .price-link,
body.vision-mode .accessibility-toggle[aria-pressed="true"],
body.vision-mode .paid-services-details[open] > summary,
body.vision-mode .document-grid summary::after,
body.vision-mode .specialist-details summary::after {
  color: #fff;
  background: #000;
}

body.vision-mode .button.secondary,
body.vision-mode .secondary-call,
body.vision-mode .document-links a,
body.vision-mode .paid-services-details > summary {
  color: #000;
  background: #fff;
}

body.vision-mode .service-card,
body.vision-mode .team-grid article,
body.vision-mode .document-grid article,
body.vision-mode .info-panel,
body.vision-mode .paid-grid article,
body.vision-mode .rates-grid article,
body.vision-mode .quality-grid article,
body.vision-mode .space-grid article,
body.vision-mode .space-video,
body.vision-mode .equipment-block,
body.vision-mode .birthday-program,
body.vision-mode .birthday img,
body.vision-mode .birthday-gallery img,
body.vision-mode .contact-list article,
body.vision-mode .faq-list details,
body.vision-mode .map-frame,
body.vision-mode .owner-card,
body.vision-mode .documents-panel,
body.vision-mode .hero-trust {
  border: 2px solid #000;
  box-shadow: none;
}

body.vision-mode .birthday-tags {
  color: #000;
  background: #fff;
  border: 2px solid #000;
}

body.vision-mode .hero-trust span {
  font-size: 16px;
}

body.vision-mode .site-footer,
body.vision-mode .site-footer p {
  color: #fff;
  background: #000;
}

body.vision-mode .image-link:hover img {
  filter: grayscale(1) contrast(1.12);
  transform: none;
}

body.vision-mode.vision-hide-images .hero-media,
body.vision-mode.vision-hide-images .space-feature .image-link,
body.vision-mode.vision-hide-images .space-grid .image-link,
body.vision-mode.vision-hide-images .birthday > img,
body.vision-mode.vision-hide-images .birthday-gallery,
body.vision-mode.vision-hide-images .owner-photo,
body.vision-mode.vision-hide-images video,
body.vision-mode.vision-hide-images .map-frame {
  display: none;
}

body.vision-mode.vision-hide-images .hero {
  min-height: auto;
}

body.vision-mode.vision-hide-images .hero-content {
  margin-top: clamp(34px, 5vw, 70px);
}

body.vision-mode.vision-hide-images .space-feature,
body.vision-mode.vision-hide-images .space-video,
body.vision-mode.vision-hide-images .map-section,
body.vision-mode.vision-hide-images .owner-card {
  grid-template-columns: 1fr;
}

body.vision-mode a:focus-visible,
body.vision-mode button:focus-visible,
body.vision-mode summary:focus-visible {
  outline: 4px solid #000;
  outline-offset: 4px;
}

@media (max-width: 720px) {
  body.vision-mode {
    font-size: 19px;
  }

  body.vision-mode.vision-font-large {
    font-size: 21px;
  }

  body.vision-mode.vision-font-xlarge {
    font-size: 22px;
  }

  .vision-panel-inner {
    align-items: stretch;
  }

  .vision-control,
  .vision-options,
  .vision-options button,
  .vision-option-button {
    flex: 1 1 auto;
  }

  .vision-options button,
  .vision-option-button {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
