:root {
  --green-deep: #0D1F16;
  --green-dark: #102019;
  --green-mid: #1A3728;
  --green-soft: #243D2F;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6C2;
  --cream: #F7F2E8;
  --cream-muted: #D9CEB5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[role="link"]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: linear-gradient(to bottom, rgba(13, 31, 22, 0.98), transparent);
  transition: background .4s;
}
nav.scrolled { background: rgba(13,31,22,0.97); border-bottom: 1px solid rgba(201,168,76,0.18); }

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

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter .35s, transform .35s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(201,168,76,.5));
  transform: scale(1.04);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: center;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--gold-light); }
.nav-links a.is-active::after { transform: scaleX(1); opacity: .9; }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-icon {
  background: none;
  border: none;
  color: var(--cream-muted);
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Raleway', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .3rem;
  cursor: pointer;
}
.nav-icon:hover { color: var(--gold-light); }
.nav-icon svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--gold);
  color: var(--green-deep);
  font-size: .56rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -3px;
}

main { padding-top: 86px; }
section { padding: 5.5rem 4rem; scroll-margin-top: 96px; }

/* HERO */
.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 62% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    var(--green-deep);
}
.hero-line { position: absolute; background: var(--gold); opacity: .1; }
.hero-line.v { width: 1px; height: 35vh; top: 15%; right: 30%; }
.hero-line.h { height: 1px; width: 18vw; bottom: 28%; left: 5%; }

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 660px; animation: heroIn 1.2s cubic-bezier(.25,0,.1,1) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* HERO BRAND LOGO (inside hero-content) */
.hero-brand-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.6rem;
  animation: heroLogoIn 1.4s cubic-bezier(.25,0,.1,1) both, logoShimmer 6s ease-in-out infinite 2s;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(.88) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes logoShimmer {
  0%, 100% { filter: drop-shadow(0 2px 10px rgba(201,168,76,.08)); }
  50%       { filter: drop-shadow(0 4px 34px rgba(201,168,76,.5)); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .63rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .6; }

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: .86rem; line-height: 1.95; color: var(--cream-muted); max-width: 460px; margin-bottom: 2.6rem; font-weight: 300; letter-spacing: .04em; }

.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-actions.mt-lg { margin-top: 2.2rem; }
.hero-actions.mt-xl { margin-top: 2rem; }
.hero-actions.mt-md { margin-top: 1.4rem; }

.product-card.is-clickable { cursor: pointer; }
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: .88rem 2.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform .4s; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: none;
  border: none;
  color: var(--cream-muted);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: color .3s;
}
.btn-ghost svg { width: 18px; height: 18px; transition: transform .3s; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-media {
  border: 1px solid rgba(201,168,76,.12);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: .85rem 0;
  overflow: hidden;
  background: rgba(201,168,76,.04);
}
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 22s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.marquee-dot { color: var(--gold-pale); opacity: .35; }

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .6rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.section-label::before, .section-label::after { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); opacity: .5; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* PRODUCTS */
.products-section { background: var(--green-dark); }
.filter-bar { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  background: none;
  border: 1px solid rgba(201,168,76,.2);
  color: var(--cream-muted);
  padding: .45rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card {
  background: var(--green-mid);
  border: 1px solid rgba(201,168,76,.08);
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-5px); }
.product-img { aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: #0f2a1f; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,0,.1,1); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  z-index: 2;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,22,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
  z-index: 3;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: .72rem 1.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform .35s, background .2s, color .2s;
  cursor: pointer;
}
.product-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { background: var(--gold-light); }
.overlay-btn.is-added { background: var(--green-mid); color: var(--gold); }

.product-info { padding: 1.1rem 1rem; }
.product-category { font-size: .58rem; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: .3rem; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--cream); margin-bottom: .75rem; line-height: 1.25; }
.product-desc {
  font-size: .72rem;
  color: var(--cream-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--gold-light); }
.product-wish {
  background: none;
  border: 1px solid rgba(201,168,76,.25);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: all .3s;
  cursor: pointer;
}
.product-wish:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.product-wish svg { width: 13px; height: 13px; }

/* PROMISE */
.promise-strip {
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 2.8rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.promise-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem; }
.promise-icon { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.promise-icon svg { width: 17px; height: 17px; }
.promise-title { font-family: 'Cormorant Garamond', serif; font-size: .92rem; font-weight: 500; color: var(--cream); }
.promise-text { font-size: .7rem; color: var(--cream-muted); line-height: 1.6; font-weight: 300; }

/* ABOUT */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-figure { position: relative; }
.about-visual-main { aspect-ratio: 4 / 5; background: var(--green-mid); border: 1px solid rgba(201,168,76,.12); overflow: hidden; position: relative; }
.about-visual-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -1.2rem; right: -1.2rem; width: 92px; height: 92px; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-badge span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--green-deep); line-height: 1; }
.about-badge span:last-child { font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-deep); font-weight: 700; margin-top: .2rem; }
.about-label { display: inline-flex; align-items: center; gap: .8rem; font-size: .6rem; letter-spacing: .46em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.4rem; }
.about-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); opacity: .5; }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1.4rem; }
.about-title em { font-style: italic; color: var(--gold-light); }
.about-text { font-size: .83rem; line-height: 1.95; color: var(--cream-muted); margin-bottom: 1rem; font-weight: 300; }
.about-stats { display: flex; gap: 2.2rem; margin: 1.8rem 0; border-top: 1px solid rgba(201,168,76,.15); padding-top: 1.6rem; flex-wrap: wrap; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--gold-light); display: block; line-height: 1; }
.stat-lbl { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-muted); font-weight: 500; margin-top: .3rem; display: block; }

/* NEWSLETTER */
.newsletter-section {
  background: var(--green-mid);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  text-align: center;
  padding: 4.5rem 4rem;
}
.newsletter-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 300; color: var(--cream); margin-bottom: .7rem; }
.newsletter-title em { font-style: italic; color: var(--gold-light); }
.newsletter-sub { font-size: .8rem; color: var(--cream-muted); margin-bottom: 2.2rem; font-weight: 300; letter-spacing: .04em; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.25);
  border-right: none;
  color: var(--cream);
  padding: .82rem 1.1rem;
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
}
.newsletter-input::placeholder { color: var(--cream-muted); opacity: .45; }
.newsletter-input:focus { border-color: rgba(201,168,76,.6); }
.newsletter-btn {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: .82rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s;
  white-space: nowrap;
  cursor: pointer;
}
.newsletter-btn:hover { background: var(--gold-light); }

/* FOOTER */
footer { background: var(--green-dark); border-top: 1px solid rgba(201,168,76,.12); padding: 3.5rem 4rem 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { margin-bottom: .9rem; display: inline-flex; }
.footer-tagline { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.footer-desc { font-size: .78rem; color: var(--cream-muted); line-height: 1.8; max-width: 240px; font-weight: 300; }
.footer-col-title { font-size: .6rem; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { text-decoration: none; color: var(--cream-muted); font-size: .78rem; font-weight: 300; letter-spacing: .04em; transition: color .3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; background: none; color: var(--cream-muted); transition: all .3s; cursor: pointer; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.social-btn svg { width: 13px; height: 13px; }

.payment-block { margin-top: 1.4rem; }
.payment-badges { display: flex; gap: .5rem; margin-top: .7rem; flex-wrap: wrap; }
.payment-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.15);
  padding: .28rem .55rem;
  font-size: .63rem;
  color: var(--cream-muted);
  letter-spacing: .05em;
}
.footer-bottom { border-top: 1px solid rgba(201,168,76,.1); padding-top: 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .67rem; color: var(--cream-muted); opacity: .45; font-weight: 300; letter-spacing: .08em; }
.footer-gold-line { width: 35px; height: 1px; background: var(--gold); opacity: .3; }

/* INFO SECTIONS (Home/About) */
.section-subtitle {
  max-width: 720px;
  margin: .9rem auto 0;
  font-size: .82rem;
  line-height: 1.9;
  color: var(--cream-muted);
  letter-spacing: .03em;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.info-cards.single { grid-template-columns: 1fr; }
.info-cards.mt-md { margin-top: 1.4rem; }

.info-card {
  border: 1px solid rgba(201,168,76,.14);
  background: rgba(255,255,255,.03);
  padding: 1.15rem 1.15rem;
}

.info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: .45rem;
}

.info-text {
  font-size: .78rem;
  line-height: 1.85;
  color: var(--cream-muted);
  letter-spacing: .03em;
}

.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.pill {
  border: 1px solid rgba(201,168,76,.18);
  background: rgba(201,168,76,.06);
  color: var(--cream-muted);
  padding: .38rem .65rem;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-band {
  margin-top: 3rem;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  background: rgba(201,168,76,.04);
  padding: 2.2rem 4rem;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
}
.cta-band-text {
  color: var(--cream-muted);
  font-size: .8rem;
  letter-spacing: .03em;
}


/* Responsive */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  section { padding: 5rem 2rem; }
  .hero { padding: 0 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: .9rem 1.4rem; }
  main { padding-top: 84px; }
  section { padding: 3.5rem 1.4rem; }
  .hero { padding: 2rem 1.4rem; min-height: auto; }
  .hero-brand-logo { max-width: 150px; }
  .nav-logo-img { height: 42px; }
  .nav-actions { display: none; }
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .promise-strip { grid-template-columns: 1fr 1fr; padding: 2rem 1.4rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(201,168,76,.25); }
  .split-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .info-cards { grid-template-columns: 1fr; }
  .cta-band { padding: 2rem 1.4rem; }
}
