/* ==========================================================================
   NAMMORA BEENUTS — DESIGN SYSTEM
   Black + cream dominant, honey gold as accent only.
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  src: local('Cormorant Garamond');
  font-display: swap;
}

:root {
  /* -- Palette -- */
  --black:        #0B0A08;
  --charcoal:     #151310;
  --cream:        #F5F0E6;
  --beige:        #D8C7A8;
  --gold:         #C9902E;
  --amber:        #E3A63A;
  --nut-brown:    #6B4024;
  --white:        #FFFFFF;

  --ink:          var(--black);
  --ink-soft:     rgba(11, 10, 8, 0.66);
  --line:         rgba(11, 10, 8, 0.12);
  --line-on-dark: rgba(245, 240, 230, 0.14);

  /* -- Type -- */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* -- Motion -- */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow: 1.1s;
  --dur-med: 0.6s;
  --dur-fast: 0.3s;

  /* -- Layout -- */
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; } /* Lenis handles smoothing; avoid double smoothing */
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -- Typography helpers -- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}
.body-lg {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}
.on-dark { color: var(--cream); }
.on-dark .body-lg, .on-dark p { color: rgba(245, 240, 230, 0.72); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-dark { background: var(--black); color: var(--cream); }
.section-charcoal { background: var(--charcoal); color: var(--cream); }

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease-lux), color var(--dur-fast) var(--ease-lux), transform var(--dur-fast) var(--ease-lux);
}
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }
.btn-ghost { color: var(--cream); }
.btn-ghost:hover { background: rgba(245, 240, 230, 0.08); transform: translateY(-2px); }
.btn-ghost.on-cream { color: var(--ink); }
.btn-ghost.on-cream:hover { background: rgba(11, 10, 8, 0.06); }
.btn svg { width: 14px; height: 14px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding var(--dur-med) var(--ease-lux), background var(--dur-med) var(--ease-lux), backdrop-filter var(--dur-med) var(--ease-lux), border-color var(--dur-med) var(--ease-lux);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 16px 0;
  background: rgba(11, 10, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--cream);
}
.logo span { color: var(--gold); }
.main-nav ul { display: flex; gap: 40px; }
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.78);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease-lux);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: var(--cream); }

.header-right { display: flex; align-items: center; gap: 20px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.icon-btn svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; z-index: 210; }
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1px; background: var(--cream);
  transition: transform var(--dur-fast) var(--ease-lux), opacity var(--dur-fast) var(--ease-lux);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  clip-path: circle(2% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s var(--ease-lux);
  pointer-events: none;
}
.nav-open .mobile-nav { clip-path: circle(150% at calc(100% - 44px) 44px); pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cream);
  display: inline-block;
  padding: 8px 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  max-width: 130vw; max-height: 130vw;
  background: radial-gradient(circle, rgba(201,144,46,0.28) 0%, rgba(201,144,46,0.08) 38%, rgba(11,10,8,0) 68%);
  opacity: 0;
  filter: blur(4px);
}
.hero-scene {
  position: relative;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
}
.hero-nuts { position: absolute; inset: 0; opacity: 0; transform: translateY(16px) scale(0.94); }
.hero-honey-stream {
  position: absolute;
  top: -18%; left: 50%;
  width: 10px; height: 40%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, rgba(227,166,58,0) 0%, var(--amber) 30%, var(--gold) 100%);
  filter: drop-shadow(0 0 10px rgba(201,144,46,0.5));
}
.hero-honey-pool {
  position: absolute;
  bottom: 26%; left: 50%;
  width: 30%; height: 6%;
  transform: translateX(-50%) scale(0);
  background: radial-gradient(ellipse at center, var(--amber) 0%, var(--gold) 60%, transparent 75%);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
}
.hero-product {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(24px) scale(0.92);
}
.hero-particles { position: absolute; inset: -10%; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 0 clamp(56px, 8vw, 96px);
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-eyebrow { opacity: 0; transform: translateY(14px); }
.hero-title {
  opacity: 0; transform: translateY(24px);
  max-width: 16ch;
}
.hero-sub {
  opacity: 0; transform: translateY(16px);
  max-width: 42ch;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 240, 230, 0.72);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(16px); }

.hero-scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  opacity: 0;
  z-index: 5;
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: rgba(245,240,230,0.3); position: relative; overflow: hidden; }
.hero-scroll-cue .line::after {
  content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--gold);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ==========================================================================
   BRAND STATEMENT
   ========================================================================== */
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.statement-copy .eyebrow { margin-bottom: 20px; display: block; }
.statement-copy .display-lg { margin-bottom: 28px; }
.statement-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--nut-brown) 0%, #3a220f 60%, var(--black) 100%);
}
.statement-visual .drip-graphic { position: absolute; inset: 0; }

/* ==========================================================================
   INGREDIENTS
   ========================================================================== */
.ingredients-head { max-width: 640px; margin-bottom: 56px; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ingredient-card {
  background: var(--cream);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--dur-med) var(--ease-lux);
}
.ingredient-card:hover { background: var(--black); color: var(--cream); }
.ingredient-visual {
  position: absolute;
  top: 32px; right: 28px; left: 28px;
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-med) var(--ease-lux);
}
.ingredient-card:hover .ingredient-visual { transform: scale(1.08) rotate(-4deg); }
.ingredient-visual svg { width: 88px; height: 88px; color: var(--gold); }
.ingredient-name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
}
.ingredient-desc {
  font-size: 13px;
  color: var(--ink-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-lux), opacity var(--dur-med) var(--ease-lux);
}
.ingredient-card:hover .ingredient-desc { max-height: 80px; opacity: 1; }
.ingredient-card:hover .ingredient-desc { color: rgba(245,240,230,0.7); }

/* ==========================================================================
   PRODUCT COLLECTION
   ========================================================================== */
.collection-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card { display: block; }
.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--beige) 0%, var(--cream) 100%);
  margin-bottom: 20px;
}
.product-media .jar-graphic { position: absolute; inset: 0; }
.product-media::after {
  content: 'VIEW';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; font-weight: 600;
  background: rgba(11,10,8,0.42);
  color: var(--cream);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-lux);
}
.product-card:hover .product-media::after { opacity: 1; }
.product-card:hover .product-media img,
.product-card:hover .product-media svg { transform: scale(1.05); }
.product-media img, .product-media svg { transition: transform 0.8s var(--ease-lux); width: 100%; height: 100%; }
.product-name { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--ink-soft); }

/* ==========================================================================
   GOLDEN TOUCH
   ========================================================================== */
.golden-touch {
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
}
.golden-touch .display-xl { margin: 0 auto 24px; }
.golden-touch .body-lg { max-width: 46ch; margin: 0 auto 48px; }
.feature-row {
  display: flex; justify-content: center; gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.feature-pill {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 22px; border: 1px solid var(--line-on-dark); border-radius: 999px;
  color: rgba(245,240,230,0.7);
}
.golden-drip {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 90px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

/* ==========================================================================
   JOURNAL PREVIEW
   ========================================================================== */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journal-card-media {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: linear-gradient(140deg, var(--nut-brown), var(--charcoal));
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.journal-cat {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.journal-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; }
.journal-excerpt { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--black); color: var(--cream); padding: 88px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-logo { font-family: var(--font-display); font-size: 26px; margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: rgba(245,240,230,0.6); max-width: 32ch; }
.footer-heading { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,230,0.5); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(245,240,230,0.78); }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; color: rgba(245,240,230,0.45); flex-wrap: wrap; gap: 12px;
}

/* ==========================================================================
   CUSTOM CURSOR (desktop only)
   ========================================================================== */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-lux), height var(--dur-fast) var(--ease-lux), background var(--dur-fast) var(--ease-lux);
}
.cursor-dot.is-hover { width: 56px; height: 56px; background: rgba(201,144,46,0.16); border: 1px solid var(--gold); }
.cursor-dot.is-view::after {
  content: 'VIEW'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: 0.1em; color: var(--gold); font-weight: 700;
}
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

/* ==========================================================================
   GENERIC PAGE HEADER (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--black); color: var(--cream);
  padding: clamp(160px, 20vw, 240px) 0 clamp(64px, 8vw, 100px);
  text-align: left;
}
.page-hero .eyebrow { margin-bottom: 18px; display: block; }
.breadcrumb { font-size: 12px; color: rgba(245,240,230,0.5); margin-top: 18px; }

/* -- Placeholder notice banner (dev aid, remove pre-launch) -- */
.dev-note {
  background: var(--beige); color: var(--nut-brown);
  font-size: 12px; text-align: center; padding: 8px 16px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .product-grid, .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-visual { order: -1; }
}
@media (max-width: 860px) {
  .main-nav, .header-right .icon-btn { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .product-grid, .ingredients-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .collection-head { flex-direction: column; align-items: flex-start; }
  .hero-scroll-cue { display: none; }
}

/* ==========================================================================
   INTERIOR PAGE COMPONENTS (About / Products / Product / Blog / Contact)
   ========================================================================== */
.story-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.story-block:last-child { border-bottom: none; }
.story-block:nth-child(even) .story-visual { order: 2; }
.story-visual {
  aspect-ratio: 5/4; border-radius: 4px;
  background: linear-gradient(150deg, var(--beige), var(--cream));
}
.story-num { font-family: var(--font-display); font-size: 14px; color: var(--gold); margin-bottom: 14px; display: block; }

/* Product listing */
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-pill {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--ink-soft);
}
.filter-pill.is-active { background: var(--black); color: var(--cream); border-color: var(--black); }
.search-bar {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line); padding: 10px 0; margin-bottom: 40px; max-width: 420px;
}
.search-bar input { border: none; background: none; outline: none; width: 100%; font-size: 15px; }

/* Product detail */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: flex-start; }
.product-detail-media { aspect-ratio: 4/5; border-radius: 4px; background: linear-gradient(150deg, var(--charcoal), var(--black)); display:flex; align-items:center; justify-content:center; }
.pd-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); margin: 36px 0 24px; }
.pd-tab { padding-bottom: 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid transparent; cursor:pointer; }
.pd-tab.is-active { color: var(--ink); border-color: var(--gold); }
.pd-panel { display: none; font-size: 15px; color: var(--ink-soft); line-height: 1.8; }
.pd-panel.is-active { display: block; }
.related-heading { margin: 96px 0 32px; }

/* Blog */
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  padding-bottom: 64px; margin-bottom: 64px; border-bottom: 1px solid var(--line);
}
.blog-featured-media { aspect-ratio: 4/3; border-radius: 4px; background: linear-gradient(150deg, var(--nut-brown), var(--charcoal)); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Blog article */
.article-head { max-width: 780px; margin: 0 auto; text-align: center; }
.article-meta { font-size: 12px; color: rgba(245,240,230,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 18px; }
.article-cover { aspect-ratio: 21/9; border-radius: 4px; background: linear-gradient(150deg, var(--nut-brown), var(--black)); margin: 48px auto; max-width: 1100px; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--ink-soft); }
.article-body p { margin-bottom: 24px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.form-field { margin-bottom: 24px; }
.form-field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.form-field input, .form-field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: none;
  padding: 12px 0; font-size: 16px; outline: none; transition: border-color var(--dur-fast) var(--ease-lux);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-note { font-size: 13px; padding: 14px 18px; border-radius: 4px; margin-bottom: 24px; }
.form-note.success { background: rgba(201,144,46,0.12); color: var(--nut-brown); }
.form-note.error { background: rgba(180,50,30,0.1); color: #8a2c1a; }
.contact-info-item { margin-bottom: 28px; }
.contact-info-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display:block; }

@media (max-width: 900px) {
  .story-block, .story-block:nth-child(even) .story-visual { grid-template-columns: 1fr; order: 0; }
  .product-detail-grid, .contact-grid, .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ADMIN PANEL (functional, on-brand, no cinematic animation)
   ========================================================================== */
.admin-body { background: var(--charcoal); min-height: 100vh; color: var(--cream); font-family: var(--font-body); }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-card { background: var(--black); border: 1px solid var(--line-on-dark); border-radius: 8px; padding: 48px; width: 100%; max-width: 400px; }
.admin-card .logo { display: block; text-align: center; margin-bottom: 8px; }
.admin-card .eyebrow { display: block; text-align: center; margin-bottom: 32px; }
.admin-field { margin-bottom: 20px; }
.admin-field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,240,230,0.6); margin-bottom: 8px; }
.admin-field input { width: 100%; background: var(--charcoal); border: 1px solid var(--line-on-dark); border-radius: 4px; padding: 12px 14px; color: var(--cream); outline: none; }
.admin-field input:focus { border-color: var(--gold); }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--black); border-right: 1px solid var(--line-on-dark); padding: 32px 24px; }
.admin-sidebar .logo { font-size: 20px; margin-bottom: 40px; display: block; }
.admin-nav a { display: block; padding: 12px 14px; border-radius: 6px; font-size: 14px; color: rgba(245,240,230,0.7); margin-bottom: 4px; }
.admin-nav a:hover, .admin-nav a.is-active { background: rgba(201,144,46,0.12); color: var(--gold); }
.admin-main { padding: 40px 48px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-card { background: var(--black); border: 1px solid var(--line-on-dark); border-radius: 8px; padding: 28px; }
.stat-value { font-family: var(--font-display); font-size: 40px; color: var(--gold); }
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,240,230,0.55); margin-top: 6px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--black); border: 1px solid var(--line-on-dark); border-radius: 8px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line-on-dark); }
.admin-table th { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,240,230,0.5); }
@media (max-width: 860px) { .admin-shell { grid-template-columns: 1fr; } .admin-sidebar { display:none; } }
