﻿:root {
  --cream: #fff8f1;
  --warm-white: #fffcf8;
  --beige: #f4e7d6;
  --pink-soft: #f6d6dd;
  --pink-main: #e78ea1;
  --rose-deep: #c45a72;
  --brown: #6a4a3a;
  --brown-deep: #4c3428;
  --gold: #cba770;
  --card: #fffaf5;
  --shadow: 0 24px 48px rgba(106, 74, 58, 0.15);
  --shadow-soft: 0 12px 24px rgba(106, 74, 58, 0.1);
  --shadow-lift: 0 18px 34px rgba(106, 74, 58, 0.16);
  --shadow-focus: 0 22px 50px rgba(196, 90, 114, 0.22);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2.2rem));
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 360ms;
  --dur-mid: 640ms;
  --dur-hover: 540ms;
  --dur-slow: 980ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 214, 221, 0.6), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(244, 231, 214, 0.82), transparent 32%),
    linear-gradient(180deg, #fff9f3 0%, #fffdf9 50%, #fff7ef 100%);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
  background-image:
    radial-gradient(rgba(180, 132, 107, 0.18) 0.35px, transparent 0.35px),
    radial-gradient(rgba(203, 167, 112, 0.14) 0.4px, transparent 0.4px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  color: var(--brown-deep);
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5.3rem 0;
}

.section-head {
  margin-bottom: 1.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
}

h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 1.5rem + 1.3vw, 2.5rem);
  margin-bottom: 1rem;
}

.promo-banner {
  text-align: center;
  border-bottom: 1px solid rgba(196, 90, 114, 0.22);
  background: linear-gradient(96deg, #f8dee4, #f5e7d8, #f8dee4);
  background-size: 220% 220%;
  animation: bannerFlow 12s linear infinite;
  padding: 0.64rem 1rem;
  font-size: 0.92rem;
  color: var(--brown-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 241, 0.76);
  border-bottom: 1px solid rgba(196, 90, 114, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0px;
}

.brand-text {
  font-family: "DM Serif Display", serif;
  font-size: 1.52rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding: 0.38rem 0.18rem;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
  transition: width var(--dur-fast) var(--ease-soft);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--brown-deep);
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 1.4rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    border-color var(--dur-fast) var(--ease-soft),
    background var(--dur-hover) var(--ease-hover);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.38) 40%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 620ms var(--ease-soft);
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(203, 167, 112, 0.45);
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(138deg, var(--pink-main), var(--rose-deep));
  box-shadow: 0 10px 20px rgba(196, 90, 114, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(196, 90, 114, 0.32);
}

.btn-ghost {
  color: var(--rose-deep);
  border-color: rgba(196, 90, 114, 0.3);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(196, 90, 114, 0.55);
  box-shadow: var(--shadow-soft);
}

.btn-sm {
  padding: 0.63rem 1.05rem;
  font-size: 0.86rem;
}

.btn.glow {
  animation: ctaPulse 3.8s ease-in-out infinite;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 5rem;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-blob,
.hero-ring {
  position: absolute;
  will-change: transform;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.hero-blob {
  border-radius: 999px;
  filter: blur(1px);
  animation: blobFloat 9s ease-in-out infinite;
}

.blob-a {
  width: 360px;
  height: 360px;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(246, 214, 221, 0.82), rgba(246, 214, 221, 0.08));
}

.blob-b {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(244, 231, 214, 0.9), rgba(244, 231, 214, 0.08));
  animation-delay: -2.4s;
}

.hero-ring {
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 1px dashed rgba(203, 167, 112, 0.26);
  top: -230px;
  left: 50%;
  translate: -50% 0;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.hero-copy h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.1rem, 1.65rem + 2.1vw, 3.7rem);
  margin-bottom: 1rem;
  max-width: 16.6ch;
  text-wrap: balance;
}

.hero-copy .subheadline {
  font-size: clamp(1rem, 0.94rem + 0.46vw, 1.18rem);
  max-width: 56ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.86rem;
  margin-bottom: 1.9rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.hero-highlights article {
  min-width: 128px;
  padding: 0.84rem 0.96rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 90, 114, 0.17);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover);
}

.hero-highlights article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.hero-highlights strong {
  display: block;
  font-size: 1.16rem;
  color: var(--rose-deep);
}

.hero-highlights span {
  font-size: 0.82rem;
  color: rgba(76, 52, 40, 0.88);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.8rem;
}

.hero-frame {
  position: relative;
  width: min(610px, 100%);
  height: 560px;
  isolation: isolate;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 62px 40px 92px 98px;
  border-radius: 40px;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.58), rgba(248, 225, 229, 0.34));
  border: 1px solid rgba(196, 90, 114, 0.1);
  box-shadow: none;
  z-index: 0;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 44px 18px 74px 66px;
  border-radius: 44px;
  border: 1px solid rgba(203, 167, 112, 0.14);
  opacity: 0.52;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(5px);
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  z-index: 0;
  opacity: 0.7;
}

.hero-glow.glow-left {
  width: 200px;
  height: 200px;
  left: -30px;
  top: 20px;
  background: radial-gradient(circle, rgba(246, 214, 221, 0.48), rgba(246, 214, 221, 0.04));
}

.hero-glow.glow-right {
  width: 188px;
  height: 188px;
  right: -14px;
  bottom: 72px;
  background: radial-gradient(circle, rgba(244, 231, 214, 0.52), rgba(244, 231, 214, 0.04));
}

.hero-backdrop {
  position: absolute;
  right: 12px;
  top: 156px;
  width: 35%;
  height: 252px;
  border-radius: 28px;
  background: linear-gradient(170deg, rgba(255, 247, 249, 0.78), rgba(251, 236, 240, 0.66));
  border: 1px solid rgba(196, 90, 114, 0.14);
  box-shadow: 0 10px 24px rgba(106, 74, 58, 0.08);
  z-index: 1;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(196, 90, 114, 0.2);
  box-shadow: 0 16px 34px rgba(106, 74, 58, 0.12);
  background: #f2ece6;
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover);
  z-index: 2;
}

.image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(106, 74, 58, 0.15);
}

.image-main {
  left: 0;
  top: 16px;
  width: 67%;
  height: 492px;
  border-radius: 34px;
  z-index: 2;
}

.image-support {
  right: 0;
  top: 188px;
  width: 33%;
  height: 228px;
  border-radius: 26px;
  z-index: 3;
}

.image-card img {
  height: 100%;
  transform: scale(1.04) translate3d(0, var(--parallax-offset, 0px), 0);
  transition: transform var(--dur-hover) var(--ease-hover);
  will-change: transform;
}

.image-card:hover img {
  transform: scale(1.065) translate3d(0, var(--parallax-offset, 0px), 0);
}

.floating-note {
  position: absolute;
  right: 18px;
  top: 440px;
  min-width: 176px;
  max-width: 210px;
  text-align: center;
  padding: 0.56rem 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(203, 167, 112, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(106, 74, 58, 0.08);
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
  z-index: 4;
}

.floating-note span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.1rem;
}

.floating-note strong {
  color: var(--brown-deep);
  font-size: 0.92rem;
}

.about {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(252, 243, 234, 0.86));
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-features {
  display: grid;
  gap: 1rem;
}

.about-features article {
  background: var(--card);
  border: 1px solid rgba(196, 90, 114, 0.2);
  border-radius: var(--radius-md);
  padding: 1.24rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover), border-color var(--dur-fast) var(--ease-soft);
}

.about-features article:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 90, 114, 0.35);
  box-shadow: var(--shadow-lift);
}

.about-features h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

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

.product-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(196, 90, 114, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transform-origin: center bottom;
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    border-color var(--dur-fast) var(--ease-soft);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.007);
  border-color: rgba(196, 90, 114, 0.36);
  box-shadow: var(--shadow-lift);
}

.product-card img {
  height: 178px;
  transform: scale(1.02);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: transform var(--dur-mid) var(--ease-soft), filter var(--dur-mid) var(--ease-soft);
}

.product-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.08);
}

.product-card div {
  padding: 1rem;
}

.product-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.42rem;
}

.product-card p {
  font-size: 0.92rem;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1.8rem, 4.8vh, 3.1rem) 1.2rem clamp(1.2rem, 3vh, 1.8rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-soft);
}

.product-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 30, 23, 0.62);
  backdrop-filter: blur(6px);
}

.product-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-figure {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 2.2rem));
  max-height: calc(100dvh - 5.4rem);
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff8f2;
  border: 1px solid rgba(203, 167, 112, 0.28);
  box-shadow: 0 30px 60px rgba(24, 12, 8, 0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--dur-fast) var(--ease-lux);
}

.product-modal.show .product-modal-figure {
  transform: none;
}

.product-modal-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 10.2rem);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fffaf4, #fff5ec);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.product-modal-figure figcaption {
  padding: 0.82rem 1rem 0.96rem;
  font-weight: 700;
  color: var(--brown-deep);
  text-align: center;
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(42, 24, 17, 0.64);
  color: #fff8f1;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}

.product-modal-close:hover {
  transform: translateY(-1px);
  background: rgba(42, 24, 17, 0.78);
}

.special-orders {
  position: relative;
  overflow: clip;
}

.section-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -180px;
  right: -180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246, 214, 221, 0.6), rgba(246, 214, 221, 0.06));
  pointer-events: none;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.special-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
  align-items: start;
}

.event-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.event-tags span {
  padding: 0.46rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 90, 114, 0.2);
  background: linear-gradient(130deg, #f9e5e9, #f4e5d2);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}

.event-tags span:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.order-steps {
  display: grid;
  gap: 0.78rem;
}

.order-steps article {
  background: #fff;
  border: 1px solid rgba(196, 90, 114, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover);
}

.order-steps article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.order-steps h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: var(--rose-deep);
}

.testimonials {
  background: linear-gradient(180deg, #fff6ef 0%, #fffdf9 100%);
}

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

.testimonial {
  background: var(--card);
  border: 1px solid rgba(196, 90, 114, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.2rem;
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover), border-color var(--dur-fast) var(--ease-soft);
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 90, 114, 0.32);
  box-shadow: var(--shadow-lift);
}

.testimonial p {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.testimonial h3 {
  font-size: 1rem;
}

.testimonial span {
  font-size: 0.85rem;
  color: rgba(76, 52, 40, 0.84);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gallery-grid {
  display: grid;
  gap: 0.84rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  height: 190px;
  border-radius: 18px;
  border: 1px solid rgba(196, 90, 114, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover), filter var(--dur-hover) var(--ease-hover);
}

.gallery-grid img:hover {
  transform: translateY(-5px) scale(1.01);
  filter: saturate(1.08) contrast(1.02);
  box-shadow: var(--shadow-lift);
}

.order-process {
  background: linear-gradient(180deg, #fff8f2 0%, #fffdf9 100%);
}

.process-head p {
  max-width: 64ch;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  background: var(--card);
  border: 1px solid rgba(196, 90, 114, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1.08rem;
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover), border-color var(--dur-fast) var(--ease-soft);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 90, 114, 0.32);
  box-shadow: var(--shadow-lift);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  padding: 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
  background: linear-gradient(130deg, rgba(249, 229, 233, 0.95), rgba(244, 229, 210, 0.95));
  border: 1px solid rgba(196, 90, 114, 0.22);
}

.process-step h3 {
  font-size: 1.03rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.92rem;
}

.process-aside {
  background: linear-gradient(150deg, #fff5f7 0%, #f9eee1 100%);
  border: 1px solid rgba(196, 90, 114, 0.24);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.22rem 1.16rem;
}

.process-aside h3 {
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
}

.process-facts {
  display: grid;
  gap: 0.68rem;
}

.process-facts article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(196, 90, 114, 0.16);
  border-radius: 14px;
  padding: 0.78rem 0.82rem;
}

.process-facts strong {
  display: block;
  font-size: 0.92rem;
  color: var(--rose-deep);
  margin-bottom: 0.22rem;
}

.process-facts p {
  font-size: 0.88rem;
}

.process-aside .btn {
  width: 100%;
  margin-top: 0.95rem;
}

.process-note {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: rgba(76, 52, 40, 0.86);
}

.cta {
  padding-top: 3.7rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(196, 90, 114, 0.24);
  background: linear-gradient(140deg, #fff3f6 0%, #f8ecde 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.7rem, 1.25rem + 1vw, 2.35rem);
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-card::before {
  width: 210px;
  height: 210px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.04));
}

.cta-card::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(231, 142, 161, 0.18), rgba(231, 142, 161, 0.04));
}

.cta-card p {
  max-width: 54ch;
}

.cta-actions {
  display: grid;
  gap: 0.72rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.2rem;
  background: #4b3327;
  color: #f8ebdf;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer h3,
.site-footer h4 {
  color: #ffe9cd;
}

.site-footer h3 {
  margin-bottom: 0.5rem;
  font-family: "DM Serif Display", serif;
  font-size: 1.56rem;
}

.site-footer h4 {
  margin-bottom: 0.44rem;
}

.closing {
  text-align: center;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 237, 218, 0.22);
  padding-top: 1rem;
  font-style: italic;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 57px;
  height: 57px;
  border-radius: 999px;
  background: linear-gradient(180deg, #30df74, #17bb57);
  box-shadow: 0 14px 28px rgba(12, 90, 45, 0.33);
  z-index: 66;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover);
  animation: waDrift 3.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 30px rgba(12, 90, 45, 0.38);
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: waRipple 2.6s ease-out infinite;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  display: block;
  position: relative;
  z-index: 1;
  fill: #fff;
}

[data-load],
[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js [data-load] {
  opacity: 0;
  filter: blur(14px);
  transition-property: opacity, transform, filter;
  transition-duration: var(--dur-slow), var(--dur-slow), var(--dur-slow);
  transition-timing-function: var(--ease-lux), var(--ease-lux), var(--ease-soft);
}

.js [data-load="header"] {
  transform: translate3d(0, -20px, 0) scale(0.985);
}

.js [data-load="hero"] {
  transform: translate3d(0, 28px, 0) scale(0.99);
}

.js [data-load="hero-media"] {
  transform: translate3d(0, 34px, 0) scale(0.94);
  filter: blur(18px);
}

.js body.motion-ready [data-load] {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition-delay: calc(var(--intro-order, 0) * 105ms + 40ms);
}

.js body.motion-ready .hero-highlights article {
  animation: metricRise 720ms var(--ease-spring) both;
}

.js body.motion-ready .hero-highlights article:nth-child(1) {
  animation-delay: 710ms;
}

.js body.motion-ready .hero-highlights article:nth-child(2) {
  animation-delay: 790ms;
}

.js body.motion-ready .hero-highlights article:nth-child(3) {
  animation-delay: 870ms;
}

.js [data-reveal] {
  opacity: 0;
  filter: blur(11px);
  transform: translate3d(0, 28px, 0) scale(0.98);
  transform-origin: center center;
}

.js [data-reveal].in-view {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-property: opacity, transform, filter;
  transition-duration: 820ms, 920ms, 900ms;
  transition-timing-function: ease, var(--ease-lux), var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal="soft"] {
  transform: translate3d(0, 20px, 0) scale(0.99);
  filter: blur(8px);
}

.js [data-reveal="lift"] {
  transform: translate3d(0, 34px, 0) scale(0.96);
  filter: blur(14px);
}

.js [data-reveal="slide-right"] {
  transform: translate3d(-38px, 18px, 0) scale(0.97);
}

.js [data-reveal="card"] {
  transform: translate3d(0, 24px, 0) perspective(800px) rotateX(5deg) scale(0.97);
}

.js [data-reveal="product"] {
  transform: translate3d(0, 30px, 0) perspective(900px) rotateX(8deg) scale(0.94);
  filter: blur(12px);
}

.js [data-reveal="tag"] {
  transform: translate3d(0, 18px, 0) scale(0.9);
  filter: blur(8px);
}

.js [data-reveal="testimonial"] {
  transform: translate3d(0, 26px, 0) scale(0.96) rotate(-0.3deg);
}

.js [data-reveal="gallery"] {
  transform: translate3d(0, 24px, 0) scale(0.91);
  filter: blur(13px);
}

.js [data-reveal="cta"] {
  transform: translate3d(0, 38px, 0) scale(0.965);
  filter: blur(16px);
}

@keyframes bannerFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate3d(0, var(--parallax-offset, 0px), 0) translateY(0);
  }
  50% {
    transform: translate3d(0, var(--parallax-offset, 0px), 0) translateY(-12px);
  }
}

@keyframes metricRise {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(196, 90, 114, 0.26);
  }
  50% {
    box-shadow: 0 18px 34px rgba(196, 90, 114, 0.42);
  }
}

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

@keyframes waRipple {
  0% {
    opacity: 0.65;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .special-grid,
  .cta-card,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    justify-content: center;
    padding-right: 0;
  }

  .hero-frame {
    width: min(620px, 100%);
    height: 500px;
  }

  .hero-frame::before {
    inset: 52px 42px 82px 88px;
  }

  .hero-frame::after {
    inset: 40px 20px 70px 64px;
  }

  .hero-backdrop {
    top: 144px;
    width: 34%;
    height: 226px;
  }

  .image-main {
    width: 66%;
    height: 438px;
  }

  .image-support {
    top: 170px;
    width: 33%;
    height: 206px;
  }

  .floating-note {
    right: 16px;
    top: 392px;
  }

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

  .process-aside {
    max-width: 620px;
  }

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

@media (max-width: 860px) {
  .hero-frame {
    height: 446px;
  }

  .hero-frame::before {
    inset: 46px 36px 74px 72px;
  }

  .hero-backdrop {
    top: 132px;
    height: 206px;
  }

  .image-main {
    height: 388px;
  }

  .image-support {
    top: 154px;
    height: 186px;
  }

  .floating-note {
    min-width: 166px;
    max-width: 196px;
    right: 6px;
    top: 350px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    right: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 90, 114, 0.25);
    background: rgba(255, 250, 244, 0.97);
    box-shadow: var(--shadow-soft);
    padding: 0.85rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px) scale(0.98);
    transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
  }

  .nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    padding: 0.5rem 0.35rem;
  }

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

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

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

@media (max-width: 690px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 4.9rem;
  }

  .hero-visual {
    min-height: 0;
    justify-content: center;
    padding-right: 0;
  }

  .hero-frame {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 136px;
    grid-template-areas:
      "main support"
      "badge badge";
    align-items: end;
    gap: 0.72rem 0.62rem;
  }

  .hero-frame::after,
  .hero-frame::before,
  .hero-backdrop {
    display: none;
  }

  .hero-glow {
    display: none;
  }

  .image-card {
    position: relative;
    box-shadow: var(--shadow-soft);
  }

  .image-main {
    grid-area: main;
    left: auto;
    top: auto;
    width: 100%;
    height: 286px;
    border-radius: 24px;
  }

  .image-support {
    grid-area: support;
    right: auto;
    top: auto;
    width: 136px;
    height: 170px;
    border-radius: 20px;
    justify-self: end;
    align-self: end;
  }

  .floating-note {
    grid-area: badge;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    padding: 0.52rem 0.7rem;
    border-radius: 13px;
    justify-self: start;
    margin-top: 0.1rem;
    transform: none;
  }

  .hero-highlights article {
    flex: 1;
    min-width: unset;
  }

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

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

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    font-size: 0.84rem;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .hero-visual {
    padding-right: 0;
  }

  .hero-frame {
    grid-template-columns: minmax(0, 1fr) 102px;
    gap: 0.62rem 0.5rem;
  }

  .image-main {
    height: 236px;
    border-radius: 20px;
  }

  .image-support {
    width: 102px;
    height: 130px;
    border-radius: 16px;
  }

  .floating-note {
    width: 100%;
    max-width: none;
    margin-top: 0;
    justify-self: stretch;
    text-align: left;
    padding: 0.5rem 0.64rem;
  }

  .floating-note span {
    text-align: left;
  }

  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 53px;
    height: 53px;
  }

  .product-modal {
    padding: 1.1rem 0.86rem 0.92rem;
  }

  .product-modal-figure {
    width: calc(100vw - 1.72rem);
    border-radius: 18px;
  }

  .product-modal-figure img {
    max-height: calc(100dvh - 8.6rem);
  }

  .product-modal-close {
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.46rem 0.75rem;
    font-size: 0.84rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-load],
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-blob,
  .hero-ring,
  .hero-glow,
  .section-glow,
  .image-card img,
  .floating-note {
    transform: none !important;
  }
}
