:root {
  --glow-pink: #f5e0d3;
  --glow-pink-soft: #f8f8ff;
  --gold: #ffd700;
  --ink: #0b0b0b;
  --text: #2a1e18;
  --muted: #695348;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/jost-600.ttf") format("truetype");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/jost-700.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/opensans-400.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/opensans-600.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-700.ttf") format("truetype");
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--glow-pink);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Montserrat", serif;
  margin: 0 0 0.35em;
  color: var(--text);
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--glow-pink-soft);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-mark { font-size: 0.9rem; }
.brand-sub { font-size: 0.65rem; color: var(--muted); }

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-dropdown { position: relative; }
.nav-dropdown button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  font-weight: 600;
}
.nav-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.75rem;
  display: none;
  min-width: 180px;
}
.nav-dropdown:hover .nav-menu { display: grid; gap: 0.35rem; }

.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), #ffe883);
  color: #2a1e18;
  font-weight: 700;
  border: none;
  box-shadow: 0 16px 32px rgba(255, 215, 0, 0.35);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
.pill:hover { transform: translateY(-1px); box-shadow: 0 20px 40px rgba(217, 169, 122, 0.45); }
.pill.ghost {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}
.pill.small { padding: 0.55rem 0.9rem; font-size: 0.85rem; box-shadow: none; }

.eyebrow {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f2d2bd;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  min-height: 700px;
}
.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 700px;
  padding: 0;
}
.hero-media .hero-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1080px;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.hero-content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content .container {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: clamp(1.5rem, 6vw, 4rem);
  margin-top: clamp(3rem, 8vw, 6rem);
  pointer-events: auto;
}
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.05; }
.hero .lead { font-size: 1.05rem; color: var(--text); max-width: 550px; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1rem 0; }
.badges { display: flex; gap: 0.75rem; flex-wrap: wrap; color: var(--muted); font-weight: 600; }

.section {
  padding: 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.muted { color: var(--muted); margin: 0 0 1rem; }

.grid {
  display: grid;
  gap: 1.5rem;
}
.products { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.gallery {
  padding: 0.5rem;
}
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.gallery-track img {
  scroll-snap-align: center;
}
.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.price-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.price { font-size: 1.1rem; }
.card-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  justify-items: center;
  min-height: 560px;
  max-width: 1200px;
  margin: 0 auto;
}
.split-media {
  position: relative;
  background: var(--blush);
  overflow: hidden;
  min-height: 520px;
}
.split-media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media-warm {
  filter: hue-rotate(-12deg) saturate(0.95) brightness(1.04);
}
.split-body {
  background: var(--ink);
  color: #f4f0e8;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-body h2,
.split-body .eyebrow { color: var(--gold); }
.split-body p,
.split-body li { color: #f4f0e8; }
.list { padding-left: 1.2rem; margin: 0; display: grid; gap: 0.35rem; }
.list li { color: #f4f0e8; }

.highlight { background: var(--soft); }
.duo { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.frame {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.frame img { width: 100%; display: block; object-fit: cover; }

.reviews { background: linear-gradient(135deg, #fff3ea 0%, #f7ddc9 100%); }
.testimonials { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.t-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.5rem;
}
.stars { color: #f2b200; margin: 0; }
.author { font-weight: 700; color: var(--text); }

.lab .blog { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.cta {
  background: radial-gradient(circle at 20% 20%, rgba(249, 226, 214, 0.6), transparent 45%), var(--ink);
  color: #f4f0e8;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cta .pill { box-shadow: 0 16px 40px rgba(217, 169, 122, 0.45); }

.footer {
  background: var(--ink);
  color: #f4f0e8;
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.footer a { display: block; margin: 0.35rem 0; color: #f4f0e8; opacity: 0.8; }
.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-content .container { margin: 2.5rem auto; }
  .hero { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-media { min-height: 560px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .hero-content .container { margin: 2rem auto; }
}
