.pet-contacts {
  --pc-bg: #f6f2ec;
  --pc-surface: #fffdf9;
  --pc-surface-soft: #eee6db;
  --pc-text: #1e2522;
  --pc-muted: #66706b;
  --pc-border: rgba(66, 58, 48, 0.16);
  --pc-accent: #48685c;
  --pc-accent-dark: #30483f;
  --pc-warm: #8a684a;
  --pc-radius-lg: 28px;
  --pc-radius-md: 18px;
  --pc-shadow: 0 22px 70px rgba(48, 37, 24, 0.10);
  color: var(--pc-text);
  font-family: inherit;
}
.pet-contacts *,
.pet-contacts *::before,
.pet-contacts *::after {
  box-sizing: border-box;
}
.pet-contacts a {
  color: inherit;
}
.pc-shell {
  max-width: 1180px;
  margin: 0 auto;
}
.pc-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 6vw, 64px);
  border-radius: var(--pc-radius-lg);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #f7efe3 0%, #e5d9ca 58%, #d7c8b5 100%);
  box-shadow: var(--pc-shadow);
  border: 1px solid rgba(255,255,255,0.6);
}
.pc-eyebrow {
  margin: 0 0 16px;
  color: var(--pc-warm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pc-hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--pc-text);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 760;
}
.pc-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #3f4843;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}
.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.pc-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--pc-accent-dark);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(48, 72, 63, 0.22);
}
.pc-button:hover {
  background: #243a32;
  color: #fff !important;
}
.pc-helper {
  margin: 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.5;
}
.pc-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 280px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.74);
  backdrop-filter: blur(10px);
}
.pc-hero-card strong {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.pc-hero-card span {
  display: block;
  margin-top: 8px;
  color: var(--pc-muted);
  line-height: 1.55;
}
.pc-section {
  margin-top: clamp(28px, 5vw, 56px);
}
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pc-card {
  min-height: 172px;
  padding: 24px;
  border-radius: var(--pc-radius-md);
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  box-shadow: 0 10px 34px rgba(45, 35, 24, 0.055);
}
.pc-card-label {
  display: block;
  margin-bottom: 14px;
  color: var(--pc-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pc-card-value {
  display: block;
  color: var(--pc-text);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
}
.pc-card-value a {
  text-decoration: none;
}
.pc-card-value a:hover {
  color: var(--pc-accent);
}
.pc-card-note {
  margin: 14px 0 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.5;
}
.pc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}
.pc-panel {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--pc-radius-lg);
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
}
.pc-panel.is-muted {
  background: #ede5da;
}
.pc-section-title {
  margin: 0 0 12px;
  color: var(--pc-text);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.pc-section-lead {
  margin: 0;
  color: var(--pc-muted);
  font-size: 17px;
  line-height: 1.65;
}
.pc-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.pc-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #36413b;
  line-height: 1.55;
}
.pc-step b {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pc-accent);
  color: #fff;
  font-size: 14px;
}
.pc-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.pc-districts li {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(72, 104, 92, 0.10);
  color: #2f4b41;
  font-weight: 700;
  font-size: 14px;
}
.pc-map {
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid var(--pc-border);
  background: var(--pc-surface-soft);
  box-shadow: var(--pc-shadow);
}
.pc-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.pc-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pc-faq article {
  padding: 24px;
  border-radius: var(--pc-radius-md);
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
}
.pc-faq h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.pc-faq p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.6;
}
.pc-final {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--pc-radius-lg);
  background: #253a33;
  color: #fff;
}
.pc-final h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.pc-final p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.pc-final .pc-button {
  flex: 0 0 auto;
  background: #fff;
  color: #253a33 !important;
  box-shadow: none;
}
@media (max-width: 980px) {
  .pc-hero,
  .pc-split {
    grid-template-columns: 1fr;
  }
  .pc-grid,
  .pc-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc-final {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .pc-hero {
    padding: 26px;
    border-radius: 22px;
  }
  .pc-hero h1 {
    font-size: clamp(42px, 16vw, 62px);
  }
  .pc-grid,
  .pc-faq {
    grid-template-columns: 1fr;
  }
  .pc-card {
    min-height: auto;
  }
  .pc-map iframe {
    height: 340px;
  }
}


.pc-map {
  position: relative;
}
.pc-map-fallback {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 6px;
  max-width: 520px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,253,249,0.92);
  border: 1px solid var(--pc-border);
  box-shadow: 0 12px 30px rgba(45, 35, 24, 0.12);
  color: var(--pc-text);
}
.pc-map-fallback span {
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.45;
}
.pc-map-fallback a {
  color: var(--pc-accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.pc-map-fallback a:hover {
  text-decoration: underline;
}


.pc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.4;
}
.pc-breadcrumbs a {
  color: var(--pc-accent-dark);
  text-decoration: none;
  font-weight: 700;
}
.pc-breadcrumbs a:hover {
  text-decoration: underline;
}
.pc-breadcrumbs span[aria-current="page"] {
  color: var(--pc-muted);
}
