:root {
  --white: #ffffff;
  --pink: #f8d8e6;
  --blush: #fff5f8;
  --gold: #c8a76b;
  --text: #222222;
  --gray: #6e6b66;
  --border: #eee7e1;
  --shadow: 0 18px 42px rgba(34, 34, 34, 0.08);
  --radius: 24px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(248, 216, 230, 0.24), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
a {
  transition: all 0.3s ease;
}

::selection {
  background: var(--pink);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), #a6884e);
  border-radius: 999px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fffdfa, #fef7fb);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-card {
  text-align: center;
}

.loading-ring {
  width: 54px;
  height: 54px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

.loading-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 1rem 0;
}

.navbar {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(236, 236, 236, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.05);
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--pink);
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--gray);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--text);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: #b89256;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text);
  margin: 0.25rem 0;
}

.section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  margin-bottom: 1rem;
}

.hero-copy,
.about-copy p,
.custom-copy p,
.product-body p,
.why-card p,
.contact-info p,
.site-footer p,
.handcrafted-copy p,
.story-point span {
  color: var(--gray);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-trust span {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.8);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 460px;
}

.hero-stats div {
  min-width: 120px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
}

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

.hero-card,
.about-media,
.custom-card,
.story-visual {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  position: relative;
  min-height: 560px;
}

.hero-card img,
.about-media img,
.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero-card-badge strong {
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.floating-botanical {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(1px);
  animation: drift 7s ease-in-out infinite;
}

.botanical-one {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at top, rgba(248, 216, 230, 0.95), transparent 70%);
  top: -18px;
  right: -20px;
}

.botanical-two {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at center, rgba(200, 167, 107, 0.2), transparent 70%);
  left: -20px;
  bottom: -20px;
  animation-delay: 3s;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.about-grid,
.custom-orders-grid,
.handcrafted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.about-media,
.custom-card,
.story-visual {
  min-height: 420px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.about-points span,
.custom-copy li,
.product-body li {
  display: inline-block;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(248, 216, 230, 0.22);
  color: var(--text);
}

.story-card {
  padding: 2rem;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 216, 230, 0.22));
  border: 1px solid var(--border);
  border-radius: 26px;
}

.premium-badge {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.story-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.story-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
}

.story-point strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.story-list {
  display: grid;
  gap: 0.7rem;
}

.story-list div {
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

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

.category-card,
.product-card,
.why-card,
.testimonial-card,
.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  padding: 1.3rem;
  gap: 1rem;
}

.category-card img {
  width: 100%;
  border-radius: 18px;
}

.category-card:hover,
.product-card:hover,
.why-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px rgba(34, 34, 34, 0.1);
}

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

.product-card {
  overflow: hidden;
}

.product-image-wrap {
  position: relative;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--blush);
}

.handcrafted-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.08);
}

.product-body {
  padding: 1.3rem;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.product-pill {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-pill.muted {
  background: rgba(34, 34, 34, 0.04);
  color: var(--gray);
}

.product-meta {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.1rem;
}

.product-meta div {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: var(--blush);
}

.product-meta span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.whatsapp-btn {
  width: 100%;
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ac8943);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(200, 167, 107, 0.2);
}

.whatsapp-btn.ripple {
  animation: ripplePulse 0.5s ease-out;
}

.custom-orders {
  padding-top: 2rem;
}

.custom-copy ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 1.5rem;
}

.custom-copy li {
  padding: 0.7rem 0.9rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-strip span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
}

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

.why-card {
  padding: 1.4rem;
  min-height: 220px;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--pink);
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.testimonials {
  overflow: hidden;
}

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

.slider-btn {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 2rem;
  opacity: 0;
  transform: translateX(25px);
  pointer-events: none;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card p {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 1.5rem;
}

.contact-info ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-support {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
}

.contact-support h3 {
  margin-bottom: 0.8rem;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.support-points span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.site-footer h3 {
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(8px);
  }
}

@keyframes ripplePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
