:root {
  --plum: #351a2d;
  --plum-2: #4a243b;
  --rose: #c85b74;
  --rose-2: #e9a4b0;
  --blush: #fff4f1;
  --cream: #fffaf7;
  --ink: #1f1720;
  --muted: #6d5965;
  --line: rgba(200, 91, 116, 0.2);
  --shadow: 0 24px 70px rgba(58, 23, 45, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(232, 164, 176, 0.18), transparent 36rem),
    linear-gradient(180deg, var(--cream), #fff7f4 42%, #fffaf8);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

section {
  scroll-margin-top: 6.4rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.cursor-glow {
  position: fixed;
  inset: auto auto 0 0;
  z-index: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(200, 91, 116, 0.13);
  filter: blur(40px);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem clamp(1rem, 5vw, 4.75rem);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 247, 0.86);
  box-shadow: 0 12px 40px rgba(53, 26, 45, 0.08);
  padding-block: 0.7rem;
  backdrop-filter: blur(18px);
}

.brand {
  width: 218px;
  height: 76px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.8rem);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.main-nav a.active {
  color: var(--rose);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.05rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(53, 26, 45, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.phone-pill svg {
  width: 1rem;
  fill: currentColor;
}

.phone-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(53, 26, 45, 0.26);
}

.menu-toggle {
  display: none;
}

.menu-toggle svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 46rem;
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(28rem, 1.22fr);
  align-items: center;
  gap: 1.5rem;
  padding: 8.5rem clamp(1rem, 5vw, 4.75rem) 3.5rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.88) 32%, rgba(255, 250, 247, 0.08) 56%, rgba(255, 250, 247, 0) 100%);
}

.hero-copy {
  max-width: 35.5rem;
}

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

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

h1 {
  margin-bottom: 1.4rem;
  color: var(--plum);
  font-size: clamp(2.65rem, 4.25vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 span,
h2 span,
.trust-title h2 span {
  color: var(--rose);
}

.intro {
  max-width: 33rem;
  margin-bottom: 2.2rem;
  color: #2e2430;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0 1.65rem;
  border: 1px solid transparent;
  border-radius: 0.42rem;
  font-size: 0.95rem;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.btn::after {
  margin-left: 1rem;
  content: "›";
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  min-width: 13.7rem;
  background: var(--plum);
  color: #fff;
  box-shadow: 0 18px 36px rgba(53, 26, 45, 0.18);
}

.btn-primary:hover,
.btn-rose:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 48px rgba(53, 26, 45, 0.24);
}

.btn-ghost {
  min-width: 12rem;
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-4px);
}

.btn.compact {
  min-width: 13rem;
  min-height: 3rem;
  font-size: 0.86rem;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto 36%;
  z-index: -2;
  height: 46rem;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 50%;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.soft-card {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 3.7rem;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: center;
  gap: 1.2rem;
  width: min(21.5rem, calc(100vw - 2rem));
  padding: 1.45rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.85rem;
  background: rgba(255, 238, 235, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.soft-card svg {
  width: 3rem;
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.6;
}

.soft-card p {
  margin: 0;
  font-size: 0.9rem;
}

.soft-card span {
  display: block;
  color: #3c2b36;
}

.float-card {
  animation: float 4.5s ease-in-out infinite;
}

.priority {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 19rem;
  overflow: hidden;
  background: linear-gradient(90deg, #fff7f4 0%, #fffaf8 58%, #fff3f0 100%);
}

.priority-image {
  height: 20rem;
  overflow: hidden;
}

.priority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.priority-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: 3.4rem clamp(1rem, 6vw, 5.2rem);
}

.priority-copy h2,
.section-heading h2,
.trust-title h2,
.reservation h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.13;
  letter-spacing: 0;
}

.priority-copy p:not(.eyebrow) {
  color: #342734;
}

.leaf-line {
  position: absolute;
  right: 2.6vw;
  bottom: -0.6rem;
  width: clamp(8rem, 14vw, 12.25rem);
  opacity: 0.42;
  filter: drop-shadow(0 18px 34px rgba(200, 91, 116, 0.1));
  pointer-events: none;
}

.services {
  padding: 3.1rem clamp(1rem, 5vw, 4.75rem) 4.4rem;
}

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

.section-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 70rem;
  margin: 1.4rem auto 0;
}

.service-card {
  position: relative;
  min-height: 16.5rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 16px 42px rgba(53, 26, 45, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(53, 26, 45, 0.14);
}

.service-photo {
  width: 100%;
  height: 8.2rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.service-card:hover .service-photo {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
}

.icon-badge {
  position: absolute;
  top: 7rem;
  left: 1.35rem;
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--rose);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(53, 26, 45, 0.08);
}

.service-card h3 {
  margin: 2.1rem 1.35rem 0.35rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card p {
  min-height: 2.8rem;
  margin: 0 1.35rem 0.7rem;
  color: #463844;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-card a {
  display: inline-flex;
  margin-left: 1.35rem;
  color: var(--rose);
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease);
}

.service-card:hover a {
  transform: translateX(6px);
}

.trust-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 2rem;
  padding: 4rem clamp(1rem, 5vw, 5.25rem);
  background:
    radial-gradient(circle at 86% 10%, rgba(232, 164, 176, 0.18), transparent 22rem),
    linear-gradient(135deg, #2b1325 0%, #432039 100%);
  color: #fff;
  overflow: hidden;
}

.trust-title {
  max-width: 22rem;
}

.trust-title h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.trust-title p,
.trust-item p {
  color: rgba(255, 255, 255, 0.83);
}

.btn-rose {
  min-height: 2.8rem;
  margin-top: 0.4rem;
  background: var(--rose);
  color: #fff;
}

.trust-item {
  padding-left: 2.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item strong {
  display: block;
  margin-bottom: 1.45rem;
  color: #ee7c92;
  font-size: 1.9rem;
}

.trust-item h3 {
  color: #ee7c92;
  font-size: 1.03rem;
}

.trust-item p {
  margin: 0;
  max-width: 13rem;
  font-size: 0.88rem;
}

.dried-flowers {
  position: absolute;
  right: 1.5rem;
  bottom: -3.5rem;
  width: 12rem;
  height: 15rem;
  opacity: 0.28;
  background: url("assets/botanical-soft.svg") center / contain no-repeat;
  filter: sepia(0.65) saturate(0.85) hue-rotate(332deg) brightness(1.18);
  transform: rotate(6deg);
}

.process {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem clamp(1rem, 5vw, 5.25rem);
  background:
    radial-gradient(circle at 88% 48%, rgba(53, 26, 45, 0.08), transparent 17rem),
    linear-gradient(180deg, #fffaf8, #fff4f1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.steps article {
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  position: absolute;
  top: 2.25rem;
  left: calc(50% + 2.6rem);
  width: calc(100% - 3.4rem);
  height: 1px;
  content: "";
  background: var(--rose-2);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #f9e2e4;
  color: var(--plum);
  font-size: 1.8rem;
}

.steps strong {
  color: var(--rose);
  font-size: 0.82rem;
}

.steps h3 {
  margin: 0.3rem 0 0.3rem;
  font-size: 0.93rem;
}

.steps p {
  margin: 0;
  color: #4b3d48;
  font-size: 0.82rem;
}

.testimonial {
  max-width: 23rem;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.52rem;
  background: rgba(255, 238, 235, 0.86);
  box-shadow: var(--shadow);
}

.testimonial span {
  color: var(--rose);
  font-size: 3rem;
  line-height: 1;
}

.testimonial p {
  color: #3f303b;
  font-size: 0.96rem;
}

.stars {
  margin-top: 1rem;
  color: var(--rose);
  letter-spacing: 0.22em;
}

.reservation {
  display: grid;
  grid-template-columns: auto 1fr minmax(14rem, 19rem);
  align-items: center;
  gap: 2rem;
  padding: 1.65rem clamp(1rem, 9vw, 14rem);
  background: linear-gradient(100deg, #c84f70, #d7667f);
  color: #fff;
}

.reservation h2 {
  margin-bottom: 0.15rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
}

.reservation p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.bell {
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose);
  font-size: 1.7rem;
}

.btn-light {
  min-height: 3.4rem;
  background: #fff;
  color: var(--rose);
  box-shadow: 0 18px 36px rgba(97, 18, 45, 0.14);
}

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

.footer {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr 1.3fr 0.8fr;
  gap: 2.4rem;
  padding: 2rem clamp(1rem, 5vw, 4.75rem);
  background: #fffaf8;
}

.footer img {
  width: 13rem;
  height: auto;
}

.footer h3 {
  margin-bottom: 0.8rem;
  color: var(--plum);
  font-size: 0.86rem;
}

.footer p,
.footer a,
.footer span {
  display: block;
  margin: 0 0 0.45rem;
  color: #3c303a;
  font-size: 0.84rem;
  font-style: normal;
}

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

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f6dfe2;
  color: var(--plum);
  font-weight: 800;
}

.socials svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.socials a:nth-child(2) svg,
.socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    gap: 1rem;
  }

  .brand {
    width: 180px;
  }

  .phone-pill {
    padding-inline: 1rem;
  }

  .service-grid,
  .trust-band,
  .steps,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 160px auto;
    padding-inline: 1rem;
  }

  .brand {
    width: 160px;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--plum);
    color: #fff;
  }

  body.menu-open .menu-toggle svg {
    transform: rotate(90deg);
  }

  .main-nav {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    justify-content: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 0.8rem;
    background: rgba(255, 250, 247, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .phone-pill {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 7.5rem;
    padding-bottom: 1.5rem;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.82) 50%, rgba(255, 250, 247, 0.1) 100%);
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 1;
    height: 22rem;
    margin: 2.2rem -1rem 0;
    border-radius: 1rem 1rem 0 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .soft-card {
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 2.6rem 1fr;
    padding: 1rem;
  }

  .soft-card svg {
    width: 2.3rem;
  }

  .priority,
  .reservation {
    grid-template-columns: 1fr;
  }

  .priority-image {
    height: 18rem;
  }

  .priority-image img {
    mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
  }

  .leaf-line {
    display: none;
  }

  .trust-band {
    gap: 2.4rem;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-actions,
  .reservation {
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .service-grid,
  .trust-band,
  .steps,
  .footer {
    grid-template-columns: 1fr;
  }

  .steps article:not(:last-child)::after {
    top: auto;
    left: 50%;
    bottom: -1.25rem;
    width: 1px;
    height: 1.1rem;
  }

  .trust-item {
    padding-left: 0;
    border-left: 0;
  }

  .reservation {
    text-align: center;
  }

  .bell {
    margin: 0 auto;
  }
}

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