*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #F2D489;
  --yellow-light: #F5DDA1;
  --yellow-pale: #FFFCF0;
  --green: #8AA376;
  --green-dark: #5D7050;
  --pink-light: #EAD1C9;
  --blue-light: #E8EEEF;
  --dark: #1C1A18;
  --dark-mid: #6B6360;
  --white: #FFFFFF;
  --shadow-m: 0 8px 24px rgba(28,26,24,.1);
  --shadow-l: 0 20px 48px rgba(28,26,24,.13);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  color: var(--dark);
  background: var(--yellow-pale);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Alegreya', serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.announce-bar {
  background: linear-gradient(90deg, #14110f 0%, #1C1A18 50%, #14110f 100%);
  color: rgba(255,255,255,.92);
  padding: 9px 5%;
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announce-bar a { padding: 4px 10px; white-space: nowrap; }
.announce-bar strong { color: var(--yellow); }
.announce-bar .ab-int strong { color: #FF6B6B; }
.announce-bar .ab-shop strong { color: #A1B591; }
nav {
  height: 68px;
  padding: 0 6%;
  background: rgba(255,255,255,.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(28,26,24,.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { height: 34px; }
.nav-logo-text { height: 19px; }
.nav-links { display: flex; list-style: none; gap: 1.7rem; font-size: .86rem; color: var(--dark-mid); font-weight: 600; }
.nav-links a:hover, .nav-links .active { color: var(--dark); }
.nav-contact {
  background: var(--dark);
  color: var(--white) !important;
  padding: .52rem 1.3rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.nav-contact:hover { background: var(--yellow); color: var(--dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 7% 4rem;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin-bottom: 1.1rem; }
.lead { color: var(--dark-mid); font-size: 1.05rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.5rem;
  font-size: .88rem;
  font-weight: 700;
  min-height: 44px;
}
.btn-dark { background: var(--dark); color: var(--white); }
.btn-outline { border: 1.5px solid rgba(28,26,24,.18); background: rgba(255,255,255,.55); }
.product-photo {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-l);
  min-width: 0;
  overflow: hidden;
}
.product-photo img { border-radius: 16px; margin: 0 auto; }
.product-gallery {
  position: relative;
  display: grid;
  gap: .75rem;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.product-gallery-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  scrollbar-width: none;
  border-radius: 16px;
  background: #fff;
}
.product-gallery-viewport::-webkit-scrollbar { display: none; }
.product-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  touch-action: pan-y;
}
.product-gallery-track img {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.product-gallery-btn {
  position: absolute;
  top: calc((100% - 22px) / 2);
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(28,26,24,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  box-shadow: var(--shadow-m);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 2;
  transition: background .2s, transform .2s;
}
.product-gallery-btn:hover {
  background: var(--yellow);
  transform: translateY(-50%) scale(1.04);
}
.product-gallery-btn.prev { left: 12px; }
.product-gallery-btn.next { right: 12px; }
.product-gallery-dots button {
  border: 0;
  padding: 0;
  cursor: pointer;
}
.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
}
.product-gallery-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(28,26,24,.22);
  transition: width .2s, background .2s;
}
.product-gallery-dots button.active {
  width: 20px;
  background: var(--dark);
}
.content-band { background: var(--white); padding: 4rem 7%; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1120px;
  margin: 0 auto;
}
.story h2, .box h2, .chooser h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.story p { color: var(--dark-mid); margin-bottom: 1rem; }
.box {
  background: var(--yellow-pale);
  border: 1px solid rgba(28,26,24,.08);
  border-radius: 18px;
  padding: 1.5rem;
  height: fit-content;
}
.box ul { list-style: none; display: grid; gap: .8rem; color: var(--dark-mid); }
.box li::before { content: "•"; color: var(--green-dark); font-weight: 800; margin-right: .5rem; }
.chooser { padding: 4rem 7%; max-width: 1180px; margin: 0 auto; }
.chooser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.choice {
  background: var(--white);
  border: 1px solid rgba(28,26,24,.08);
  border-radius: 16px;
  padding: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.choice:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.choice img { aspect-ratio: 4 / 3; width: 100%; object-fit: contain; margin-bottom: .8rem; }
.choice span { display: block; color: var(--green-dark); font-size: .72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.choice strong {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.12;
  margin-top: .25rem;
}
footer {
  background: var(--dark);
  color: rgba(255,255,255,.78);
  padding: 60px 7% 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img.footer-logo-text {
  height: 17px;
  filter: invert(1);
  opacity: .8;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
  max-width: 260px;
  margin-bottom: 1.6rem;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.72);
}
.social-btn:hover { background: var(--yellow); color: var(--dark); }
.footer-col h4 {
  color: var(--white);
  font-family: 'Alegreya', serif;
  font-size: .92rem;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-col li a {
  color: rgba(255,255,255,.44);
  font-size: .82rem;
  transition: color .2s;
}
.footer-col li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.34);
  font-size: .8rem;
}
@media (max-width: 800px) {
  .announce-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 10px;
    font-size: .68rem;
    scrollbar-width: none;
  }
  .announce-bar::-webkit-scrollbar { display: none; }
  .announce-bar a {
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    padding: 6px 10px;
  }
  nav { height: 64px; padding: 0 5%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 6%;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(28,26,24,.08);
    box-shadow: 0 10px 30px rgba(28,26,24,.08);
    z-index: 20;
  }
  .nav-links.open li {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hamburger { display: flex; }
  .nav-logo-icon { height: 32px; }
  .nav-logo-text { height: 18px; }
  .product-hero, .content-grid { grid-template-columns: 1fr; }
  .product-hero { padding: 3rem 5% 3rem; }
  .product-gallery-btn { width: 38px; height: 38px; }
  .product-gallery-btn.prev { left: 8px; }
  .product-gallery-btn.next { right: 8px; }
  .content-band { padding: 3rem 5%; }
  .chooser { padding: 3rem 5%; }
  .chooser-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  h1 { font-size: 2.25rem; }
  .lead { font-size: .98rem; }
  .hero-actions .btn { width: 100%; }
  .chooser-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  footer { padding: 3rem 5% 2rem; }
}
