:root {
  --teal: #2f9ea0;
  --teal-dark: #247a7c;
  --teal-soft: #e7f5f5;
  --pink: #e8b4c8;
  --ink: #1c1c1c;
  --muted: #6a6a6a;
  --line: #e6e6e6;
  --bg: #ffffff;
  --max: 1180px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; color: var(--muted); }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 0;
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 88px;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  flex-shrink: 0;
}
.brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}
.brand-text small {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
}
.nav-pill {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 999px;
  padding: .7rem 1.35rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  max-width: 820px;
  margin: 0 auto;
}
.nav-pill a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.nav-pill a:hover, .nav-pill a.active { color: var(--teal-dark); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.menu-btn {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer; position: relative;
}
.menu-btn i, .menu-btn i::before, .menu-btn i::after {
  width: 16px; height: 2px; background: var(--ink); display: block; position: relative; border-radius: 2px;
  transition: .2s transform, .2s opacity, .2s top;
}
.menu-btn i::before, .menu-btn i::after { content: ""; position: absolute; left: 0; }
.menu-btn i::before { top: -5px; }
.menu-btn i::after { top: 5px; }
.menu-btn[aria-expanded="true"] i { background: transparent; }
.menu-btn[aria-expanded="true"] i::before {
  top: 0; transform: rotate(45deg);
}
.menu-btn[aria-expanded="true"] i::after {
  top: 0; transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .2rem;
  padding: .5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: absolute;
  left: 0; right: 0; top: 100%;
  z-index: 50;
  max-height: min(70vh, 520px);
  overflow: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .7rem 0; font-weight: 600; border-bottom: 1px solid var(--line); }

@media (min-width: 980px) {
  .nav-pill { display: flex; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.25rem; border-radius: 999px; font-weight: 700; font-size: .88rem;
  border: 0; cursor: pointer; transition: .2s transform, .2s background;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-mint {
  background: #d7ecec;
  color: var(--ink);
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font-weight: 700;
}

/* Page hero / titles */
.page-top { padding: 2.75rem 0 1.5rem; }
.page-top h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 .75rem;
}
.page-top .sub { max-width: 42ch; font-size: 1rem; }

.search-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  justify-content: space-between; margin-bottom: 1.75rem;
}
.search {
  display: flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1rem; min-width: min(100%, 240px);
  background: #fff;
  position: relative;
}
.search input {
  border: 0; outline: 0; font: inherit; width: 100%; background: transparent;
}
.search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-clear {
  width: 22px; height: 22px; border-radius: 50%;
  border: 0; background: #e8f4f4; color: var(--teal-dark);
  font-size: 1rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; flex-shrink: 0;
  padding: 0;
}
.search-clear[hidden] { display: none !important; }
.search-clear:hover { background: var(--teal); color: #fff; }
.search-ico { opacity: .55; flex-shrink: 0; }
.search-right { flex-direction: row; }
.search-right .search-ico { order: 3; }
.search-right input { order: 1; }
.search-right .search-clear { order: 2; }

.catalog-top .search-row {
  align-items: flex-start;
}
.catalog-top h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0 0 .55rem;
}
.catalog-top .sub { margin: 0; max-width: 42ch; }
.catalog-grid-sec { padding-top: 0; }
.catalog-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
}
.breed-card.catalog-breed .label {
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 1rem 1.05rem;
}
.breed-card.catalog-breed .pic {
  aspect-ratio: 1;
  background: #fff;
  border: 0;
}

/* Grids */
.cards-3 {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.cards-auto {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.cat-card, .breed-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: .2s box-shadow, .2s transform;
}
.cat-card:hover, .breed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.cat-card .pic, .breed-card .pic {
  aspect-ratio: 1; background: #fff; overflow: hidden; border: 0;
}
.cat-card .pic img, .breed-card .pic img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.breed-card[data-name*="мейн"] .pic img,
.breed-card[href*="maine-coon"] .pic img {
  object-position: center top;
}
.cat-card .label, .breed-card .label {
  padding: 1rem 1.1rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: center;
}

/* Breed detail */
.breed-detail-sec { padding-top: 1.5rem; }
.breed-layout {
  display: grid; gap: 2.5rem; padding: 1rem 0 3rem;
  align-items: start;
}
.breed-layout-card {
  border: 0;
  border-radius: 28px;
  padding: 0;
  background: transparent;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .breed-layout { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
  .breed-layout-card {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
    gap: 2rem;
    padding: 0;
  }
}
.breed-photo {
  border-radius: 24px; overflow: hidden; background: #fff;
  aspect-ratio: 1; box-shadow: none; border: 1px solid var(--line);
}
.breed-layout-card .breed-photo {
  box-shadow: none;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.breed-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; border: 0; }
.breed-layout-card .breed-photo img { object-fit: cover; }

.breed-price-panel { min-width: 0; padding: .25rem .5rem .5rem; }
.breed-price-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.breed-svc-list { display: flex; flex-direction: column; }
.breed-svc {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.breed-svc:last-child { border-bottom: 0; }
.breed-svc-head {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  margin-bottom: .4rem;
}
.breed-svc-name {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
}
.breed-svc-price {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  white-space: nowrap;
}
.breed-svc-desc {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
  max-width: 42ch;
}
.breed-svc:not(:has(.breed-svc-desc)) .breed-svc-head { margin-bottom: 0; }

.breed-price-acc {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-top: .15rem;
}
.breed-acc {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.breed-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.breed-acc-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}
.breed-acc-icon {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
}
.breed-acc-icon::before,
.breed-acc-icon::after {
  content: "";
  position: absolute;
  background: #1c1c1c;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.breed-acc-icon::before {
  left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%);
}
.breed-acc-icon::after {
  top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%);
}
.breed-acc.open .breed-acc-icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
.breed-acc-body {
  display: none;
  padding: 0 1.2rem 1.15rem;
}
.breed-acc.open .breed-acc-body { display: block; }
.breed-acc .breed-svc:first-child { padding-top: .15rem; }

.pkg {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.pkg:last-child { border-bottom: 0; }
.pkg-head {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  margin-bottom: .65rem;
}
.pkg-head h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.pkg-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--teal-dark);
  white-space: nowrap;
}
.pkg ul { list-style: disc; padding-left: 1.15rem; color: var(--muted); }
.pkg li { margin: .25rem 0; font-size: .95rem; }

/* Shine CTA band */
.shine {
  position: relative;
  text-align: center;
  padding: 4.5rem 0 4rem;
  overflow: visible;
}
.shine-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shine-heading {
  position: relative;
  display: inline-block;
  max-width: min(92vw, 28rem);
  margin: 0 auto 1.5rem;
  text-align: center;
}
.shine h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  max-width: none;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .shine h2 {
    white-space: normal;
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
  }
}
.shine-arrow-img {
  position: absolute;
  left: calc(100% - 0.2rem);
  top: 42%;
  width: 48px;
  height: auto;
  pointer-events: none;
  transform: translateY(-10%);
}
@media (max-width: 700px) {
  .shine-arrow-img {
    left: auto;
    right: -0.25rem;
    top: 70%;
    width: 36px;
  }
}
.shine-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: min(100%, 280px);
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  padding: .85rem 1.25rem .85rem 1.5rem;
  font-weight: 700;
  background: #fff;
  margin: 0 auto 2.25rem;
}
.shine-link span { font-size: 1.05rem; }
.shine-deco {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem;
  margin-top: 0;
}
.shine-deco .deco-asset {
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0 !important;
  outline: 0;
  box-shadow: none;
}
.shine-deco .deco-asset.petal { width: 72px; height: auto; }
.shine-deco .deco-asset.circle { width: 88px; height: 88px; }
.shine-deco .deco-asset.flower { width: 100px; height: auto; }
.shine-deco .deco-asset.stadium { width: 150px; height: auto; }

/* Home hero */
.home-hero-band {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 0% 10%, rgba(140, 200, 215, .55), transparent 62%),
    radial-gradient(ellipse 55% 52% at 100% 18%, rgba(210, 170, 225, .52), transparent 58%),
    radial-gradient(ellipse 50% 45% at 78% 95%, rgba(155, 210, 200, .4), transparent 55%),
    linear-gradient(180deg, #fbfafc 0%, #fff 42%, #fff 100%);
  overflow: visible;
}
.home-hero {
  padding: 1.35rem 0 2rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  overflow: visible;
}
@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
    gap: 1rem 1.5rem;
    padding: 2.25rem 0 2rem;
    min-height: 0;
    align-items: end;
  }
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 36rem;
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: .5rem;
}
.home-eyebrow {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.home-hero h1 {
  font-size: clamp(2.65rem, 5.8vw, 4.5rem);
  margin: 0 0 .95rem;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
}
.home-lead {
  margin: 0 0 1.35rem;
  max-width: 38ch;
  font-size: 1.08rem;
  line-height: 1.48;
  color: #4a4a4a;
}
.home-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}
.home-cta .btn-mint {
  padding: .95rem 1.55rem;
  font-size: .94rem;
  background: #cfebeb;
  box-shadow: 0 10px 28px rgba(60, 150, 150, .22);
}
.home-cta .btn-ghost {
  padding: .9rem 1.3rem;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
}
.home-cta .btn-mint:hover {
  transform: translateY(-1px);
}
.home-cta .btn-mint:active,
.home-cta .btn-ghost:active {
  transform: scale(.97);
}
.home-trust {
  margin: 1.05rem 0 0;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.4;
  color: #6f6f6f;
}
.home-trust span {
  color: #c0c0c0;
  font-weight: 500;
  margin: 0 .4rem;
}
.home-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: .5rem auto 0;
  aspect-ratio: 1 / 1.05;
  max-height: min(480px, 52vh);
  overflow: hidden;
  border-radius: 32px;
  justify-self: center;
  background: #f4f4f4;
  box-shadow:
    0 30px 70px rgba(90, 45, 110, .14),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .home-visual {
    margin: 0;
    max-width: 460px;
    max-height: min(520px, 60vh);
    width: 100%;
    justify-self: end;
    align-self: end;
    padding: 0;
  }
}
.home-visual-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none !important;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  border: 0;
  background: #f4f4f4;
  pointer-events: none;
  user-select: none;
}
video.home-visual-photo {
  object-fit: cover;
  object-position: center 42%;
}
@media (max-width: 899px) {
  .home-hero {
    padding: 1rem 0 1.5rem;
    gap: 1rem;
  }
  .home-hero h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.85rem);
  }
  .home-lead {
    font-size: 1rem;
    margin-bottom: 1.1rem;
  }
  .home-cta {
    width: 100%;
    flex-wrap: nowrap;
    gap: .55rem;
  }
  .home-cta .btn-mint,
  .home-cta .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding-left: .85rem;
    padding-right: .85rem;
    font-size: .82rem;
    white-space: nowrap;
  }
  .home-visual {
    max-width: 300px;
    max-height: 320px;
    aspect-ratio: 1 / 1.05;
    margin-top: .5rem;
  }
}

.section { padding: 3.25rem 0; }
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 1rem;
}

/* Process teal */
.band-teal {
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #4eb0b2 0%, #2f9ea0 45%, #247a7c 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.process-top {
  display: grid; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .process-top { grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: start; }
}
.process-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.pill-word {
  display: inline-block;
  background: #fff;
  color: #1a5f61;
  border-radius: 999px;
  padding: .08em .45em;
  line-height: 1.35;
  vertical-align: baseline;
}
.dots { display: inline-flex; gap: 5px; margin-left: .35rem; vertical-align: middle; }
.dots i {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; display: block;
}
.process-lead {
  color: rgba(255,255,255,.95);
  margin: 0;
  font-size: .98rem;
  text-align: left;
}
@media (min-width: 900px) {
  .process-lead { text-align: left; padding-top: .35rem; }
}
.band-sub {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 .4rem;
  color: #fff;
}
.band-lead {
  color: rgba(255,255,255,.9);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}
.band-lead.tight { margin-bottom: 1.75rem; }
.steps-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  border-radius: 22px;
  padding: 1.15rem 1.15rem 1.15rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,.65) inset,
    0 18px 40px rgba(0,20,30,.14);
  transition: transform .28s ease, box-shadow .28s ease;
  isolation: isolate;
}
.step-card::before {
  content: attr(data-num);
  position: absolute;
  top: -.15rem;
  right: .55rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 3.85rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  opacity: .12;
  color: #0a2a2b;
  pointer-events: none;
  z-index: 0;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.55) inset,
    0 28px 56px rgba(0,20,30,.2);
}
.step-card.tone-cream {
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255,255,255,.85), transparent 55%),
    #f4f0ea;
  --step-icon: #2f9ea0;
}
.step-card.tone-peach {
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255,255,255,.85), transparent 55%),
    #f6ebe4;
  --step-icon: #c4897a;
}
.step-card.tone-mint {
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255,255,255,.8), transparent 55%),
    #dff3f1;
  --step-icon: #2f9ea0;
}
.step-card.tone-lilac {
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255,255,255,.85), transparent 55%),
    #efe7f7;
  --step-icon: #8b7aad;
}
.step-sketch {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 32px;
  height: 32px;
  color: var(--step-icon, var(--teal));
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.step-num {
  align-self: flex-end;
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: #555;
  opacity: .7;
  letter-spacing: .02em;
}
.step-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: .95rem 1rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  color: var(--ink);
}
.step-body h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.step-body p {
  color: #444;
  font-size: .9rem;
  margin: 0;
  line-height: 1.45;
}

/* Why */
.why-banner {
  background: #f4eef8;
  border-radius: 22px 22px 0 0;
  padding: 1.5rem 1.5rem 1.75rem;
}
.why-badge {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: .45rem .95rem;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.why-banner p {
  color: #555;
  margin: 0;
  max-width: 95ch;
  line-height: 1.6;
}
.why-banner strong { color: var(--ink); font-weight: 800; }
.why-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  background: #fff;
}
.why-icon {
  color: var(--teal-dark);
  margin-bottom: .85rem;
}
.why-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 .5rem;
}
.why-card p { margin: 0; font-size: .92rem; }

/* Care bento */
.care-head {
  display: grid; gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 900px) {
  .care-head { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 2rem; }
}
.care-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.care-desc { color: var(--muted); margin: 0; padding-top: .35rem; }
.bento-care {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.bento-nav {
  display: none;
}
@media (max-width: 899px) {
  .bento-care {
    display: flex;
    flex-direction: row;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
  }
  .bento-care::-webkit-scrollbar { display: none; }
  .bento-care > .bento {
    flex: 0 0 min(85%, 320px);
    scroll-snap-align: start;
    min-height: 280px;
  }
  .bento-nav {
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    margin-top: 1rem;
  }
}
@media (min-width: 900px) {
  .bento-care {
    grid-template-columns: 1.35fr .7fr .95fr;
    grid-template-rows: 1fr 1fr;
    min-height: 480px;
  }
  .bento.dogs { grid-row: 1 / span 2; }
  .bento.cats { grid-row: 1 / span 2; }
  .bento.extra { grid-column: 3; grid-row: 1; }
  .bento.consult { grid-column: 3; grid-row: 2; }
}
.bento {
  position: relative;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  display: block;
  min-height: 220px;
}
.bento .pic {
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0;
  margin: 0;
}
.bento .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  display: block;
}
.bento.extra .pic img {
  object-position: center 40%;
}
.bento.dogs,
.bento.cats,
.bento.extra {
  border: 1px solid var(--line);
  box-shadow: none;
  outline: 0;
}
.bento .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.1rem 1.15rem 1.2rem;
  background: linear-gradient(transparent, rgba(255,255,255,.92) 35%, #fff);
}
.bento h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .25rem;
}
.bento p { margin: 0; font-size: .88rem; }
.card-arrow {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  font-size: .9rem; box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.bento.consult {
  background: linear-gradient(180deg, #7ec4c8, var(--teal));
  color: #fff;
  border: 0;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .75rem;
}
.bento.consult h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #fff;
  margin: 0;
}
.bento.consult p { color: rgba(255,255,255,.92); margin: 0; }
.btn-ghost-light {
  background: #fff; color: var(--teal-dark);
  border-radius: 999px; padding: .65rem 1.1rem;
  font-weight: 800; font-size: .85rem; display: inline-flex;
  align-self: flex-start;
}

/* Masters */
.section-head, .masters-head {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem;
}
.masters-tools { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.text-link { font-weight: 600; color: var(--muted); font-size: .95rem; }
.carousel-nav { display: flex; gap: .5rem; }
.carousel-nav.center { justify-content: center; margin-top: 1.25rem; }
.c-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; font-size: 1rem;
}
.c-btn.next { background: #dff1f1; border-color: #dff1f1; }
.masters-carousel { position: relative; }
.master-feature {
  display: none;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 92% 30%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(ellipse 35% 45% at 70% 85%, rgba(47,158,160,.1), transparent 50%),
    #f0e8f0;
}
.master-feature.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.1rem;
}
.master-photo {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #e4d8e2;
  box-shadow: 0 14px 36px rgba(40,20,40,.1);
}
.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.master-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  padding: .2rem .15rem .4rem;
  background: transparent;
  min-width: 0;
}
.master-role {
  display: inline-flex;
  align-items: center;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.95);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 700;
}
.master-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
}
.master-copy p {
  color: #555;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  max-width: none;
}
.master-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .25rem 0 .15rem;
  padding: 0;
  list-style: none;
}
.master-tags li {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 600;
  color: #4a4a4a;
}
.master-copy .btn {
  margin-top: .35rem;
  align-self: flex-start;
  padding: .65rem 1.2rem;
  font-size: .88rem;
}
.master-deco { display: none !important; }
@media (min-width: 720px) {
  .master-feature.is-active {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 0;
  }
  .master-photo {
    border-radius: 0;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    align-self: stretch;
    box-shadow: none;
    position: relative;
  }
  .master-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 18%;
  }
  .master-copy {
    padding: 1.15rem 1.5rem 1.15rem 1.4rem;
    justify-content: center;
    gap: .45rem;
  }
  .master-copy h3 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
  }
  .master-copy p {
    font-size: .88rem;
    max-width: 38ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .master-tags {
    margin: .1rem 0 0;
  }
  .master-tags li {
    padding: .28rem .65rem;
    font-size: .74rem;
  }
}
@media (min-width: 1000px) {
  .master-feature.is-active {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .master-copy {
    padding: 1.25rem 1.85rem 1.25rem 1.6rem;
  }
  .master-copy h3 { font-size: 1.75rem; }
  .master-copy p { max-width: 40ch; }
}

/* Guests head — короткий заголовок слева, лид справа */
.guests-head {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}
.guests-eyebrow {
  margin: 0 0 .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.guests-head .section-title {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.guests-desc {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 34ch;
}
@media (min-width: 860px) {
  .guests-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.5rem;
  }
  .guests-head-main {
    flex: 1 1 auto;
    min-width: 0;
  }
  .guests-desc {
    flex: 0 1 22rem;
    max-width: 22rem;
    font-size: .98rem;
    padding-bottom: .2rem;
  }
}
.guests-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .guests-row { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.guest-card {
  min-width: 0;
}
.guest-card .pic {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: #ebebeb;
}
.guest-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s ease;
}
.guest-card:hover .pic img { transform: scale(1.04); }
.guest-card .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .35rem;
  padding: 2.75rem 0 0 .7rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, .55) 42%,
    #fff 78%
  );
}
.guest-card .breed {
  flex: 1;
  min-width: 0;
  padding: 0 .35rem .85rem 0;
  font-size: clamp(.64rem, 1.1vw, .76rem);
  line-height: 1.2;
  color: var(--muted);
  font-weight: 500;
}
.guest-card .pet-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: .7rem .8rem;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 16px 0 0 0;
  font-size: clamp(.78rem, 1.4vw, .92rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
}

/* Reviews */
.reviews-layout {
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .reviews-layout { grid-template-columns: .35fr 1fr; align-items: start; gap: 2.5rem; }
}
.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.reviews-carousel { position: relative; }
.reviews-nav {
  display: flex;
  gap: .5rem;
  justify-content: flex-start;
  margin-top: 1.25rem;
}
.review-slide {
  display: none;
  gap: 1.25rem;
  align-items: start;
}
.review-slide.is-active { display: grid; }
@media (min-width: 600px) {
  .review-slide.is-active { grid-template-columns: 96px 1fr; }
}
.review-avatar {
  width: 96px; height: 96px; border-radius: 16px; overflow: hidden; background: #e0e0e0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.review-slide h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 800; margin: .5rem 0 .15rem; }
.review-slide .role { color: var(--muted); font-size: .9rem; margin-bottom: .65rem; }
.review-slide .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0;
}

/* FAQ */
.faq-layout {
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .faq-layout { grid-template-columns: .35fr 1fr; align-items: start; gap: 2.5rem; }
}
.faq-list { display: grid; gap: 0; }
.faq-item {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "▾";
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal);
  display: grid; place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: .2s transform;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-a { padding: 0 3rem 1.15rem 0; }
.faq-a p { margin: 0; }

/* Masters / gallery pages */
.person-card .pic { aspect-ratio: 3/4; }
.person-card .body { padding: 1rem 1.1rem 1.3rem; }
.person-card h3 { font-family: var(--sans); font-size: 1.05rem; margin: 0 0 .2rem; font-weight: 700; }
.person-card .role { color: var(--teal-dark); font-weight: 700; font-size: .85rem; margin-bottom: .45rem; }

/* Featured master page */
.master-hero-sec, .master-love-sec { padding: 2.5rem 0 1rem; }
.master-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .master-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .master-split.reverse .master-copy { order: 1; }
  .master-split.reverse .master-photo { order: 2; }
}
.master-split .master-photo {
  border-radius: 24px;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 4/5;
}
.master-split .master-photo img { width: 100%; height: 100%; object-fit: cover; }
.master-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.1rem;
  line-height: 1.15;
}
.master-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.master-lead { font-size: 1.05rem; margin: 0 0 1rem; }
.master-copy p { color: var(--muted); line-height: 1.55; margin: 0 0 1rem; }
.master-copy p strong { color: #1c1c1c; }
.master-badges {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .master-badges { grid-template-columns: 1fr 1fr; }
}
.master-badge {
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.35;
}
.master-badge.teal { background: var(--teal); color: #fff; }
.master-badge.lilac { background: #e8dff5; color: #1c1c1c; }

/* Blog */
.blog-card .pic { aspect-ratio: 16/10; }
.blog-card .body { padding: 1rem 1.1rem 1.3rem; }
.blog-card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; }

/* Blog list (Figma rows) */
.blog-list-sec { padding: 2rem 0 1rem; }
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.blog-row:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .blog-row { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
}
.blog-row-copy h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin: 0 0 .85rem;
  line-height: 1.25;
}
.blog-row-copy h2 a { color: inherit; text-decoration: none; }
.blog-row-copy h2 a:hover { color: var(--teal-dark); }
.blog-row-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 48ch;
}
.blog-more { display: inline-flex; }
.blog-row-pic {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16/11;
}
.blog-row-pic img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.5rem; }
.article-hero {
  border-radius: 24px; overflow: hidden; aspect-ratio: 16/9;
  margin-bottom: 2rem; background: #eee;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

/* Contacts */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.panel {
  border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem;
  background: #fafafa;
}
.panel h3 { font-family: var(--sans); font-size: 1.1rem; font-weight: 800; }
.form { display: grid; gap: .75rem; margin-top: 1rem; }
.form input, .form textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); font: inherit; background: #fff;
}
.form textarea { min-height: 110px; resize: vertical; }

/* Footer */
.footer {
  position: relative;
  background: #3d8f95;
  color: #fff;
  padding: 3.5rem 0 1.75rem;
  margin-top: 0;
  overflow: hidden;
}
.footer a { color: rgba(255,255,255,.92); }
.footer a:hover { color: #fff; }
.footer-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem;
}
.footer-brand img {
  width: 48px; height: 48px; border-radius: 50%; background: #fff; object-fit: cover;
}
.footer-brand strong {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
}
.footer p { color: rgba(255,255,255,.88); font-size: .92rem; }
.footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  opacity: .95;
  font-weight: 700;
}
.footer ul { display: grid; gap: .45rem; font-size: .92rem; }
.footer-mid {
  position: relative;
  margin-top: 2rem;
  min-height: 7rem;
}
.footer-address {
  position: relative;
  z-index: 1;
  text-align: right;
  font-size: .95rem;
  margin-bottom: .25rem;
}
.footer-word {
  position: relative;
  z-index: 0;
  text-align: center;
  pointer-events: none;
  margin-top: -.2rem;
  line-height: 0;
}
.footer-word img {
  width: min(100%, 920px);
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: .85;
}
.footer-bottom {
  position: relative; z-index: 1;
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.25);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .85rem; opacity: .95;
}
.footer-legal { display: grid; gap: .25rem; }
.socials { display: flex; gap: .65rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  display: grid; place-items: center; color: #fff;
}

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.5rem; }
.tabs a {
  padding: .45rem .9rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 700;
}
.tabs a.on { background: var(--teal); color: #fff; border-color: var(--teal); }

.service-cats {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .service-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .service-cats { grid-template-columns: repeat(4, 1fr); }
}
.services-top {
  padding-top: 2.75rem;
  padding-bottom: 1.25rem;
}
.services-top h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 16ch;
  margin-bottom: .65rem;
}
.services-top .sub {
  max-width: 48ch;
  margin: 0;
}
.services-cats-sec { padding-top: 0; padding-bottom: 1rem; }
.svc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  display: block;
  aspect-ratio: 3 / 4;
  transition: .2s box-shadow, .2s transform;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.svc-card .svc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}
.svc-card .svc-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.15rem 1.15rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.92) 38%, #fff 100%);
  z-index: 1;
  min-height: 0;
}
.svc-card h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  line-height: 1.25;
  color: var(--ink);
}
.svc-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}


/* ===== About page ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 52vw, 560px);
  background: #f4f4f4;
}
.about-hero-img {
  width: 100%;
  height: auto;
  min-height: clamp(320px, 52vw, 560px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-hero-baked .about-hero-img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
}
.about-hero-overlay { display: none; }
.about-hero-word,
.about-hero-tags { display: none; }

.about-care {
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.about-care-card {
  max-width: 560px;
  margin: -3.5rem auto 2rem;
  background: #f4eef8;
  border-radius: 24px;
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.about-care-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
}
.about-care-card h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.35rem 0 .65rem;
}
.about-care-card p { color: #555; margin: 0 0 .85rem; }
.about-feat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .about-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .about-feat-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-feat {
  border-radius: 20px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.about-feat.mint { background: #e5f2f2; border-color: transparent; }
.about-feat .pic {
  aspect-ratio: 16/11;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 0;
  margin-bottom: .85rem;
}
.about-feat .pic img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.about-feat p { margin: 0; font-size: .9rem; color: #444; }

.about-stress-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .about-stress-grid {
    grid-template-columns: .38fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.stress-row {
  display: grid;
  gap: .75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.stress-row:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 700px) {
  .stress-row { grid-template-columns: .9fr 1.2fr; gap: 1.5rem; align-items: start; }
}
.stress-row h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}
.stress-row p { margin: 0; font-size: .92rem; }

.about-mosaic { border-top: 1px solid #111; }
.mosaic {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #222;
}
.mosaic.full { min-height: 360px; }
.mosaic img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.mosaic-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
}
.mosaic-copy h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 .4rem;
  color: #fff;
}
.mosaic-copy p { margin: 0; color: rgba(255,255,255,.92); font-size: .92rem; max-width: 52ch; }
.mosaic-split {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #111;
}
@media (min-width: 800px) {
  .mosaic-split { grid-template-columns: 1fr 1fr; }
  .mosaic-split .mosaic + .mosaic { border-left: 1px solid #111; }
}
.mosaic-split + .mosaic,
.mosaic + .mosaic-split { border-top: 1px solid #111; }


/* ===== Contacts page ===== */
.contacts-map-band {
  background: #fff;
  padding: 1.5rem 0 2.5rem;
}
.contacts-map {
  width: 100%;
  min-height: 400px;
  border-radius: 18px;
  overflow: hidden;
}
.contacts-map > ymaps,
.contacts-map iframe {
  border-radius: 18px;
}
.contacts-main { padding-top: 3rem; padding-bottom: 1rem; }
.contacts-ways {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contacts-ways {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.contacts-ways-intro h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  max-width: 12ch;
  line-height: 1.1;
}
.contacts-ways-intro p {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1rem;
}
.contacts-ways-list {
  display: grid;
  gap: 2rem;
}
.ways-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}
.ways-ico { color: var(--ink); padding-top: .15rem; }
.ways-item h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .45rem;
}
.ways-item p {
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .95rem;
}
.ways-phone {
  display: inline-block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}
.ways-link {
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.ways-link:hover { color: var(--teal-dark); }
.contacts-book .contacts-form {
  max-width: 520px;
  margin: 0 auto;
}
.contacts-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 .5rem;
}
.contacts-info .sub { margin-bottom: 1.5rem; }
.contacts-rows {
  display: grid;
  gap: 1.25rem;
}
.contacts-rows h3 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 .35rem;
  color: var(--muted);
  font-weight: 700;
}
.contacts-rows p { margin: 0; color: var(--ink); }
.contacts-form h2 {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 .35rem;
}
.form-lead { margin: 0 0 1rem; font-size: .95rem; }
.form-thanks {
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 700;
}
.panel.contacts-info,
.panel.contacts-form {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
}
