:root {
  --ink: #17201f;
  --ink-soft: #34413f;
  --dark: #031b21;
  --dark-2: #062932;
  --teal: #0d3c43;
  --cream: #fff8f2;
  --blush: #f8e5df;
  --rose: #f4b5a9;
  --coral: #f26d5b;
  --coral-deep: #da5547;
  --sand: #d7bfa7;
  --white: #ffffff;
  --muted: #776965;
  --line: rgba(23, 32, 31, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(18, 38, 36, 0.18);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-shell {
  overflow: clip;
  min-height: 100vh;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

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

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.05;
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}

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

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.btn--accent {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 15px 32px rgba(242, 109, 91, 0.28);
}

.btn--accent:hover {
  background: var(--coral-deep);
  box-shadow: 0 18px 38px rgba(242, 109, 91, 0.38);
}

.btn--ghost {
  color: var(--white);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.btn--dark {
  color: var(--white);
  background: var(--dark);
}

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

.btn--light {
  color: var(--coral-deep);
  background: var(--white);
}

.btn--outline {
  color: var(--dark);
  border-color: rgba(23, 32, 31, 0.18);
  background: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(3, 27, 33, 0.98);
  transition: box-shadow 260ms ease, background 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 27, 33, 0.78);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
}

.brand__text {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav__menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav__menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav__menu a:hover {
  color: var(--white);
}

.nav__menu a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 82% 24%, rgba(242, 109, 91, 0.18), transparent 30%),
    linear-gradient(135deg, #02171d 0%, #062832 58%, #03191f 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr);
  min-height: 650px;
  align-items: center;
  gap: 52px;
}

.hero__content > p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.hero__stats div {
  padding: 22px 22px 20px 0;
}

.hero__stats div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
}

.hero__stats strong {
  display: block;
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__media {
  position: relative;
}

.hero-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px 34px 8px 34px;
  box-shadow: var(--shadow-dark);
  transform: translateY(var(--parallax-y, 0));
  transition: transform 120ms linear;
}

.hero-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(1, 18, 22, 0.72), transparent);
  content: "";
}

.hero-card img {
  height: min(66svh, 690px);
  min-height: 520px;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero-card figcaption span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card figcaption strong {
  max-width: 190px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 0.98;
  text-align: right;
}

.hero__seal {
  position: absolute;
  z-index: 3;
  bottom: 17%;
  left: -42px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 0.86;
  text-align: center;
}

.hero__seal span {
  display: block;
}

.hero__leaf,
.footer__leaf,
.section__ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.38;
}

.hero__leaf::before,
.footer__leaf::before,
.section__ornament::before {
  display: block;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(244, 181, 169, 0.28);
  border-radius: 0 80% 0 80%;
  background:
    linear-gradient(135deg, rgba(244, 181, 169, 0.12), transparent 58%),
    repeating-linear-gradient(130deg, transparent 0 16px, rgba(244, 181, 169, 0.12) 17px 18px);
  content: "";
}

.hero__leaf--left {
  bottom: -62px;
  left: -48px;
  transform: rotate(-18deg);
}

.hero__leaf--right {
  top: 118px;
  right: -78px;
  transform: rotate(36deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.split__media {
  position: relative;
}

.split__media > img {
  height: 620px;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split__content p {
  font-size: 17px;
}

.floating-note {
  position: absolute;
  right: -26px;
  bottom: 38px;
  max-width: 220px;
  padding: 24px;
  border-radius: 18px 18px 6px 18px;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

.floating-note span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.benefit-list span,
.check-list li,
.mini-highlights span {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.benefit-list span::before,
.check-list li::before,
.mini-highlights span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translateY(-50%);
}

.kpi-band {
  padding: 46px 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.kpi {
  min-height: 138px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.kpi:first-child {
  border-left: 1px solid var(--line);
}

.kpi strong {
  display: block;
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.9;
}

.kpi span {
  display: block;
  max-width: 170px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.services {
  background:
    linear-gradient(180deg, rgba(3, 27, 33, 0.94), rgba(3, 27, 33, 0.98)),
    url("https://images.unsplash.com/photo-1600948836101-f9ffda59d250?auto=format&fit=crop&w=1600&q=80") center/cover;
}

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

.service-card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card:hover {
  border-color: rgba(242, 109, 91, 0.58);
  background: rgba(242, 109, 91, 0.1);
  transform: translateY(-8px);
}

.service-card__number {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.service-card h3 {
  font-size: 32px;
}

.service-card p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.65;
}

.service-card a,
.ritual-card a {
  display: inline-flex;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-section {
  background:
    linear-gradient(90deg, transparent, rgba(248, 229, 223, 0.62)),
    var(--cream);
}

.round-action {
  position: absolute;
  right: -30px;
  bottom: 78px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 8px solid var(--cream);
  border-radius: 50%;
  cursor: pointer;
  background: var(--coral);
  box-shadow: var(--shadow);
}

.round-action span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.promo-banner {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 33, 0.98), rgba(6, 41, 50, 0.88)),
    url("https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.promo-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.promo-banner h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.promo-banner__stamp {
  position: absolute;
  right: 160px;
  bottom: -104px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 0.88;
  text-align: center;
}

.rituals {
  background: var(--white);
}

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

.ritual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 16px 42px rgba(18, 38, 36, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.ritual-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.ritual-card img {
  height: 270px;
  object-fit: cover;
}

.ritual-card div {
  padding: 26px;
}

.ritual-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
}

.ritual-card p {
  margin-bottom: 18px;
  font-size: 14px;
}

.ritual-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 900;
}

.experience {
  background:
    linear-gradient(180deg, rgba(248, 229, 223, 0.46), transparent 45%),
    var(--cream);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.experience-tile {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(18, 38, 36, 0.07);
}

.experience-tile img {
  height: 180px;
  object-fit: cover;
}

.experience-tile h3,
.experience-tile p {
  padding-inline: 22px;
}

.experience-tile h3 {
  margin-top: 22px;
  font-size: 27px;
}

.experience-tile p {
  margin-bottom: 22px;
  font-size: 14px;
}

.experience-tile--wide {
  grid-column: span 2;
}

.quote-section {
  background:
    radial-gradient(circle at 18% 58%, rgba(242, 109, 91, 0.2), transparent 24%),
    linear-gradient(135deg, #04191f 0%, #08323a 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 74px;
}

.quote-media {
  position: relative;
}

.quote-media::before {
  position: absolute;
  inset: 42px -28px -28px 42px;
  border: 1px solid rgba(242, 109, 91, 0.48);
  border-radius: var(--radius-lg);
  content: "";
}

.quote-media img {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-dark);
}

.quote-content blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.95;
}

.mini-highlights {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.mini-highlights span {
  color: var(--white);
}

.pricing {
  background: linear-gradient(180deg, var(--blush), var(--cream));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.price-card {
  min-height: 520px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(18, 38, 36, 0.08);
}

.price-card--featured {
  min-height: 590px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 28px 66px rgba(242, 109, 91, 0.3);
}

.price-card span {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 16px;
  font-size: clamp(48px, 5vw, 70px);
}

.price-card p {
  min-height: 64px;
}

.price-card--featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 150px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 800;
}

.price-card li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(3, 27, 33, 0.96), rgba(3, 27, 33, 1)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.testimonials__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 38px;
}

.testimonials__top h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  font-size: 28px;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-btn:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: none;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card.is-active,
.testimonial-card.is-next,
.testimonial-card.is-third {
  display: block;
}

.stars {
  margin-bottom: 30px;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.testimonial-card p {
  min-height: 128px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.08;
}

.testimonial-card strong {
  color: var(--rose);
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(18, 38, 36, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 31, 0.16);
  border-radius: 14px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
  padding: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 109, 91, 0.13);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.contact-card img {
  height: 360px;
  object-fit: cover;
}

.contact-card__body {
  display: grid;
  gap: 10px;
  padding: 32px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 36px;
}

.contact-card p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-card a {
  color: var(--rose);
  font-weight: 800;
}

.hours {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  position: relative;
  padding: 82px 0 28px;
  background:
    linear-gradient(180deg, #031b21, #021419);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 0.8fr;
  gap: 46px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0;
}

.brand--footer .brand__mark {
  border-color: rgba(242, 109, 91, 0.55);
  color: var(--coral);
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--coral);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid strong {
  color: var(--white);
  font-size: 15px;
}

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

.footer-socials a {
  padding: 8px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer__leaf--left {
  bottom: 0;
  left: -76px;
  transform: rotate(-30deg);
}

.section__ornament--left {
  bottom: 30px;
  left: -90px;
  transform: rotate(-22deg);
}

.section__ornament--right {
  right: -100px;
  bottom: 0;
  transform: rotate(28deg);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav__cta {
    justify-self: end;
  }

  .nav__menu {
    position: fixed;
    z-index: 60;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line-light);
    border-radius: 18px;
    background: rgba(3, 27, 33, 0.96);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__menu a {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .nav__menu a:last-child {
    border-bottom: 0;
  }

  .hero__grid,
  .split,
  .split--reverse,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__media {
    max-width: 620px;
  }

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

  .ritual-grid,
  .pricing-grid,
  .testimonial-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card.is-third {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

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

  .section {
    padding: 76px 0;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .brand__text {
    max-width: 150px;
    font-size: 20px;
    line-height: 0.95;
  }

  .nav {
    gap: 10px;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    top: var(--header-height);
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__media {
    display: none;
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero__content > p {
    font-size: 16px;
  }

  .hero__actions,
  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__stats,
  .kpi-grid,
  .ritual-grid,
  .pricing-grid,
  .testimonial-slider,
  .service-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats div,
  .hero__stats div + div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .hero__stats div:first-child {
    border-top: 0;
  }

  .hero-card img {
    height: 500px;
    min-height: 420px;
  }

  .hero-card figcaption {
    display: block;
  }

  .hero-card figcaption strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .hero__seal {
    bottom: -28px;
    left: 20px;
    width: 92px;
    height: 92px;
    font-size: 20px;
  }

  .split {
    gap: 42px;
  }

  .split__media > img,
  .quote-media img {
    height: 460px;
  }

  .floating-note,
  .round-action {
    right: 14px;
  }

  .floating-note {
    bottom: 18px;
    max-width: 190px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .kpi {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .kpi:first-child {
    border-left: 0;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card__number {
    margin-bottom: 36px;
  }

  .promo-banner__inner,
  .testimonials__top {
    grid-template-columns: 1fr;
  }

  .promo-banner__stamp {
    position: static;
    width: 96px;
    height: 96px;
    font-size: 22px;
  }

  .experience-tile--wide {
    grid-column: auto;
  }

  .testimonial-card.is-next,
  .testimonial-card.is-third {
    display: none;
  }

  .testimonial-card p {
    min-height: auto;
    font-size: 26px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer {
    padding: 34px 0 18px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 18px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    display: none;
  }

  .footer-menu {
    display: none !important;
  }

  .footer-grid h3 {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .footer-grid > div {
    gap: 6px;
  }

  .footer-grid a,
  .footer-grid span {
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .footer-grid strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-socials a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .footer .btn {
    width: auto;
    min-height: 36px;
    padding-inline: 14px;
    margin-top: 2px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .footer-bottom span {
    font-size: 11px;
    line-height: 1.35;
  }

  .footer__leaf--left {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-card img,
  .split__media > img,
  .quote-media img {
    height: 390px;
    min-height: 390px;
  }

  .contact-card img {
    height: 270px;
  }
}
