@font-face{
  font-family:'Playfair Display';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/playfair-normal-vi.woff2) format('woff2');
  unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}
@font-face{
  font-family:'Playfair Display';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/playfair-normal-la.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Playfair Display';
  font-style:italic;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/playfair-italic-vi.woff2) format('woff2');
  unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}
@font-face{
  font-family:'Playfair Display';
  font-style:italic;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/playfair-italic-la.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/dmsans-vi.woff2) format('woff2');
  unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url(fonts/dmsans-la.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --crimson: #8B1A1A;
  --gold: #C9A84C;
  --gold-light: #E8D4A0;
  --cream: #FAF6EF;
  --warm-brown: #3D2B1F;
  --text: #2C1810;
  --green: #4A7C59;
  --green-matcha: #6B8F5E;
  --cacao: #6B3F2A;
  --orange: #C9752E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAVBAR (mobile-first base) */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--crimson);
  line-height: 1.1;
}

.nav-brand span {
  display: block;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--crimson);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  background: var(--cream);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 24px rgba(61,43,31,0.1);
  padding: 8px 20px 20px;
}

.nav-links.open { display: flex; }

.nav-links li { width: 100%; }

.nav-links a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-brown);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 14px 0;
  border-bottom: 1px solid rgba(61,43,31,0.08);
}

.nav-links li:last-child a { border-bottom: none; }

.nav-links a:hover { color: var(--crimson); }
.nav-links a.active { color: var(--crimson); }

.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  font-weight: 500 !important;
  text-align: center;
  transition: background 0.2s, transform 0.2s !important;
  margin-top: 8px;
}

.nav-cta:hover {
  background: #6d1414 !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ============ BILINGUAL VI/EN ============ */
[data-lang="vi"] .lang-en { display: none !important; }
[data-lang="en"] .lang-vi { display: none !important; }

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

.lang-switch {
  display: flex;
  border: 1.5px solid rgba(139,26,26,0.25);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--warm-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 11px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--crimson);
  color: #fff;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 9vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--crimson);
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--warm-brown);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #5c4033;
  max-width: 440px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(139,26,26,0.3);
}

.btn-primary:hover {
  background: #6d1414;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139,26,26,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--warm-brown);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(61,43,31,0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  height: 260px;
  order: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--cream));
}

/* DECORATIVE LINE */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 20px;
  padding: 32px 0;
}

.divider-line { flex: 1; height: 1px; background: rgba(201,168,76,0.3); }
.divider-icon { color: var(--gold); font-size: 20px; }

/* FEATURES BAR */
.features-bar {
  background: var(--crimson);
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.5;
}

/* SECTIONS / PRODUCTS */
.section { padding: 48px 20px; }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 900;
  color: var(--crimson);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: #5c4033;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61,43,31,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(61,43,31,0.16);
}

.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.tag-original { background: var(--crimson); }
.tag-matcha { background: var(--green-matcha); }
.tag-cacao { background: var(--cacao); }
.tag-khong-duong { background: var(--orange); }

.product-body {
  padding: 24px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-brown);
  margin-bottom: 8px;
}

.product-en {
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 14px;
  color: #7a5c4a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-weight {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--crimson);
  border: 1.5px solid var(--crimson);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.product-btn:hover {
  background: var(--crimson);
  color: #fff;
}

/* STORY SECTION */
.story-section {
  background: var(--warm-brown);
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
}

.story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.story-img-grid { display: flex; flex-direction: column; gap: 12px; }
.story-img-grid .story-img-wrap { aspect-ratio: 4/3; }
.story-img-grid .story-img-row { display: flex; gap: 12px; }
.story-img-grid .story-img-row .story-img-wrap { flex: 1; aspect-ratio: 1/1; }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid rgba(201,168,76,0.3);
  pointer-events: none;
}

.story-content { color: #fff; }

.story-content .section-label { color: var(--gold-light); opacity: 0.8; }

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.stat-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 18px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.story-links {
  display: flex;
  gap: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--warm-brown);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* CTA SECTION */
.cta-section {
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fdf8f0 0%, #f5ece0 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 900;
  color: var(--crimson);
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  font-size: 16px;
  color: #5c4033;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-shopee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #EE4D2D;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(238,77,45,0.35);
}

.btn-shopee:hover {
  background: #d43d1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(238,77,45,0.45);
}

.btn-zalo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0068FF;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,104,255,0.3);
}

.btn-zalo:hover {
  background: #0055cc;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,104,255,0.4);
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1877F2;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(24,119,242,0.3);
}

.btn-fb:hover {
  background: #1464d8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(24,119,242,0.4);
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 20px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 10px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ PAGE HEADER (for interior pages: san-pham, ve-chung-toi, blog, lien-he) ============ */
.page-header {
  padding: 100px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #fdf8f0 0%, #f5ece0 100%);
}

.page-header .section-label { display: flex; justify-content: center; }
.page-header .section-title { margin-bottom: 8px; }
.page-header .section-desc { margin: 0 auto; }

.breadcrumb {
  font-size: 13px;
  color: #8a6d57;
  margin-bottom: 16px;
}
.breadcrumb a { color: #8a6d57; text-decoration: none; }
.breadcrumb a:hover { color: var(--crimson); }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61,43,31,0.08);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,0.14); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; }
.blog-card-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--warm-brown); margin-bottom: 8px; line-height: 1.3; }
.blog-card-desc { font-size: 13px; color: #7a5c4a; line-height: 1.6; }

/* Article body */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.article-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.article h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 6vw, 42px); font-weight: 900; color: var(--crimson); line-height: 1.2; margin-bottom: 16px; }
.article .article-meta { font-size: 13px; color: #9a8574; margin-bottom: 32px; }
.article img { width: 100%; border-radius: 16px; margin: 24px 0; }
.article h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--warm-brown); margin: 32px 0 12px; }
.article p { font-size: 16px; line-height: 1.85; color: #4a3527; margin-bottom: 16px; }
.article ul { margin: 0 0 16px 20px; color: #4a3527; font-size: 16px; line-height: 1.85; }
.article li { margin-bottom: 6px; }
.article-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 8px; font-size: 14px; color: #7a5c4a; margin: 24px 0; }

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 100px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-detail-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--crimson); margin: 8px 0 20px; }
.product-detail-list { margin: 16px 0 24px 20px; color: #4a3527; font-size: 15px; line-height: 1.8; }

/* Simple grid utility for 2-col content blocks (mission/commitment, contact cards) */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(61,43,31,0.08);
}
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--crimson); margin-bottom: 10px; }
.info-card p { font-size: 14px; line-height: 1.75; color: #5c4033; }

/* ============ RESPONSIVE (mobile-first: base styles above are mobile) ============ */

/* TABLET: from 768px */
@media (min-width: 768px) {
  nav { padding: 16px 40px; }

  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: none;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-links li { width: auto; }

  .nav-links a {
    padding: 0;
    border-bottom: none;
    font-size: 14px;
  }

  .nav-cta { margin-top: 0; }

  .divider { margin: 0 40px; }

  .features-bar { padding: 40px; }

  .section { padding: 72px 40px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .story-section { padding: 72px 40px; gap: 48px; }

  .story-links { flex-wrap: nowrap; }

  .cta-section { padding: 72px 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  footer { padding: 56px 40px 36px; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr 1fr; padding: 110px 40px 60px; align-items: start; }
}

/* DESKTOP: from 1024px */
@media (min-width: 1024px) {
  nav { padding: 16px 48px; }

  .nav-logo img { height: 48px; width: 48px; }
  .nav-brand { font-size: 18px; }
  .nav-brand span { font-size: 11px; letter-spacing: 2px; }
  .nav-links { gap: 36px; }
  .nav-cta { padding: 10px 24px !important; }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero-left { padding: 80px 60px 80px 80px; order: initial; }
  .hero-right { height: auto; order: initial; }
  .hero-right::after { background: linear-gradient(to right, var(--cream) 0%, transparent 30%); }

  .hero-badge { margin-bottom: 32px; }
  .hero-subtitle { margin-bottom: 24px; }
  .hero-desc { font-size: 16px; margin-bottom: 48px; }
  .hero-buttons { gap: 16px; }
  .btn-primary, .btn-secondary { padding: 16px 32px; font-size: 15px; }

  .divider { margin: 0 80px; }

  .features-bar { grid-template-columns: repeat(4, 1fr); padding: 48px 80px; gap: 32px; }
  .feature-icon { width: 48px; height: 48px; font-size: 22px; }
  .feature-title { font-size: 16px; }
  .feature-desc { font-size: 13px; }

  .section { padding: 100px 80px; }
  .section-desc { margin-bottom: 60px; }

  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .product-img-wrap { height: 220px; }
  .product-body { padding: 24px; }
  .product-name { font-size: 19px; }
  .product-desc { margin-bottom: 24px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

  .story-section { grid-template-columns: 1fr 1fr; padding: 100px 80px; gap: 80px; }
  .story-section::before { top: -40px; left: 60px; font-size: 400px; }
  .story-title { margin-bottom: 24px; }
  .story-body { font-size: 16px; margin-bottom: 40px; }
  .story-stats { gap: 24px; margin-bottom: 40px; }
  .stat-item { padding: 20px; }
  .stat-number { font-size: 36px; }
  .stat-label { font-size: 13px; }
  .btn-gold, .btn-outline-white { padding: 16px 32px; font-size: 15px; }

  .cta-section { padding: 100px 80px; }
  .cta-desc { font-size: 17px; margin-bottom: 48px; }
  .cta-buttons { gap: 20px; }

  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  footer { padding: 60px 80px 40px; }
  .footer-brand img { height: 60px; width: 60px; }
  .footer-brand-name { font-size: 20px; }
  .footer-col h4 { margin-bottom: 20px; }
  .footer-bottom { padding-top: 28px; font-size: 13px; }

  .page-header { padding: 140px 80px 60px; }
  .article { padding: 60px 20px 100px; }
  .product-detail { padding: 140px 80px 80px; gap: 60px; }
}
