:root {
  /* Enchanted forest — soft, ethereal, magical */
  --garden-deep: #1a2318;
  --garden-dark: #223020;
  --garden-mid: #2e4a2a;
  --garden-soft: #3d6636;
  --moss: #6ba05a;
  --sage: #a8cc94;
  --fern: #8dc278;
  --parchment: #e3dac4;
  --parchment2: #ddd3ba;
  --cream: #e7dfc9;
  --gold-rgb: 94, 69, 19;
  --gold-on-light: #5e4513;
  --gold-on-light-soft: #5e4513;
  --gold-on-dark: #edd898;
  --gold-on-dark-soft: #dcc27a;
  --gold: var(--gold-on-light);
  --gold-light: #b48a3a;
  --gold-pale: #edd898;
  --blush: #d4a898;
  --lavender: #b8bddc;
  --dewdrop: rgba(140, 200, 110, 0.12);
  --ink: #1a170f;
  --body: #3a3530;
  --muted: #7a7868;
  --rule: rgba(140, 180, 110, 0.2);
  /* Enchanted highlight greens */
  --leaf-glow: rgba(120, 200, 100, 0.18);
  --leaf-soft: rgba(160, 210, 130, 0.1);
  --mist: rgba(200, 230, 190, 0.06);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: var(--parchment2);
  color: var(--body);
  overflow-x: hidden;
}

/* Subtle grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--parchment);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══ NAV ═══ */
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0.6rem clamp(1.2rem, 5vw, 5rem);
  background: rgba(22, 35, 18, 0.94);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(120, 180, 90, 0.15);
  transition: padding 0.35s ease;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  filter: invert(1) sepia(0.4) saturate(1.2) brightness(0.95);
  opacity: 0.92;
  object-fit: cover;
}
.nav-brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  line-height: 1;
}
.nav-brand-top {
  font-family: "Cormorant SC", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-on-dark-soft);
  font-weight: 300;
}
.nav-brand-main {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--parchment);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: "Cormorant SC", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(245, 237, 216, 0.6);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-on-dark-soft);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── Scroll-to-top ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 35, 18, 0.9);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s;
  backdrop-filter: blur(8px);
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  background: rgba(22, 35, 18, 1);
  transform: translateY(-3px);
}

/* ── Character counter ── */
.char-counter {
  font-size: 0.68rem;
  color: rgba(245, 237, 216, 0.65);
  text-align: right;
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.char-counter.warn {
  color: rgba(var(--gold-rgb), 0.7);
}
.char-counter.over {
  color: #c0534a;
}
.nav-cta {
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  color: var(--gold-on-dark-soft) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 1px;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--garden-deep);
}

/* Layered garden atmosphere */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(61, 102, 54, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 60%, rgba(120, 190, 100, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(200, 180, 100, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 48, 24, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 50%, rgba(80, 140, 70, 0.06) 0%, transparent 60%);
}

/* Firefly / dew particles (CSS-only via pseudo) */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Garden edge foliage - SVG left */
.hero-foliage-left {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 260px;
  pointer-events: none;
  opacity: 0.18;
}
/* Garden edge foliage - SVG right */
.hero-foliage-right {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 280px;
  pointer-events: none;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10rem clamp(1.5rem, 5vw, 5rem) 7rem;
  text-align: center;
}

/* Central logo medallion */
.hero-logo-medallion {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 3.5rem;
  opacity: 0;
  animation: fadeIn 1s 0.2s ease forwards;
}
.hero-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease infinite;
}
.hero-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  animation: ringPulse 3s ease infinite;
}
.hero-logo-ring2 {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  animation: ringPulse 3s 0.5s ease infinite;
}
.hero-logo-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: invert(1) sepia(0.3) saturate(1) brightness(1);
  position: relative;
  z-index: 2;
  object-fit: cover;
}
/* Corner vine ornaments */
.hero-ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
}
.hero-ornament-tl {
  top: 10px;
  left: 10px;
}
.hero-ornament-tr {
  top: 10px;
  right: 10px;
  transform: scaleX(-1);
}

.hero-eyebrow {
  font-family: "Cormorant SC", serif;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--gold-on-dark-soft);
  margin-bottom: 2rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-on-dark-soft);
  opacity: 0.7;
}

.hero-title {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 6.5vw, 6.8rem);
  line-height: 1;
  color: var(--parchment);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}
.hero-title .line-italic {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-title .line-script {
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(245, 237, 216, 0.65);
  max-width: 580px;
  margin: 2rem auto 3.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}

.hero-btns {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--parchment);
  padding: 1rem 2.6rem;
  text-decoration: none;
  font-family: "Cormorant SC", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gold);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--gold-rgb), 0.3);
}
.btn-outline {
  color: var(--parchment);
  text-decoration: none;
  font-family: "Cormorant SC", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  border: 1px solid rgba(245, 237, 216, 0.3);
  padding: 0.9rem 2rem;
  border-radius: 1px;
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Floating product teasers */
.hero-teasers {
  display: flex;
  gap: 1.2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
}
.teaser {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  padding: 1.1rem 1.6rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-align: left;
  min-width: 180px;
}
.teaser:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--gold-rgb), 0.35);
  transform: translateY(-4px);
}
.teaser-label {
  font-family: "Cormorant SC", serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold-on-dark-soft);
  margin-bottom: 0.35rem;
}
.teaser-name {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--parchment);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.hero-scroll span {
  font-family: "Cormorant SC", serif;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: rgba(245, 237, 216, 0.28);
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(var(--gold-rgb), 0.6), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sr {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.sr.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.22s;
}
.d3 {
  transition-delay: 0.34s;
}
.d4 {
  transition-delay: 0.46s;
}

/* ═══ FIREFLY CANVAS ═══ */
#fireflyCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ═══ HAMBURGER ═══ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1002;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(22, 35, 18, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}
.nav-mobile-overlay.open {
  display: flex;
}
.nav-mobile-overlay a {
  font-family: "Cormorant SC", serif;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: rgba(245, 237, 216, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-overlay a:hover {
  color: var(--gold-light);
}
.nav-mobile-overlay .nav-cta {
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  color: var(--gold) !important;
  padding: 0.85rem 2.4rem;
  margin-top: 0.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  /* NAV */
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-logo-img {
    width: 52px;
    height: 52px;
  }
  .nav-brand-main {
    font-size: 1.1rem;
  }
  .nav-brand-top {
    display: none;
  }
  #nav {
    padding: 0.75rem clamp(1.2rem, 5vw, 5rem);
  }

  /* HERO */
  .hero-inner {
    padding: 7rem clamp(1.5rem, 5vw, 5rem) 5rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-primary,
  .btn-outline {
    text-align: center;
    width: 100%;
    max-width: 280px;
  }
  .hero-teasers {
    gap: 0.8rem;
  }
  .teaser {
    min-width: 140px;
    flex: 1 1 140px;
  }
  .hero-foliage-left,
  .hero-foliage-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-teasers {
    flex-direction: column;
    align-items: center;
  }
  .teaser {
    width: 100%;
    max-width: 280px;
  }
  .hero-logo-medallion {
    width: 140px;
    height: 140px;
    margin-bottom: 2.5rem;
  }
  .hero-logo-img {
    width: 140px;
    height: 140px;
  }
}
