/* ============================================
   Tokens
   ============================================ */
:root{
  --forest: #16281F;
  --forest-deep: #0F1D16;
  --parchment: #EFE6D2;
  --parchment-card: #F7F1E3;
  --rust: #A6412B;
  --rust-dark: #863321;
  --gold: #C79A44;
  --teal: #3D6660;
  --ink: #241F1A;
  --cream: #F7F1E3;

  --font-display: "Bitter", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* space for sticky buy bar on mobile */
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
:focus-visible{ outline: 3px solid var(--rust); outline-offset: 3px; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 480px){
  .wrap{ padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   Scroll fade-in
   ============================================ */
.fade-in{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Header
   ============================================ */
.site-header{
  background: var(--forest);
  padding: 18px 0;
  position: relative;
  z-index: 20;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.wordmark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.header-right{ display:flex; align-items:center; gap:18px; }
.lang-switch{
  display:flex;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
}
.lang-switch a{
  color: rgba(247,241,227,0.55);
  text-decoration:none;
  padding: 4px 7px;
  border-radius: 3px;
}
.lang-switch a.is-active{ color: var(--cream); background: rgba(247,241,227,0.12); }
.lang-switch a:hover{ color: var(--cream); }
.header-cta{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  background: var(--gold);
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration:none;
  white-space: nowrap;
  transition: background-color .15s ease;
}
.header-cta:hover{ background: var(--cream); }

/* ============================================
   Hero (video background)
   ============================================ */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex;
  align-items:flex-end;
  overflow: hidden;
  background: var(--forest);
}
.hero-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,29,22,0.35) 0%, rgba(15,29,22,0.55) 55%, rgba(15,29,22,0.92) 100%);
  z-index: 1;
}
.hero-inner{
  position: relative;
  z-index: 2;
  padding: 60px 0 56px;
  width: 100%;
}
.kicker{
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.kicker-light{ color: var(--gold); }
.hero-text h1{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 5.2vw, 3.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 18px;
  max-width: 16ch;
}
.hero-sub{
  font-size: 1.06rem;
  color: rgba(247,241,227,0.85);
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration:none;
  transition: transform .15s ease, background-color .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary{
  background: var(--rust);
  color: var(--cream);
}
.btn-primary:hover{ background: var(--rust-dark); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,241,227,0.4);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }

.urgency-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 22px;
  padding: 8px 14px;
  background: rgba(247,241,227,0.1);
  border: 1px solid rgba(199,154,68,0.4);
  border-radius: 3px;
  font-size: 0.85rem;
  color: rgba(247,241,227,0.85);
}
.urgency-badge svg{ width:14px; height:14px; flex-shrink:0; color: var(--gold); }

/* ============================================
   Sticky buy bar
   ============================================ */
.sticky-buy{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 50;
  background: var(--forest-deep);
  border-top: 1px solid rgba(199,154,68,0.35);
  padding: 12px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-buy.is-visible{ transform: translateY(0); }
.sticky-buy-inner{
  width:100%;
  max-width: var(--wrap);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.sticky-buy-label{
  color: var(--cream);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  display:none;
}
@media (min-width: 560px){ .sticky-buy-label{ display:block; } }
.sticky-buy .btn-primary{ padding: 11px 26px; font-size: 0.95rem; }

/* ============================================
   Torn dividers
   ============================================ */
.torn-divider{
  height: 26px;
  background-color: var(--parchment);
  background-image:
    linear-gradient(135deg, var(--forest) 25%, transparent 25.5%),
    linear-gradient(225deg, var(--forest) 25%, transparent 25.5%);
  background-position: 0 top;
  background-size: 26px 26px;
  background-repeat: repeat-x;
}
.torn-divider-dark{
  background-color: var(--forest);
  background-image:
    linear-gradient(135deg, var(--parchment) 25%, transparent 25.5%),
    linear-gradient(225deg, var(--parchment) 25%, transparent 25.5%);
}

/* ============================================
   Story
   ============================================ */
.story{ background: var(--parchment); padding: 72px 0; }
.story-inner{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:center;
}
.story-image{ width: 100%; }
.story-image img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(36,31,26,0.15);
  background: var(--parchment-card);
}
.story-text .kicker{ color: var(--rust); }
.story-text h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 20ch;
}
.story-text p{ font-size: 1.02rem; color: rgba(36,31,26,0.85); max-width: 52ch; }
.story-charity{
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--rust);
  background: rgba(166,65,43,0.06);
}
.story-charity p{ margin:0; font-size: 0.98rem; }
.story-charity a{ color: var(--rust); font-weight: 600; text-decoration: underline; }

/* ============================================
   Collection
   ============================================ */
.collection{ background: var(--forest); padding: 72px 0 56px; }
.collection-title{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 12px;
}
.collection-sub{ color: rgba(247,241,227,0.75); max-width: 56ch; margin: 0 0 40px; }

.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card{
  background: var(--parchment-card);
  border: 1px solid rgba(36,31,26,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover{
  transform: rotate(-1deg) translateY(-3px);
  box-shadow: 6px 8px 0 rgba(15,29,22,0.35);
}
.product-link{ display:block; text-decoration:none; color: var(--ink); }
.product-img-wrap{
  display:block;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background: #fff;
}
.product-img-wrap img{ width:100%; height:100%; object-fit: cover; }
.product-info{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
}
.product-name{ font-weight: 600; font-size: 0.98rem; }
.product-price{ font-weight: 700; color: var(--rust); font-family: var(--font-display); }

.collection-more{
  margin-top: 36px;
  color: rgba(247,241,227,0.75);
  font-size: 0.95rem;
}
.collection-more a{ color: var(--gold); text-decoration: underline; }

/* ============================================
   Materials
   ============================================ */
.materials{ background: var(--parchment); padding: 72px 0; }
.materials .kicker{ color: var(--rust); }
.materials h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 40px;
}
.materials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.materials-item h3{
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--teal);
}
.materials-item p{ margin:0; font-size: 0.96rem; color: rgba(36,31,26,0.85); }
.materials-item a{ color: var(--rust); }

/* ============================================
   Custom design request
   ============================================ */
.custom-design{ background: var(--forest); padding: 72px 0 80px; }
.custom-design-inner{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items:flex-start;
}
.custom-design-text h2{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 16px;
  max-width: 16ch;
}
.custom-design-text p{
  color: rgba(247,241,227,0.78);
  max-width: 42ch;
  font-size: 1rem;
}
.cd-form{
  background: var(--parchment-card);
  padding: 28px;
  border: 1px solid rgba(36,31,26,0.12);
}
.cd-field{ margin-bottom: 16px; }
.cd-field label{
  display:block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.cd-field input,
.cd-field textarea,
.cd-field select{
  width:100%;
  padding: 11px 12px;
  border: 1px solid rgba(36,31,26,0.25);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
}
.cd-field textarea{ min-height: 110px; resize: vertical; }
.cd-honeypot{ position:absolute; left:-9999px; }
.cd-submit{
  width:100%;
  background: var(--rust);
  color: var(--cream);
  padding: 13px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 2px;
  cursor:pointer;
}
.cd-submit:hover{ background: var(--rust-dark); }
.cd-note{ font-size: 0.8rem; color: rgba(36,31,26,0.6); margin-top: 10px; }

/* ============================================
   FAQ
   ============================================ */
.faq{ background: var(--parchment); padding: 72px 0; }
.faq-title{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 36px;
}
.faq .kicker{ color: var(--rust); }
.accordion{ max-width: 720px; }
.accordion-item{
  border-bottom: 1px solid rgba(166,65,43,0.25);
  padding: 18px 0;
}
.accordion-item summary{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.accordion-item summary::-webkit-details-marker{ display:none; }
.accordion-item summary::after{
  content: "+";
  color: var(--rust);
  font-size: 1.4rem;
  font-family: var(--font-body);
  margin-left: 16px;
}
.accordion-item[open] summary::after{ content: "\2013"; }
.accordion-item p{
  color: rgba(36,31,26,0.78);
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 0.98rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer{ background: var(--forest-deep); padding: 56px 0 28px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.wordmark-footer{ display:block; margin-bottom: 10px; }
.footer-brand p{ color: rgba(247,241,227,0.65); max-width: 32ch; font-size: 0.92rem; }
.footer-links{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links h4{
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0 0 12px;
  font-weight: 600;
}
.footer-links a{
  display:block;
  color: rgba(247,241,227,0.75);
  text-decoration:none;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.footer-links a:hover{ color: var(--cream); }
.footer-legal{
  text-align:center;
  color: rgba(247,241,227,0.4);
  font-size: 0.82rem;
  margin: 40px 0 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px){
  .story-inner{ grid-template-columns: 1fr; }
  .custom-design-inner{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .materials-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-links{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero{ min-height: 92vh; }
}
@media (max-width: 520px){
  .product-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .materials-grid{ grid-template-columns: 1fr; }
  .footer-links{ grid-template-columns: 1fr; }
  .btn{ width:100%; text-align:center; }
  .hero-actions{ flex-direction:column; }
  .header-right{ gap: 10px; }
  .lang-switch a{ padding: 4px 5px; }
}
