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

:root {
  --cream:   #f7f3ee;
  --petal:   #e8d5c4;
  --blush:   #d4a5a5;
  --rose:    #9b5e6a;
  --leaf:    #4a6741;
  --bark:    #2d2418;
  --mist:    #f0ebe4;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

/* Vietnamese body font — DM Sans lacks Vietnamese glyphs, so use Be Vietnam Pro
   (close to the brand's Proxima Nova) whenever the site is in Vietnamese. */
html[lang="vi"] { --font-body: 'Be Vietnam Pro', 'DM Sans', sans-serif; }

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(20,12,8,0.35);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(45,36,24,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300; font-style: italic;
  color: #fff; text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--bark); }
.nav-logo span { color: var(--blush); }
nav.scrolled .nav-logo span { color: var(--rose); }

/* Desktop links */
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--bark); opacity: 0.7; }
.nav-links a:hover { color: #fff; opacity: 1; }
nav.scrolled .nav-links a:hover { color: var(--bark); opacity: 1; }
.nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff !important; opacity: 1 !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: rgba(255,255,255,0.28) !important; }
nav.scrolled .nav-cta {
  background: var(--rose) !important; border-color: var(--rose); color: #fff !important;
}
nav.scrolled .nav-cta:hover { background: var(--bark) !important; border-color: var(--bark); }

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 300;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.4s;
  transform-origin: center;
}
nav.scrolled .hamburger span { background: var(--bark); }
/* X state */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(20,12,8,0.97);
  backdrop-filter: blur(16px);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1; pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300; font-style: italic;
  color: rgba(247,243,238,0.75);
  text-decoration: none; letter-spacing: 0.04em;
  padding: 0.6rem 2rem;
  transition: color 0.2s;
  text-align: center;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .mobile-cta {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-style: normal;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--rose); color: #fff !important;
  padding: 0.85rem 2.5rem; border-radius: 2px;
}
.mobile-menu .mobile-cta:hover { background: #fff; color: var(--bark) !important; }
.mobile-divider {
  width: 40px; height: 1px;
  background: rgba(247,243,238,0.15);
  margin: 1rem 0;
}

/* ── Language toggle ── */
/* Language toggle (set display:none here to hide both again) */
.lang-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  margin-left: 1.5rem;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}
nav.scrolled .lang-toggle {
  border-color: rgba(45,36,24,0.18);
  background: rgba(45,36,24,0.05);
}
.mobile-lang-toggle { display: flex; }
.lang-btn {
  background: none; border: none; cursor: pointer; padding: 0.2rem 0.1rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn.active { color: #fff; font-weight: 500; }
nav.scrolled .lang-btn { color: rgba(45,36,24,0.45); }
nav.scrolled .lang-btn:hover { color: var(--bark); }
nav.scrolled .lang-btn.active { color: var(--bark); }
.lang-sep {
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  line-height: 1; user-select: none;
}
nav.scrolled .lang-sep { color: rgba(45,36,24,0.2); }

/* Mobile lang toggle (inside drawer) */
.mobile-lang-toggle {
  align-items: center; gap: 0.5rem;
  margin-top: 2.5rem;
}
.mobile-lang-toggle .lang-btn {
  font-size: 0.85rem; letter-spacing: 0.12em;
  color: rgba(247,243,238,0.45);
}
.mobile-lang-toggle .lang-btn:hover { color: rgba(247,243,238,0.85); }
.mobile-lang-toggle .lang-btn.active { color: #fff; }
.mobile-lang-toggle .lang-sep { color: rgba(247,243,238,0.2); }

/* ── Hero — full bleed ── */
#hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 70% 50%, #c48888 0%, #9b5e6a 50%, #2d2418 100%);
  z-index: -1;
}
.hero-text-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 1;
  background: linear-gradient(to right,
    rgba(20,12,8,0.88) 0%,
    rgba(20,12,8,0.82) 20%,
    rgba(20,12,8,0.70) 35%,
    rgba(20,12,8,0.58) 44%,
    rgba(20,12,8,0.30) 56%,
    rgba(20,12,8,0.08) 68%,
    transparent 78%);
}
.hero-right-vignette {
  position: absolute; top: 0; right: 0;
  width: 30%; height: 100%; z-index: 1;
  background: linear-gradient(to left, rgba(20,12,8,0.25) 0%, transparent 100%);
  pointer-events: none;
}
.hero-text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 1.4rem; font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300; line-height: 1.08;
  color: #fff; margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: #a8c4a0; }
.hero-desc {
  font-size: 1rem; max-width: 400px;
  color: rgba(247,243,238,0.72); margin-bottom: 2.8rem; line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  background: var(--rose); color: #fff;
  padding: 0.85rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.btn-primary:hover { background: #fff; color: var(--bark); }
.btn-ghost {
  color: rgba(247,243,238,0.75); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(247,243,238,0.35);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(247,243,238,0.7); }
.hero-image-col { position: relative; z-index: 2; }
.orchid-label {
  position: absolute; bottom: 2rem; right: 2rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: rgba(247,243,238,0.7);
  text-shadow: 0 1px 6px rgba(20,12,8,0.5);
}
.scroll-hint {
  position: absolute; bottom: 2.2rem; left: 6rem; z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,243,238,0.45);
}
.scroll-hint-line { width: 32px; height: 1px; background: rgba(247,243,238,0.3); }

/* ── Section shared ── */
section { padding: 6rem 6rem; }
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1rem; font-weight: 400;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; color: var(--bark); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--rose); }

/* ── Varieties ── */
#varieties { background: var(--mist); }
.varieties-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.varieties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.variety-card {
  background: var(--cream); border-radius: 4px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(45,36,24,0.07);
  display: block; text-decoration: none; color: inherit;
}
.variety-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,36,24,0.12); }
.card-image { height: 220px; overflow: hidden; position: relative; }
.card-image-fill { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fill-blush   { background: linear-gradient(145deg, #e8d5c4, #d4a5a5); }
.fill-white   { background: linear-gradient(145deg, #f0ebe4, #d6cfc8); }
.fill-purple  { background: linear-gradient(145deg, #c9b8d4, #8b6fa8); }
.fill-yellow  { background: linear-gradient(145deg, #e8dba4, #c8a84b); }
.fill-striped { background: repeating-linear-gradient(45deg, #e8d5c4 0px, #e8d5c4 10px, #d4a5a5 10px, #d4a5a5 20px); }
.fill-spotted { background:
    radial-gradient(circle at 30% 40%, #c9b8d4 8px, transparent 8px),
    radial-gradient(circle at 70% 60%, #c9b8d4 5px, transparent 5px),
    radial-gradient(circle at 50% 20%, #c9b8d4 6px, transparent 6px),
    linear-gradient(145deg, #f0ebe4, #e0d5c4); }
.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--rose); color: #fff;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px;
}
.card-body { padding: 1.5rem; }
.card-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; font-style: italic; color: var(--bark); margin-bottom: 0.25rem; }
.card-variety { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }
.card-desc { font-size: 0.88rem; color: rgba(45,36,24,0.65); margin-bottom: 1.2rem; line-height: 1.7; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }.card-btn {
  background: transparent; border: 1px solid var(--rose); color: var(--rose);
  padding: 0.45rem 1rem; border-radius: 2px; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.card-btn:hover { background: var(--rose); color: #fff; }

/* ── About ── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; height: 500px; }
.about-img-block {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #d4a5a5 0%, #9b5e6a 60%, #4a6741 100%);
  border-radius: 4px;
}
.about-img-block::after {
  content: ''; position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 70%; height: 70%; border: 2px solid var(--petal); border-radius: 4px; z-index: -1;
}
.about-stat {
  position: absolute; bottom: 2.5rem; left: -2.5rem;
  background: var(--cream); padding: 1.5rem 2rem;
  border-radius: 4px; box-shadow: 0 8px 32px rgba(45,36,24,0.12);
}
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--rose); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(45,36,24,0.55); margin-top: 0.3rem; }
.about-text .section-title { margin-top: 0.8rem; }
.about-body { color: rgba(45,36,24,0.65); margin-bottom: 1.5rem; }
.about-highlights { display: flex; gap: 2rem; margin-top: 2rem; }
.highlight { border-left: 2px solid var(--petal); padding-left: 1rem; }
.highlight-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); margin-bottom: 0.3rem; }
.highlight-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; color: var(--bark); }

/* ── Care Guide ── */
#care { background: var(--bark); color: var(--cream); padding: 5rem 6rem; }
#care .section-eyebrow { color: var(--petal); }
#care .section-title { color: var(--cream); margin-bottom: 3rem; }
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.care-item { border-top: 1px solid rgba(247,243,238,0.15); padding-top: 1.5rem; }
.care-icon { width: 36px; height: 36px; margin-bottom: 1rem; background: var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.care-item-title { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; margin-bottom: 0.5rem; color: var(--cream); }
.care-item-desc { font-size: 0.85rem; color: rgba(247,243,238,0.55); line-height: 1.7; }

/* ── Contact ── */
#contact { background: var(--mist); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-header { margin-bottom: 2rem; }
.contact-header .section-title { margin-bottom: 0.8rem; }
.contact-intro { color: rgba(45,36,24,0.6); margin-bottom: 2rem; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(45,36,24,0.5); margin-bottom: 0.4rem; }
input, textarea, select {
  width: 100%; padding: 0.75rem 1rem; background: var(--cream);
  border: 1px solid rgba(45,36,24,0.14); border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--bark);
  outline: none; transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--rose); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--rose); color: #fff; border: none;
  padding: 1rem; border-radius: 2px; font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--bark); }
.form-note {
  font-size: 0.78rem; line-height: 1.6; color: rgba(45,36,24,0.55);
  margin-top: 0.9rem;
}

/* ── Zalo order modal ── */
.zalo-modal {
  position: fixed; inset: 0; z-index: 1000; padding: 1.5rem;
  background: rgba(45,36,24,0.55); display: none;
  align-items: center; justify-content: center;
}
.zalo-modal.open { display: flex; }
.zalo-card {
  background: var(--cream); border-radius: 6px; width: 100%; max-width: 460px;
  padding: 2.2rem; box-shadow: 0 24px 60px rgba(0,0,0,0.3); text-align: left;
}
.zalo-title { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 1.7rem; color: var(--bark); margin-bottom: 0.6rem; }
.zalo-steps { font-size: 0.9rem; line-height: 1.75; color: rgba(45,36,24,0.7); margin-bottom: 1.1rem; }
.zalo-text {
  width: 100%; min-height: 130px; resize: vertical; margin-bottom: 1.1rem;
  font-family: var(--font-body); font-size: 0.85rem; line-height: 1.55;
  padding: 0.8rem; border: 1px solid rgba(45,36,24,0.2); border-radius: 4px;
  color: var(--bark); background: #fff;
}
.zalo-actions { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.zalo-btn {
  flex: 1 1 auto; text-align: center; padding: 0.75rem 1rem; border: none; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: background 0.2s, opacity 0.2s;
}
.zalo-copy { background: var(--bark); color: #fff; }
.zalo-copy:hover { opacity: 0.88; }
.zalo-open { background: var(--rose); color: #fff; }
.zalo-open:hover { opacity: 0.88; }
.zalo-close {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-body); font-size: 0.78rem; color: rgba(45,36,24,0.5);
  text-decoration: underline; letter-spacing: 0.04em;
}
.zalo-close:hover { color: var(--bark); }

/* ── Stock badges ── */
.stock-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.22rem 0.65rem; border-radius: 999px; white-space: nowrap;
}
.stock-in  { color: #3f6b3f; background: rgba(74,103,65,0.12); }
.stock-low { color: #9a6b1f; background: rgba(190,140,40,0.16); }
.stock-out { color: #9b5e6a; background: rgba(155,94,106,0.15); }
.detail-stock { margin-bottom: 1.5rem; }
.detail-stock:empty { display: none; }
button.btn-primary.is-soldout {
  background: rgba(45,36,24,0.18); color: rgba(45,36,24,0.5);
  cursor: not-allowed;
}
button.btn-primary.is-soldout:hover { background: rgba(45,36,24,0.18); color: rgba(45,36,24,0.5); }

/* ── Map panel ── */
.map-panel { display: flex; flex-direction: column; gap: 1.2rem; }
.map-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.2rem; }
.map-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--bark); line-height: 1.2; margin-bottom: 0.6rem; }
.map-title em { font-style: italic; color: var(--rose); }
.map-frame {
  width: 100%; height: 320px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(155,94,106,0.15);
  box-shadow: 0 12px 32px rgba(155,94,106,0.18), 0 4px 12px rgba(155,94,106,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-frame:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(155,94,106,0.28), 0 8px 20px rgba(155,94,106,0.15); }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.map-details { display: flex; flex-direction: column; gap: 0.9rem; padding-top: 0.4rem; }
.map-detail-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.map-detail-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--petal); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }
.map-detail-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(45,36,24,0.4); margin-bottom: 0.15rem; }
.map-detail-value { font-size: 0.9rem; color: var(--bark); line-height: 1.5; }
.map-detail-value a { color: var(--rose); text-decoration: none; }
.map-detail-value a:hover { text-decoration: underline; }
.map-directions {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
  border-bottom: 1px solid rgba(155,94,106,0.3);
  padding-bottom: 1px; transition: color 0.2s; margin-top: 0.3rem;
}
.map-directions:hover { color: var(--bark); border-color: rgba(45,36,24,0.3); }

/* ── Footer ── */
footer {
  background: var(--bark); color: rgba(247,243,238,0.5);
  padding: 3rem 6rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--cream); }
.footer-logo span { color: var(--blush); }
.footer-copy { font-size: 0.78rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(247,243,238,0.4); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

/* ── Fade-in ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero-text { padding: 8rem 2rem 6rem 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .lang-toggle { display: flex; margin-left: auto; margin-right: 0.9rem; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-text-overlay { width: 100%; background: rgba(20,12,8,0.62); }
  .hero-text { padding: 7rem 2rem 4rem; }
  .hero-image-col { display: none; }
  .scroll-hint { left: 2rem; }
  section { padding: 4rem 2rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .varieties-grid { grid-template-columns: 1fr 1fr; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  #care, footer { padding: 4rem 2rem; }
  .varieties-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-stat { left: 0; bottom: -2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
  .varieties-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ── Varieties page ── */
.page-hero {
  padding: 10rem 6rem 5rem;
  background: var(--bark);
  color: var(--cream);
}
.page-hero .section-eyebrow { color: var(--petal); }
.page-hero .section-title { color: var(--cream); margin-bottom: 0.8rem; }
.page-hero-desc { color: rgba(247,243,238,0.6); max-width: 520px; font-size: 1rem; }

.catalog-search { margin-top: 2rem; max-width: 360px; }
.catalog-search-input {
  width: 100%;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.catalog-search-input::placeholder { color: rgba(247,243,238,0.45); }
.catalog-search-input:focus {
  border-color: var(--petal);
  background: rgba(255,255,255,0.12);
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--bark);
  opacity: 0.6;
  font-size: 1.05rem;
  padding: 3rem 0;
}

/* Home-page varieties search (light section) */
.varieties-search { max-width: 360px; margin: -1.5rem 0 2.5rem; }
.varieties-search-input {
  width: 100%;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bark);
  background: var(--cream);
  border: 1px solid rgba(45,36,24,0.18);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.varieties-search-input::placeholder { color: rgba(45,36,24,0.4); }
.varieties-search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(155,94,106,0.12);
}

.catalog { padding: 5rem 6rem; background: var(--mist); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }

.product-card {
  background: var(--cream); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(45,36,24,0.07);
  display: grid; grid-template-columns: 340px 1fr;
  transition: box-shadow 0.3s;
  text-decoration: none; color: inherit;
}
.product-card:hover { box-shadow: 0 16px 48px rgba(45,36,24,0.12); }

.product-swatch { position: relative; min-height: 300px; }
.product-swatch .card-image-fill { position: absolute; inset: 0; }
.product-swatch .card-badge { position: absolute; top: 1rem; left: 1rem; right: auto; }

.product-info { padding: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.product-species { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.product-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; font-style: italic; color: var(--bark); line-height: 1.1; }
.product-desc { font-size: 0.88rem; color: rgba(45,36,24,0.65); line-height: 1.8; margin: 0.4rem 0 0.8rem; flex: 1; }

.product-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.meta-row { display: flex; gap: 0.6rem; align-items: baseline; }
.meta-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(45,36,24,0.4); min-width: 80px; }
.meta-value { font-size: 0.85rem; color: var(--bark); }

.product-actions { display: flex; gap: 0.8rem; align-items: center; }

@media (max-width: 1200px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 300px 1fr; }
}
@media (max-width: 900px) {
  .page-hero { padding: 8rem 2rem 4rem; }
  .catalog { padding: 4rem 2rem; }
  .product-card { grid-template-columns: 1fr; }
  .product-swatch { min-height: 220px; }
}
@media (max-width: 560px) {
  .product-actions { flex-direction: column; align-items: stretch; }
  .product-actions .btn-primary, .product-actions .card-btn { text-align: center; }
}

/* ── Variety detail page ── */
.detail-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh; padding-top: 72px;
}
.detail-swatch { display: flex; flex-direction: column; }
.swatch-main { position: relative; flex: 1; min-height: 500px; overflow: hidden; }
.detail-swatch .card-image-fill { position: absolute; inset: 0; }
.detail-swatch .card-badge { position: absolute; top: 2rem; left: 2rem; font-size: 0.75rem; padding: 0.4rem 1rem; }

.swatch-thumbs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: rgba(45,36,24,0.04);
  border-top: 1px solid rgba(45,36,24,0.08);
}
.swatch-thumb {
  width: 72px; height: 72px; padding: 0;
  border: 2px solid transparent; border-radius: 3px;
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  background: none; opacity: 0.55;
  transition: border-color 0.15s, opacity 0.15s;
}
.swatch-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swatch-thumb:hover { opacity: 0.82; }
.swatch-thumb.active { border-color: var(--rose); opacity: 1; }

.detail-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5rem 5rem 4rem; background: var(--cream);
}
.detail-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(45,36,24,0.4); text-decoration: none;
  margin-bottom: 2.5rem; transition: color 0.2s;
}
.detail-back:hover { color: var(--rose); }
.detail-species { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.6rem; }
.detail-name {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; font-style: italic; color: var(--bark);
  line-height: 1.05; margin-bottom: 1.4rem;
}
.detail-desc { font-size: 1rem; color: rgba(45,36,24,0.65); line-height: 1.9; margin-bottom: 2rem; max-width: 460px; }

.detail-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  border-top: 1px solid rgba(45,36,24,0.1); padding-top: 1.8rem; margin-bottom: 2rem;
}
.spec { display: flex; flex-direction: column; gap: 0.25rem; }
.spec-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(45,36,24,0.4); }
.spec-value { font-size: 0.95rem; color: var(--bark); font-weight: 400; }

.detail-actions { display: flex; gap: 1rem; align-items: center; }
.detail-actions button.btn-primary { border: none; cursor: pointer; font-family: inherit; }
.detail-actions .btn-ghost { color: rgba(45,36,24,0.55); border-color: rgba(45,36,24,0.3); }
.detail-actions .btn-ghost:hover { color: var(--bark); border-color: rgba(45,36,24,0.6); }

.detail-related { padding: 5rem 6rem; background: var(--mist); }
.detail-related .section-title { margin-bottom: 2.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card {
  background: var(--cream); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(45,36,24,0.07); text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s; display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,36,24,0.1); }
.related-swatch { height: 140px; position: relative; }
.related-swatch .card-image-fill { position: absolute; inset: 0; }
.related-body { padding: 1rem 1.2rem; }
.related-name { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--bark); margin-bottom: 0.15rem; }
.related-species { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose); }

@media (max-width: 900px) {
  .detail-hero { grid-template-columns: 1fr; min-height: auto; }
  .swatch-main { min-height: 300px; }
  .detail-info { padding: 3rem 2rem; }
  .detail-related { padding: 4rem 2rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .detail-specs { grid-template-columns: 1fr; }
  .detail-actions { flex-direction: column; align-items: stretch; }
  .detail-actions a, .detail-actions button { text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
}
