:root {
  --blush: #f7dbe3;
  --blush-strong: #eaa6b9;
  --cream: #fff8f3;
  --rose: #b85f77;
  --charcoal: #2a2527;
  --muted: #6f6368;
  --gold: #c89b5f;
  --white: #ffffff;
  --line: #ead8dc;
  --shadow: 0 18px 45px rgba(42, 37, 39, 0.10);
  --radius: 24px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
}
.logo span { color: var(--rose); }
.nav { display: flex; gap: 22px; align-items: center; font-weight: 700; }
.nav a { color: var(--charcoal); }
.nav a.active, .nav a:hover { color: var(--rose); text-decoration: none; }
.menu-toggle {
  display: none; border: 0; background: var(--white);
  border-radius: 999px; padding: 10px 13px;
  font-size: 1.2rem; box-shadow: var(--shadow);
}
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 42px; align-items: center; padding: 70px 6vw;
}
.hero-copy h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92; margin: 0 0 24px;
  letter-spacing: -0.06em;
}
.hero-copy p, .page-hero p { max-width: 780px; font-size: 1.08rem; }
.hero-image {
  min-height: 570px; border-radius: 38px; box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,248,243,0.2)),
    url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=1400&q=85") center/cover;
}
.eyebrow {
  color: var(--rose); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 16px; }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 13px 20px; font-weight: 900;
  border: 1px solid transparent; cursor: pointer; font-size: 1rem;
}
.btn.primary, button.btn.primary { background: var(--rose); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--charcoal); border-color: var(--line); }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.mini-disclosure, .muted { font-size: 0.92rem; color: var(--muted); }
.section { padding: 54px 6vw; }
.section.alt { background: #fff2f6; }
.section-heading {
  display: flex; justify-content: space-between;
  gap: 22px; align-items: end; margin-bottom: 24px;
}
.section-heading h2, .content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1; margin: 0; letter-spacing: -0.04em;
}
.product-grid, .blog-grid, .feature-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.product-card, .blog-card, .info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 28px rgba(42, 37, 39, 0.06);
}
.product-card img, .blog-card img { width: 100%; height: 255px; object-fit: cover; }
.product-card div, .blog-card div, .info-card { padding: 22px; }
.product-card h3, .blog-card h3, .info-card h3 { margin: 0 0 8px; line-height: 1.2; }
.badge {
  display: inline-block; background: var(--blush); color: var(--rose);
  border-radius: 999px; padding: 5px 11px; font-size: 0.78rem;
  font-weight: 900; margin-bottom: 12px;
}
.page-hero { padding: 70px 6vw 36px; background: linear-gradient(135deg, var(--cream), #ffeef4); }
.content { max-width: 920px; margin: 0 auto; padding: 48px 6vw 80px; }
.content.wide { max-width: 1260px; }
.article {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 32px; padding: clamp(24px, 5vw, 54px); box-shadow: var(--shadow);
}
.article h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98; letter-spacing: -0.05em; margin: 0 0 16px;
}
.article-meta { color: var(--muted); font-weight: 700; }
.article img {
  border-radius: 26px; margin: 24px 0; width: 100%;
  max-height: 560px; object-fit: cover;
}
.notice {
  background: #fff7df; border: 1px solid #efd48f;
  border-radius: 18px; padding: 16px 18px; color: #654610;
}
.shop-table { display: grid; gap: 20px; }
.shop-item {
  display: grid; grid-template-columns: 240px 1fr;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(42, 37, 39, 0.06);
}
.shop-item img { height: 100%; min-height: 220px; width: 100%; object-fit: cover; }
.shop-copy { padding: 24px; }
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 30px; padding: 28px; box-shadow: var(--shadow);
}
label { display: block; font-weight: 800; margin: 16px 0 7px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px;
  padding: 13px 14px; font: inherit; background: #fffdfb;
}
textarea { min-height: 160px; resize: vertical; }
.footer {
  background: var(--charcoal); color: #fff; padding: 42px 6vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.footer a { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: end; }
.news-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: 18px; margin-bottom: 18px;
}
.news-card img { height: 150px; width: 180px; object-fit: cover; border-radius: 18px; }
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .nav { display: none; position: absolute; right: 6vw; top: 70px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .hero, .shop-item, .news-card { grid-template-columns: 1fr; }
  .hero-image { min-height: 380px; }
  .product-grid, .blog-grid, .feature-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .news-card img { width: 100%; }
}


/* ---- Intro video section ---- */
.intro-video-section {
  background: var(--blush);
  padding: 72px 24px;
}
.intro-video-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: var(--charcoal);
}
.intro-video-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 18px;
}
.intro-video-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .intro-video-inner { grid-template-columns: 1fr; gap: 32px; }
  .intro-video-section { padding: 48px 20px; }
}
