:root {
  --pink: #ed4d8b;
  --pink-dark: #c93670;
  --pink-light: #ffd6e6;
  --pink-soft: #fff1f6;
  --ink: #1d1a1c;
  --muted: #6f686d;
  --line: #eddce4;
  --white: #fff;
  --shadow: 0 28px 80px rgba(106, 56, 77, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(237,77,139,.12), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(237,77,139,.11), transparent 25%),
    linear-gradient(135deg, #fffafb 0%, #fbeaf1 100%);
}
a { color: inherit; text-decoration: none; }

.site-shell {
  min-height: 100vh;
  padding: 30px;
}

.page-card {
  position: relative;
  overflow: hidden;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(237,77,139,.18);
  border-radius: 34px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}

.client-ribbon {
  position: absolute;
  top: 42px;
  right: -52px;
  z-index: 20;
  width: 320px;
  padding: 14px 20px;
  background: linear-gradient(90deg, #f54b8b, #dd3e79);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(39deg);
  box-shadow: 0 12px 28px rgba(237,77,139,.25);
}

.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  z-index: 2;
  color: var(--pink);
  opacity: .5;
  animation: sparkle 3.6s ease-in-out infinite;
}
.s1 { top: 105px; left: 7%; font-size: 1.8rem; }
.s2 { top: 180px; right: 12%; font-size: 1.2rem; animation-delay: .7s; }
.s3 { top: 420px; left: 9%; font-size: 1.3rem; animation-delay: 1.5s; }
.s4 { top: 690px; right: 7%; font-size: 1.7rem; animation-delay: 2.2s; }
.s5 { bottom: 85px; left: 12%; font-size: 1.1rem; animation-delay: .9s; }
@keyframes sparkle {
  0%,100% { transform: scale(.8) rotate(0); opacity: .25; }
  50% { transform: scale(1.2) rotate(12deg); opacity: .9; }
}

.brand-header {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  padding: 34px 24px 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark { width: 88px; }
.brand-copy { display: flex; flex-direction: column; align-items: flex-start; line-height: .82; }
.brand-top {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}
.brand-script {
  margin-top: 2px;
  color: var(--pink);
  font-family: "Sacramento", cursive;
  font-size: 4rem;
}
.brand-bottom {
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 20px;
  padding: 10px 58px 52px;
}
.hero-copy {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-left: 24px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: "Playfair Display", serif;
}
h1 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: .95;
  letter-spacing: -.04em;
}
h1 span,
.contact-copy h2 span,
.thanks {
  color: var(--pink);
  font-family: "Sacramento", cursive;
  font-weight: 400;
}
.hero-text {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: 220px 220px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.45)),
    linear-gradient(135deg, #fff6f9 0%, #f6dfe8 100%);
}
.window-glow {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 180px;
  height: 210px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.9) 48% 52%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255,255,255,.9) 48% 52%, transparent 52%),
    linear-gradient(#f8fbff, #fff6f8);
  border: 8px solid #fff;
  box-shadow: 0 16px 36px rgba(80,53,65,.1);
}
.sofa {
  position: absolute;
  left: 50%;
  bottom: 46px;
  width: 76%;
  height: 130px;
  transform: translateX(-50%);
  border-radius: 30px 30px 14px 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(82,54,65,.14);
}
.sofa::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -18px;
  height: 42px;
  border-radius: 18px;
  background: #ede3e7;
}
.pillow {
  position: absolute;
  top: 24px;
  width: 72px;
  height: 68px;
  border-radius: 16px;
  background: #f7c2d6;
}
.p1 { left: 18%; }
.p2 { right: 18%; background: #fff4f8; box-shadow: inset 0 0 0 1px #f0e1e7; }
.coffee-table {
  position: absolute;
  right: 11%;
  bottom: 15px;
  width: 125px;
  height: 16px;
  border-radius: 999px;
  background: #d2b3be;
  z-index: 3;
}
.coffee-table::before,
.coffee-table::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 6px;
  height: 54px;
  background: #b895a2;
}
.coffee-table::before { left: 22px; }
.coffee-table::after { right: 22px; }
.vase {
  position: absolute;
  left: 42px;
  bottom: 13px;
  width: 42px;
  height: 54px;
  border-radius: 12px 12px 20px 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.flowers {
  position: absolute;
  left: 34px;
  bottom: 55px;
  width: 60px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 35%, #ef5b94 0 12px, transparent 13px),
    radial-gradient(circle at 65% 28%, #f59abb 0 13px, transparent 14px),
    radial-gradient(circle at 50% 70%, #ed4d8b 0 14px, transparent 15px);
}

.service-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 58px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffafb;
}
.service-panel article {
  padding: 30px 24px;
  text-align: center;
}
.service-panel article:not(:last-child) { border-right: 1px solid var(--line); }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f85d98, #d93c78);
  color: #fff;
  font-size: 1.4rem;
}
.service-panel h2 {
  margin: 0 0 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
}
.service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.trust-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 58px 28px;
}
.trust-panel div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.trust-panel div:not(:last-child) { border-right: 1px solid var(--line); }
.trust-panel span { color: var(--pink); font-size: 1.5rem; }

.contact-section {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr .9fr;
  min-height: 430px;
  margin: 0 58px 34px;
  overflow: hidden;
  border: 1px solid rgba(237,77,139,.25);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #fff4f8 100%);
}
.contact-copy {
  padding: 44px 42px;
}
.eyebrow.light { color: var(--pink-dark); }
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.03;
}
.contact-copy p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}
.contact-actions {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid #efbfd1;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  transition: .2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(106,56,77,.1);
}
.contact-card.primary {
  border-color: var(--pink);
  background: linear-gradient(135deg, #f5518e, #dd3c79);
  color: #fff;
  box-shadow: 0 14px 30px rgba(237,77,139,.25);
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
}
.contact-card.primary .contact-icon {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.contact-card span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-card small {
  font-size: .74rem;
  font-weight: 700;
  opacity: .75;
}
.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}
.contact-visual {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.5)),
    linear-gradient(135deg, #f9e6ee, #fff);
}
.counter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(#f1e8eb, #e9dde2);
}
.cleaning-bin {
  position: absolute;
  right: 14%;
  bottom: 44px;
  width: 210px;
  height: 160px;
  border-radius: 18px 18px 24px 24px;
  background: #f8f3f5;
  border: 1px solid #dbcbd2;
  box-shadow: 0 18px 40px rgba(83,51,64,.18);
}
.cleaning-bin::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 28px;
  right: 28px;
  height: 24px;
  border-radius: 999px;
  border: 8px solid #e5d8dd;
  border-bottom: 0;
}
.bottle {
  position: absolute;
  bottom: 118px;
  width: 46px;
  border-radius: 9px 9px 12px 12px;
}
.bottle::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12px;
  width: 22px;
  height: 24px;
  border-radius: 7px 7px 0 0;
  background: inherit;
}
.b1 { left: 24px; height: 78px; background: #f1b3ca; }
.b2 { left: 82px; height: 100px; background: #fff; border: 1px solid #e0d2d8; }
.b3 { right: 24px; height: 86px; background: #ed4d8b; }
.cloth {
  position: absolute;
  right: -20px;
  top: 34px;
  width: 72px;
  height: 86px;
  border-radius: 14px;
  background: repeating-linear-gradient(135deg, #f0639a 0 8px, #ec4d88 8px 16px);
  transform: rotate(8deg);
}
.mini-logo {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .12em;
}
.bouquet {
  position: absolute;
  left: 10%;
  bottom: 48px;
  width: 130px;
  height: 230px;
}
.stem {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 150px;
  background: #6ca07f;
  transform-origin: bottom;
}
.stem1 { left: 52px; transform: rotate(-8deg); }
.stem2 { left: 66px; transform: rotate(5deg); }
.stem3 { left: 78px; transform: rotate(14deg); }
.flower {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #e83f7f 0 9px, transparent 10px),
    radial-gradient(circle at 30% 35%, #f38ab1 0 22px, transparent 23px),
    radial-gradient(circle at 70% 40%, #ed5a92 0 22px, transparent 23px),
    radial-gradient(circle at 48% 70%, #f5a1c0 0 22px, transparent 23px);
  filter: drop-shadow(0 8px 14px rgba(112,54,78,.14));
}
.f1 { top: 28px; left: 18px; }
.f2 { top: 72px; right: 2px; transform: scale(.85); }
.f3 { top: 88px; left: 0; transform: scale(.76); }

footer {
  position: relative;
  z-index: 4;
  padding: 12px 58px 24px;
  text-align: center;
}
.thanks {
  margin: 0;
  font-size: 2.6rem;
}
.footer-line {
  margin: -4px 0 18px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-line span { color: var(--pink); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 18px 36px 46px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { min-height: 320px; }
  .service-panel { margin-inline: 36px; }
  .trust-panel { margin-inline: 36px; grid-template-columns: 1fr 1fr; }
  .trust-panel div:nth-child(2) { border-right: 0; }
  .trust-panel div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-section { margin-inline: 36px; grid-template-columns: 1fr; }
  .contact-visual { min-height: 360px; }
  footer { padding-inline: 36px; }
}

@media (max-width: 720px) {
  .site-shell { padding: 12px; }
  .page-card { border-radius: 24px; }
  .client-ribbon { top: 28px; right: -58px; width: 280px; font-size: .66rem; }
  .brand-header { padding-top: 26px; }
  .brand-mark { width: 72px; }
  .brand-top { font-size: 1.4rem; }
  .brand-script { font-size: 3.2rem; }
  .hero { padding-inline: 20px; }
  h1 { font-size: 3.7rem; }
  .service-panel {
    grid-template-columns: 1fr;
    margin-inline: 20px;
  }
  .service-panel article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-panel {
    grid-template-columns: 1fr;
    margin-inline: 20px;
  }
  .trust-panel div {
    justify-content: flex-start;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .trust-panel div:last-child { border-bottom: 0; }
  .contact-section { margin-inline: 20px; }
  .contact-copy { padding: 34px 22px; }
  .contact-card { grid-template-columns: 44px 1fr; padding-inline: 14px; }
  .contact-visual { min-height: 320px; }
  footer { padding-inline: 20px; }
  .footer-meta { flex-direction: column; gap: 4px; }
}


@media (max-width: 1100px) {
  .client-ribbon {
    top: 48px;
    right: -62px;
    width: 276px;
  }
}
