:root{
  --forest: #0E3B27;
  --forest-dark: #08251A;
  --paper: #F6F1E4;
  --paper-soft: #EDE5D0;
  --gold: #C99A3B;
  --gold-bright: #E3B75E;
  --wine: #7A2E2E;
  --ink: #1C2118;
  --line: rgba(28,33,24,0.14);
  --line-on-dark: rgba(246,241,228,0.18);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{content:""; width:22px; height:1px; background:var(--gold);}
h1,h2,h3{font-family:'Fraunces', serif; font-weight:600; line-height:1.05; letter-spacing:-0.01em;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Inter'; font-weight:600; font-size:14.5px;
  padding:14px 24px; border-radius:3px;
  border:1px solid transparent; cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-gold{background:var(--gold); color:var(--forest-dark);}
.btn-gold:hover{background:var(--gold-bright); transform:translateY(-2px);}
.btn-ghost{border-color:var(--line-on-dark); color:var(--paper);}
.btn-ghost:hover{border-color:var(--paper); transform:translateY(-2px);}
.btn-outline{border-color:var(--ink); color:var(--ink);}
.btn-outline:hover{background:var(--ink); color:var(--paper);}

/* ---------- Topbar ---------- */
.topbar{
  background:var(--forest-dark); color:rgba(246,241,228,0.75);
  font-family:'IBM Plex Mono', monospace; font-size:12px;
  letter-spacing:.02em;
}
.topbar .wrap{display:flex; justify-content:space-between; align-items:center; height:38px;}
.topbar a{opacity:.9;}
.topbar-links{display:flex; gap:22px;}
@media(max-width:720px){ .topbar .wrap{font-size:10.5px;} .topbar-links{gap:12px;} }

/* ---------- Header ---------- */
header.site{
  background:var(--forest); position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line-on-dark);
}
.nav{display:flex; align-items:center; justify-content:space-between; height:78px;}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces'; font-size:22px; font-weight:700; color:var(--paper);
}
.logo .mark{
  width:34px; height:34px; border-radius:50%;
  border:1.5px solid var(--gold); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono'; font-size:13px; flex-shrink:0;
}
.logo small{display:block; font-family:'IBM Plex Mono'; font-size:9.5px; letter-spacing:.16em; color:var(--gold); font-weight:500; text-transform:uppercase;}
nav.links{display:flex; align-items:center; gap:30px;}
nav.links .has-drop{position:relative;}
nav.links a{
  font-size:14px; font-weight:500; color:rgba(246,241,228,0.82);
  padding:6px 0; position:relative; display:flex; align-items:center; gap:5px;
}
nav.links a:hover{color:var(--paper);}
nav.links a.current{color:var(--gold-bright);}
.dropdown{
  position:absolute; top:100%; left:-16px; padding-top:14px;
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-drop:hover .dropdown{opacity:1; visibility:visible; transform:none;}
.dropdown-inner{
  background:var(--forest-dark); border:1px solid var(--line-on-dark); border-radius:4px;
  min-width:190px; padding:8px; box-shadow:0 20px 40px -14px rgba(0,0,0,0.5);
}
.dropdown-inner a{display:block; padding:10px 12px; font-size:13.5px; border-radius:3px;}
.dropdown-inner a:hover{background:rgba(246,241,228,0.06);}
.nav-cta{display:flex; align-items:center; gap:14px;}
.menu-btn{display:none; background:none; border:none; color:var(--paper); font-size:24px; cursor:pointer;}
.mobile-panel{display:none;}
@media(max-width:980px){
  nav.links{display:none;}
  .menu-btn{display:block;}
  .nav-cta .btn-ghost{display:none;}
  .mobile-panel.open{
    display:block; background:var(--forest-dark); border-top:1px solid var(--line-on-dark);
    padding:18px 32px 26px;
  }
  .mobile-panel a{display:block; padding:11px 0; font-size:15px; color:rgba(246,241,228,0.85); border-bottom:1px solid var(--line-on-dark);}
}

/* ---------- Page header (non-home hero) ---------- */
.page-hero{
  background:
    radial-gradient(ellipse at 85% 20%, rgba(201,154,59,0.16), transparent 55%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-dark) 100%);
  color:var(--paper); padding:64px 0 56px; position:relative; overflow:hidden;
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(0deg, rgba(246,241,228,0.035) 0px, rgba(246,241,228,0.035) 1px, transparent 1px, transparent 34px);
  pointer-events:none;
}
.breadcrumb{font-family:'IBM Plex Mono'; font-size:12px; color:rgba(246,241,228,0.55); margin-bottom:16px; letter-spacing:.04em;}
.breadcrumb a:hover{color:var(--gold-bright);}
.page-hero h1{font-size:clamp(32px,4.4vw,48px); color:var(--paper); margin-bottom:14px; max-width:680px;}
.page-hero p.lede{font-size:16.5px; color:rgba(246,241,228,0.78); max-width:560px; line-height:1.6;}

/* ---------- Hero (home only) ---------- */
.hero{
  background:
    radial-gradient(ellipse at 85% 20%, rgba(201,154,59,0.18), transparent 55%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-dark) 100%);
  color:var(--paper); position:relative; overflow:hidden;
  padding:88px 0 70px;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(0deg, rgba(246,241,228,0.035) 0px, rgba(246,241,228,0.035) 1px, transparent 1px, transparent 34px);
  pointer-events:none;
}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; position:relative;}
@media(max-width:980px){ .hero-grid{grid-template-columns:1fr; gap:56px;} }
.hero h1{font-size:clamp(38px,4.6vw,60px); color:var(--paper); margin:20px 0 22px;}
.hero h1 em{font-style:normal; color:var(--gold-bright);}
.hero p.lede{font-size:17.5px; line-height:1.65; color:rgba(246,241,228,0.78); max-width:480px; margin-bottom:34px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}
.hero-trust{display:flex; gap:30px; flex-wrap:wrap; border-top:1px solid var(--line-on-dark); padding-top:22px;}
.hero-trust div{font-family:'IBM Plex Mono'; font-size:11.5px; letter-spacing:.06em; color:rgba(246,241,228,0.6); text-transform:uppercase;}
.hero-trust strong{display:block; font-family:'Fraunces'; font-size:24px; color:var(--gold-bright); font-weight:600;}

/* Passbook signature element */
.passbook{
  background:var(--paper); color:var(--ink); border-radius:6px;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.06);
  transform:rotate(2.5deg);
  padding:30px 30px 26px;
  position:relative;
}
.passbook::before{
  content:""; position:absolute; left:0; top:14px; bottom:14px; width:6px;
  background:repeating-linear-gradient(180deg, var(--wine) 0 10px, var(--forest) 10px 20px);
  border-radius:0 3px 3px 0;
}
.pb-head{display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:14px; border-bottom:1.5px dashed var(--line); margin-bottom:14px;}
.pb-head .t1{font-family:'IBM Plex Mono'; font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--wine);}
.pb-head .t2{font-family:'Fraunces'; font-size:19px; font-weight:600; margin-top:4px;}
.pb-stamp{
  width:56px; height:56px; border-radius:50%; border:2px solid var(--wine); color:var(--wine);
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-family:'IBM Plex Mono'; font-size:8.5px; letter-spacing:.05em; text-transform:uppercase;
  transform:rotate(-12deg); opacity:0; animation:stampIn .5s ease 1.1s forwards;
}
@keyframes stampIn{ from{opacity:0; transform:rotate(-12deg) scale(1.6);} to{opacity:.88; transform:rotate(-12deg) scale(1);} }
.pb-row{
  display:flex; justify-content:space-between; font-family:'IBM Plex Mono'; font-size:12.5px;
  padding:9px 0; border-bottom:1px solid var(--line);
  opacity:0; transform:translateY(6px); animation:rowIn .45s ease forwards;
}
.pb-row span:first-child{color:rgba(28,33,24,0.55);}
@keyframes rowIn{ to{opacity:1; transform:none;} }
.pb-rows .pb-row:nth-of-type(1){animation-delay:.2s;}
.pb-rows .pb-row:nth-of-type(2){animation-delay:.4s;}
.pb-rows .pb-row:nth-of-type(3){animation-delay:.6s;}
.pb-rows .pb-row:nth-of-type(4){animation-delay:.8s;}
.pb-balance{margin-top:16px; padding-top:14px; display:flex; justify-content:space-between; align-items:baseline;}
.pb-balance .lbl{font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:rgba(28,33,24,0.55);}
.pb-balance .amt{font-family:'Fraunces'; font-weight:700; font-size:28px; color:var(--forest);}
.pb-foot{margin-top:16px; font-family:'IBM Plex Mono'; font-size:10px; color:rgba(28,33,24,0.4); text-align:center; letter-spacing:.06em;}

/* ---------- Sections generic ---------- */
section{padding:96px 0;}
section.tight{padding:72px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head.center{max-width:640px; margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}
.section-head h2{font-size:clamp(28px,3.4vw,40px); margin-top:14px;}
.section-head p{margin-top:16px; font-size:16px; line-height:1.6; color:rgba(28,33,24,0.68);}
.head-row{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:56px; flex-wrap:wrap;}
.head-row .section-head{margin-bottom:0;}

/* Pillars */
.pillars{background:var(--paper-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.pillars-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.pillar{background:var(--paper-soft); padding:40px 36px;}
.pillar .num{font-family:'IBM Plex Mono'; font-size:12px; color:var(--wine); letter-spacing:.1em;}
.pillar h3{font-size:23px; margin:16px 0 12px;}
.pillar p{font-size:14.5px; line-height:1.6; color:rgba(28,33,24,0.68);}
@media(max-width:820px){ .pillars-grid{grid-template-columns:1fr;} }

/* Products */
.products-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media(max-width:980px){ .products-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px){ .products-grid{grid-template-columns:1fr;} }
.product-card{
  background:var(--paper); border:1px solid var(--line); border-radius:4px; padding:28px 26px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative; overflow:hidden; scroll-margin-top:100px;
}
.product-card:hover{transform:translateY(-4px); box-shadow:0 18px 40px -20px rgba(14,59,39,0.35); border-color:var(--forest);}
.product-card .icon{
  width:44px; height:44px; border-radius:50%; background:var(--forest); color:var(--gold-bright);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:16px;
}
.product-card h3{font-size:18.5px; margin-bottom:8px; font-weight:600;}
.product-card p{font-size:13.8px; line-height:1.55; color:rgba(28,33,24,0.65); margin-bottom:16px;}
.product-card .meta{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:14px;}
.product-card .meta span{font-family:'IBM Plex Mono'; font-size:10.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--forest); background:var(--paper-soft); border:1px solid var(--line); padding:4px 8px; border-radius:2px;}
.product-card .tag{
  font-family:'IBM Plex Mono'; font-size:10.5px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--wine); border-top:1px dashed var(--line); padding-top:12px; display:flex; justify-content:space-between;
}
.product-card:nth-child(odd){background:var(--forest); border-color:var(--forest);}
.product-card:nth-child(odd) .icon{background:var(--gold); color:var(--forest-dark);}
.product-card:nth-child(odd) h3, .product-card:nth-child(odd) p{color:var(--paper);}
.product-card:nth-child(odd) p{color:rgba(246,241,228,0.75);}
.product-card:nth-child(odd) .tag{color:var(--gold-bright); border-top-color:var(--line-on-dark);}
.product-card:nth-child(odd) .meta span{background:rgba(246,241,228,0.08); color:var(--gold-bright); border-color:var(--line-on-dark);}

.product-card:nth-child(even){background:var(--gold); border-color:var(--gold);}
.product-card:nth-child(even) .icon{background:var(--forest-dark); color:var(--gold);}
.product-card:nth-child(even) h3, .product-card:nth-child(even) p{color:var(--forest-dark);}
.product-card:nth-child(even) p{color:rgba(8,37,26,0.85);}
.product-card:nth-child(even) .tag{color:var(--forest-dark); border-top-color:rgba(8,37,26,0.2);}
.product-card:nth-child(even) .meta span{background:rgba(8,37,26,0.08); color:var(--forest-dark); border-color:rgba(8,37,26,0.15);}

.category-tabs{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px;}
.category-tabs button{
  font-family:'IBM Plex Mono'; font-size:12px; letter-spacing:.05em; text-transform:uppercase;
  padding:9px 16px; border-radius:20px; border:1px solid var(--line); background:var(--paper);
  cursor:pointer; transition:all .15s ease;
}
.category-tabs button:hover{border-color:var(--forest);}
.category-tabs button.active{background:var(--forest); color:var(--paper); border-color:var(--forest);}

/* Stats */
.stats{background:var(--forest); color:var(--paper); position:relative; overflow:hidden;}
.stats::before{content:""; position:absolute; inset:0; background-image:repeating-linear-gradient(0deg, rgba(246,241,228,0.03) 0px, rgba(246,241,228,0.03) 1px, transparent 1px, transparent 34px);}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-on-dark); border:1px solid var(--line-on-dark); position:relative;}
.stat{background:var(--forest); padding:44px 30px; text-align:center;}
.stat .stamp-ring{
  width:88px; height:88px; margin:0 auto 18px; border-radius:50%;
  border:1.5px dashed rgba(227,183,94,0.55); display:flex; align-items:center; justify-content:center; flex-direction:column;
}
.stat .stamp-ring b{font-family:'Fraunces'; font-size:26px; color:var(--gold-bright); font-weight:700;}
.stat p{font-size:13px; color:rgba(246,241,228,0.7); max-width:160px; margin:0 auto; line-height:1.4;}
@media(max-width:820px){ .stats-grid{grid-template-columns:repeat(2,1fr);} }

/* Testimonials */
.testimonials{background:var(--gold); color:var(--forest-dark); padding: 80px 0;}
.testimonials .section-head .eyebrow{color:var(--forest-dark);}
.testimonials .section-head .eyebrow::before{background:var(--forest-dark);}
.testimonials h2{color:var(--forest-dark);}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media(max-width:900px){ .testi-grid{grid-template-columns:1fr;} }
.testi-card{
  background:var(--paper-soft); border:1px solid var(--line); border-radius:3px;
  padding:30px 28px; position:relative;
}
.testi-card:nth-child(2){transform:rotate(-1deg);}
.testi-card:nth-child(1){transform:rotate(1deg);}
.testi-card:nth-child(3){transform:rotate(-.6deg);}
.testi-card .quote-mark{font-family:'Fraunces'; font-size:46px; color:var(--gold); line-height:1; margin-bottom:6px;}
.testi-card h4{font-family:'Inter', sans-serif; font-size:16px; font-weight:700; color:var(--forest-dark); margin-bottom:12px;}
.testi-card p.quote{font-family:'Fraunces'; font-size:17px; line-height:1.5; margin-bottom:18px;}
.testi-card .who{font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--wine); display:flex; align-items:center; gap:10px;}
.testi-card .who::before{content:""; width:26px; height:1px; background:var(--wine);}

/* ---------- News & Events ---------- */
.news-events{background:var(--paper-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.ne-grid{display:grid; grid-template-columns:1.5fr 1fr; gap:48px;}
@media(max-width:920px){ .ne-grid{grid-template-columns:1fr;} }
.news-list{display:flex; flex-direction:column; gap:0;}
.news-item{
  display:grid; grid-template-columns:78px 1fr; gap:20px; padding:22px 0;
  border-bottom:1px solid var(--line); align-items:flex-start;
}
.news-item:first-child{padding-top:0;}
.news-date{
  font-family:'IBM Plex Mono'; text-align:center; background:var(--forest); color:var(--paper);
  border-radius:3px; padding:10px 6px;
}
.news-date .d{display:block; font-family:'Fraunces'; font-size:22px; font-weight:700; color:var(--gold-bright);}
.news-date .m{display:block; font-size:10px; letter-spacing:.1em; text-transform:uppercase; margin-top:2px;}
.news-item h3{font-size:17px; margin-bottom:6px; font-weight:600;}
.news-item p{font-size:13.8px; color:rgba(28,33,24,0.65); line-height:1.55; margin-bottom:8px;}
.news-item .read-more{font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--wine);}
.news-item .cat{
  font-family:'IBM Plex Mono'; font-size:10px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--forest); background:rgba(14,59,39,0.08); padding:3px 8px; border-radius:10px; margin-right:8px;
}

.events-col{background:var(--paper); border:1px solid var(--line); border-radius:4px; padding:28px;}
.events-col h3{font-size:15px; text-transform:uppercase; letter-spacing:.08em; font-family:'IBM Plex Mono'; color:var(--wine); margin-bottom:20px;}
.event-item{display:flex; gap:16px; padding:16px 0; border-bottom:1px dashed var(--line);}
.event-item:last-child{border-bottom:none; padding-bottom:0;}
.event-item .ticket{
  flex-shrink:0; width:52px; height:52px; border-radius:50%; border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; flex-direction:column; color:var(--forest);
}
.event-item .ticket b{font-family:'Fraunces'; font-size:17px; line-height:1;}
.event-item .ticket span{font-family:'IBM Plex Mono'; font-size:8px; text-transform:uppercase; letter-spacing:.05em;}
.event-item h4{font-size:14.5px; font-weight:600; margin-bottom:4px;}
.event-item p{font-size:12.5px; color:rgba(28,33,24,0.6);}

/* CTA band */
.cta-band{
  background:linear-gradient(120deg, var(--wine), #5f2323);
  color:var(--paper); text-align:center; padding:90px 0;
}
.cta-band h2{font-size:clamp(28px,4vw,42px); color:var(--paper); max-width:680px; margin:0 auto 18px;}
.cta-band p{font-size:16px; color:rgba(246,241,228,0.82); max-width:520px; margin:0 auto 34px;}
.cta-band .btn-gold{background:var(--gold-bright);}

/* ---------- About page ---------- */
.story-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
@media(max-width:900px){ .story-grid{grid-template-columns:1fr;} }
.timeline{border-left:2px solid var(--line); margin-left:6px; padding-left:30px; display:flex; flex-direction:column; gap:34px;}
.timeline-item{position:relative;}
.timeline-item::before{content:""; position:absolute; left:-37px; top:3px; width:11px; height:11px; border-radius:50%; background:var(--gold); border:2px solid var(--paper); box-shadow:0 0 0 2px var(--forest);}
.timeline-item .yr{font-family:'IBM Plex Mono'; font-size:12px; color:var(--wine); letter-spacing:.08em;}
.timeline-item h4{font-size:17px; margin:4px 0 6px;}
.timeline-item p{font-size:14px; color:rgba(28,33,24,0.65); line-height:1.55;}

.values-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:16px;}
@media(max-width:920px){ .values-grid{grid-template-columns:repeat(2,1fr);} }
.value-chip{background:var(--paper); border:1px solid var(--line); border-radius:4px; padding:22px 18px; text-align:center;}
.value-chip .glyph{width:42px; height:42px; border-radius:50%; background:var(--paper-soft); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-family:'Fraunces'; color:var(--wine);}
.value-chip h4{font-size:14px; margin-bottom:6px;}
.value-chip p{font-size:12px; color:rgba(28,33,24,0.6); line-height:1.4;}

.team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
@media(max-width:900px){ .team-grid{grid-template-columns:repeat(2,1fr);} }
.team-card{background:var(--paper-soft); border:1px solid var(--line); border-radius:4px; overflow:hidden;}
.team-photo{
  aspect-ratio:4/5; background:linear-gradient(150deg, var(--forest), var(--forest-dark));
  display:flex; align-items:center; justify-content:center; color:var(--gold-bright); font-family:'Fraunces'; font-size:34px; font-weight:700;
  position:relative;
}
.team-photo::after{content:""; position:absolute; inset:0; background-image:repeating-linear-gradient(0deg, rgba(246,241,228,0.04) 0px, rgba(246,241,228,0.04) 1px, transparent 1px, transparent 20px);}
.team-info{padding:16px 18px;}
.team-info h4{font-size:15.5px; margin-bottom:3px;}
.team-info span{font-family:'IBM Plex Mono'; font-size:11px; color:var(--wine); text-transform:uppercase; letter-spacing:.05em;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1.15fr; gap:56px;}
@media(max-width:920px){ .contact-grid{grid-template-columns:1fr;} }
.contact-card{display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line);}
.contact-card:first-child{padding-top:0;}
.contact-card .glyph{
  width:44px; height:44px; border-radius:50%; background:var(--forest); color:var(--gold-bright); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.contact-card h4{font-size:15px; margin-bottom:4px;}
.contact-card p{font-size:13.8px; color:rgba(28,33,24,0.65); line-height:1.5;}
.form-card{background:var(--paper-soft); border:1px solid var(--line); border-radius:6px; padding:36px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
@media(max-width:520px){ .form-row{grid-template-columns:1fr;} }
.field label{display:block; font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--wine); margin-bottom:7px;}
.field input, .field select, .field textarea{
  width:100%; border:1px solid var(--line); background:var(--paper); border-radius:3px; padding:12px 13px;
  font-family:'Inter'; font-size:14px; color:var(--ink);
}
.field textarea{resize:vertical; min-height:110px;}
.field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--forest); outline-offset:1px;}
.form-card .btn-gold{width:100%; justify-content:center; margin-top:6px;}
.map-frame{
  margin-top:26px; height:180px; border-radius:4px; border:1px solid var(--line);
  background:
    linear-gradient(var(--paper-soft), var(--paper-soft)) padding-box,
    repeating-linear-gradient(45deg, rgba(14,59,39,0.06) 0 10px, transparent 10px 20px);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono'; font-size:12px; color:var(--wine); text-transform:uppercase; letter-spacing:.06em;
}

/* ---------- FAQ page ---------- */
.faq-shell{max-width:820px; margin:0 auto;}
.faq-cat{font-family:'IBM Plex Mono'; font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--wine); margin:44px 0 18px;}
.faq-cat:first-child{margin-top:0;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:20px 4px; cursor:pointer; font-family:'Fraunces'; font-size:17px; font-weight:600;
}
.faq-q .plus{font-family:'IBM Plex Mono'; font-size:20px; color:var(--gold); transition:transform .2s ease; flex-shrink:0;}
.faq-item.open .plus{transform:rotate(45deg); color:var(--wine);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{font-size:14.5px; line-height:1.65; color:rgba(28,33,24,0.68); padding:0 4px 22px;}

/* ---------- Footer ---------- */
footer{background:var(--forest-dark); color:rgba(246,241,228,0.72); padding-top:72px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:56px; border-bottom:1px solid var(--line-on-dark);}
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:40px;} }
@media(max-width:560px){ .footer-grid{grid-template-columns:1fr;} }
.footer-grid h4{font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; color:var(--gold-bright); margin-bottom:18px;}
.footer-grid ul{list-style:none;}
.footer-grid li{margin-bottom:11px; font-size:14px;}
.footer-grid li a:hover{color:var(--paper);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12.5px; color:rgba(246,241,228,0.5); flex-wrap:wrap; gap:12px;}
.footer-bottom .socials{display:flex; gap:16px;}

/* ---------- Product Detail page ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
@media(max-width: 900px) { .detail-grid { grid-template-columns: 1fr; gap: 48px; } }

.detail-content { font-size: 15px; line-height: 1.6; color: rgba(28,33,24,0.8); }
.detail-content h2 { font-family: 'Fraunces'; font-size: 24px; color: var(--forest-dark); margin: 36px 0 16px; font-weight: 600; }
.detail-content p { margin-bottom: 18px; }
.detail-content ul { padding-left: 20px; margin-bottom: 24px; }
.detail-content li { margin-bottom: 8px; }

.detail-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-soft); color: var(--gold-bright); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; border: 1px solid var(--line); }

.subsection { margin-bottom: 24px; padding-left: 16px; border-left: 2px solid var(--gold); }
.subsection h3 { font-size: 16px; color: var(--wine); margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; }

.facts-box { background: var(--paper-soft); border: 1px solid var(--line); border-radius: 6px; padding: 28px; margin-bottom: 24px; }
.facts-box h3 { font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--wine); margin-bottom: 20px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.fact { margin-bottom: 16px; }
.fact:last-child { margin-bottom: 0; }
.fact dt { font-size: 12px; color: rgba(28,33,24,0.5); text-transform: uppercase; letter-spacing: .05em; font-family: 'IBM Plex Mono'; margin-bottom: 4px; }
.fact dd { font-size: 14.5px; font-weight: 500; color: var(--forest-dark); margin: 0; }

.sidebar-cta { background: var(--forest); color: var(--paper); padding: 28px; border-radius: 6px; margin-bottom: 24px; }
.sidebar-cta p { font-size: 14px; line-height: 1.5; margin-bottom: 16px; color: rgba(246,241,228,0.8); }
.sidebar-cta .btn { width: 100%; justify-content: center; }

.other-products { border: 1px solid var(--line); border-radius: 6px; padding: 28px; }
.other-products h3 { font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--wine); margin-bottom: 16px; }
.other-products a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--forest-dark); transition: color .2s ease; text-decoration: none; }
.other-products a:last-child { border-bottom: none; padding-bottom: 0; }
.other-products a:hover { color: var(--gold-bright); }

.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:none;}

::selection{background:var(--gold); color:var(--forest-dark);}
