:root {
  --cream: #fbf7ef;
  --porcelain: #fffdf8;
  --ink: #312b25;
  --muted: #756e63;
  --moss: #687464;
  --sage: #aeb9a4;
  --clay: #b87963;
  --blush: #e7c7ba;
  --linen: #efe5d6;
  --line: rgba(49, 43, 37, 0.14);
  --shadow: 0 24px 70px rgba(71, 58, 45, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

a,
button,
input {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 140ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(104, 116, 100, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 14px;
  padding: 14px clamp(18px, 5vw, 64px) 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 8px 16px rgba(71, 58, 45, 0.1));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.header-phone {
  display: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--ink);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(104, 116, 100, 0.28);
  border-radius: 999px;
  padding: 0 17px;
  background: var(--porcelain);
  color: var(--moss);
  font-size: 14px;
  font-weight: 700;
}

.header-cta-muted {
  min-width: 64px;
  border-color: rgba(184, 121, 99, 0.24);
  color: var(--clay);
}

.header-cta:active,
.btn:active {
  transform: scale(0.98);
}

.site-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(max-content, 1fr));
  overflow-x: auto;
  border-radius: 8px;
  background: var(--moss);
  scrollbar-width: none;
}

.site-tabs::-webkit-scrollbar {
  display: none;
}

.site-tabs a {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  color: var(--porcelain);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.site-tabs a:hover {
  background: rgba(255, 253, 248, 0.1);
}

.section,
.lead-section,
.contacts-map {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.hero {
  display: grid;
  gap: 34px;
  align-items: center;
  padding-top: clamp(28px, 5vw, 56px);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--porcelain);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(71, 58, 45, 0.14);
}

.eyebrow {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 600;
  line-height: 0.92;
}

h2 {
  font-size: clamp(36px, 9vw, 62px);
  font-weight: 600;
  line-height: 0.98;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 22px);
  line-height: 1.55;
}

.button-row,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  border: 1px solid var(--moss);
  background: var(--moss);
  color: #fffdf8;
}

.btn-primary:hover {
  background: #566252;
}

.btn-secondary {
  border: 1px solid rgba(184, 121, 99, 0.42);
  background: rgba(255, 253, 248, 0.72);
  color: var(--clay);
}

.btn-secondary:hover {
  border-color: var(--clay);
  background: var(--porcelain);
}

.btn-compact {
  width: fit-content;
  min-height: 46px;
  padding-inline: 18px;
}

.hero-photo {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}

.lead-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(184, 121, 99, 0.18);
  border-radius: 26px;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.hero-photo figcaption {
  display: grid;
  gap: 2px;
  padding: 14px 0 0;
  text-align: center;
}

.hero-photo figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1;
}

.hero-photo figcaption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.story-strip {
  display: grid;
  gap: 22px;
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
  border-block: 1px solid var(--line);
}

.story-strip p,
.section-head p,
.split p,
.section-cta p,
.lead-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.story-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(104, 116, 100, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 253, 248, 0.72);
}

.story-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.story-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.inline-cta {
  display: flex;
  align-items: center;
}

.split {
  display: grid;
  gap: 28px;
}

.fact-list,
.safety-list {
  display: grid;
  gap: 12px;
}

.fact-list div,
.safety-list div {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.fact-list strong,
.safety-list strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 600;
}

.fact-list span,
.safety-list span {
  color: var(--muted);
  line-height: 1.55;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin-bottom: 28px;
}

.section-cta {
  justify-content: space-between;
  margin-top: 18px;
  border: 1px solid rgba(104, 116, 100, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(174, 185, 164, 0.13);
}

.section-cta p {
  max-width: 620px;
}

.process {
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--porcelain);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--linen);
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
}

.steps p,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.safety {
  align-items: start;
}

.price-band {
  border-radius: 18px;
  padding-inline: clamp(18px, 4vw, 42px);
  background: var(--porcelain);
  box-shadow: 0 10px 28px rgba(71, 58, 45, 0.1);
}

.price-intro {
  display: grid;
  gap: 24px;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.price-intro .section-head {
  margin-bottom: 0;
  max-width: 720px;
}

.price-poster {
  display: block;
  width: min(100%, 560px);
}

.price-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.care-showcase {
  width: 100%;
  padding: clamp(44px, 7vw, 84px) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #e8dccb;
}

.care-showcase-head {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  gap: 18px;
  margin: 0 auto 22px;
}

.care-showcase-head h2 {
  max-width: 850px;
}

.care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.care-slider-frame {
  position: relative;
}

.care-slider {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.care-slider::-webkit-scrollbar {
  display: none;
}

.care-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(49, 43, 37, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  box-shadow: 0 4px 8px rgba(49, 43, 37, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.care-arrow:hover {
  border-color: rgba(104, 116, 100, 0.34);
  background: var(--moss);
  color: #fffdf8;
}

.care-arrow:focus-visible {
  outline: 3px solid rgba(184, 121, 99, 0.34);
  outline-offset: 4px;
}

.care-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.care-arrow span {
  display: block;
  margin-top: -3px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.care-arrow-prev {
  left: clamp(14px, 3vw, 38px);
}

.care-arrow-next {
  right: clamp(14px, 3vw, 38px);
}

.care-slide {
  position: relative;
  min-height: min(900px, 82svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--linen);
}

.care-slide::before {
  content: "";
  position: absolute;
  inset: -26px;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  opacity: 0.32;
  transform: scale(1.04);
}

.care-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(49, 43, 37, 0.16), rgba(251, 247, 239, 0.16), rgba(49, 43, 37, 0.12));
}

.care-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1680px);
  height: min(900px, 82svh);
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(49, 43, 37, 0.16));
}

.care-scroll-note {
  width: min(1180px, calc(100% - 36px));
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  padding: 0 18px 18px;
}

.lead-section {
  position: relative;
  display: grid;
  gap: 28px;
  margin-block: clamp(40px, 8vw, 96px);
  border-radius: 22px;
  padding: clamp(24px, 6vw, 52px);
  background: #e8dccb;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-copy {
  display: grid;
  gap: 16px;
}

.lead-note {
  display: grid;
  gap: 3px;
  width: fit-content;
  border-left: 3px solid var(--clay);
  padding-left: 14px;
}

.lead-note a {
  color: var(--moss);
  font-size: 20px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(49, 43, 37, 0.12);
  border-radius: 12px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.82);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  min-height: 52px;
  border: 1px solid rgba(49, 43, 37, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--porcelain);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--moss);
}

.consent a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-btn {
  width: 100%;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  min-height: 18px;
  color: #9d3f30;
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 18px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
}

.form-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contacts-map {
  position: relative;
  display: grid;
  gap: 0;
  margin-block: clamp(40px, 8vw, 96px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contacts-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(49, 43, 37, 0.72);
  color: var(--porcelain);
}

.contacts-card h2 {
  color: var(--porcelain);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-lines div {
  display: grid;
  gap: 4px;
}

.contact-lines span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.contact-lines strong,
.contact-lines a {
  color: var(--porcelain);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

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

.contacts-card .btn-secondary {
  border-color: rgba(255, 253, 248, 0.34);
  color: var(--porcelain);
}

.map-frame {
  min-height: 360px;
  background: var(--linen);
}

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

.footer {
  display: grid;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--moss);
  font-weight: 800;
}

.policy-page {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.policy-page .section-link {
  color: var(--moss);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.policy-page h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 10vw, 72px);
}

.policy-page h2 {
  margin: 30px 0 10px;
  font-size: 34px;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-page ul {
  margin-left: 20px;
  list-style: disc;
}

@media (min-width: 760px) {
  .hero-kicker img {
    display: none;
  }

  .header-phone {
    display: inline-flex;
  }

  .hero,
  .split,
  .lead-section {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  }

  .story-strip {
    grid-template-columns: 0.9fr 1fr;
    align-items: start;
  }

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

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

  .steps li {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .contacts-map {
    grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr);
  }

  .contacts-card {
    min-height: 420px;
  }

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

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .header-main {
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    min-width: 66px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .header-cta-muted {
    min-width: 56px;
  }

  .site-tabs {
    margin-inline: -4px;
    grid-template-columns: repeat(5, max-content);
  }

  .site-tabs a {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .section,
  .lead-section,
  .contacts-map {
    width: min(100% - 28px, 1120px);
  }

  .care-showcase-head {
    width: min(100% - 28px, 1120px);
  }

  .care-slide {
    min-height: 76svh;
  }

  .care-slide img {
    width: 100%;
    height: 72svh;
  }

  .care-arrow {
    width: 48px;
    height: 48px;
  }

  .care-arrow span {
    font-size: 36px;
  }

  .care-scroll-note {
    width: min(100% - 28px, 1120px);
    text-align: left;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(44px, 12.5vw, 92px);
  }

  .btn {
    width: 100%;
  }

  .btn-compact {
    width: 100%;
  }

  .section-cta {
    display: grid;
  }

}
