:root {
  --paper: #fffaf6;
  --wash: #f8eee8;
  --cream: #fff5ee;
  --ink: #2a292c;
  --muted: #746b67;
  --rose: #c47764;
  --rose-dark: #ad5f4f;
  --line: rgba(190, 127, 106, 0.25);
  --shadow: 0 20px 54px rgba(114, 75, 61, 0.13);
  --radius: 18px;
  --radius-xl: 28px;
  --header: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 2% 44%, rgba(221, 157, 136, 0.12), transparent 28%),
    radial-gradient(circle at 98% 72%, rgba(221, 157, 136, 0.16), transparent 26%),
    linear-gradient(180deg, #fffbf8 0%, #f8eee8 56%, #fff8f3 100%);
  color: var(--ink);
  font-family: "Jost", "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, 1920px);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 250, 246, 0.86);
  border-inline: 1px solid rgba(187, 143, 129, 0.2);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px minmax(360px, 1fr) auto;
  align-items: center;
  min-height: var(--header);
  padding: 0 clamp(36px, 6vw, 116px);
  background: rgba(255, 251, 248, 0.96);
  border-bottom: 1px solid rgba(214, 186, 177, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  text-align: center;
  letter-spacing: 0.14em;
}

.brand__name {
  display: block;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 3vw, 3.35rem);
  font-weight: 600;
  line-height: 0.88;
}

.brand__sub {
  display: block;
  margin-top: 10px;
  color: #3c3839;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.48em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(42px, 5vw, 84px);
  color: #252326;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 46px);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: #2f2b2d;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.phone-link svg {
  width: 22px;
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(135deg, #cf826f, #ad5d4d);
  color: #fff;
  box-shadow: 0 16px 34px rgba(174, 95, 78, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(174, 95, 78, 0.28);
}

.button span {
  margin-left: 24px;
  font-size: 1.35rem;
  line-height: 0;
}

.button--small {
  min-height: 58px;
  padding-inline: 28px;
}

.button--ghost {
  background: rgba(255, 250, 247, 0.72);
  border-color: rgba(181, 102, 85, 0.52);
  color: #312d2f;
  box-shadow: none;
}

.button--ghost:hover {
  background: #fff;
}

.nav-toggle,
.hamburger {
  display: none;
}

.hero {
  position: relative;
  min-height: 724px;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.93) 28%, rgba(255, 250, 247, 0.22) 55%, rgba(255, 250, 247, 0) 100%),
    linear-gradient(180deg, rgba(255, 250, 247, 0.02), rgba(255, 245, 239, 0.16));
}

.hero__content {
  width: min(760px, 52vw);
  padding: 120px 0 120px clamp(44px, 6.4vw, 120px);
  animation: hero-copy 720ms cubic-bezier(0.21, 0.75, 0.32, 1) both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: #262529;
  font-size: clamp(4.55rem, 6.35vw, 7.2rem);
  font-weight: 600;
  line-height: 0.87;
  letter-spacing: -0.045em;
}

h1 span,
.ritual-copy h2 span,
.contact-panel h2 span {
  color: var(--rose);
}

.hero__lead {
  max-width: 580px;
  margin: 30px 0 48px;
  color: #514b4d;
  font-size: clamp(1.02rem, 1.24vw, 1.28rem);
  line-height: 1.72;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 246, 240, 0.9);
  border-block: 1px solid rgba(200, 154, 140, 0.18);
  padding: 34px clamp(54px, 8vw, 150px);
}

.promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 78px;
}

.promise + .promise {
  border-left: 1px solid rgba(188, 128, 111, 0.25);
}

.promise svg {
  width: 52px;
  min-width: 52px;
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.promise h2 {
  margin: 0 0 7px;
  font-family: "Jost", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.promise p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services,
.why-section,
.pricing-section,
.testimonial,
.contact-section,
.site-footer {
  width: min(86vw, 1540px);
  margin-inline: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-block: 48px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(201, 161, 148, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(114, 75, 61, 0.16);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.service-card__label {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: 24px 70px 24px 44px;
  text-align: center;
}

.service-card__label h3 {
  margin: 0 0 10px;
  color: #2f2b2d;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card__label p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card__label span {
  position: absolute;
  right: 38px;
  top: calc(50% + 2px);
  color: var(--rose);
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.ritual-section {
  position: relative;
  min-height: 520px;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(201, 161, 148, 0.26);
  background: #f6e6db;
}

.ritual-section img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ritual-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0.98) 0%, rgba(255, 248, 243, 0.88) 35%, rgba(255, 248, 243, 0.2) 66%, rgba(255, 248, 243, 0) 100%),
    linear-gradient(180deg, rgba(255, 248, 243, 0.05), rgba(255, 248, 243, 0.18));
}

.ritual-copy {
  width: min(620px, 48vw);
  padding: 80px 0 80px clamp(44px, 9.4vw, 180px);
}

.ritual-copy h2,
.contact-panel h2 {
  margin: 0;
  color: #29272a;
  font-size: clamp(3.4rem, 5vw, 5.7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.ritual-copy h2 span {
  display: block;
}

.ritual-copy p,
.contact-panel p {
  margin: 28px 0 34px;
  color: #5a514f;
  font-size: 1rem;
  line-height: 1.82;
}

.why-section {
  padding: 56px 0 38px;
}

.section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 42px;
}

.section-title-line .eyebrow {
  margin: 0;
}

.section-title-line span {
  width: 58px;
  height: 1px;
  background: var(--rose);
  opacity: 0.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

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

.why-card + .why-card {
  border-left: 1px solid rgba(188, 128, 111, 0.25);
  padding-left: 42px;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff4ed;
  color: var(--rose);
  font-size: 1.8rem;
}

.why-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-section {
  position: relative;
  padding: 34px 0 54px;
}

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

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #2d2a2c;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  font-family: "Jost", sans-serif;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.price-card {
  position: relative;
  min-height: 228px;
  padding: 38px 42px 34px;
  border: 1px solid rgba(201, 161, 148, 0.44);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.9);
  box-shadow: 0 20px 46px rgba(114, 75, 61, 0.1);
}

.badge {
  display: inline-flex;
  margin: -16px 0 18px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(196, 119, 100, 0.28);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.price-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-card strong {
  display: block;
  margin-top: 34px;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.price-card > a {
  position: absolute;
  right: 44px;
  bottom: 40px;
  color: var(--rose);
  font-size: 1.55rem;
}

.testimonial {
  display: grid;
  grid-template-columns: 120px 1fr 250px;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  padding: 32px 70px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 247, 0.72);
  box-shadow: 0 20px 50px rgba(114, 75, 61, 0.1);
}

.quote-mark {
  color: rgba(196, 119, 100, 0.28);
  font-family: Georgia, serif;
  font-size: 6.2rem;
  line-height: 0.6;
}

.testimonial blockquote {
  margin: 0;
  color: #514a4b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 1.8vw, 2.05rem);
  line-height: 1.35;
}

.client {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d89b88, #a65f4d);
  color: #fff;
  font-size: 2.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

.client strong {
  font-size: 0.96rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.client span {
  margin-top: 5px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 70px;
  margin-bottom: 38px;
  padding: 48px 70px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 43% 54%, rgba(196, 119, 100, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 252, 249, 0.9), rgba(255, 243, 236, 0.8));
  box-shadow: 0 20px 50px rgba(114, 75, 61, 0.1);
}

.contact-panel {
  align-self: start;
}

.contact-panel h2 {
  max-width: 610px;
}

.contact-panel p {
  max-width: 540px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(189, 113, 95, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #3b3638;
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #4f4746;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(189, 113, 95, 0.26);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.78);
  color: #302c2f;
  font-size: 0.92rem;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(189, 113, 95, 0.76);
  box-shadow: 0 0 0 4px rgba(189, 113, 95, 0.1);
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  animation: rise-in 680ms ease both;
}

.reveal--delay {
  animation-delay: 90ms;
}

.reveal--delay-more {
  animation-delay: 180ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1240px) {
  :root {
    --header: 88px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 28px;
  }

  .hamburger {
    display: grid;
    gap: 6px;
    width: 48px;
    padding: 12px;
    cursor: pointer;
  }

  .hamburger span {
    height: 2px;
    background: var(--rose-dark);
    border-radius: 99px;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav,
  .header-actions {
    position: absolute;
    right: 22px;
    left: 22px;
    display: none;
    background: rgba(255, 250, 247, 0.98);
  }

  .main-nav {
    top: calc(var(--header) + 12px);
    flex-direction: column;
    gap: 0;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 22px 46px rgba(111, 72, 61, 0.14);
  }

  .main-nav a {
    padding: 14px 0;
  }

  .header-actions {
    top: calc(var(--header) + 250px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 26px 24px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 24px 24px;
  }

  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .header-actions {
    display: flex;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    width: min(720px, 70vw);
  }

  .promise-strip,
  .services,
  .why-section,
  .pricing-section,
  .testimonial,
  .contact-section,
  .site-footer {
    width: min(92vw, 980px);
  }

  .promise-strip,
  .services,
  .why-grid,
  .price-grid,
  .contact-section,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .promise {
    justify-content: flex-start;
  }

  .promise + .promise,
  .why-card + .why-card {
    border-left: 0;
    border-top: 1px solid rgba(188, 128, 111, 0.25);
    padding-left: 0;
    padding-top: 28px;
  }

  .ritual-copy {
    width: min(620px, 70vw);
  }

  .contact-section,
  .testimonial {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 82px;
  }

  .site-header {
    min-height: var(--header);
    padding-inline: 18px;
  }

  .brand__name {
    font-size: 2.05rem;
  }

  .brand__sub {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
  }

  .hero {
    min-height: 650px;
  }

  .hero__image {
    object-position: 67% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.88) 39%, rgba(255, 250, 247, 0.34) 100%),
      linear-gradient(90deg, rgba(255, 250, 247, 0.96), rgba(255, 250, 247, 0.16));
  }

  .hero__content {
    width: auto;
    padding: 54px 20px 286px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.65rem);
  }

  .hero__lead {
    margin: 22px 0 28px;
    font-size: 0.96rem;
  }

  .hero__buttons {
    gap: 14px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 20px;
  }

  .promise-strip {
    width: auto;
    grid-template-columns: 1fr;
    margin-inline: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    transform: translateY(-24px);
  }

  .promise {
    gap: 18px;
    min-height: auto;
    padding-block: 14px;
  }

  .promise svg {
    width: 42px;
    min-width: 42px;
  }

  .promise h2 {
    font-size: 0.86rem;
  }

  .promise p {
    font-size: 0.82rem;
  }

  .services {
    margin-top: 0;
    padding-block: 20px 34px;
    gap: 20px;
  }

  .service-card__label {
    min-height: 106px;
    padding: 22px 54px 22px 24px;
  }

  .service-card__label h3 {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .service-card__label p {
    font-size: 0.86rem;
  }

  .ritual-section {
    min-height: 600px;
  }

  .ritual-section img {
    object-position: 67% bottom;
  }

  .ritual-section::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 243, 0.98) 0%, rgba(255, 248, 243, 0.9) 48%, rgba(255, 248, 243, 0.28) 100%),
      linear-gradient(90deg, rgba(255, 248, 243, 0.96), rgba(255, 248, 243, 0.2));
  }

  .ritual-copy {
    width: auto;
    padding: 40px 22px 286px;
  }

  .ritual-copy h2,
  .contact-panel h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .section-title-line {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-title-line span {
    width: 28px;
  }

  .why-section {
    padding-top: 38px;
  }

  .why-grid {
    gap: 24px;
  }

  .why-card {
    gap: 16px;
  }

  .why-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }

  .price-grid {
    gap: 18px;
  }

  .price-card {
    min-height: 205px;
    padding: 28px 28px 30px;
  }

  .testimonial {
    padding: 28px 24px;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .contact-section {
    padding: 28px 22px;
  }

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

  .site-footer {
    display: grid;
    gap: 10px;
    padding-bottom: 22px;
  }
}

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