:root {
  --rose: #c2185b;
  --rose-deep: #9a1448;
  --rose-mid: #d81b60;
  --rose-soft: #f6e4ec;
  --rose-mist: #fbf1f5;
  --ink: #1a1a1a;
  --graphite: #2e2e2e;
  --muted: #6b6560;
  --line: #eadfdc;
  --cream: #f7f2ee;
  --ivory: #fffcfb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --shadow-soft: 0 8px 24px rgba(194, 24, 91, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}

h1,
h2,
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(194, 24, 91, 0.22);
}

.btn-primary:hover {
  background: var(--rose-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--rose);
}

.btn-light:hover {
  background: var(--rose-mist);
}

.btn-lg {
  min-height: 58px;
  padding: 0 34px;
  font-size: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 252, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-mark span {
  color: var(--rose);
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  margin-left: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  color: var(--graphite);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

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

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: 0.3s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 7vw 72px 8vw;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.4vw, 5.6rem);
  max-width: 9ch;
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 36ch;
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Categories */
.categories {
  background: var(--ivory);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  display: block;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.62) 0%, rgba(26, 26, 26, 0.05) 55%);
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
}

/* Products */
.featured {
  background: var(--cream);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rose-mist);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 22px 22px 24px;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.product-body .btn {
  width: 100%;
}

/* About */
.about {
  background: var(--ivory);
}

.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}

.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  color: var(--graphite);
}

.about-name {
  margin-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Perks */
.perks {
  background: var(--ink);
  color: var(--white);
}

.perks .eyebrow {
  color: #f3b4cb;
}

.perks h2 {
  color: var(--white);
}

.perks .section-head p {
  color: #cfc8c4;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.perk-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 220px;
  transition: background 0.3s ease, transform 0.35s var(--ease);
}

.perk-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.perk-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #f3b4cb;
}

.perk-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.perk-card p {
  color: #cfc8c4;
  font-size: 0.94rem;
}

/* Delivery */
.delivery {
  background: var(--rose-mist);
}

.delivery-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: var(--shadow-soft);
}

.delivery-icon {
  width: 88px;
  height: 88px;
  color: var(--rose);
}

.delivery h2 {
  margin-bottom: 8px;
}

.delivery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--graphite);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* Instagram */
.instagram {
  background: var(--ivory);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
}

.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(194, 24, 91, 0.0);
  transition: background 0.35s ease;
}

.ig-item:hover img {
  transform: scale(1.07);
}

.ig-item:hover::after {
  background: rgba(194, 24, 91, 0.18);
}

.ig-cta {
  text-align: center;
}

/* Final CTA */
.cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.35), rgba(26, 26, 26, 0.55));
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 72px 24px;
  max-width: 720px;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
  font-size: 1.08rem;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #d8d0cc;
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo {
  color: var(--white);
}

.footer .logo-sub {
  color: #b9b0ab;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-links a {
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #f3b4cb;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #9e9691;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
}

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

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile menu */
.mobile-panel {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .nav,
  .header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--ivory);
    z-index: 35;
    padding: 28px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .mobile-panel.is-open {
    transform: none;
  }

  .mobile-panel nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-panel a {
    font-family: var(--font-serif);
    font-size: 2rem;
    padding: 8px 0;
  }

  .mobile-panel .btn {
    width: 100%;
    margin-top: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 24px 36px;
    order: 2;
  }

  .hero-visual {
    min-height: 52vh;
    order: 1;
    padding: 0;
  }

  .hero-logo {
    width: 100%;
    height: 100%;
  }

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

  .cat-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .product-grid,
  .perk-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-wrap,
  .delivery-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-visual {
    min-height: 360px;
  }

  .delivery-box {
    padding: 32px 24px;
  }

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

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cat-grid,
  .product-grid,
  .perk-grid {
    grid-template-columns: 1fr;
  }

  .cat-card,
  .cat-card:last-child {
    min-height: 280px;
  }

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

  .wa-float {
    right: 16px;
    bottom: 16px;
  }
}
