html, body { background: #0A0A0A; color: #EDE8DB; font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; }
.font-display { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144, "SOFT" 40; }
.grain::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay; z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.fade-up.on { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .08s; }
.fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .32s; }
.fade-up.d5 { transition-delay: .40s; }
.marquee { display: flex; overflow: hidden; }
.marquee-track { display: flex; gap: 4rem; animation: marquee 40s linear infinite; padding-right: 4rem; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.link-underline { position: relative; }
.link-underline::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(0); transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.link-underline:hover::after { transform-origin: left; transform: scaleX(1); }
.btn-green {
  display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 1.75rem; border-radius: 999px;
  background: #4A9D5F; color: #0A0A0A; font-weight: 600; letter-spacing: .01em; transition: all .3s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 0 rgba(74,157,95,0);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -12px rgba(74,157,95,.6); background: #5AAD6F; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 1.75rem; border-radius: 999px;
  border: 1px solid rgba(237,232,219,.2); color: #EDE8DB; font-weight: 500; letter-spacing: .01em; transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover { border-color: rgba(74,157,95,.7); background: rgba(74,157,95,.06); color: #4A9D5F; }
.product-card { position: relative; overflow: hidden; border-radius: 20px; }
.product-card img { transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img { transform: scale(1.08); }
.product-card .glow { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,.92) 100%); }
.product-card .accent-line {
  position: absolute; left: 2rem; right: 2rem; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #4A9D5F, transparent);
  opacity: 0; transform: translateY(4px); transition: all .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .accent-line { opacity: 1; transform: translateY(0); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(237,232,219,.15), transparent); }

/* HERO IMAGE */
#hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg-particles { position: absolute; inset: 0; z-index: 0; }
.hero-glow-a {
  position: absolute; z-index: 1; pointer-events: none;
  width: 55vw; height: 55vw; right: 5vw; top: 5vh;
  background: radial-gradient(circle, rgba(74,157,95,.32), transparent 60%);
  filter: blur(80px); animation: pulseA 7s ease-in-out infinite;
}
.hero-glow-b {
  position: absolute; z-index: 1; pointer-events: none;
  width: 40vw; height: 40vw; right: 15vw; bottom: -10vh;
  background: radial-gradient(circle, rgba(176,128,100,.28), transparent 60%);
  filter: blur(80px); animation: pulseB 9s ease-in-out infinite;
}
@keyframes pulseA { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .95; transform: scale(1.08); } }
@keyframes pulseB { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: .85; transform: scale(1.12); } }
.hero-image-wrap {
  position: absolute; z-index: 2; pointer-events: none;
  top: 50%; right: -6vw; transform: translateY(-50%);
  height: 100vh; max-height: 1080px;
  perspective: 1400px;
}
.hero-image-tilt { height: 100%; transform-style: preserve-3d; will-change: transform; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.hero-image {
  height: 100%; width: auto; display: block;
  filter:
    drop-shadow(0 45px 60px rgba(0,0,0,.75))
    drop-shadow(0 0 90px rgba(74,157,95,.22))
    drop-shadow(0 0 40px rgba(176,128,100,.18));
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-22px) rotate(-0.4deg); }
}
.hero-inner { position: relative; z-index: 3; }
.hero-vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 55%, transparent 20%, rgba(10,10,10,.65) 85%),
    linear-gradient(180deg, transparent 80%, rgba(10,10,10,.7) 100%);
}

.pill { display: inline-flex; align-items: center; gap: .5rem; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(74,157,95,.35); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #4A9D5F; background: rgba(74,157,95,.06); }
.pill-dot { width: 6px; height: 6px; border-radius: 999px; background: #4A9D5F; box-shadow: 0 0 12px #4A9D5F; animation: dotpulse 1.8s ease-in-out infinite; }
@keyframes dotpulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.spec-row { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; padding: 2rem 0; border-top: 1px solid rgba(237,232,219,.08); }
.spec-label { font-family: 'Inter'; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #7C7A72; padding-top: .5rem; }
select, input, textarea { background: transparent; color: #EDE8DB; }
input:focus, textarea:focus, select:focus { outline: none; }
.form-field { border-bottom: 1px solid rgba(237,232,219,.15); padding: 1rem 0; transition: border-color .3s ease; }
.form-field:focus-within { border-color: rgba(74,157,95,.7); }
.form-field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7C7A72; margin-bottom: .25rem; }
.form-field input, .form-field textarea, .form-field select { width: 100%; background: transparent; border: none; padding: 4px 0; font-size: 15px; }
option { background: #171A13; color: #EDE8DB; }
.arrow-svg { width: 14px; height: 14px; }
.num-big { font-family: 'Fraunces'; font-weight: 300; font-variation-settings: "opsz" 144; letter-spacing: -0.03em; }
em { font-style: italic; }
.green-underline { position: relative; }
.green-underline::after {
  content: ''; position: absolute; left: 0; bottom: 0.06em; height: .12em; width: 100%;
  background: #4A9D5F; opacity: 0.7; z-index: -1;
}
.scroll-cue { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 767px) {
  .hero-image-wrap { opacity: 0.28; right: -20vw; height: 70vh; }
}

/* NAV DROPDOWN (multi-page site) */
.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; z-index: 60;
}
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel { opacity: 1; visibility: visible; }
.nav-drop-panel .inner {
  width: 280px; border-radius: 14px; padding: 10px; background: #171A13;
  border: 1px solid rgba(237,232,219,.12); box-shadow: 0 25px 60px -15px rgba(0,0,0,.6);
}
.nav-drop-item { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: rgba(237,232,219,.85); transition: background .15s ease, color .15s ease; }
.nav-drop-item:hover { background: rgba(255,255,255,.05); color: #4A9D5F; }
.nav-drop-label { padding: 10px 14px 4px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #7C7A72; }
.nav-drop-sep { height: 1px; margin: 6px 4px; background: rgba(237,232,219,.08); }

/* PRODUCT DETAIL PAGES */
.spec-badge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; }
@media (max-width: 640px) { .spec-badge-grid { grid-template-columns: 1fr; } }
.config-row { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; padding: 1rem 0; border-top: 1px solid rgba(237,232,219,.08); }
@media (max-width: 640px) { .config-row { grid-template-columns: 1fr; gap: .25rem; } }
.config-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #7C7A72; }
.breadcrumb a:hover { color: #4A9D5F; }

.gallery-alt { border-radius: 1rem; overflow: hidden; aspect-ratio: 16 / 10; background: #171A13; margin-bottom: 1rem; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 640px) { .gallery-thumbs { grid-template-columns: repeat(4, 1fr); } }
.gallery-thumb { border-radius: .75rem; overflow: hidden; aspect-ratio: 1 / 1; background: #e9e9e4; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .5rem; }
.gallery-thumb-cap { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #7C7A72; margin-top: .5rem; text-align: center; }

/* NAV — light, shared across every page */
.nav-drop-panel .inner {
  width: 280px; border-radius: 14px; padding: 10px; background: #FFFFFF;
  border: 1px solid rgba(10,10,10,.08); box-shadow: 0 25px 60px -15px rgba(10,10,10,.18);
}
.nav-drop-item { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: rgba(10,10,10,.72); transition: background .15s ease, color .15s ease; }
.nav-drop-item:hover { background: rgba(46,107,65,.07); color: #2E6B41; }
.nav-drop-label { padding: 10px 14px 4px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #9C9A90; }
.nav-drop-sep { height: 1px; margin: 6px 4px; background: rgba(10,10,10,.07); }

/* LIGHT HOMEPAGE (index.html only) */
.pill-light { display: inline-flex; align-items: center; gap: .5rem; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(46,107,65,.28); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #2E6B41; background: rgba(46,107,65,.07); }
.pill-light .pill-dot { background: #2E6B41; box-shadow: 0 0 10px rgba(46,107,65,.45); }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 1.75rem; border-radius: 999px;
  border: 1px solid rgba(10,10,10,.15); color: #0A0A0A; font-weight: 500; letter-spacing: .01em; transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.btn-ghost-light:hover { border-color: rgba(46,107,65,.6); background: rgba(46,107,65,.06); color: #2E6B41; }
.spec-row-light { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; padding: 2rem 0; border-top: 1px solid rgba(10,10,10,.08); }
.config-row-light { display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; padding: 1rem 0; border-top: 1px solid rgba(10,10,10,.08); }
@media (max-width: 640px) { .config-row-light { grid-template-columns: 1fr; gap: .25rem; } }
.config-row-light .config-label { color: #8A887F; }
.divider-light { height: 1px; background: linear-gradient(90deg, transparent, rgba(10,10,10,.12), transparent); }
.light-form .form-field { border-bottom: 1px solid rgba(10,10,10,.14); padding: 1rem 0; transition: border-color .3s ease; }
.light-form .form-field:focus-within { border-color: rgba(46,107,65,.6); }
.light-form .form-field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8A887F; margin-bottom: .25rem; }
.light-form .form-field input, .light-form .form-field textarea, .light-form .form-field select { width: 100%; background: transparent; border: none; padding: 4px 0; font-size: 15px; color: #0A0A0A; }
.light-form input, .light-form textarea, .light-form select { background: transparent; color: #0A0A0A; }
.light-form input:focus, .light-form textarea:focus, .light-form select:focus { outline: none; }
.light-form option { background: #FFFFFF; color: #0A0A0A; }
.hero-photo-wrap { position: relative; overflow: hidden; }
.hero-photo-wrap img { transform: scale(1.04); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }

/* MOBILE MENU (built by site.js) */
.mobile-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-left: 10px; border-radius: 10px;
  color: #0A0A0A; background: transparent; border: 1px solid rgba(10,10,10,.15); cursor: pointer;
}
.mobile-menu {
  display: none; position: fixed; left: 0; right: 0; top: 73px; bottom: 0;
  z-index: 49; background: #FAF9F4; overflow-y: auto;
  padding: 20px 24px 48px;
}
.mobile-menu.open { display: block; }
.mobile-menu-links { display: flex; flex-direction: column; font-size: 16px; color: rgba(10,10,10,.85); }
.mobile-menu-links > a,
.mobile-menu-links .nav-drop > a {
  display: flex; align-items: center; gap: 6px; padding: 15px 4px;
  border-bottom: 1px solid rgba(10,10,10,.08); font-weight: 500;
}
.mobile-menu-links .nav-drop > a .arrow-svg { display: none; }
.mobile-menu-links .nav-drop-panel {
  position: static; transform: none; opacity: 1; visibility: visible; padding: 0;
}
.mobile-menu-links .nav-drop-panel .inner {
  width: auto; border: none; box-shadow: none; background: transparent;
  border-radius: 0; padding: 4px 0 10px 14px;
}
.mobile-menu-links .nav-drop-item { padding: 9px 10px; font-size: 15px; }
.mobile-menu-links .link-underline::after { display: none; }
@media (max-width: 767px) {
  .mobile-menu-btn { display: inline-flex; }
  nav > .btn-green { display: none; }
}
@media (min-width: 768px) {
  .mobile-menu-btn, .mobile-menu { display: none !important; }
}
