:root {
  --ink: #090c0f;
  --muted: #62666d;
  --cream: #f6f1e8;
  --paper: #fbfaf8;
  --white: #fff;
  --dark: #111513;
  --line: rgba(9, 12, 15, .12);
  --radius: 28px;
  --shell: 1440px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --nav-color: #090c0f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.shell { width: min(var(--shell), 100%); margin: 0 auto; padding-inline: clamp(24px, 5vw, 80px); }
.script-text { margin: 0; font-family: Caveat, cursive; font-weight: 600; line-height: .9; transform: rotate(-2deg); transform-origin: left center; }
.small-script { font-size: clamp(2rem, 3vw, 3.5rem); }
.kicker { margin: 0 0 14px; text-transform: uppercase; font-size: .8rem; font-weight: 800; letter-spacing: .22em; }
.body-copy { margin: 0; max-width: 620px; color: var(--muted); font-size: clamp(1rem, 1.18vw, 1.2rem); line-height: 1.65; }
.text-link { display: inline-flex; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

.top-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(26px, 3vw, 54px);
  color: var(--nav-color);
  pointer-events: none;
}
.top-link { display: inline-flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 500; pointer-events: auto; transition: opacity .2s ease; }
.top-link:hover { opacity: .62; }

.hero { position: relative; height: 210svh; background: var(--cream); }
.hero-sticky {
  --scene: 0;
  --hero-fg: rgb(9 12 15);
  --hero-muted: rgb(88 91 98);
  --glow: 1;
  --fade-rgb: 246, 241, 232;
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--hero-fg);
  background: var(--cream);
}
.hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(6, 11, 8, .58), rgba(6, 11, 8, .58)), url("assets/nature-background.png") center / cover no-repeat;
  opacity: var(--scene);
  transform: scale(calc(1.04 - var(--scene) * .04));
}
.hero-inner { width: min(var(--shell), 100%); height: 100%; margin: auto; padding: 74px clamp(34px, 5vw, 78px) 0; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(36px, 5vw, 84px); }
.hero-visual { position: relative; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.hero-glow { position: absolute; z-index: -1; width: min(43vw, 620px); aspect-ratio: 1; left: 48%; bottom: 10%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(242, 165, 107, .2), rgba(242, 165, 107, .08) 52%, transparent 76%); filter: blur(12px); opacity: var(--glow); }
.hero-image { width: clamp(560px, 44vw, 790px); max-width: none; transform: translateY(10%); filter: drop-shadow(0 24px 34px rgba(23, 37, 40, .16)); }
.hero-copy { align-self: center; padding-bottom: 2vh; }
.hero-copy > .script-text { font-size: clamp(2.3rem, 3.2vw, 4rem); margin-bottom: 14px; }
.hero-copy h1 { margin: 0; font-size: clamp(4.8rem, 7.3vw, 8.5rem); line-height: .82; letter-spacing: -.09em; }
.hero-copy h1 span { display: block; }
.hero-messages { position: relative; min-height: 155px; margin-top: 34px; }
.hero-message { position: absolute; inset: 0 auto auto 0; width: 100%; }
.hero-message-b { opacity: 0; transform: translateY(24px); }
.hero-message .body-copy { color: var(--hero-muted); line-height: 1.45;}
.hero-fade { position: absolute; z-index: 5; left: 0; right: 0; bottom: -1px; height: 14%; background: linear-gradient(to top, rgba(var(--fade-rgb), 1) 0%, rgba(var(--fade-rgb), .9) 28%, rgba(var(--fade-rgb), .58) 58%, rgba(var(--fade-rgb), 0) 100%); pointer-events: none; }
.hero-spacer { height: 110svh; }
body:not(.ready) .top-nav, body:not(.ready) .hero-image, body:not(.ready) .hero-copy { opacity: 0; }
body.ready .top-nav { animation: enterDown .7s .1s both; }
body.ready .hero-image { animation: imageEnter .9s .18s both; }
body.ready .hero-copy { animation: enterUp .9s .32s both; }
@keyframes imageEnter { from { opacity: 0; transform: translateY(calc(10% + 34px)); } to { opacity: 1; transform: translateY(10%); } }
@keyframes enterUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes enterDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }

.video-section { padding: clamp(70px, 7vw, 104px) 0; background: var(--white); }
.video-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(42px, 6vw, 90px); }
.video-copy h2, .format-copy h2, .topics-copy h2, .about-copy h2, .section-heading h2, .contact-copy h2 { margin: 16px 0 20px; font-size: clamp(3.2rem, 5.2vw, 6.5rem); line-height: .94; letter-spacing: -.065em; }
.video-copy > p:not(.script-text), .format-copy > p:last-child, .topics-copy > p:last-child, .about-copy > p:last-child, .section-heading p, .contact-copy > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #111; box-shadow: 0 24px 70px rgba(25, 30, 32, .12); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-fallback { position: absolute; inset: 0; display: none; align-items: center; justify-content: space-between; padding: 36px; color: #fff; background: linear-gradient(135deg, #16231d, #0c100e); font-size: 1.1rem; }
.video-fallback b { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; color: #111; background: #fff; }
.video-frame.is-fallback .video-fallback { display: flex; }
.video-frame.is-fallback iframe { display: none; }

.brand-section { padding: 100px 0; overflow: hidden; background: var(--white); }
.brand-shell { display: grid; place-items: center; gap: 28px; }
.brand-note { margin: 0; color: #70736f; font-size: .94rem; text-align: center; }
.brand-list { width: 100%; overflow: hidden; }
.brand-track { display: flex; justify-content: center; width: 100%; }
.brand-group { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; gap: clamp(26px, 2.8vw, 44px); }
.brand-list.is-marquee .brand-track { width: max-content; justify-content: flex-start; animation: brandMarquee 30s linear infinite; }
.brand-list.is-marquee .brand-group { padding-right: clamp(26px, 2.8vw, 44px); }
.brand-list.is-marquee:hover .brand-track { animation-play-state: paused; }
.brand-logo {
  width: clamp(100px, 7.6vw, 145px);
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;

  filter: grayscale(1);
  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity .6s ease,
    transform .6s ease,
    filter .3s ease;
}
.brand-logo.is-visible { opacity: .55; transform: none; }
.brand-logo.is-visible:hover {filter: grayscale(0); opacity: 1;}
@keyframes brandMarquee { to { transform: translateX(-50%); } }

.topics-section { height: 210svh; background: linear-gradient(135deg, #f8f2e8, #eef4ef); }
.topics-sticky { position: sticky; top: 0; height: 100svh; display: grid; align-items: center; overflow: hidden; }
.topics-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.topics-copy h2 { max-width: 630px; }
.topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.topic-card { min-height: 245px; padding: 30px; border: 1px solid rgba(9, 12, 15, .1); border-radius: 24px; background: rgba(255,255,255,.62); box-shadow: 0 20px 55px rgba(20, 27, 24, .06); opacity: 0; transform: translateY(28px) rotate(.8deg); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.topic-card:nth-child(even) { transform: translateY(28px) rotate(-.8deg); }
.topic-card.is-visible { opacity: 1; transform: none; }
.topic-card small { color: #858981; letter-spacing: .18em; }
.topic-card h3 { margin: 70px 0 12px; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 2.2rem; }
.topic-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.format-section { min-height: 100svh; display: grid; align-items: center; padding: 100px 0; background: var(--paper); }
.format-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(56px, 7vw, 110px); }
.format-list { display: grid; gap: 12px; }
.format-card { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 28px 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.format-card:hover, .format-card:focus, .format-card.is-active { outline: 0; transform: translateX(-10px); background: var(--cream); box-shadow: 0 22px 55px rgba(25,30,32,.08); }
.format-card > span { color: #8c8e91; font-size: .76rem; letter-spacing: .18em; }
.format-card h3 { margin: 0 0 8px; font-size: 1.5rem; }
.format-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.about-section { padding: 88px 0 72px; color: #f7f6f1; background: #111513; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: minmax(270px, 380px) minmax(0, 1fr); gap: clamp(44px, 6vw, 92px); align-items: center; }
.about-image { width: 100%; max-width: 380px; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 24px; background: #202520; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.about-copy h2 { font-size: clamp(2.8rem, 4.5vw, 5.4rem); }
.about-copy > p:last-child { max-width: 660px; color: rgba(247,246,241,.68); }
.stories-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-top: 76px; margin-bottom: 28px; }
.stories-heading h3 { margin: 0; font-size: clamp(2.5rem, 4vw, 4.6rem); letter-spacing: -.06em; }
.stories-heading p { max-width: 500px; margin: 0; color: rgba(247,246,241,.64); line-height: 1.65; }
.story-marquee { width: 100%; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; cursor: grab; touch-action: pan-y; user-select: none; }
.story-marquee::-webkit-scrollbar { display: none; }
.story-marquee.is-dragging { cursor: grabbing; }
.story-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 18px 14px;
}
.story-card { position: relative; width: clamp(360px, 36vw, 520px); aspect-ratio: 4 / 5; flex: 0 0 auto; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg,#25342c,#151b18); isolation: isolate; }
.story-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--thumb, linear-gradient(135deg,#25342c,#151b18)) center / cover no-repeat; transform: scale(1.02); transition: transform .5s ease; }
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(5, 8, 6, .94) 0%,
    rgba(5, 8, 6, .72) 32%,
    rgba(5, 8, 6, .08) 72%
  );
}
.story-card:hover::before { transform: scale(1.07); }
.story-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
.story-copy h4 {
  margin: 7px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.story-copy p {
  display: -webkit-box;
  margin: 0;
  max-width: 430px;
  overflow: hidden;
  color: rgba(255, 255, 255, .7);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-copy small {
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.story-copy small { text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.68); font-size: .66rem; }
.story-copy h3 { margin: 9px 0; font-size: 1.42rem; }
.story-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.5; }
.story-arrow { position: absolute; top: 20px; right: 22px; font-size: 1.25rem; }

.experience-section { padding: 110px 0; background: var(--paper); }
.products-section { padding: 86px 0; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: end; margin-bottom: 70px; }
.products-section .section-heading { margin-bottom: 48px; }
.products-section .section-heading h2 { font-size: clamp(2.7rem, 4.3vw, 5rem); }
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 14px; bottom: 14px; width: 1px; background: #d7d9dc; }
.timeline-item { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 34px; padding: 0 0 62px 42px; }
.timeline-dot { position: absolute; left: 0; top: 7px; width: 17px; height: 17px; border: 2px solid #d7d9dc; border-radius: 50%; background: var(--paper); }
.timeline-dot.filled { border-color: var(--ink); background: var(--ink); }
.timeline-item h3 { margin: 0 0 5px; font-size: 1.3rem; }
.timeline-item p { margin: 0 0 20px; color: var(--muted); }
.timeline-item ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.75; }
.timeline-item time { color: #90939a; white-space: nowrap; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(25,30,32,.1); }
.product-media { aspect-ratio: 16 / 10; background: var(--image, linear-gradient(135deg,#dce9e5,#f4e1cf)) center / cover no-repeat; }
.product-copy { padding: 22px 22px 10px; }
.product-copy small { text-transform: uppercase; letter-spacing: .15em; color: #7d8187; }
.product-copy h3 { margin: 10px 0; font-size: 1.45rem; }
.product-copy p { margin: 0; color: var(--muted); line-height: 1.55; }
.product-cta { padding: 12px 22px 22px; font-weight: 700; }

.contact-section { display: grid; align-items: center; padding: 116px 0 30px; color: #f7f6f1; background: linear-gradient(rgba(6,10,8,.78),rgba(6,10,8,.86)), url("assets/nature-background.png") center / cover no-repeat; }
.contact-layout { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(46px, 7vw, 110px); align-items: center; }
.contact-copy h2 { font-size: clamp(2.7rem, 4.3vw, 4.8rem); }
.contact-copy > p:last-child { max-width: 620px; color: rgba(247,246,241,.7); }
.contact-actions { display: grid; gap: 8px; }
.contact-actions a { display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-actions span { color: rgba(255,255,255,.55); }
.contact-actions strong { font-size: 1rem; }
.contact-actions i { font-style: normal; }
.contact-footer { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.65); font-size: .82rem; }
.contact-footer div { display: flex; gap: 22px; }

@media (max-width: 980px) {
  .top-nav { padding: 20px; }
  .hero { height: auto; }
  .hero-sticky { position: relative; height: auto; min-height: 100svh; }
  .hero-inner { min-height: 100svh; grid-template-columns: 1fr; padding-top: 95px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 52svh; }
  .hero-image { width: min(90vw, 650px); transform: none; }
  body.ready .hero-image { animation-name: enterUp; }
  .hero-spacer { display: none; }
  .video-layout, .topics-layout, .format-layout, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .topics-section { height: auto; padding: 100px 0; }
  .topics-sticky { position: relative; height: auto; }
  .topic-grid { margin-top: 20px; }
  .topic-card { opacity: 1; transform: none; }
  .story-card { width: min(68vw, 340px); }
  .section-heading { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .contact-footer { margin-top: 30px; }
}

@media (max-width: 620px) {
  .scroll-link { font-size: 0; }
  .scroll-link span { font-size: .85rem; }
  .hero-inner { padding-inline: 20px; }
  .hero-copy h1 { font-size: clamp(4rem, 20vw, 5.5rem); }
  .hero-messages { min-height: 210px; }
  .video-section, .format-section, .about-section, .experience-section, .products-section { padding-block: 76px; }
  .topic-grid, .product-grid { grid-template-columns: 1fr; }
  .brand-group { gap: 24px; }
  .brand-list.is-marquee .brand-group { padding-right: 24px; }
  .brand-logo { width: 100px; }
  .stories-heading, .contact-footer { flex-direction: column; align-items: flex-start; }
  .story-card { width: min(78vw, 315px); }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item time { order: -1; }
  .contact-actions a { grid-template-columns: 1fr auto; }
  .contact-actions span { grid-column: 1 / -1; }
  .contact-footer div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .topic-card, .brand-logo { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .story-card {
    width: 82vw;
    max-width: 420px;
  }

  .story-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .story-copy p {
    font-size: .86rem;
    -webkit-line-clamp: 1;
  }
}