:root {
  --bg: #f6efe7;
  --bg-soft: #fcf8f2;
  --bg-strong: #221917;
  --card: rgba(255, 255, 255, 0.74);
  --text: #2d221e;
  --text-soft: #6c6158;
  --line: rgba(53, 36, 29, 0.12);
  --gold: #bb955d;
  --gold-deep: #9f7747;
  --olive: #767662;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(40, 26, 20, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 0% 0%, rgba(187, 149, 93, 0.14), transparent 26%),
    radial-gradient(circle at 100% 20%, rgba(118, 118, 98, 0.1), transparent 22%),
    linear-gradient(180deg, #fcf7f0 0%, #f6efe7 100%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#6c6158 0.6px, transparent 0.6px);
  background-size: 12px 12px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.34);
}

.section--dark {
  background: linear-gradient(145deg, #2a1e1b 0%, #1f1715 100%);
  color: #f7f1e8;
}

.section--olive {
  background: linear-gradient(145deg, rgba(118, 118, 98, 0.18), rgba(187, 149, 93, 0.1));
}

.section--booking {
  padding-bottom: 110px;
}

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

.section-heading {
  margin-bottom: 30px;
}

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

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--light p:last-child {
  color: rgba(247, 241, 232, 0.76);
}

.section-heading h2,
.hero h1,
.promo-modal h2,
.offer-banner h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-heading p:last-child,
.hero__lead,
.offer-banner p,
.booking-copy p,
.footer__text {
  color: var(--text-soft);
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(250, 245, 237, 0.84);
  border-bottom: 1px solid rgba(53, 36, 29, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.logo__mark,
.logo__text,
.logo--footer {
  font-family: "Cormorant Garamond", serif;
}

.logo__mark {
  font-size: 1.65rem;
  line-height: 1;
}

.logo__text {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.footer__meta a,
.footer__credit {
  color: var(--text-soft);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  white-space: nowrap;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 26px rgba(159, 119, 71, 0.22);
}

.button:hover {
  transform: translateY(-2px);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(53, 36, 29, 0.1);
  box-shadow: none;
}

.button--dark {
  background: linear-gradient(135deg, #332521 0%, #231816 100%);
  box-shadow: 0 12px 26px rgba(35, 24, 22, 0.18);
}

.button--full {
  width: 100%;
}

.hero {
  padding-top: 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 46px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 8.1ch;
  font-size: clamp(3rem, 6vw, 5rem);
}

.hero__lead {
  max-width: 58ch;
  margin: 0 0 26px;
  font-size: 1.02rem;
}

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

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero__notes li,
.mini-banner {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero__visual-frame {
  position: absolute;
  inset: 34px 0 34px 56px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 11, 9, 0.52)),
    radial-gradient(circle at 35% 18%, rgba(255, 236, 214, 0.3), transparent 20%),
    linear-gradient(145deg, #755846 0%, #3d2c26 45%, #201715 100%);
  box-shadow: var(--shadow);
}

.hero__visual-frame::before,
.hero__visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__visual-frame::before {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 30px;
  background: rgba(255, 244, 230, 0.12);
}

.hero__visual-frame::after {
  width: 340px;
  height: 340px;
  left: -110px;
  bottom: -70px;
  background: rgba(187, 149, 93, 0.18);
}

.hero__visual-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  color: #f8f2e9;
}

.hero__visual-copy span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero__visual-copy p {
  margin: 0;
}

.hero__visual-badge {
  position: absolute;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8f2e9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero__visual-badge span,
.service-card__meta,
.space-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: rgba(255, 245, 232, 0.82);
}

.hero__visual-badge strong,
.space-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.hero__visual-badge--top {
  left: 0;
  top: 0;
}

.hero__visual-badge--bottom {
  right: 0;
  bottom: 18px;
}

.benefits-grid,
.services-grid,
.reviews-grid,
.trust-list,
.space-grid {
  display: grid;
  gap: 22px;
}

.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.service-card,
.review-card,
.trust-item,
.offer-banner,
.space-card,
.faq-item,
.booking-form {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.benefit-card,
.service-card,
.trust-item,
.faq-item,
.booking-form {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.benefit-card h3,
.service-card h3,
.booking-form h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.services-grid {
  grid-template-columns: 1.18fr 1fr 1fr;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card--featured {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.93), rgba(243, 233, 220, 0.9));
}

.service-card__meta {
  color: var(--text-soft);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.text-link {
  margin-top: auto;
  color: var(--gold-deep);
  font-weight: 700;
}

.mini-banner {
  margin-top: 24px;
  border-radius: 999px;
}

.split-block,
.trust-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.space-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.space-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4)),
    linear-gradient(145deg, rgba(117, 88, 70, 0.92), rgba(47, 34, 29, 0.95));
}

.space-card--large {
  min-height: 350px;
}

.offer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.95), rgba(240, 229, 215, 0.92));
}

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

.review-card {
  margin: 0;
  padding: 28px;
  border-radius: 28px;
}

.review-card p {
  margin-top: 0;
  font-size: 1.03rem;
}

.review-card footer {
  color: var(--text-soft);
  font-weight: 700;
}

.trust-list {
  grid-template-columns: repeat(2, 1fr);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.steps-list li {
  padding: 24px 20px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(53, 36, 29, 0.08);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--bg-strong);
  color: var(--white);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text);
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-top: 14px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.booking-form {
  border-radius: 30px;
}

.booking-form__header p,
.form-note {
  color: var(--text-soft);
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #315e3a;
}

.form-status.is-error {
  color: #8a4035;
}

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

.footer {
  padding: 30px 0 86px;
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(53, 36, 29, 0.08);
}

.footer__inner,
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(53, 36, 29, 0.08);
}

.footer__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__credit {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(108, 97, 88, 0.86);
}

.footer__credit a {
  color: rgba(108, 97, 88, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page {
  min-height: 100vh;
  padding: 72px 0;
}

.policy-page__inner {
  max-width: 760px;
}

.policy-page__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--text-soft);
}

.policy-page h1,
.policy-page h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.policy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.policy-page h2 {
  margin: 32px 0 10px;
  font-size: 1.9rem;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 50;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #342521 0%, #231816 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(35, 24, 22, 0.28);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.promo-modal.is-visible {
  display: block;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 11, 0.52);
  backdrop-filter: blur(8px);
}

.promo-modal__panel {
  position: relative;
  width: min(calc(100% - 32px), 480px);
  margin: min(12vh, 80px) auto 0;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf4 0%, #f2e7d8 100%);
  box-shadow: 0 28px 80px rgba(26, 15, 11, 0.28);
}

.promo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(53, 38, 31, 0.08);
  font-size: 1.4rem;
}

@media (max-width: 1100px) {
  .benefits-grid,
  .reviews-grid,
  .trust-list,
  .steps-list,
  .services-grid,
  .space-grid,
  .split-block,
  .trust-grid,
  .booking-grid,
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service-card--featured,
  .space-card--large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(252, 248, 242, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-open .nav {
    display: flex;
  }

  .header__phone,
  .header .button--ghost {
    display: none;
  }

  .benefits-grid,
  .reviews-grid,
  .trust-list,
  .steps-list,
  .services-grid,
  .space-grid,
  .split-block,
  .trust-grid,
  .booking-grid,
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 500px;
  }

  .offer-banner,
  .footer__inner,
  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__actions {
    display: grid;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual-frame {
    inset: 24px 0 24px 30px;
    border-radius: 28px;
  }

  .hero__visual-badge {
    padding: 14px 16px;
  }

  .hero__notes li,
  .mini-banner {
    border-radius: 20px;
  }

  .sticky-cta {
    display: inline-flex;
  }
}
