:root {
  --paper: #fbf7f3;
  --paper-warm: #f6eee8;
  --surface: rgba(255, 252, 248, 0.86);
  --surface-strong: #fffaf6;
  --ink: #3c342f;
  --muted: #716a64;
  --soft: #d28e87;
  --sage: #7f8a68;
  --sage-dark: #687254;
  --line: rgba(117, 99, 84, 0.16);
  --line-strong: rgba(92, 83, 73, 0.28);
  --shadow: 0 22px 55px rgba(96, 78, 63, 0.12);
  --shadow-strong: 0 30px 90px rgba(96, 78, 63, 0.18);
  --radius-lg: 34px;
  --radius-xl: 52px;
  --container: min(1480px, calc(100vw - 72px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 2% 78%, rgba(231, 177, 171, 0.22), transparent 18vw),
    radial-gradient(circle at 92% 10%, rgba(228, 215, 203, 0.28), transparent 24vw),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), transparent 32%),
    repeating-linear-gradient(90deg, rgba(80, 67, 55, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.72;
}

body.modal-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d48f88, var(--sage));
  box-shadow: 0 4px 14px rgba(120, 126, 88, 0.32);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3.6vw, 56px);
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 22px;
  background: linear-gradient(to bottom, rgba(251, 247, 243, 0.96), rgba(251, 247, 243, 0.76));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.brand-mark {
  width: 56px;
  height: 56px;
  color: #b39575;
}

.brand-mark svg,
.outline-action svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.22em;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: #5e5854;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  color: #3f3935;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.text-link:hover {
  color: var(--sage-dark);
}

.outline-action,
.secondary-action,
.primary-action,
.rose-action,
.light-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid var(--sage);
  padding: 0 32px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.outline-action {
  gap: 12px;
  min-height: 54px;
  background: transparent;
  color: #4d4b43;
}

.outline-action svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.primary-action,
.rose-action {
  position: relative;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, #8e9973, #74805e);
  color: #fffdf8;
  box-shadow: 0 12px 22px rgba(91, 99, 70, 0.24);
}

.primary-action.small,
.rose-action.small {
  min-height: 48px;
  padding-inline: 34px;
}

.rose-action {
  background: linear-gradient(180deg, #ed9b9e, #db777d);
  box-shadow: 0 12px 22px rgba(204, 106, 113, 0.26);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.32);
  color: var(--sage-dark);
}

.light-action {
  border: 0;
  background: #fffaf5;
  color: #665d55;
}

.primary-action:hover,
.secondary-action:hover,
.outline-action:hover,
.rose-action:hover,
.light-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(91, 75, 60, 0.16);
}

.primary-action:active,
.secondary-action:active,
.outline-action:active,
.rose-action:active,
.light-action:active,
.round-link:active,
.text-link:active {
  transform: translateY(0) scale(0.98);
}

.primary-action::after,
.rose-action::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.primary-action:hover::after,
.rose-action:hover::after {
  animation: button-shine 0.78s ease;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.section {
  position: relative;
  padding: clamp(56px, 7vw, 112px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto;
  z-index: -1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0.72;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 112px);
  padding-top: clamp(84px, 12vh, 132px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 5vw, 82px);
}

.soft-label {
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(56px, 5.5vw, 82px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.96;
}

.lead,
.section-heading p,
.results-copy p,
.booking-form-card > p {
  color: #5e5955;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(127, 138, 104, 0.2);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 252, 248, 0.54);
  color: #6a625b;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(118, 96, 75, 0.06);
}

.hero-proof strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 82px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: #5b554f;
  font-size: 14px;
  line-height: 1.35;
}

.benefits li:first-child {
  padding-left: 0;
}

.benefits li:last-child {
  border-right: 0;
}

.benefit-icon {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.hero-media {
  position: relative;
  min-height: min(760px, calc(100vh - 170px));
  border-radius: 48% 48% 0 0;
  isolation: isolate;
}

.hero-media img {
  width: min(760px, 100%);
  height: min(760px, calc(100vh - 170px));
  min-height: 590px;
  margin-left: auto;
  border-radius: 48% 48% 0 0;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 28px 52px rgba(94, 73, 58, 0.12));
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.08s linear;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% 5% 0 16%;
  z-index: -1;
  border: 1px solid rgba(179, 149, 117, 0.22);
  border-radius: 48% 48% 0 0;
  transform: translate(18px, -18px);
}

.floating-note {
  position: absolute;
  top: 23%;
  left: -18px;
  border: 1px solid rgba(179, 149, 117, 0.26);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 250, 245, 0.82);
  color: #827769;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 18px 46px rgba(87, 70, 56, 0.12);
  animation: float-note 5s ease-in-out infinite;
}

.quote-card {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(380px, 72%);
  min-height: 168px;
  border-radius: 28px;
  padding: 26px 36px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 22px 50px rgba(95, 78, 65, 0.12);
}

.quote-card span {
  display: block;
  height: 28px;
  color: #dfa09d;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.7;
}

.quote-card p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.22;
}

.line-art {
  position: absolute;
  pointer-events: none;
  fill: none;
  stroke: rgba(174, 145, 116, 0.38);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-art-hero {
  right: -28px;
  bottom: 7vh;
  width: 180px;
  opacity: 0.72;
}

.section-heading {
  margin-bottom: clamp(34px, 4.3vw, 58px);
}

.section-heading.wide {
  max-width: 560px;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.section-heading.compact {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--sage-dark);
  font-weight: 600;
}

.text-link span {
  font-size: 30px;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(260px, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.procedure-card,
.program-card,
.specialist-card,
.price-list,
.package-card,
.contra-card,
.certificate-card,
.booking-shell,
.result-panel {
  background: linear-gradient(145deg, rgba(255, 251, 247, 0.86), rgba(244, 234, 226, 0.78));
  border: 1px solid rgba(121, 102, 83, 0.08);
  box-shadow: 0 22px 48px rgba(105, 86, 68, 0.08);
}

.procedure-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  border-radius: 28px;
  padding: 12px 12px 28px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.procedure-card img {
  width: 100%;
  aspect-ratio: 1.1;
  margin: 0 auto 28px;
  border-radius: 22px;
  object-fit: contain;
  background: rgba(255, 250, 246, 0.66);
}

.procedure-card:hover,
.specialist-card:hover,
.package-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(127, 138, 104, 0.18);
}

.procedure-card h3,
.program-card h3,
.package-card h3,
.specialist-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.procedure-card h3 {
  min-height: 62px;
  margin-bottom: 16px;
  padding: 0 12px;
  font-size: 29px;
}

.procedure-card p {
  min-height: 70px;
  padding: 0 12px;
  color: #6c645c;
  font-size: 14px;
}

.round-link {
  width: 42px;
  height: 42px;
  margin: auto auto 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.round-link:hover {
  background: var(--sage);
  color: #fffdf8;
  transform: translateY(-2px);
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 440px;
  border-radius: 34px;
  padding: 50px 38px 0;
  text-align: center;
  color: #fffdf8;
  background: linear-gradient(155deg, #929b76, #75815f);
}

.program-card h3 {
  margin: 0 auto 18px;
  max-width: 280px;
  font-size: 29px;
}

.program-card p {
  margin-bottom: 24px;
  color: rgba(255, 253, 248, 0.86);
  font-weight: 600;
}

.program-card img {
  width: calc(100% + 76px);
  height: 210px;
  margin: auto -38px 0;
  object-fit: contain;
  object-position: center bottom;
}

.mini-leaf {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.ritual {
  overflow: hidden;
  padding-block: clamp(60px, 8vw, 118px);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.ritual-media {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255, 251, 247, 0.9), rgba(240, 230, 222, 0.82));
  box-shadow: var(--shadow);
}

.ritual-media img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.ritual-stamp {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(179, 149, 117, 0.34);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.78);
  color: #9f8261;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
}

.ritual-copy p:not(.soft-label):not(.ritual-output) {
  max-width: 620px;
  color: #5e5955;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.ritual-steps {
  display: grid;
  gap: 12px;
  margin: 34px 0 18px;
}

.ritual-step {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 18px;
  background: rgba(255, 252, 248, 0.58);
  color: #4f4943;
  text-align: left;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.ritual-step span {
  color: #b99171;
  font-family: var(--serif);
  font-size: 28px;
}

.ritual-step:hover,
.ritual-step.is-active {
  transform: translateX(8px);
  border-color: rgba(127, 138, 104, 0.34);
  background: rgba(255, 250, 245, 0.94);
}

.ritual-output {
  min-height: 56px;
  border-left: 2px solid var(--sage);
  padding: 4px 0 0 18px;
  color: var(--sage-dark);
  font-weight: 600;
}

.specialists {
  padding-top: clamp(70px, 9vw, 135px);
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.specialist-card {
  overflow: hidden;
  border-radius: 34px;
  padding: 14px 14px 34px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.specialist-card img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
}

.specialist-card div {
  padding: 24px 30px 0;
}

.specialist-card h3 {
  margin-bottom: 10px;
  font-size: 32px;
}

.specialist-card p {
  min-height: 60px;
  color: #5d5752;
  font-size: 16px;
}

.specialist-card.is-pulsed {
  animation: soft-pulse 0.9s ease;
}

.experience {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #56504b;
  font-weight: 600;
}

.experience::before {
  content: "✥";
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #756d64;
  font-size: 15px;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.56fr;
  gap: 34px 56px;
  align-items: center;
}

.results-copy h2 {
  font-size: clamp(72px, 8vw, 126px);
}

.results-copy p {
  max-width: 480px;
}

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

.result-gallery img {
  width: 100%;
  aspect-ratio: 1.04;
  border-radius: 24px;
  object-fit: cover;
  cursor: zoom-in;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.result-gallery img:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow);
}

.result-panel {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 28px;
  min-height: 230px;
  border-radius: 28px;
  padding: 36px 42px;
}

.panel-icon,
.package-icon,
.leaf-badge {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #b39575;
  font-family: var(--serif);
  font-size: 28px;
}

.result-panel h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
}

.result-panel p {
  margin: 16px 0 0;
  font-size: 17px;
}

.result-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #625c56;
  list-style: none;
}

.result-panel li::before,
.contra-card li::before {
  content: "◒";
  margin-right: 13px;
  color: var(--sage);
}

.reviews {
  overflow: hidden;
}

.review-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.review-card {
  min-height: 280px;
  border: 1px solid rgba(121, 102, 83, 0.09);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(255, 252, 248, 0.9), rgba(245, 236, 229, 0.78));
  box-shadow: 0 18px 46px rgba(105, 86, 68, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.review-card.accent {
  background: linear-gradient(145deg, rgba(130, 142, 106, 0.95), rgba(108, 119, 88, 0.94));
  color: #fffdf8;
}

.review-card span {
  display: block;
  color: #dfa09d;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.6;
}

.review-card p {
  margin: 22px 0 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.16;
}

.review-card b {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
}

.review-extra {
  display: none;
}

.review-rail.is-expanded .review-extra {
  display: block;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(620px, 1.3fr);
  gap: clamp(36px, 5vw, 58px);
  align-items: center;
}

.vase-decor {
  position: absolute;
  left: max(-90px, calc((100vw - 1280px) / -2));
  bottom: -68px;
  z-index: -1;
  width: min(250px, 24vw);
  opacity: 0.88;
}

.price-list {
  display: grid;
  border-radius: 26px;
  padding: 28px 34px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #514b46;
}

.price-list strong {
  min-width: 92px;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
}

.price-list small {
  margin-top: 18px;
  color: #77706a;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 450px;
  border-radius: 27px;
  padding: 34px 24px;
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.package-card.rosy {
  background: linear-gradient(145deg, rgba(255, 241, 237, 0.9), rgba(246, 219, 214, 0.9));
}

.package-card h3 {
  margin: 30px 0 20px;
  font-size: 29px;
}

.package-card p {
  min-height: 82px;
  color: #625c56;
}

.package-price {
  margin: auto 0 26px;
  font-size: 20px;
  font-weight: 700;
}

.package-price s {
  margin-left: 8px;
  color: #928a84;
  font-size: 14px;
  font-weight: 500;
}

.hit {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 27px 0 24px;
  padding: 14px 18px;
  background: #f6d3cf;
  color: #c36c69;
  font-size: 13px;
  text-transform: uppercase;
}

.certificate-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.contra-card,
.certificate-card {
  min-width: 0;
  min-height: 520px;
  border-radius: 30px;
  padding: clamp(36px, 5vw, 72px);
}

.contra-card {
  background: linear-gradient(145deg, rgba(255, 236, 233, 0.9), rgba(250, 240, 236, 0.96));
}

.contra-card ul {
  display: grid;
  gap: 24px;
  margin: 58px 0 54px;
  padding: 0;
  list-style: none;
  color: #625c56;
}

.contra-card p {
  margin: auto 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.certificate-card img {
  width: 100%;
  margin-top: 76px;
  object-fit: contain;
}

.booking-section {
  padding-top: clamp(44px, 5vw, 74px);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(480px, 1.18fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 42px);
}

.booking-image {
  width: 100%;
  aspect-ratio: 0.86;
  border-radius: 56px;
  object-fit: cover;
  object-position: center;
}

.booking-form-card h2 {
  font-size: clamp(58px, 6vw, 82px);
}

.steps {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin: 34px 0 28px;
  color: #9b958e;
}

.steps span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #8e877f;
  font-size: 23px;
}

.steps span.active {
  border-color: transparent;
  background: var(--sage);
  color: #fff;
}

.steps i {
  height: 1px;
  min-width: 28px;
  border-top: 1px dashed var(--line-strong);
}

.inline-booking,
.modal-form {
  display: grid;
  gap: 18px;
}

.inline-booking {
  grid-template-columns: 1fr;
  max-width: 650px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #756e68;
  font-size: 13px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0 20px;
  background: rgba(255, 253, 250, 0.72);
  color: #56504a;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 138, 104, 0.12);
}

.inline-booking .primary-action {
  justify-self: end;
  min-width: 210px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.8fr 1fr;
  gap: 42px;
  align-items: start;
}

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

.footer-brand strong {
  font-size: 32px;
}

.site-footer p,
address,
.legal {
  color: #5f5954;
  font-style: normal;
}

address,
.legal {
  display: grid;
  gap: 14px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 22px;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal-root.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(48, 43, 39, 0.36);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  overflow: auto;
  max-height: min(860px, calc(100vh - 42px));
  width: min(820px, calc(100vw - 40px));
  border-radius: 32px;
  padding: clamp(28px, 4vw, 50px);
  background: var(--surface-strong);
  box-shadow: 0 30px 100px rgba(42, 34, 28, 0.24);
}

.modal-card h2 {
  font-size: clamp(44px, 5vw, 62px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.modal-form {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.modal-form .primary-action,
.modal-form .form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 600;
}

.gallery-modal {
  width: min(1120px, calc(100vw - 40px));
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 20px;
  object-fit: cover;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.floating-booking {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 8px 9px 8px 24px;
  background: rgba(121, 132, 97, 0.94);
  color: #fffdf8;
  box-shadow: 0 18px 42px rgba(75, 83, 57, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-booking:hover {
  box-shadow: 0 24px 52px rgba(75, 83, 57, 0.34);
  transform: translateY(-2px);
}

.floating-booking b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fffaf5;
  color: var(--sage-dark);
  font-size: 25px;
  line-height: 1;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.modal-root.is-open .modal-card {
  animation: modal-in 0.28s ease both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes button-shine {
  to {
    transform: translateX(120%) skewX(-18deg);
  }
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  45% {
    box-shadow: 0 0 0 8px rgba(127, 138, 104, 0.08), var(--shadow-strong);
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 40px, 1040px);
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 250, 246, 0.97);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .booking-shell,
  .price-grid,
  .certificate-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    margin: 0 auto;
    height: 620px;
    min-height: 0;
  }

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

  .program-card {
    grid-column: span 2;
  }

  .program-card img {
    width: min(620px, 100%);
    margin-inline: auto;
    border-radius: 22px 22px 0 0;
  }

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

  .result-panel {
    grid-column: auto;
    grid-template-columns: 1fr 1.2fr;
  }

  .result-panel .primary-action {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .review-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 640px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 20px;
  }

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

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

  .brand small {
    font-size: 9px;
  }

  .site-header > .outline-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-actions {
    margin-bottom: 38px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action,
  .inline-booking .primary-action {
    width: 100%;
  }

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

  .benefits li:nth-child(2) {
    border-right: 0;
  }

  .hero-media img {
    width: 100%;
    height: 520px;
  }

  .quote-card {
    right: 12px;
    bottom: 12px;
    width: min(330px, calc(100% - 24px));
    min-height: auto;
    padding: 20px 24px;
  }

  .quote-card p {
    font-size: 22px;
  }

  .section-heading.row {
    display: grid;
  }

  .procedure-grid,
  .specialist-grid,
  .package-row,
  .result-gallery,
  .footer-grid,
  .gallery-grid,
  .review-rail {
    grid-template-columns: 1fr;
  }

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

  .procedure-card {
    min-height: 390px;
  }

  .result-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .price-grid {
    gap: 64px;
  }

  .vase-decor {
    display: none;
  }

  .package-card {
    min-height: 390px;
  }

  .contra-card,
  .certificate-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .certificate-card img {
    margin-top: 36px;
  }

  .booking-shell {
    border-radius: 34px;
  }

  .booking-image {
    aspect-ratio: 0.92;
    border-radius: 32px;
  }

  .floating-note {
    display: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .ritual-media img {
    aspect-ratio: 0.95;
  }

  .ritual-step:hover,
  .ritual-step.is-active {
    transform: translateY(-2px);
  }

  .floating-booking {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding-left: 18px;
  }

  .steps {
    grid-template-columns: auto auto;
    gap: 12px 10px;
  }

  .steps i {
    display: none;
  }

  .modal-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .modal-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 15px;
  }

  .brand {
    gap: 10px;
  }

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

  .outline-action,
  .secondary-action,
  .primary-action,
  .rose-action,
  .light-action {
    min-height: 54px;
    padding-inline: 22px;
    white-space: normal;
    text-align: center;
  }

  .benefits li {
    padding: 0 12px;
  }

  .hero-media img {
    height: 430px;
  }

  .procedure-card img {
    width: 100%;
  }

  .price-list {
    padding: 20px;
  }

  .price-list div {
    gap: 14px;
    font-size: 14px;
  }

  .price-list strong {
    min-width: 76px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
