@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@400;600;700&display=swap');

:root {
  --blush: #f2e0d0;
  --rose: #d4a0a0;
  --sage: #b5c4b1;
  --cream: #fdf8f4;
  --lavender: #c5b3d4;
  --ink: #3d2c2c;
  --ink-soft: #6b5656;
  --warm-white: #fefcfa;
  --border: #e8d8cc;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--ink); }

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

/* ---- HEADER ---- */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.brand svg { flex-shrink: 0; }
.brand:hover { color: var(--rose); }

nav { display: flex; gap: 24px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav a:hover { color: var(--rose); }

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 72px 24px 56px;
  background: linear-gradient(170deg, var(--blush) 0%, var(--cream) 100%);
}
.hero h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: var(--rose); }
.hero .sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 28px;
}
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--ink); color: #fff; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--rose);
  color: var(--rose);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--rose); color: #fff; }

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- IMAGE BANNER ---- */
.img-banner {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  margin: -40px auto 0;
  display: block;
  max-width: 960px;
  box-shadow: 0 12px 40px rgba(61, 44, 44, 0.10);
}

/* ---- SECTION ---- */
section { padding: 64px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(61,44,44,0.08); }
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card .card-body { padding: 20px; }
.product-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.product-card .price { font-weight: 700; color: var(--rose); font-size: 16px; }

/* ---- ABOUT BAND ---- */
.about-band {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid img { border-radius: 16px; width: 100%; height: 380px; object-fit: cover; }
.about-grid h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-grid p { margin-bottom: 14px; color: var(--ink-soft); }

/* ---- TESTIMONIALS ---- */
.testimonials { text-align: center; }
.testimonial-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 32px; }
.testimonial {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}
.testimonial blockquote { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 14px; color: var(--ink); }

/* ---- SCENT CATALOGUE ---- */
.scent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.scent-card {
  display: flex;
  gap: 20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  align-items: flex-start;
}
.scent-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.scent-card h3 { font-family: var(--serif); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.scent-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 0; }

/* ---- ARTICLE ---- */
article.page-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
article.page-article h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
article.page-article .meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
article.page-article h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}
article.page-article p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.8; }
article.page-article img { border-radius: 12px; margin: 24px 0; }
article.page-article ul, article.page-article ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--ink-soft);
}
article.page-article li { margin-bottom: 6px; }

/* ---- PAGE HERO (sub-pages) ---- */
.page-hero {
  text-align: center;
  padding: 56px 24px 40px;
  background: linear-gradient(170deg, var(--blush) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--ink-soft); max-width: 520px; margin: 0 auto; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: var(--blush);
  padding: 40px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--blush); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
footer .copy { font-size: 13px; color: var(--blush); opacity: 0.7; }
footer .copy a { color: var(--blush); }

/* ---- RESPONSIVE ---- */
@media (max-width: 800px) {
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .scent-grid { grid-template-columns: 1fr; }
  .img-banner { height: 220px; border-radius: 12px; margin-top: -20px; }
  nav { gap: 14px; }
  nav a { font-size: 13px; }
  header .container { justify-content: center; text-align: center; }
  nav { justify-content: center; }
  .hero { padding: 48px 20px 40px; }
  article.page-article h1 { font-size: 28px; }
  section { padding: 40px 0; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
