:root {
  --bg: #fffaf7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fff3ee;
  --surface-muted: #fdf1ec;
  --text: #352730;
  --text-soft: #6f5a63;
  --rose: #f4c0cb;
  --rose-strong: #e68ca6;
  --lilac: #d8c6ef;
  --cream: #fff0d1;
  --beige: #eac9a6;
  --gold: #c79b5f;
  --mint: #a8d7c8;
  --shadow: 0 24px 60px rgba(85, 49, 67, 0.12);
  --shadow-soft: 0 18px 45px rgba(91, 54, 70, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 192, 203, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(216, 198, 239, 0.35), transparent 28%),
    linear-gradient(180deg, #fffaf7 0%, #fff7f3 50%, #fffaf7 100%);
  min-width: 320px;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  z-index: 200;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

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

.section {
  position: relative;
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section--soft {
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 192, 203, 0.22), transparent 18%),
    radial-gradient(circle at 90% 20%, rgba(216, 198, 239, 0.18), transparent 16%),
    rgba(255, 255, 255, 0.62);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 247, 0.72);
  border-bottom: 1px solid rgba(120, 84, 102, 0.08);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-badge {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #57d3df;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 237, 231, 0.85));
  box-shadow: var(--shadow-soft);
}

.brand-badge svg {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.26em;
}

.brand-copy span:last-child {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.site-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(244, 192, 203, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  overflow: clip;
  padding-top: 2rem;
}

.hero-grid,
.split-layout,
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

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

.hero-text {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #e89db3, #c7905d);
  color: #fff;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(123, 77, 96, 0.12);
}

.hero-notes {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
}

.hero-notes li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-strong), var(--gold));
  box-shadow: 0 0 0 5px rgba(232, 157, 179, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}

.hero-glow--one {
  width: 180px;
  height: 180px;
  top: 8%;
  left: 10%;
  background: rgba(216, 198, 239, 0.45);
}

.hero-glow--two {
  width: 220px;
  height: 220px;
  right: 3%;
  bottom: 12%;
  background: rgba(244, 192, 203, 0.34);
}

.hero-slide,
.testimonial-slide {
  display: none;
}

.hero-slide.is-active,
.testimonial-slide.is-active {
  display: grid;
}

.hero-slide {
  position: absolute;
  inset: 0;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 245, 0.9));
  border: 1px solid rgba(147, 101, 122, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-slide__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding: 0.5rem;
}

.hero-slide__copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 0.8rem;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  min-height: 460px;
}

.hero-slide--portrait img {
  object-position: center top;
}

.hero-chip,
.product-tag,
.tip-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-chip {
  color: var(--text);
  background: rgba(255, 240, 209, 0.85);
  margin-bottom: 1rem;
}

.carousel-controls {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.carousel-btn,
.gallery-nav,
.back-to-top {
  width: 48px;
  height: 48px;
  border: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover,
.gallery-nav:hover,
.back-to-top:hover,
.carousel-btn:focus-visible,
.gallery-nav:focus-visible,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  background: #fff;
}

.carousel-dots {
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(88, 57, 67, 0.25);
}

.carousel-dots button.is-active {
  background: linear-gradient(135deg, var(--rose-strong), var(--gold));
}

.hero-mosaic {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mosaic-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(123, 77, 96, 0.08);
}

.mosaic-card span {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(53, 39, 48, 0.78);
  font-weight: 800;
}

.mosaic-card strong {
  font-size: 1.15rem;
  line-height: 1.4;
}

.mosaic-card--rose {
  background: linear-gradient(145deg, rgba(244, 192, 203, 0.48), rgba(255, 255, 255, 0.92));
}

.mosaic-card--lavender {
  background: linear-gradient(145deg, rgba(216, 198, 239, 0.55), rgba(255, 255, 255, 0.92));
}

.mosaic-card--cream {
  background: linear-gradient(145deg, rgba(255, 240, 209, 0.7), rgba(255, 255, 255, 0.92));
}

.mosaic-card--gold {
  background: linear-gradient(145deg, rgba(234, 201, 166, 0.6), rgba(255, 255, 255, 0.92));
}

.category-grid,
.product-grid,
.tips-grid {
  display: grid;
  gap: 1.3rem;
}

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

.category-card,
.product-card,
.tip-card,
.content-card,
.media-card,
.gallery-card,
.testimonial-slide,
.cta-shell {
  border: 1px solid rgba(123, 77, 96, 0.08);
  box-shadow: var(--shadow-soft);
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -36px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(244, 192, 203, 0.12);
}

.category-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 20px;
}

.category-card p {
  margin-top: 0.6rem;
}

.media-card,
.content-card,
.gallery-card,
.tip-card,
.testimonial-slide {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.media-card--portrait img {
  max-height: 820px;
}

.content-card {
  padding: 2rem;
}

.content-card h2,
.section-heading h2 {
  margin-bottom: 1rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pillars article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 245, 239, 0.88);
}

.pillars h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.25rem;
}

.product-tag,
.tip-tag {
  background: rgba(244, 192, 203, 0.22);
  color: var(--rose-strong);
  align-self: flex-start;
}

.product-card__body ul {
  display: grid;
  gap: 0.4rem;
}

.product-card__body li {
  font-size: 0.96rem;
  color: var(--text-soft);
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.benefit-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 245, 239, 0.88);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--gold);
  background: rgba(255, 240, 209, 0.82);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

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

.tip-card {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.tip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-card div {
  padding: 1.35rem;
}

.tip-card h3 {
  margin: 0.8rem 0;
  font-size: 1.9rem;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slide {
  grid-template-columns: 160px 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem;
}

.testimonial-slide img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 26px;
}

.testimonial-slide blockquote {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
}

.gallery-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  scroll-snap-align: start;
  padding: 1rem;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
}

.gallery-card figcaption {
  margin-top: 0.9rem;
  color: var(--text-soft);
}

.cta-section {
  padding-bottom: 6rem;
}

.cta-shell {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 244, 237, 0.95), rgba(255, 255, 255, 0.84));
}

.cta-copy {
  padding: 1rem;
}

.micro-copy {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: #2b2028;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(244, 192, 203, 0.15), transparent 20%),
    radial-gradient(circle at bottom left, rgba(216, 198, 239, 0.18), transparent 24%);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
  gap: 2rem;
}

.brand--footer .brand-copy strong,
.site-footer h3,
.site-footer a {
  color: #fff;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-about {
  margin-top: 1rem;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 1rem;
  z-index: 90;
}

.whatsapp-float {
  bottom: 1rem;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #5bc577, #1f8a52);
  box-shadow: var(--shadow-soft);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.back-to-top {
  bottom: 5.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split-layout,
  .cta-shell,
  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .carousel-controls {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

  .brand-copy span:last-child {
    display: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-slide {
    padding: 0.8rem;
  }

  .hero-slide img,
  .media-card img {
    min-height: 360px;
  }

  .hero-mosaic,
  .category-grid,
  .product-grid,
  .tips-grid,
  .pillars,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .testimonial-slide {
    grid-template-columns: 1fr;
  }

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

  .gallery-nav {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: 84%;
  }

  .whatsapp-float,
  .back-to-top {
    right: 0.8rem;
  }
}

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

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