/* ─── Keyframes ─────────────────────────────── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-44px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Tab switch fade-slide ─────────────────── */
.page-enter {
  animation: pageEnter 0.5s cubic-bezier(0.22, 0.6, 0.36, 1) both;
}

/* ─── Hero entrance (plays immediately) ─────── */
.hero-title-anim {
  animation: revealUp 0.9s cubic-bezier(0.22, 0.6, 0.36, 1) 0.08s both;
}

.hero-para-anim {
  animation: revealUp 0.9s cubic-bezier(0.22, 0.6, 0.36, 1) 0.32s both;
}

.hero-cta-anim {
  animation: revealUp 0.9s cubic-bezier(0.22, 0.6, 0.36, 1) 0.56s both;
}

/* ─── Scroll reveal system ──────────────────── */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.6, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.6, 0.36, 1);
}

[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* stagger inside containers */
.feature-grid [data-reveal]:nth-child(2) { transition-delay: 0.14s; }
.feature-grid [data-reveal]:nth-child(3) { transition-delay: 0.28s; }

.craft-images [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.craft-images [data-reveal]:nth-child(3) { transition-delay: 0.24s; }

.product-grid [data-reveal]:nth-child(2) { transition-delay: 0.11s; }
.product-grid [data-reveal]:nth-child(3) { transition-delay: 0.22s; }

/* ─────────────────────────────────────────────── */

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: #0e0c09;
  color: #d8bf86;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 40px;
  height: 68px;
  background: rgba(247, 243, 235, 0.96);
  border-bottom: 1px solid rgba(108, 80, 45, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar,
.blog-hero-overlay,
.about-hero-overlay,
.feature-box,
.about-cta-wrap,
.product-card,
.quick-view,
.craft-images img,
.about-gallery-grid img {
  -webkit-tap-highlight-color: transparent;
}

.brand {
  text-decoration: none;
  color: #1a120b;
  font: 700 0.88rem/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── MAIN NAV (center) ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}

.nav-link {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3f3325;
  padding: 8px 14px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: #b48645;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: #17100a; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: #17100a; font-weight: 600; }
.nav-link.is-active::after { transform: scaleX(1); }

/* ── TOPBAR ACTIONS (right) ── */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-end;
}

.language-switcher {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(180, 134, 69, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: #3f3325;
  box-shadow: 0 14px 34px rgba(26, 18, 11, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font: 800 0.72rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher select {
  min-width: 88px;
  border: 1px solid #ded4c5;
  border-radius: 999px;
  background: #fffdf8;
  color: #1a120b;
  padding: 7px 26px 7px 10px;
  cursor: pointer;
  font: 800 0.72rem/1 var(--font-sans);
  text-transform: none;
}

.language-switcher select:focus {
  outline: 2px solid rgba(180, 134, 69, 0.32);
  outline-offset: 2px;
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  color: #2f281f;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover { color: #9f7135; background: rgba(180, 134, 69, 0.12); }

.account-menu-wrap {
  position: relative;
}

.account-trigger.is-signed-in::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border: 1px solid #fffdf8;
  border-radius: 999px;
  background: #2f8f52;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1200;
  width: 250px;
  overflow: hidden;
  border: 1px solid #e1d7c7;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(26, 18, 11, 0.18);
  animation: accountMenuIn 0.18s ease both;
}

.account-dropdown-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #eadfcd;
  background: #f8f3ea;
}

.account-dropdown-head > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1a120b;
  color: #fffaf0;
  font: 800 1rem/1 var(--font-sans);
}

.account-dropdown-head strong,
.account-dropdown-head small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dropdown-head strong {
  color: #1a120b;
  font: 800 0.88rem/1.2 var(--font-sans);
}

.account-dropdown-head small {
  margin-top: 3px;
  color: #71675a;
  font: 500 0.74rem/1.2 var(--font-sans);
}

.account-dropdown button {
  width: 100%;
  border: none;
  background: #fffdf8;
  color: #3f3325;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font: 800 0.82rem/1 var(--font-sans);
}

.account-dropdown button:hover {
  background: #f2e8da;
}

.account-dropdown button i {
  width: 18px;
  color: #9c6f35;
  text-align: center;
}

.account-dropdown .account-logout {
  border-top: 1px solid #eadfcd;
  color: #ad3d2d;
}

.account-dropdown .account-logout i {
  color: #ad3d2d;
}

.cart-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #c0392b;
  color: #fff;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  pointer-events: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  padding: 8px;
  border-radius: 6px;
  transition: color 0.2s;
}
.hamburger:hover { color: #9f7135; }

@media (max-width: 780px) {
  /* ── TOPBAR ── */
  .topbar {
    grid-template-columns: auto 1fr;
    padding: 0 14px;
    height: 58px;
    gap: 0;
  }

  .topbar-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    grid-column: 2;
  }

  .icon-btn {
    font-size: 1rem;
    padding: 6px 8px;
  }

  .language-switcher {
    left: 12px;
    bottom: 12px;
    padding: 8px;
    gap: 6px;
    font-size: 0.64rem;
  }

  .language-switcher select {
    min-width: 78px;
    padding: 7px 22px 7px 9px;
    font-size: 0.68rem;
  }

  .hamburger {
    display: flex !important;
    font-size: 1.1rem;
    padding: 6px 8px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #faf9f6;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid #e0dbd0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    z-index: 200;
    padding: 8px 0;
  }

  .main-nav.nav-open { display: flex; }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0eeea;
  }

  .nav-link::after { display: none; }
  .nav-link.is-active { background: #f3eadc; color: #7f5728; }

  /* ── HERO ── */
  .about-hero,
  .about-hero-overlay {
    min-height: 55vh;
  }

  .about-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-product-composition {
    opacity: 0.3;
    right: -26vw;
    width: 86vw;
  }

  .about-lead {
    font-size: 0.92rem;
  }

  /* ── PRODUCT GRID ── */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-media {
    height: clamp(180px, 48vw, 340px);
  }

  .quick-view {
    opacity: 1;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    pointer-events: auto;
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
  }

  /* ── PRODUCT CARD INFO ── */
  .product-details h2 {
    font-size: 0.95rem;
  }

  .current-price {
    font-size: 1rem;
  }

  /* ── LONGFORM / BLOG ── */
  .media-break,
  .media-break.reverse {
    grid-template-columns: 1fr;
  }

  .longform-block h2 {
    font-size: 1.4rem;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-gallery-grid img:last-child {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .blog-two-col,
  .blog-two-col.reversed {
    grid-template-columns: 1fr;
  }

  .craft-images {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page {
    padding: 8px;
  }

  .shop-heading {
    padding: 1.5rem 1rem 1rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font: 600 0.76rem/1 var(--font-sans);
  opacity: 0.9;
}

.blog-page {
  background: #ffffff;
}

.blog-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.blog-hero-banner {
  min-height: 78vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72));
}

.forest-home-hero {
  min-height: calc(100vh - 100px);
  background-position: center 42%;
}

.forest-home-hero .blog-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 9, 6, 0.78) 0%, rgba(60, 43, 27, 0.42) 48%, rgba(12, 9, 6, 0.76) 100%),
    linear-gradient(180deg, rgba(12, 9, 6, 0.12) 0%, rgba(12, 9, 6, 0.86) 100%);
}

.forest-hero-copy {
  max-width: 790px;
}

.hero-logo-mark {
  display: block;
  width: min(680px, 82vw);
  margin: 0 auto 30px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.45));
}

.forest-hero-copy .eyebrow {
  color: #d7c39a;
  margin-bottom: 18px;
}

.forest-hero-copy h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.forest-hero-subcopy {
  max-width: 48ch;
  font-size: 1rem;
}

.hero-action-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-action-row .hero-cta,
.hero-action-row .hero-outline-btn {
  margin-top: 0;
}

.hero-outline-solid {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-center {
  text-align: center;
  color: #ffffff;
}

.hero-center h1,
.shop-heading h1 {
  font: 600 clamp(2rem, 4vw, 3.4rem) / 0.95 var(--font-display);
  letter-spacing: 0.02em;
  margin: 0;
}

.hero-center p {
  max-width: 62ch;
  margin: 1.25rem auto 0;
  font: 400 1.12rem/1.6 var(--font-sans);
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  width: fit-content;
  border: none;
  background: #b48645;
  color: #ffffff;
  margin-top: 1.5rem;
  padding: 0.9rem 1.35rem;
  font: 600 0.85rem/1 var(--font-sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-cta:hover {
  background: #9c6f35;
  transform: translateY(-2px);
}

.blog-content-section {
  padding: 5.5rem 0;
}

.home-story-editorial {
  background: #fbfaf6;
  padding: clamp(76px, 8vw, 104px) 0;
}

.story-editorial-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(64px, 8vw, 118px);
}

.story-editorial-copy {
  max-width: 500px;
}

.story-editorial-copy .eyebrow {
  color: #9c6f35;
  margin: 0 0 18px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.story-editorial-copy h2 {
  margin: 0;
  color: #1a120b;
  font: 600 clamp(3.15rem, 4.7vw, 5.35rem) / 0.96 var(--font-display);
  letter-spacing: 0;
}

.story-title-rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 22px 0 26px;
  background: #b48645;
}

.story-editorial-copy p {
  margin: 0 0 20px;
  color: #3f463f;
  font: 400 1.1rem/1.72 var(--font-sans);
}

.story-editorial-btn {
  margin-top: 8px;
  border: none;
  background: #0e0c09;
  color: #ffffff;
  padding: 16px 23px;
  font: 700 0.8rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.story-editorial-btn:hover {
  background: #9c6f35;
  transform: translateY(-2px);
}

.story-editorial-media {
  position: relative;
  min-height: 510px;
  padding-right: 72px;
}

.story-editorial-media img {
  display: block;
  object-fit: cover;
  box-shadow: none;
}

.story-main-image {
  width: min(100%, 500px);
  height: 490px;
  margin-left: auto;
}

.story-detail-image {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 350px;
  height: 220px;
  border: 4px solid #fbfaf6;
  box-shadow: 0 20px 34px rgba(26, 18, 11, 0.16);
}

.section-white {
  background: #ffffff;
}

.section-light {
  background: #f7f7f5;
}

.blog-section-title {
  margin: 0 0 2.6rem;
  color: #101010;
  font: 600 clamp(2rem, 3.5vw, 3.1rem) / 1 var(--font-display);
  position: relative;
}

.blog-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 62px;
  height: 3px;
  background: #1a120b;
}

.blog-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.blog-two-col.reversed .blog-text-content {
  order: 1;
}

.blog-two-col.reversed .blog-image-wrap {
  order: 2;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-text-content {
  padding: 0.5rem 0;
}

.blog-text-content h3,
.feature-box h3 {
  margin: 0 0 1rem;
  color: #111;
  font: 600 clamp(1.55rem, 2.3vw, 2.1rem) / 1.05 var(--font-display);
}

.home-story-summary .blog-text-content h2 {
  max-width: 13ch;
  margin: 0 0 1.1rem;
  color: #1a120b;
  font: 600 clamp(2.1rem, 4vw, 3.8rem) / 0.98 var(--font-display);
}

.home-story-summary .eyebrow {
  color: #9c6f35;
  margin-bottom: 16px;
}

.hero-cta-spaced {
  margin-top: 1.1rem;
}

.blog-text-content p {
  margin: 0 0 0.95rem;
  color: #2e2e2e;
  font: 400 1rem/1.7 var(--font-sans);
}

.blog-benefits p {
  margin: 0.45rem 0;
  padding-left: 1.1rem;
  position: relative;
  font-weight: 500;
}

.blog-benefits p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b48645;
  position: absolute;
  left: 0;
  top: 0.67rem;
}

.craft-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.craft-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.craft-images img:hover {
  transform: scale(1.02);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: minmax(180px, 22vw);
  gap: 12px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e1dace;
  box-shadow: 0 12px 26px rgba(26, 18, 11, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.image-mosaic img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(26, 18, 11, 0.16);
}

.image-mosaic img:nth-child(1) {
  grid-row: span 2;
}

.image-mosaic img:nth-child(2) {
  grid-column: span 2;
}

.image-mosaic img:nth-child(5) {
  grid-column: span 2;
}

.story-gallery {
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-box {
  background: #f9f7f4;
  border-radius: 8px;
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #1a120b;
  color: #ffffff;
  font: 700 0.8rem/1 var(--font-sans);
  margin-bottom: 1rem;
}

.feature-box p {
  margin: 0;
  color: #3a3a3a;
  font: 400 0.97rem/1.6 var(--font-sans);
}

.about-story-page {
  background: #f6f3ec;
  color: #1a120b;
}

.about-story-hero {
  min-height: 76vh;
  background-size: cover;
  background-position: center 45%;
}

.about-story-hero-overlay {
  min-height: 76vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(14, 12, 9, 0.86) 0%, rgba(83, 58, 34, 0.56) 48%, rgba(14, 12, 9, 0.28) 100%),
    linear-gradient(180deg, rgba(14, 12, 9, 0.18) 0%, rgba(14, 12, 9, 0.82) 100%);
}

.about-story-hero .blog-container {
  color: #fffaf0;
}

.about-story-hero-copy {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.about-story-hero .eyebrow {
  color: #d7c39a;
  margin-bottom: 18px;
}

.about-story-hero h1 {
  max-width: 9ch;
  margin: 0;
  font: 600 clamp(4rem, 8vw, 7rem) / 0.88 var(--font-display);
}

.about-story-hero p:last-child {
  max-width: 52ch;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.88);
  font: 400 1.08rem/1.7 var(--font-sans);
}

.story-longform-section {
  padding: 84px 24px;
}

.founder-intro-section {
  padding: 96px 24px 88px;
}

.founder-intro-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.founder-portrait {
  margin: 0;
  position: sticky;
  top: 96px;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 28px 60px rgba(26, 18, 11, 0.18), 0 6px 14px rgba(26, 18, 11, 0.07);
}

.founder-copy h2,
.process-heading h2 {
  margin: 0;
  color: #1a120b;
  font: 600 clamp(2.2rem, 4.8vw, 4rem) / 0.98 var(--font-display);
}

.founder-copy p:not(.story-kicker),
.process-heading p {
  margin: 20px 0 0;
  color: #47544d;
  font: 400 clamp(1rem, 1.35vw, 1.08rem) / 1.85 var(--font-sans);
  text-align: justify;
}

.founder-copy {
  max-width: 640px;
}

.founder-copy .founder-lede {
  margin-top: 22px;
  color: #2f3d36;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

/* Rich story content managed from the admin (Site content > Our story) */
.founder-copy > ul,
.founder-copy > ol {
  margin: 20px 0 0;
  padding-left: 22px;
  color: #47544d;
  font: 400 clamp(1rem, 1.35vw, 1.08rem) / 1.85 var(--font-sans);
}

.founder-copy > ul li::marker,
.founder-copy > ol li::marker {
  color: #9c6f35;
}

.founder-copy > h3,
.founder-copy > h4 {
  margin: 26px 0 0;
  color: #1a120b;
  font: 600 clamp(1.3rem, 2vw, 1.7rem) / 1.15 var(--font-display);
}

.founder-copy > blockquote {
  margin: 26px 0 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid rgba(156, 111, 53, 0.55);
  color: #2f3d36;
  font-style: italic;
}

.founder-copy > blockquote p {
  margin: 0;
}

.founder-principles {
  margin: 28px 0 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(156, 111, 53, 0.24);
  border-bottom: 1px solid rgba(156, 111, 53, 0.24);
}

.founder-principles p {
  margin: 0 0 14px;
  color: #6b4f2a;
  font: 700 0.76rem/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-principles ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-principles li {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 8px;
  background: #f7f2ea;
  color: #1f2a24;
  font: 600 1rem/1.35 var(--font-display);
}

.founder-statement {
  margin: 28px 0 0 !important;
  color: #1a120b !important;
  font: 600 clamp(1.55rem, 2.4vw, 2.25rem) / 1.08 var(--font-display) !important;
  text-align: left !important;
}

.founder-closing {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 3px solid #9c6f35;
}

.founder-closing p {
  margin: 0;
  color: #1f2a24;
  font: 600 clamp(1.05rem, 1.45vw, 1.18rem) / 1.55 var(--font-sans);
  text-align: left;
}

.founder-closing p + p {
  margin-top: 6px;
}

.founder-signoff {
  color: #6b4f2a !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.story-longform {
  max-width: 780px;
  margin: 0 auto;
}

.story-kicker {
  margin: 0 0 14px;
  color: #9c6f35;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font: 700 0.72rem/1 var(--font-sans);
}

.story-longform h2 {
  margin: 0 0 28px;
  color: #1a120b;
  font: 600 clamp(2.4rem, 5vw, 4.4rem) / 0.96 var(--font-display);
}

.story-longform h3 {
  max-width: 16ch;
  margin: 48px 0 22px;
  color: #1a120b;
  font: 600 clamp(1.8rem, 3.8vw, 3rem) / 1 var(--font-display);
}

.story-longform p {
  margin: 0 0 22px;
  color: #47544d;
  font: 400 clamp(1rem, 1.4vw, 1.12rem) / 1.9 var(--font-sans);
  text-align: justify;
}

.story-wide-image {
  margin: 42px 0;
}

.story-wide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(26, 18, 11, 0.14);
}

.story-longform blockquote {
  margin: 42px 0 0;
  padding: 28px 32px;
  border-left: 3px solid #b88445;
  background: #f4eee3;
  color: #1a120b;
  font: 600 clamp(1.4rem, 3vw, 2.2rem) / 1.25 var(--font-display);
}

.story-closing {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 42px);
  background: #1a120b;
  border-radius: 8px;
}

.story-closing p {
  color: rgba(255, 250, 240, 0.88);
}

.story-closing p:first-child,
.story-closing p:nth-child(2) {
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-closing p:last-child {
  margin-bottom: 0;
}

.story-process-section {
  padding: 84px 0 74px;
}

.story-process-section .blog-container {
  max-width: 1120px;
  display: grid;
  justify-items: center;
}

.process-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 920px);
}

.process-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid #e0d8c9;
  border-radius: 8px;
  background: #f9f4eb;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: #9c6f35;
  font: 800 0.72rem/1 var(--font-sans);
  letter-spacing: 0.16em;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: #1a120b;
  font: 600 1.45rem/1.08 var(--font-display);
}

.process-grid p {
  margin: 0;
  color: #55625a;
  font: 400 0.95rem/1.7 var(--font-sans);
  text-align: justify;
}

.process-image-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.process-image-row img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-rotator {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(26, 18, 11, 0.12);
  background: #e9dfcf;
}

.process-rotator-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.process-rotator-button:disabled {
  cursor: default;
}

.process-empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #6b5d4c;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(233, 223, 207, 0.92)),
    repeating-linear-gradient(45deg, rgba(180, 134, 69, 0.10) 0 1px, transparent 1px 12px);
  text-align: center;
  font: 800 0.78rem/1.5 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-rotator img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.process-rotator img.is-active {
  opacity: 1;
  transform: scale(1);
}

.process-rotator figcaption,
.process-rotator > span {
  position: absolute;
  z-index: 2;
  color: #fffaf0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
  font: 700 0.72rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-rotator figcaption {
  left: 16px;
  bottom: 16px;
}

.process-rotator > span {
  right: 14px;
  top: 14px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(26, 18, 11, 0.42);
}

.process-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(14, 12, 9, 0.68);
}

.process-modal {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.process-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 18, 11, 0.72);
  color: #fffaf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.process-modal-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 54px);
}

.process-modal-copy h2 {
  margin: 0;
  color: #1a120b;
  font: 600 clamp(2rem, 4vw, 3.4rem) / 0.98 var(--font-display);
}

.process-modal-copy p:not(.story-kicker) {
  margin: 0;
  color: #4f5d55;
  font: 400 1rem/1.8 var(--font-sans);
}

.process-modal-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.process-modal-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(156, 111, 53, 0.28);
  border-radius: 999px;
  background: #f4eadb;
  color: #5f4220;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.process-modal-controls button i,
.process-modal-close i {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
}

.process-modal-controls span {
  min-width: 48px;
  color: #6d5f50;
  font: 800 0.74rem/1 var(--font-sans);
  letter-spacing: 0.12em;
}

.process-modal-image {
  min-height: 520px;
  background: #1a120b;
}

.process-modal-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-values-section {
  padding: 72px 0;
}

.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-values-grid article {
  padding: 28px;
  background: #fffdf8;
  border: 1px solid #e0d8c9;
  border-radius: 8px;
}

.story-values-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: #a6773c;
  font: 700 0.74rem/1 var(--font-sans);
  letter-spacing: 0.14em;
}

.story-values-grid h3 {
  margin: 0 0 12px;
  color: #1a120b;
  font: 600 1.55rem/1.1 var(--font-display);
}

.story-values-grid p {
  margin: 0;
  color: #55625a;
  font: 400 0.96rem/1.7 var(--font-sans);
  text-align: justify;
}

.story-cta-section {
  padding: 0 0 90px;
  background: #f6f3ec;
}

.story-cta-panel {
  text-align: center;
  padding: clamp(42px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(14, 12, 9, 0.92), rgba(92, 61, 31, 0.94)),
    #1a120b;
  border-radius: 8px;
}

.story-cta-panel .eyebrow {
  color: #d7c39a;
}

.story-cta-panel h2 {
  max-width: 14ch;
  margin: 10px auto 0;
  color: #fffaf0;
  font: 600 clamp(2.2rem, 5vw, 4rem) / 0.98 var(--font-display);
}

/* ── ABOUT EDITORIAL LAYOUT (moved to Home tab) ── */
.about-page {
  --about-bg: #f7f5ef;
  --about-surface: #fffdf8;
  --about-ink: #1b231f;
  --about-copy: #4e5b54;
  --about-line: #e2ded2;
  --about-accent: #b48645;
  --about-accent-deep: #9c6f35;
  --about-gold: #b88445;
  background: var(--about-bg);
  color: var(--about-ink);
}

.about-shell {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

[data-about-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.62, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.62, 0.36, 1);
}

[data-about-reveal='left'] {
  transform: translateX(-50px);
}

[data-about-reveal='right'] {
  transform: translateX(50px);
}

[data-about-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.about-hero {
  min-height: 73vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(27, 48, 33, 0.98) 0%, rgba(39, 68, 45, 0.9) 34%, rgba(245, 241, 231, 0.24) 100%),
    linear-gradient(180deg, #0e0c09 0%, #5c3d1f 100%);
}

.about-hero-overlay {
  min-height: 73vh;
  position: relative;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(16, 22, 17, 0.6) 0%, rgba(16, 22, 17, 0.28) 42%, rgba(16, 22, 17, 0.08) 100%);
}

.about-hero .about-shell {
  position: relative;
  z-index: 2;
  padding: 82px 0 96px;
}

.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-outline-btn {
  width: fit-content;
  border: 1px solid rgba(243, 239, 230, 0.58);
  background: transparent;
  color: #f3efe6;
  padding: 0.9rem 1.25rem;
  font: 600 0.78rem/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-outline-btn:hover {
  border-color: rgba(243, 239, 230, 0.9);
  background: rgba(243, 239, 230, 0.1);
}

.home-hero-notes {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(100%, 320px);
  padding: 14px;
  border: 1px solid rgba(231, 225, 206, 0.26);
  background: rgba(14, 20, 16, 0.42);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.home-hero-notes p {
  margin: 0;
  color: rgba(234, 227, 211, 0.92);
  font: 500 0.81rem/1.6 var(--font-sans);
  border-bottom: 1px solid rgba(231, 225, 206, 0.2);
  padding-bottom: 8px;
}

.home-hero-notes p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-inspired-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(164, 190, 136, 0.36), transparent 22%),
    linear-gradient(135deg, transparent 0 62%, rgba(255, 253, 248, 0.12) 62% 100%);
  pointer-events: none;
}

.home-inspired-hero::after {
  content: '';
  position: absolute;
  right: 4vw;
  top: 11vh;
  width: min(28vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 226, 0.24);
  box-shadow: 0 0 0 42px rgba(244, 239, 226, 0.04);
  pointer-events: none;
}

.hero-product-composition {
  position: absolute;
  right: min(5vw, 70px);
  bottom: -36px;
  z-index: 1;
  width: min(58vw, 780px);
  height: min(58vh, 560px);
  pointer-events: none;
}

.hero-product-composition img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(246, 241, 230, 0.34);
  box-shadow: 0 26px 54px rgba(9, 13, 10, 0.34);
}

.hero-table-main {
  right: 0;
  bottom: 0;
  width: 88%;
  height: 72%;
  transform: rotate(-2deg);
}

.hero-table-detail {
  left: 0;
  top: 0;
  width: 38%;
  height: 42%;
  transform: rotate(3deg);
}

.about-eyebrow {
  color: #d8bf86;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font: 600 0.75rem/1 var(--font-sans);
  margin-bottom: 16px;
}

.about-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  color: #f3efe6;
  font: 600 clamp(3rem, 6vw, 6.1rem) / 0.88 var(--font-display);
}

.about-lead {
  max-width: 41ch;
  margin-top: 24px;
  color: rgba(243, 239, 230, 0.92);
  font: 400 clamp(1rem, 1.4vw, 1.18rem)/1.65 var(--font-sans);
}

.about-longform-section {
  padding: 82px 0 72px;
}

.home-story-intro {
  max-width: 650px;
  margin-bottom: 44px;
}

.home-story-intro .about-eyebrow,
.section-head .about-eyebrow {
  color: #9c6f35;
}

.home-story-intro h2 {
  max-width: 13ch;
  margin: 0;
  color: #1a120b;
  font: 600 clamp(2.45rem, 4.5vw, 4rem) / 0.96 var(--font-display);
}

.home-story-intro p {
  max-width: 56ch;
  margin-top: 22px;
  color: var(--about-copy);
  font: 400 1rem/1.8 var(--font-sans);
}

.home-story-pills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-story-pills span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cbc5b8;
  background: #f9f7f1;
  color: #37443d;
  padding: 8px 12px;
  font: 600 0.72rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-journal-section {
  padding: 16px 0 84px;
  background: linear-gradient(180deg, #f7f5ef 0%, #f0ede4 100%);
}

.home-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-journal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fffdf8;
  border: 1px solid #ddd7ca;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-journal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-journal-copy {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-journal-tag {
  margin: 0;
  color: #8a6a3b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font: 700 0.66rem/1 var(--font-sans);
}

.home-journal-copy h3 {
  margin: 0;
  color: #1d281f;
  font: 600 clamp(1.14rem, 2vw, 1.48rem) / 1.18 var(--font-display);
}

.home-journal-copy p {
  margin: 0;
  color: #58645e;
  font: 400 0.93rem/1.68 var(--font-sans);
}

.home-journal-copy button {
  margin-top: 4px;
  justify-self: start;
  border: none;
  border-bottom: 1px solid #9c6f35;
  background: transparent;
  color: #9c6f35;
  padding: 0 0 2px;
  font: 700 0.72rem/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.home-journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(27, 35, 31, 0.14);
}

.longform-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 28px;
  align-items: start;
}

.story-aside {
  position: sticky;
  top: 100px;
  border: 1px solid #ddd9cc;
  border-radius: 16px;
  background: linear-gradient(140deg, #fffdf8 0%, #f5f1e8 100%);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(18, 27, 22, 0.08);
}

.story-aside h2 {
  margin: 0 0 10px;
  color: #1d2822;
  font: 600 1.9rem/1 var(--font-display);
}

.story-aside p {
  margin: 0;
  color: #556059;
  font: 400 0.92rem/1.75 var(--font-sans);
}

.story-aside ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}

.story-aside a {
  color: var(--about-accent-deep);
  text-decoration: none;
  font: 500 0.86rem/1.5 var(--font-sans);
}

.story-aside a:hover {
  text-decoration: underline;
}

.story-highlights {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #cfc9ba;
  display: grid;
  gap: 8px;
}

.story-highlights p {
  font-size: 0.8rem;
  color: #536058;
}

.longform-article {
  display: grid;
  gap: 0;
}

.longform-article-full {
  width: 100%;
}

.longform-block {
  background: transparent;
  border-top: 1px solid var(--about-line);
  padding: clamp(34px, 5vw, 62px) 0;
}

.chapter-kicker {
  margin: 0 0 10px;
  color: #7a8d82;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font: 700 0.72rem/1 var(--font-sans);
}

.longform-block h2 {
  margin: 0;
  color: #1b261f;
  font: 600 clamp(1.9rem, 3vw, 3rem) / 1 var(--font-display);
}

.home-story-copy > p {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--about-copy);
  font: 400 1rem/1.9 var(--font-sans);
}

.media-break {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.media-break.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.media-image,
.media-video,
.media-quote {
  margin: 0;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 1px solid #ddd7c8;
  transition: transform 0.45s ease;
}

.media-image:hover img {
  transform: scale(1.03);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid #d7d3c8;
  border-radius: 14px;
  overflow: hidden;
  background: #0e0c09;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-video figcaption {
  margin-top: 8px;
  color: #5b6660;
  font: 400 0.83rem/1.65 var(--font-sans);
}

.media-quote {
  display: grid;
  align-items: center;
  padding: 22px;
  border: 1px solid #d7d3c8;
  background: linear-gradient(150deg, #f7f3ea 0%, #f0eadb 100%);
}

.media-quote p {
  margin: 0;
  color: #324338;
  font: 600 clamp(1.2rem, 1.5vw, 1.45rem) / 1.5 var(--font-display);
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  max-width: 17ch;
  color: #1a120b;
  font: 600 clamp(2rem, 4vw, 3rem) / 0.98 var(--font-display);
}

.section-head.centered {
  text-align: center;
}

.section-head.centered h2 {
  margin-inline: auto;
}

.home-featured-section {
  padding: 64px 0 88px;
  background: #efede6;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-featured-card {
  position: relative;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid #ded8ca;
}

.home-featured-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-featured-card:hover img {
  transform: scale(1.04);
}

.home-featured-card h3 {
  min-height: 54px;
  margin: 0;
  padding: 16px 18px 8px;
  color: #1d281f;
  font: 600 clamp(1.12rem, 1.8vw, 1.38rem) / 1.08 var(--font-display);
}

.home-featured-card button {
  margin: 0 18px 18px;
  border: 1px solid #b48645;
  background: transparent;
  color: #7f5728;
  padding: 10px 14px;
  font: 700 0.72rem/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-featured-card button:hover {
  background: #b48645;
  color: #fffdf8;
}

.video-editorial-section {
  padding: 0 0 86px;
}

.video-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-editorial-card {
  border: 1px solid #ddd9cf;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #fffef9 0%, #f4f1e7 100%);
  box-shadow: 0 18px 30px rgba(20, 32, 26, 0.1);
}

.video-editorial-copy {
  padding: 16px 16px 18px;
}

.video-tag {
  margin: 0;
  color: #8a6a3b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font: 700 0.68rem/1 var(--font-sans);
}

.video-editorial-copy h3 {
  margin: 10px 0 8px;
  color: #1f2b24;
  font: 600 clamp(1.2rem, 2vw, 1.55rem) / 1.12 var(--font-display);
}

.video-editorial-copy p {
  margin: 0;
  color: #56635c;
  font: 400 0.92rem/1.7 var(--font-sans);
}

.about-gallery-section {
  padding: 84px 0;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.95fr;
  gap: 12px;
}

.about-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid #dfddd3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-benefits-section {
  padding: 0 0 86px;
}

.home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-benefit-card {
  background: #fffdf8;
  border: 1px solid #ded8ca;
  padding: clamp(22px, 3vw, 32px);
}

.home-benefit-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: #b48645;
  color: #fffdf8;
  border-radius: 50%;
  font-size: 1rem;
}

.home-benefit-card h3 {
  margin: 0 0 10px;
  color: #1d281f;
  font: 600 clamp(1.25rem, 2vw, 1.6rem) / 1.1 var(--font-display);
}

.home-benefit-card p {
  margin: 0;
  color: var(--about-copy);
  font: 400 0.95rem/1.7 var(--font-sans);
}

.about-gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(31, 48, 39, 0.17);
}

.about-gallery-grid img:nth-child(2) {
  transition-delay: 0.1s;
}

.about-gallery-grid img:nth-child(3) {
  transition-delay: 0.2s;
}

.about-cta-section {
  padding: 0 0 86px;
}

.about-cta-wrap {
  text-align: center;
  background: linear-gradient(120deg, #0e0c09 0%, #5c3d1f 100%);
  border-radius: 22px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 44px rgba(19, 33, 26, 0.3);
}

.about-cta-wrap .about-eyebrow {
  color: #d8bf86;
}

.about-cta-wrap h2 {
  margin: 0;
  color: #fffaf0;
  font: 600 clamp(2rem, 4vw, 3rem) / 1 var(--font-display);
}

.about-cta-wrap p {
  margin: 14px auto 0;
  max-width: 58ch;
  color: #d1c3a7;
  font: 400 1rem/1.75 var(--font-sans);
}

.about-cta-btn {
  margin-top: 24px;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  background: linear-gradient(120deg, #e7ce9f 0%, #d0a55c 100%);
  color: #1a120b;
  font: 700 0.78rem/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(8, 14, 11, 0.24);
}

.catalog-page {
  padding: 8px;
}

.shop-heading {
  text-align: center;
  padding: 2.2rem 1rem 1.25rem;
}

.shop-heading .eyebrow {
  color: #6b6b6b;
}

.shop-filters {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid #ded8ca;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8 0%, #f9f5ed 100%);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(27, 20, 13, 0.07);
}

.shop-filter-summary {
  display: grid;
  gap: 5px;
  border-right: 1px solid #e4dacb;
  padding-right: 18px;
}

.shop-filter-summary strong {
  color: #1a120b;
  font: 700 1.16rem/1.1 var(--font-display);
}

.shop-filter-summary span {
  color: #7c705f;
  font: 700 0.74rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-filter-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 230px) minmax(170px, 230px) auto;
  align-items: end;
  gap: 10px;
}

.shop-filter-controls label {
  display: grid;
  gap: 6px;
}

.shop-filter-controls label span {
  color: #8a6a45;
  font: 800 0.66rem/1 var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-filter-controls input,
.shop-filter-controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  background: #fff;
  color: #1a120b;
  padding: 0 12px;
  font: 600 0.9rem/1 var(--font-sans);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.shop-filter-controls input:focus,
.shop-filter-controls select:focus {
  border-color: #b48645;
  box-shadow: 0 0 0 3px rgba(180, 134, 69, 0.16);
}

.shop-search {
  position: relative;
}

.shop-search i {
  position: absolute;
  left: 13px;
  bottom: 14px;
  color: #9c6f35;
  pointer-events: none;
}

.shop-search input {
  padding-left: 38px;
}

.shop-filters button,
.shop-empty-state button {
  min-height: 44px;
  border: none;
  border-radius: 8px;
  background: #1a120b;
  color: #fffaf0;
  padding: 0 16px;
  cursor: pointer;
  font: 800 0.78rem/1 var(--font-sans);
}

.shop-filters button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.shop-results-line {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto 14px;
  color: #6f665b;
  font: 700 0.8rem/1 var(--font-sans);
}

.shop-empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed #cfc5b5;
  background: #fffdf8;
  color: #1a120b;
  text-align: center;
  padding: 28px;
}

.shop-empty-state strong {
  font: 700 1.5rem/1.1 var(--font-display);
}

.shop-empty-state p {
  margin: 0;
  color: #71675a;
  font: 500 0.92rem/1.5 var(--font-sans);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #f3f1ed;
}

.product-card {
  background: #f3f1ed;
}

.product-media {
  position: relative;
  height: clamp(340px, 34vw, 500px);
  overflow: hidden;
  background: #ded8cd;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.image-primary {
  opacity: 1;
}

.image-secondary {
  opacity: 0;
}

.product-card:hover .image-primary {
  opacity: 0;
  transform: scale(1.02);
}

.product-card:hover .image-secondary {
  opacity: 1;
  transform: scale(1.01);
}

.quick-view {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  border: none;
  background: #f8f6f2;
  color: #151515;
  letter-spacing: 0.14em;
  font: 500 0.86rem/1 var(--font-sans);
  padding: 1.05rem 1.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, top 0.35s ease;
}

.product-card:hover .quick-view {
  opacity: 1;
  top: 50%;
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover { color: #9f7135; background: rgba(180, 134, 69, 0.12); }
  .hamburger:hover { color: #9f7135; }
  .nav-link:hover { color: #17100a; }
  .nav-link:hover::after { transform: scaleX(1); }
  .hero-cta:hover {
    background: #9c6f35;
    transform: translateY(-2px);
  }
  .craft-images img:hover {
    transform: scale(1.02);
  }
  .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
  }
  .about-gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(31, 48, 39, 0.17);
  }
}

@media (hover: none), (pointer: coarse) {
  .topbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(250, 249, 246, 0.99);
  }

  .page-enter,
  .hero-title-anim,
  .hero-para-anim,
  .hero-cta-anim,
  [data-reveal],
  [data-about-reveal] {
    animation-duration: 0.01ms !important;
    transition-duration: 0.16s;
  }

  .quick-view {
    opacity: 1;
    top: auto;
    bottom: 16px;
    transform: translateX(-50%);
    pointer-events: auto;
    padding: 0.9rem 1.2rem;
  }

  .product-card:hover .image-primary,
  .product-card:hover .image-secondary,
  .craft-images img,
  .feature-box,
  .about-gallery-grid img,
  .hero-cta,
  .icon-btn,
  .hamburger {
    transform: none;
    box-shadow: none;
  }

  .about-page {
    background: var(--about-bg);
  }

  .about-hero-overlay,
  .blog-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.74));
  }
}

.badge-save,
.badge-soldout {
  position: absolute;
  z-index: 5;
  top: 10px;
  font: 600 0.74rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-save {
  left: 10px;
  background: #d8182a;
  color: #fff;
  padding: 0.34rem 0.52rem;
  border-radius: 3px;
}

.badge-soldout {
  right: 10px;
  background: #10141c;
  color: #fff;
  padding: 0.5rem 0.55rem;
  text-align: center;
  width: 56px;
}

.product-details {
  text-align: center;
  padding: 1.5rem 1rem 1.9rem;
}

.product-details h2 {
  margin: 0;
  color: #111;
  font: 500 2rem/1.08 var(--font-display);
}

.price-row {
  margin-top: 0.62rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  align-items: baseline;
}

.price {
  color: #1a1a1a;
  letter-spacing: 0.08em;
  font: 500 0.97rem/1 var(--font-sans);
}

.original-price {
  color: #6d6d6d;
  text-decoration: line-through;
  font: 400 0.93rem/1 var(--font-sans);
}

@media (max-width: 1200px) {
  .product-media {
    height: 500px;
  }

  .product-details h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 0 20px;
    height: 60px;
  }

  .brand {
    font-size: 0.78rem;
  }

  .blog-section {
    padding: 0;
  }

  .blog-hero-banner {
    min-height: 62vh;
  }

  .hero-center p {
    font-size: 1rem;
    max-width: 50ch;
  }

  .blog-content-section {
    padding: 4rem 0;
  }

  .story-editorial-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .story-editorial-copy {
    max-width: 440px;
  }

  .story-editorial-copy h2 {
    font-size: clamp(2.5rem, 8vw, 3.6rem);
  }

  .story-editorial-copy p {
    font-size: 1rem;
  }

  .story-editorial-media {
    width: min(100%, 610px);
    min-height: 450px;
    padding-right: 72px;
    justify-self: center;
  }

  .blog-two-col,
  .blog-two-col.reversed {
    grid-template-columns: 1fr;
  }

  .blog-two-col.reversed .blog-image-wrap,
  .blog-two-col.reversed .blog-text-content {
    order: initial;
  }

  .craft-images {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .longform-layout {
    grid-template-columns: 1fr;
  }

  .story-aside {
    position: static;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-featured-grid,
  .home-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-gallery-grid img:last-child {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
  }

  .catalog-page {
    padding: 10px;
  }

  .shop-filters {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-filter-summary {
    border-right: none;
    border-bottom: 1px solid #e4dacb;
    padding: 0 0 12px;
  }

  .shop-filter-controls {
    grid-template-columns: 1fr 1fr;
  }

  .shop-search {
    grid-column: 1 / -1;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-media {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .about-hero-overlay {
    min-height: 55vh;
  }

  .about-hero .about-shell {
    padding: 54px 0;
  }

  .hero-product-composition {
    display: none;
  }

  .about-lead {
    font-size: 0.9rem;
  }

  .about-longform-section,
  .about-gallery-section,
  .about-cta-section {
    padding-bottom: 48px;
  }

  .media-image img {
    min-height: 200px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-editorial-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-grid,
  .home-benefits-grid {
    grid-template-columns: 1fr;
  }

  .home-journal-grid,
  .home-hero-layout {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 70vw);
  }

  .home-story-editorial {
    padding: 58px 0 72px;
  }

  .story-editorial-copy h2 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .story-editorial-media {
    min-height: 350px;
    padding-right: 28px;
  }

  .story-main-image {
    width: 86%;
    height: 320px;
  }

  .story-detail-image {
    width: 58%;
    height: 150px;
    border-width: 4px;
  }

  .image-mosaic img:nth-child(1),
  .image-mosaic img:nth-child(2),
  .image-mosaic img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .home-hero-notes {
    justify-self: start;
    max-width: 100%;
  }

  .about-gallery-grid img:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  /* single column product grid on tiny screens */
  .shop-filters {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .shop-filter-controls {
    grid-template-columns: 1fr;
  }

  .shop-search {
    grid-column: auto;
  }

  .shop-results-line {
    width: calc(100vw - 20px);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-media {
    height: min(80vw, 380px);
  }

  .product-details h2 {
    font-size: 1.2rem;
  }

  .brand {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .forest-home-hero,
  .about-story-hero,
  .about-story-hero-overlay {
    min-height: 64vh;
  }

  .forest-hero-copy h1,
  .about-story-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .story-values-grid {
    grid-template-columns: 1fr;
  }

  .founder-intro-grid,
  .process-grid,
  .process-image-row,
  .process-modal {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    position: static;
  }

  .founder-principles ul {
    grid-template-columns: 1fr;
  }

  .founder-principles li {
    min-height: auto;
  }

  .process-modal {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .process-modal-image {
    min-height: 320px;
    order: -1;
  }

  .founder-intro-section,
  .story-process-section {
    padding: 58px 18px;
  }

  .story-longform-section {
    padding: 58px 18px;
  }

  .story-longform blockquote {
    padding: 22px;
  }

  .hero-action-row {
    gap: 9px;
  }

  .hero-action-row .hero-cta,
  .hero-action-row .hero-outline-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-enter,
  .hero-title-anim,
  .hero-para-anim,
  .hero-cta-anim,
  [data-reveal],
  [data-about-reveal],
  .hero-cta,
  .quick-view,
  .craft-images img,
  .feature-box,
  .about-gallery-grid img,
  .newsletter-btn,
  .social-icon,
  .nav-link::after,
  .icon-btn,
  .hamburger,
  .modal-overlay,
  .cart-modal,
  .auth-modal,
  .cart-item {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  [data-about-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* (topbar styles moved inline with topbar block above) */

/* ───────────────────────────────────────────────
   NEWSLETTER
─────────────────────────────────────────────── */
.newsletter-section {
  background:
    linear-gradient(135deg, rgba(14, 12, 9, 0.96), rgba(82, 58, 34, 0.94)),
    #0e0c09;
  padding: 96px 24px;
  text-align: center;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section .eyebrow {
  color: #d8bf86;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 14px;
}

.newsletter-sub {
  color: #d1c3a7;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-input {
  flex: 1;
  padding: 14px 22px;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  color: #f5f0e8;
  font-family: var(--font-sans);
  font-size: 0.92rem;
}
.newsletter-input::placeholder { color: rgba(245,240,232,0.45); }

.newsletter-btn {
  padding: 14px 28px;
  background: #b48645;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #9c6f35; }

/* ───────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────── */
.site-footer {
  background: #0d1b12;
  color: #e8efe0;
  padding: 72px 40px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #f5f0e8;
  margin: 0 0 18px;
}
.footer-brand span { color: #c6d0b7; }

.footer-logo {
  display: block;
  width: min(100%, 210px);
  height: auto;
}

.footer-tagline {
  width: min(100%, 320px);
  margin: 0 0 22px;
  color: rgba(223, 232, 216, 0.78);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(223, 232, 216, 0.24);
  color: #dfe8d8;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: #dfe8d8;
  color: #0b1f16;
  border-color: #dfe8d8;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: #dfe8d5;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #c6d0b7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .site-footer { padding: 48px 24px 0; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-input { border-radius: 12px 12px 0 0; }
  .newsletter-btn { border-radius: 0 0 12px 12px; }
}

/* ───────────────────────────────────────────────
   MODAL OVERLAY  (shared)
─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(180, 134, 69, 0.18), transparent 28%),
    rgba(14, 12, 9, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: modalVeilIn 0.28s ease both;
}

.cart-overlay {
  justify-content: flex-end;
  padding: 0;
}

.auth-overlay {
  padding: 24px;
}

.modal-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 18, 11, 0.06);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #4d4032;
  line-height: 1;
  padding: 0;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.modal-close:hover {
  color: #111;
  background: rgba(180, 134, 69, 0.16);
  transform: rotate(8deg);
}

/* ───────────────────────────────────────────────
   CART MODAL
─────────────────────────────────────────────── */
.cart-modal {
  background: #fffdf8;
  border-left: 1px solid rgba(180, 134, 69, 0.25);
  border-radius: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.36);
  animation: cartDrawerIn 0.42s cubic-bezier(0.22, 0.72, 0.18, 1) both;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px 22px;
  border-bottom: 1px solid #eadfcd;
  background:
    linear-gradient(135deg, rgba(180, 134, 69, 0.11), rgba(255, 253, 248, 0)),
    #fffdf8;
}

.modal-kicker {
  margin: 0 0 6px;
  color: #9c6f35;
  font: 800 0.68rem/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1a120b;
  margin: 0;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  color: #7a6a58;
  font-family: var(--font-sans);
  text-align: center;
}
.cart-empty i {
  font-size: 2.5rem;
  color: #b48645;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-bottom: 1px solid #f0eeea;
  animation: modalItemRise 0.36s ease both;
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(26, 18, 11, 0.12);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #3f3325;
  margin: 0 0 4px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-qty {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  font-size: 0.95rem;
  padding: 6px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-actions {
  display: flex;
  gap: 12px;
  padding: 18px 26px;
  border-top: 1px solid #eadfcd;
  background: #fffaf3;
}

.cart-clear {
  flex: 1;
  padding: 12px;
  background: none;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  transition: border-color 0.2s, color 0.2s;
}
.cart-clear:hover { border-color: #888; color: #222; }

.cart-checkout {
  flex: 2;
  padding: 13px 14px;
  background: #1a120b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cart-checkout:hover {
  background: #9c6f35;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(156, 111, 53, 0.2);
}

.cart-subtotal {
  margin: 2px 24px 0;
  padding-bottom: 8px;
  font: 700 0.9rem/1.4 var(--font-sans);
  color: #5c3d1f;
}

.cart-login-hint {
  margin: 0 24px 16px;
  font: 500 0.8rem/1.4 var(--font-sans);
  color: #7a6a58;
}

.auth-modal {
  background: #fffdf8;
  border: 1px solid rgba(180, 134, 69, 0.28);
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  animation: authCardIn 0.42s cubic-bezier(0.2, 0.78, 0.22, 1) both;
}

.auth-hero-panel {
  position: relative;
  padding: 28px 72px 26px 28px;
  background:
    linear-gradient(135deg, rgba(14, 12, 9, 0.94), rgba(92, 61, 31, 0.92)),
    #0e0c09;
  color: #fffaf0;
}

.auth-hero-panel .modal-kicker {
  color: #d8bf86;
}

.auth-hero-panel h2 {
  margin: 0;
  font: 600 2.25rem/0.98 var(--font-display);
}

.auth-hero-panel p:last-of-type {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font: 400 0.9rem/1.55 var(--font-sans);
}

.auth-hero-panel .modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf0;
}

.auth-panel {
  padding: 28px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.auth-avatar {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #b48645;
  color: #fff;
  font: 800 1.3rem/1 var(--font-sans);
}

.auth-user-name {
  margin: 0;
  font: 700 1.1rem/1.2 var(--font-display);
  color: #3f3325;
}

.auth-user-email {
  margin: 0 0 8px;
  font: 500 0.88rem/1.4 var(--font-sans);
  color: #7a6a58;
}

.auth-form {
  padding: 24px 28px 28px;
  display: grid;
  gap: 14px;
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: #f3eadc;
  border: 1px solid #eadfcd;
  border-radius: 999px;
}

.auth-mode {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #6f5b45;
  padding: 10px 14px;
  cursor: pointer;
  font: 800 0.72rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.auth-mode.is-selected {
  background: #fffdf8;
  color: #1a120b;
  box-shadow: 0 8px 20px rgba(26, 18, 11, 0.1);
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-field span {
  color: #6f5b45;
  font: 800 0.7rem/1 var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-input {
  border: 1px solid #ded4c5;
  border-radius: 10px;
  background: #fff;
  color: #3f3325;
  padding: 14px 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.auth-input:focus {
  border-color: #b48645;
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(180, 134, 69, 0.12);
}

.auth-error {
  margin: 2px 0 0;
  font: 600 0.78rem/1.3 var(--font-sans);
  color: #c0392b;
}

.auth-text-link {
  border: none;
  background: transparent;
  color: #9c6f35;
  cursor: pointer;
  padding: 4px 0 0;
  font: 800 0.78rem/1.3 var(--font-sans);
}

@keyframes modalVeilIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cartDrawerIn {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes authCardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes accountMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalItemRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 580px) {
  .cart-overlay,
  .auth-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
  }

  .cart-modal,
  .auth-modal {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: calc(100vh - 24px);
    border-radius: 18px;
    animation-name: authCardIn;
  }

  .cart-modal {
    border-left: none;
  }

  .auth-hero-panel {
    padding: 24px 66px 22px 22px;
  }

  .auth-hero-panel h2 {
    font-size: 1.85rem;
  }

  .modal-header,
  .auth-form,
  .auth-panel,
  .cart-actions {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ───────────────────────────────────────────────
   PRODUCT DETAIL MODAL
─────────────────────────────────────────────── */
/* ── wrapper ── */
.product-modal {
  background: #f6f4f1;
  border-radius: 14px;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
}

/* ── close ── */
.pm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.pm-close:hover { background: #fff; color: #111; }

/* ── gallery (left) ── */
.pm-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px 20px 20px;
  background: #edeae5;
  border-radius: 14px 0 0 14px;
}

.pm-main-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #dedad4;
}
.pm-main-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.pm-thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
}

.pm-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pm-thumb-active { border-color: #b48645; }
.pm-thumb:hover:not(.pm-thumb-active) { border-color: #aaa; }

/* ── info panel (right) ── */
.pm-info {
  padding: 32px 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 0 14px 14px 0;
  overflow-y: auto;
}

/* rating */
.pm-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-stars { display: flex; gap: 2px; color: #e07b39; font-size: 0.85rem; }
.pm-rating-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #666;
}

/* price */
.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.pm-price-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #888;
}
.pm-price {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a120b;
}
.pm-price-original {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #aaa;
  text-decoration: line-through;
}

/* name */
.pm-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: #18201a;
  line-height: 1.22;
  margin: 0;
}

/* shipping */
.pm-shipping {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9c6f35;
  border-bottom: 1px solid #e8e4dd;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* description */
.pm-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.75;
  color: #6b5d4c;
}

/* options */
.pm-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.pm-option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-option-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}

.pm-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d4d0c8;
  border-radius: 5px;
  background: #faf9f6;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #333;
  appearance: auto;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pm-select:focus { outline: none; border-color: #b48645; }

/* sold out label */
.pm-soldout-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

/* add to cart button */
.pm-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #1a120b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.pm-add-btn:hover:not(:disabled) { background: #9c6f35; }
.pm-add-btn:disabled { background: #bbb; cursor: not-allowed; }

/* social */
.pm-social {
  display: flex;
  gap: 14px;
  padding-top: 4px;
}
.pm-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d0ccc4;
  color: #555;
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.pm-social-link:hover { border-color: #b48645; color: #9c6f35; }

/* responsive */
@media (max-width: 700px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }
  .pm-gallery { border-radius: 14px 14px 0 0; padding: 16px; }
  .pm-main-image img { min-height: 220px; }
  .pm-info { border-radius: 0 0 14px 14px; padding: 20px 20px 28px; }
}

/* Home editorial redesign */
.forest-site {
  background: #0f130e;
  color: #f5efe4;
}

.forest-site .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(9, 12, 9, 0.94), rgba(9, 12, 9, 0.55));
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  color: #fffaf0;
}

.forest-site .brand {
  display: inline-flex;
  align-items: center;
}

.forest-site .brand img {
  width: clamp(150px, 16vw, 230px);
  height: auto;
  filter: brightness(0) invert(1);
}

.forest-site .nav-link,
.forest-site .icon-btn,
.forest-site .hamburger {
  color: rgba(255, 250, 240, 0.92);
}

.forest-site .nav-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.forest-site .nav-link::after {
  background: #d1a05e;
}

.forest-site .icon-btn:hover,
.forest-site .hamburger:hover {
  color: #d1a05e;
  background: rgba(255, 255, 255, 0.09);
}

.header-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 6px;
}

.flag-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  filter: saturate(0.82);
}

.flag-btn.is-active {
  border-color: rgba(255, 250, 240, 0.64);
  background: rgba(255, 255, 255, 0.12);
  filter: saturate(1);
}

.forest-home {
  background: #f5efe6;
}

.forest-site .newsletter-section {
  display: none;
}

.forest-site .catalog-page {
  padding-top: 96px;
  background: #f4efe7;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(132px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(9, 12, 9, 0.94), rgba(9, 12, 9, 0.55));
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  color: #fffaf0;
}

.topbar .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.topbar .brand img {
  width: clamp(132px, 14vw, 210px);
  height: auto;
  filter: brightness(0) invert(1);
}

.topbar .main-nav {
  min-width: 0;
  justify-content: center;
}

.topbar-actions {
  min-width: 0;
  gap: 6px;
}

.topbar .nav-link,
.topbar .icon-btn,
.topbar .hamburger {
  color: rgba(255, 250, 240, 0.94);
}

.topbar .nav-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar .nav-link:hover,
.topbar .nav-link.is-active,
.topbar .icon-btn:hover,
.topbar .hamburger:hover {
  color: #fffaf0;
}

.country-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #fffaf0;
  cursor: pointer;
  padding: 0 8px;
  font: 800 0.72rem/1 var(--font-sans);
  letter-spacing: 0.04em;
}

.country-btn span {
  font-size: 1rem;
  line-height: 1;
}

.country-btn strong {
  color: #fffaf0;
  font: inherit;
}

.country-btn.is-active {
  border-color: rgba(255, 250, 240, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.site-search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-search-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1200;
  width: min(340px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: end;
  gap: 8px;
  border: 1px solid rgba(222, 210, 194, 0.9);
  border-radius: 8px;
  background: #fffdf8;
  padding: 12px;
  box-shadow: 0 20px 54px rgba(18, 12, 7, 0.28);
}

.site-search-popover[hidden] {
  display: none !important;
}

.site-search-popover label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.site-search-popover span {
  color: #8a6a45;
  font: 800 0.66rem/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-search-popover input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d9cfbf;
  border-radius: 8px;
  background: #fff;
  color: #1a120b;
  padding: 0 12px;
}

.site-search-popover button {
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #214334;
  color: #fffaf0;
  cursor: pointer;
}

.account-page,
.product-detail-page {
  padding-top: 78px;
}

.forest-editorial-hero {
  min-height: 100svh;
  background-size: cover;
  background-position: center 44%;
}

.forest-hero-shade {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 118px clamp(22px, 6vw, 72px) 64px;
  background:
    linear-gradient(90deg, rgba(8, 9, 7, 0.9) 0%, rgba(17, 18, 13, 0.58) 42%, rgba(8, 9, 7, 0.16) 78%),
    linear-gradient(180deg, rgba(8, 9, 7, 0.12) 0%, rgba(8, 9, 7, 0.84) 100%);
}

.forest-hero-copy {
  width: min(620px, 92vw);
  color: #fffaf0;
}

.forest-hero-copy .eyebrow,
.forest-story-panel .eyebrow,
.forest-process .eyebrow,
.forest-project-cta .eyebrow,
.section-heading-center .eyebrow {
  color: #c99a60;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.forest-hero-copy h1 {
  margin: 14px 0 0;
  font: 600 clamp(3.3rem, 7.8vw, 7rem) / 0.88 var(--font-display);
  letter-spacing: 0;
}

.forest-hero-copy h1 em,
.forest-story-panel h2 em,
.forest-project-cta h2 em {
  font-style: italic;
  font-weight: 500;
}

.forest-hero-copy .story-title-rule {
  margin: 28px 0 22px;
  background: #c99a60;
}

.forest-hero-copy p:not(.eyebrow) {
  max-width: 44ch;
  color: rgba(255, 250, 240, 0.9);
  font: 500 1rem/1.8 var(--font-sans);
}

.forest-hero-copy .hero-action-row {
  justify-content: flex-start;
}

.hero-outline-btn {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: transparent;
  color: #fff;
  padding: 0.9rem 1.35rem;
  font: 700 0.8rem/1 var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-outline-btn:hover {
  border-color: #d1a05e;
  background: rgba(209, 160, 94, 0.16);
  transform: translateY(-2px);
}

.forest-story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  min-height: 380px;
  background: #0f1d14;
}

.forest-story-split > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.forest-story-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) clamp(28px, 8vw, 92px);
  background:
    radial-gradient(circle at 100% 88%, rgba(201, 154, 96, 0.09), transparent 34%),
    #102015;
}

.forest-story-panel h2,
.section-heading-center h2,
.forest-project-cta h2 {
  margin: 14px 0 0;
  font: 600 clamp(2.25rem, 4.5vw, 4.2rem) / 0.98 var(--font-display);
  color: #fff8ec;
}

.forest-story-panel p:not(.eyebrow) {
  max-width: 54ch;
  color: rgba(255, 250, 240, 0.78);
  font: 500 0.96rem/1.85 var(--font-sans);
}

.text-arrow-btn {
  margin-top: 24px;
  border: 0;
  border-bottom: 1px solid #c99a60;
  background: transparent;
  color: #c99a60;
  cursor: pointer;
  padding: 0 0 6px;
  font: 800 0.76rem/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.forest-home .legacy-home-block,
.forest-home .section-white {
  display: none;
}

.forest-home .blog-content-section.section-light {
  background: #f3eee5;
  padding: clamp(54px, 7vw, 86px) 0;
}

.section-heading-center {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading-center h2 {
  color: #1d150d;
}

.section-heading-center > p:last-child {
  margin-top: 12px;
  color: #463b2f;
  font: 500 1rem/1.7 var(--font-sans);
}

.forest-home .section-heading-center h2 {
  color: #17100a;
}

.forest-home .section-heading-center > p:last-child {
  color: #3f382f;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.collection-card button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1d150d;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.collection-card a {
  display: block;
  color: #132018;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  border: 1px solid rgba(19, 32, 24, 0.18);
}

.collection-card span {
  display: block;
  color: #132018;
  font: 900 0.9rem/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card small {
  display: block;
  margin-top: 9px;
  color: #8b6030;
  font: 700 0.86rem/1 var(--font-sans);
}

.forest-process {
  padding: 34px 0 38px;
  background:
    linear-gradient(180deg, #0d1b12 0%, #102017 100%);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 24px auto 0;
  max-width: 1080px;
}

.process-step {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 18px 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-step + .process-step::before {
  content: '->';
  position: absolute;
  left: -16px;
  top: 44px;
  color: #c99a60;
  font: 700 1rem/1 var(--font-sans);
}

.process-step i {
  color: #f3eee5;
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.process-step h3 {
  margin: 0 0 10px;
  color: #f8f1e6;
  font: 800 0.78rem/1.2 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step p {
  color: rgba(248, 241, 230, 0.72);
  max-width: 18ch;
  font: 500 0.76rem/1.5 var(--font-sans);
}

.forest-project-cta {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  min-height: 240px;
  background: #15150f;
}

.forest-project-cta > img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.forest-project-cta > div {
  padding: clamp(34px, 5vw, 58px) clamp(28px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(28, 21, 14, 0.74), rgba(18, 18, 13, 0.94)),
    #17150f;
}

.forest-project-cta h2 {
  max-width: 13ch;
  margin-bottom: 22px;
}

@media (max-width: 780px) {
  .topbar .main-nav {
    background: rgba(13, 18, 13, 0.98);
    border-top-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  }

  .topbar .main-nav .nav-link {
    color: rgba(255, 250, 240, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .topbar .main-nav .nav-link:hover,
  .topbar .main-nav .nav-link.is-active {
    background: rgba(201, 154, 96, 0.16);
    color: #fffaf0;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step + .process-step::before {
    content: none;
  }
}

@media (max-width: 700px) {
  .topbar {
    height: 66px;
    padding: 0 12px;
  }

  .topbar .brand img {
    width: 118px;
  }

  .topbar-actions {
    gap: 2px;
  }

  .topbar .icon-btn,
  .topbar .hamburger {
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .country-btn {
    height: 28px;
    padding: 0 5px;
    font-size: 0.66rem;
  }

  .country-btn span {
    font-size: 0.9rem;
  }

  .account-page,
  .product-detail-page {
    padding-top: 66px;
  }

  .header-language-switch {
    gap: 0;
    margin-right: 0;
  }

  .flag-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .forest-hero-shade {
    align-items: flex-end;
    padding: 110px 22px 56px;
  }

  .forest-hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .forest-story-split,
  .forest-project-cta {
    grid-template-columns: 1fr;
  }

  .forest-story-split > img,
  .forest-project-cta > img {
    min-height: 260px;
  }

  .collection-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.story-process-section .blog-container {
  display: grid;
  justify-items: center;
}

.story-process-section .process-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.story-process-section .process-grid {
  width: min(100%, 920px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-process-section .process-grid article {
  min-height: 300px;
}

.story-process-section .process-image-row {
  width: min(100%, 920px);
  justify-self: center;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-process-section .process-rotator {
  width: 100%;
}

@media (max-width: 760px) {
  .story-process-section .process-grid,
  .story-process-section .process-image-row {
    grid-template-columns: 1fr;
  }
}

.about-story-hero,
.about-story-hero-overlay,
.contact-hero,
.contact-hero-overlay {
  min-height: calc(76vh + 78px);
}

.about-story-hero-overlay,
.contact-hero-overlay {
  padding-top: 78px;
}

.about-story-hero-copy,
.contact-hero-copy {
  padding-top: clamp(42px, 6vw, 82px);
}

.forest-site .catalog-page {
  color: #1d150d;
}

.forest-site .shop-heading h1 {
  color: #1a120b;
}

.forest-site .shop-heading .eyebrow {
  color: #9c6f35;
}

.flag-icon {
  width: 18px;
  height: 12px;
  display: inline-block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.flag-us {
  background:
    linear-gradient(90deg, #244a9b 0 40%, transparent 40%),
    repeating-linear-gradient(180deg, #b22234 0 1.55px, #fff 1.55px 3.1px);
}

.flag-mx {
  background: linear-gradient(90deg, #006847 0 33.33%, #fff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.forest-process .process-grid {
  gap: 24px;
  max-width: 1120px;
}

.forest-process .process-step {
  min-height: 0;
  height: 184px;
  aspect-ratio: auto;
  justify-content: center;
  padding: 18px 16px;
}

.forest-process .process-step i {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.forest-process .process-step h3 {
  margin-bottom: 8px;
}

.forest-process .process-step p {
  max-width: 20ch;
  font-size: 0.74rem;
  line-height: 1.42;
}

@media (max-width: 700px) {
  .about-story-hero,
  .about-story-hero-overlay,
  .contact-hero,
  .contact-hero-overlay {
    min-height: calc(64vh + 66px);
  }

  .about-story-hero-overlay,
  .contact-hero-overlay {
    padding-top: 66px;
  }

  .flag-icon {
    width: 16px;
    height: 11px;
  }
}

/* Home green forest theme */
.forest-site {
  --home-forest: #0d1b12;
  --home-forest-2: #102418;
  --home-forest-3: #193323;
  --home-sage: #8fa47d;
  --home-sage-soft: #c6d0b7;
  --home-cream: #f3eee5;
  --home-cream-2: #fff8ec;
  --home-ink: #102017;
}

.forest-site .topbar,
.topbar {
  background: linear-gradient(180deg, rgba(7, 16, 10, 0.96), rgba(7, 16, 10, 0.48));
}

.forest-site .nav-link::after,
.topbar .nav-link::after,
.forest-hero-copy .story-title-rule,
.story-title-rule {
  background: var(--home-sage);
}

.forest-site .nav-link:hover,
.forest-site .nav-link.is-active,
.forest-site .icon-btn:hover,
.forest-site .hamburger:hover,
.topbar .nav-link:hover,
.topbar .nav-link.is-active,
.topbar .icon-btn:hover,
.topbar .hamburger:hover {
  color: var(--home-cream-2);
}

.forest-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 14, 9, 0.92) 0%, rgba(14, 31, 20, 0.56) 44%, rgba(7, 14, 9, 0.16) 78%),
    linear-gradient(180deg, rgba(7, 14, 9, 0.12) 0%, rgba(7, 14, 9, 0.86) 100%);
}

.forest-hero-copy .eyebrow,
.forest-story-panel .eyebrow,
.forest-process .eyebrow,
.forest-project-cta .eyebrow,
.section-heading-center .eyebrow,
.forest-site .shop-heading .eyebrow {
  color: var(--home-sage-soft);
}

.hero-cta {
  background: var(--home-forest-3);
  color: var(--home-cream-2);
}

.hero-cta:hover {
  background: #24462f;
}

.hero-outline-btn,
.text-arrow-btn {
  border-color: var(--home-sage);
  color: var(--home-sage-soft);
}

.hero-outline-btn:hover,
.text-arrow-btn:hover {
  border-color: var(--home-sage-soft);
  background: rgba(143, 164, 125, 0.16);
  color: var(--home-cream-2);
}

.forest-story-split,
.forest-story-panel,
.forest-process,
.site-footer {
  background: var(--home-forest);
}

.forest-story-panel {
  background:
    radial-gradient(circle at 100% 88%, rgba(143, 164, 125, 0.1), transparent 34%),
    var(--home-forest);
}

.forest-home .blog-content-section.section-light {
  background: var(--home-cream);
}

.forest-home .section-heading-center h2,
.forest-site .catalog-page,
.forest-site .shop-heading h1,
.collection-card a,
.collection-card span {
  color: var(--home-ink);
}

.forest-home .section-heading-center > p:last-child {
  color: #28392e;
}

.collection-card img {
  border-color: rgba(16, 32, 23, 0.18);
}

.collection-card small,
.process-step + .process-step::before {
  color: #456546;
}

.forest-process {
  background: linear-gradient(180deg, #0c1a11 0%, #102418 100%);
}

.forest-process .process-step,
.process-step {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.forest-process .process-step i,
.process-step i {
  color: var(--home-cream-2);
}

.forest-process .process-step h3,
.process-step h3 {
  color: var(--home-cream-2);
}

.forest-process .process-step p,
.process-step p {
  color: rgba(255, 248, 236, 0.72);
}

.forest-project-cta,
.forest-project-cta > div {
  background:
    linear-gradient(90deg, rgba(11, 33, 19, 0.78), rgba(7, 22, 13, 0.95)),
    var(--home-forest);
}

.forest-project-cta h2,
.forest-project-cta h2 em {
  color: var(--home-cream-2);
}

.forest-site .footer-heading,
.forest-site .footer-brand,
.forest-site .footer-bottom {
  color: var(--home-cream-2);
}

.forest-site .footer-tagline,
.forest-site .footer-links a {
  color: #dfe8d5;
}

.forest-site .footer-links a:hover {
  color: var(--home-sage-soft);
}

.social-icon:hover,
.newsletter-btn:hover,
.pm-add-btn:hover:not(:disabled) {
  background: var(--home-forest-3);
  border-color: var(--home-forest-3);
}

/* Professional minimal green home */
.forest-site {
  --ssf-forest: #0b1f16;
  --ssf-forest-2: #123022;
  --ssf-leaf: #1f4d35;
  --ssf-leaf-soft: #6f8f70;
  --ssf-sage: #b9c7b1;
  --ssf-sage-2: #dfe8d8;
  --ssf-paper: #ffffff;
  --ssf-mist: #f7faf5;
  --ssf-ink: #102018;
  --ssf-muted: #506258;
}

.forest-site .topbar,
.topbar {
  background: transparent;
  border-bottom: 1px solid rgba(247, 250, 245, 0.08);
  box-shadow: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.forest-site .topbar.is-scrolled,
.topbar.is-scrolled {
  background: rgba(255, 253, 248, 0.97);
  border-bottom-color: rgba(108, 80, 45, 0.15);
  box-shadow: 0 2px 16px rgba(26, 18, 11, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar.is-scrolled .nav-link,
.topbar.is-scrolled .icon-btn,
.topbar.is-scrolled .hamburger,
.topbar.is-scrolled .country-btn {
  color: rgba(63, 51, 37, 0.88);
}
.topbar.is-scrolled .nav-link:hover,
.topbar.is-scrolled .nav-link.is-active,
.topbar.is-scrolled .icon-btn:hover,
.topbar.is-scrolled .hamburger:hover {
  color: #17100a;
}
.topbar.is-scrolled .brand img {
  filter: none;
}

.forest-site[data-active-tab="shop"] .topbar {
  background: rgba(255, 253, 248, 0.97);
  border-bottom-color: rgba(108, 80, 45, 0.15);
  box-shadow: 0 2px 16px rgba(26, 18, 11, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.forest-site[data-active-tab="shop"] .topbar .nav-link,
.forest-site[data-active-tab="shop"] .topbar .icon-btn,
.forest-site[data-active-tab="shop"] .topbar .hamburger,
.forest-site[data-active-tab="shop"] .topbar .country-btn {
  color: rgba(63, 51, 37, 0.88);
}
.forest-site[data-active-tab="shop"] .topbar .brand img {
  filter: none;
}

.forest-site .nav-link,
.topbar .nav-link,
.topbar .icon-btn,
.topbar .hamburger,
.country-btn {
  color: rgba(247, 250, 245, 0.88);
}

.forest-site .nav-link::after,
.topbar .nav-link::after,
.story-title-rule,
.forest-hero-copy .story-title-rule {
  background: var(--ssf-sage);
}

.forest-editorial-hero {
  background-color: var(--ssf-forest);
}

.forest-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.06) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.forest-hero-copy h1,
.forest-story-panel h2,
.forest-project-cta h2 {
  color: var(--ssf-paper);
}

.forest-hero-copy p:not(.eyebrow),
.forest-story-panel p:not(.eyebrow),
.forest-project-cta p:not(.eyebrow) {
  color: rgba(247, 250, 245, 0.82);
}

.forest-hero-copy .eyebrow,
.forest-story-panel .eyebrow,
.forest-process .eyebrow,
.forest-project-cta .eyebrow,
.section-heading-center .eyebrow {
  color: var(--ssf-sage);
}

.hero-cta,
.site-search-popover button {
  background: var(--ssf-paper);
  color: var(--ssf-forest);
  border: 1px solid var(--ssf-paper);
}

.hero-cta:hover,
.site-search-popover button:hover {
  background: var(--ssf-sage-2);
  border-color: var(--ssf-sage-2);
  color: var(--ssf-forest);
}

.hero-outline-btn,
.text-arrow-btn {
  border-color: rgba(247, 250, 245, 0.56);
  color: var(--ssf-paper);
  background: transparent;
}

.hero-outline-btn:hover,
.text-arrow-btn:hover {
  border-color: var(--ssf-sage);
  background: rgba(185, 199, 177, 0.12);
  color: var(--ssf-paper);
}

.forest-story-split {
  background: var(--ssf-forest);
}

.forest-story-panel {
  background:
    linear-gradient(135deg, rgba(31, 77, 53, 0.26), rgba(11, 31, 22, 0) 46%),
    var(--ssf-forest);
}

.forest-home .blog-content-section.section-light {
  background: var(--ssf-mist);
}

.forest-home .section-heading-center h2,
.collection-card span,
.collection-card a,
.forest-site .catalog-page,
.forest-site .shop-heading h1 {
  color: var(--ssf-ink);
}

.forest-home .section-heading-center > p:last-child,
.collection-card small {
  color: var(--ssf-muted);
}

.collection-card a {
  background: transparent;
}

.collection-card img {
  border: 1px solid rgba(16, 32, 24, 0.1);
  border-radius: 2px;
  filter: saturate(0.92) contrast(1.02);
}

.collection-card span {
  letter-spacing: 0.13em;
}

.collection-card small {
  letter-spacing: 0.08em;
}

.forest-process {
  background: linear-gradient(180deg, var(--ssf-forest) 0%, var(--ssf-forest-2) 100%);
}

.forest-process .process-step,
.process-step {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.forest-process .process-step i,
.process-step i {
  color: var(--ssf-sage-2);
}

.forest-process .process-step h3,
.process-step h3 {
  color: var(--ssf-paper);
}

.forest-process .process-step p,
.process-step p {
  color: rgba(247, 250, 245, 0.72);
}

.process-step + .process-step::before {
  color: var(--ssf-sage);
}

.forest-project-cta {
  background: var(--ssf-forest);
}

.forest-project-cta > div {
  background:
    linear-gradient(90deg, rgba(11, 31, 22, 0.7), rgba(11, 31, 22, 0.96)),
    var(--ssf-forest);
}

.site-footer {
  background: #07150f;
  color: var(--ssf-sage-2);
}

.footer-heading,
.footer-brand,
.footer-bottom {
  color: var(--ssf-paper);
}

.footer-tagline,
.footer-links a,
.site-footer p {
  color: rgba(223, 232, 216, 0.82);
}

.footer-links a:hover,
.social-icon:hover {
  color: var(--ssf-paper);
}

.social-icon {
  border-color: rgba(223, 232, 216, 0.24);
  color: var(--ssf-sage-2);
}

.social-icon:hover {
  background: var(--ssf-sage-2);
  border-color: var(--ssf-sage-2);
  color: var(--ssf-forest);
}

.forest-site .catalog-page .shop-heading .eyebrow {
  color: #1f4d35;
}

.forest-project-cta {
  background: #4a2f1f;
}

.forest-project-cta > div {
  background:
    linear-gradient(90deg, rgba(74, 47, 31, 0.86), rgba(48, 30, 20, 0.97)),
    #4a2f1f;
}

.forest-project-cta .eyebrow {
  color: #d8b27d;
}

.forest-project-cta .hero-outline-btn {
  border-color: rgba(245, 234, 219, 0.64);
  color: #fff8ec;
}

.forest-project-cta .hero-outline-btn:hover {
  background: #fff8ec;
  border-color: #fff8ec;
  color: #4a2f1f;
}

/* Home custom-process layout */
.forest-home .ssf-trust-bar {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.forest-home .ssf-trust-item {
  min-width: 0;
  border-top: 0;
}

.forest-home .ssf-trust-item:nth-child(2) {
  border-right: 0;
}

.forest-home .forest-process {
  padding: clamp(58px, 7vw, 96px) 0;
}

.forest-home .forest-process .process-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  align-items: start;
  gap: clamp(24px, 3vw, 44px);
  max-width: 1180px;
  margin-top: clamp(42px, 5vw, 70px);
}

.forest-home .forest-process .process-grid::before {
  display: none;
}

.forest-home .forest-process .process-step {
  height: auto;
  min-height: 0;
  padding: 0 clamp(8px, 1.3vw, 18px);
  justify-content: flex-start;
}

.forest-home .forest-process .process-step i {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid rgba(185, 199, 177, 0.18);
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.035);
  font-size: 1.7rem;
}

.forest-home .forest-process .process-step h3 {
  max-width: 12rem;
  min-height: 3.2em;
  margin: 0 auto 14px;
  font: 700 1rem/1.18 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.forest-home .forest-process .process-step p {
  max-width: 28ch;
  margin: 0 auto;
  text-align: left;
  text-wrap: pretty;
  color: rgba(247, 250, 245, 0.76);
  font: 500 0.94rem/1.62 var(--font-sans);
}

.forest-home .forest-process .process-step + .process-step::before {
  left: calc(-1 * clamp(18px, 2vw, 30px));
  top: 39px;
  color: rgba(185, 199, 177, 0.55);
}

@media (max-width: 980px) {
  .forest-home .forest-process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .forest-home .forest-process .process-step + .process-step::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .forest-home .forest-process .process-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
    gap: 42px;
  }

  .forest-home .forest-process .process-step h3 {
    min-height: 0;
  }

  .forest-home .forest-process .process-step p {
    text-align: center;
  }
}
