@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #f8f1e7;
  --porcelain: #fffdf8;
  --ink: #2f2924;
  --muted: #5f5b57;
  --sage: #667566;
  --sage-dark: #526252;
  --teal: #285b5f;
  --clay: #b66f58;
  --rose: #ead2c9;
  --linen: #eadfcc;
  --line: rgba(47, 41, 36, 0.14);
  --shadow: 0 24px 70px rgba(65, 53, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(234, 210, 201, 0.34), transparent 520px),
    var(--cream);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(40, 91, 95, 0.32);
  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(248, 241, 231, 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: 0;
  color: var(--ink);
}

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

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

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

.brand strong,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: 0;
}

.brand strong {
  font-size: 22px;
  line-height: 1;
}

.brand small {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.2;
}

.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: 700;
  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(102, 117, 102, 0.28);
  border-radius: 999px;
  padding: 0 17px;
  background: var(--porcelain);
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
}

.header-cta-muted {
  min-width: 64px;
  border-color: rgba(182, 111, 88, 0.28);
  color: var(--clay);
}

.site-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(max-content, 1fr));
  overflow-x: auto;
  border-radius: 8px;
  background: var(--teal);
  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: 700;
  white-space: nowrap;
}

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

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

.section {
  padding: clamp(92px, 9vw, 120px) 0;
}

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

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.06;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.08;
}

.lead {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 3.4vw, 22px);
  line-height: 1.75;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  max-width: 560px;
}

.hero-benefits span {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.7;
}

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

.btn {
  appearance: none;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--sage-dark);
}

.btn-secondary {
  border: 1px solid rgba(182, 111, 88, 0.44);
  background: rgba(255, 253, 248, 0.74);
  color: var(--clay);
}

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

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

.hero-photo {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(8px, 1.6vw, 16px);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.5);
}

.hero-photo img,
.wide-photo img,
.safety-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-photo figcaption {
  display: grid;
  gap: 2px;
  margin-top: 12px;
  text-align: center;
}

.hero-photo figcaption strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}

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

.intro-strip,
.safety-section {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  border-block: 1px solid var(--line);
  padding-top: clamp(56px, 6vw, 84px);
  padding-bottom: clamp(56px, 6vw, 84px);
}

.wide-photo,
.safety-photo {
  height: clamp(420px, 52vw, 560px);
  margin: 0;
  overflow: hidden;
  border: clamp(8px, 1.4vw, 16px) solid rgba(255, 253, 248, 0.5);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.5);
  box-shadow: 0 16px 44px rgba(65, 53, 43, 0.1);
}

.wide-photo img {
  object-position: 50% 36%;
}

.intro-panel,
.price-card,
.contacts-card {
  border: 1px solid rgba(102, 117, 102, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.intro-panel {
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vw, 28px);
  min-height: clamp(420px, 52vw, 560px);
  padding: clamp(22px, 4vw, 44px);
}

.intro-panel p,
.section-head p,
.safety-copy p,
.service-gallery p,
.contacts-card > p,
.faq p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.intro-panel p,
.safety-copy p,
.contacts-card > p,
.section-head p {
  margin-bottom: 0;
}

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

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

.fact-list strong {
  position: relative;
  padding-left: 28px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
}

.fact-list strong::before,
.safety-icons div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--teal);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

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

.visit-steps {
  display: grid;
  gap: 14px;
}

.visit-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.visit-steps b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(40, 91, 95, 0.1);
  color: var(--teal);
  font-size: 16px;
}

.visit-steps strong,
.visit-steps span {
  display: block;
}

.visit-steps strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

.visit-steps span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.fit-section {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  border-block: 1px solid var(--line);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.fit-photo {
  height: clamp(400px, 50vw, 540px);
  margin: 0;
  overflow: hidden;
  border: clamp(8px, 1.4vw, 16px) solid rgba(255, 253, 248, 0.5);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.5);
  box-shadow: 0 16px 44px rgba(65, 53, 43, 0.1);
}

.fit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.fit-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

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

.situation-grid div {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 18px 48px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}

.situation-grid div::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
}

.fit-cta {
  width: fit-content;
  margin-top: 4px;
}

.services-band {
  width: 100%;
  padding: clamp(96px, 9vw, 120px) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #e6ddcf;
}

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

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

.service-gallery {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  gap: 16px;
  margin-inline: auto;
}

.service-gallery article {
  min-height: 420px;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 14px 38px rgba(65, 53, 43, 0.1);
}

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

.service-gallery article:nth-child(2) img {
  object-position: 48% 42%;
}

.service-gallery article:nth-child(1) img {
  object-position: 54% 48%;
}

.service-gallery article:nth-child(3) img {
  object-position: 50% 38%;
}

.service-gallery div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.service-gallery p {
  margin-bottom: 0;
}

.service-gallery em {
  font-style: italic;
}

.price-section {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.price-columns {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
}

.price-head {
  max-width: 980px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.price-card-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.price-card-head > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(40, 91, 95, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 22px rgba(61, 50, 42, 0.12);
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
  overflow: hidden;
}

.price-card-head img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.price-card-accent .price-card-head > span {
  background: rgba(182, 111, 88, 0.18);
  color: var(--clay);
}

.price-card-spa .price-card-head > span {
  background: rgba(102, 117, 102, 0.14);
  color: var(--sage);
}

.price-card h3 {
  color: var(--teal);
  font-size: clamp(27px, 3vw, 36px);
}

.price-card-accent h3 {
  color: var(--clay);
}

.price-card-spa h3 {
  color: var(--teal);
}

.price-card-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.price-list {
  display: grid;
  gap: 0;
}

.price-list article {
  display: grid;
  gap: 10px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.price-list article:last-child {
  padding-bottom: 0;
}

.price-list strong,
.price-list span,
.price-list small {
  display: block;
}

.price-list strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.price-list span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.7;
}

.price-list small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.price-list small::before {
  content: "◷";
  margin-right: 7px;
  color: var(--clay);
}

.price-list b {
  width: fit-content;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--rose);
  color: var(--ink);
  font-size: 17px;
  white-space: nowrap;
}

.price-bottom {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.price-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.safety-photo img {
  object-position: 50% 42%;
}

.safety-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.safety-icons {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.safety-icons div {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.7;
}

.faq {
  display: grid;
  gap: 24px;
}

.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: 700;
}

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

.contacts-map {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 0;
  margin-block: clamp(92px, 9vw, 120px);
  border: 1px solid rgba(102, 117, 102, 0.16);
  border-radius: 18px;
  padding: clamp(10px, 1.4vw, 16px);
  background: rgba(255, 253, 248, 0.84);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(65, 53, 43, 0.1);
}

.section-anchor {
  position: absolute;
  top: -96px;
}

.contacts-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: clamp(440px, 44vw, 520px);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
}

.contacts-card h2 {
  font-size: clamp(32px, 4vw, 44px);
}

.lead-form-intro {
  margin: -8px 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

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

.contact-lines span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-lines strong,
.contact-lines a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.form-field input::placeholder {
  color: rgba(111, 101, 91, 0.55);
}

.form-field input:focus {
  border-color: rgba(40, 91, 95, 0.46);
  box-shadow: 0 0 0 4px rgba(40, 91, 95, 0.1);
}

.consent-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

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

.lead-form .btn {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
}

.form-error,
.form-status {
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(40, 91, 95, 0.1);
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.form-error {
  background: rgba(182, 111, 88, 0.12);
  color: var(--clay);
}

.form-error:empty,
.form-status:empty {
  display: none;
}

.map-frame {
  position: relative;
  min-height: clamp(440px, 44vw, 520px);
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  background: var(--linen);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 44vw, 520px);
  border: 0;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0 44px;
  color: var(--muted);
}

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

.footer strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 24px;
}

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

.footer-links a:hover {
  color: var(--teal);
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-page .btn {
  width: fit-content;
  margin-top: 10px;
}

@media (min-width: 700px) {
  .header-phone {
    display: inline-flex;
  }

  .hero,
  .intro-strip,
  .safety-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .hero-photo {
    width: min(100%, 410px);
    max-width: 410px;
    justify-self: end;
  }

  .hero-copy {
    justify-self: start;
  }

  .intro-strip .wide-photo {
    order: 2;
    justify-self: end;
  }

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

  .price-list article {
    grid-template-columns: minmax(0, 1fr) auto;
  }

}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.98fr) 440px;
  }

  .intro-strip {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  }

  .fit-section {
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  }

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

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

  .contacts-map {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  }

}

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

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

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

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

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

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-photo {
    width: min(100%, 360px);
  }

  .intro-panel {
    min-height: auto;
  }

  .wide-photo,
  .safety-photo,
  .fit-photo {
    height: clamp(340px, 108vw, 480px);
  }

  .contacts-map {
    gap: 12px;
    padding: 12px;
  }

  .map-frame {
    min-height: 360px;
    border-radius: 12px;
  }

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

  .contacts-card {
    min-height: auto;
    border-left: 1px solid rgba(102, 117, 102, 0.16);
    border-radius: 12px;
  }
}
