:root {
  --green: #1c7547;
  --green-dark: #105332;
  --yellow: #eff51f;
  --orange: #d7df12;
  --logo-gradient: linear-gradient(
    135deg,
    #d7df12 0%,
    #eff51f 58%,
    #fff77a 100%
  );
  --logo-gradient-radial: radial-gradient(
    circle at 50% 52%,
    #fff875 0%,
    #f9e51a 45%,
    #edcf0d 100%
  );
  --paper: #fdfeff;
  --muted: rgba(28, 117, 71, 0.7);
  --line: rgba(28, 117, 71, 0.18);
  --radius: 28px;
  --ease: 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--green);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.nav-open {
  overflow: hidden;
}
img,
video {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.container {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: clamp(38px, 4vw, 60px) 0;
}
.eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease;
}
.button:hover {
  transform: translateY(-3px);
  background: var(--logo-gradient);
  color: var(--green);
}
.button.light {
  border-color: white;
  background: white;
  color: var(--green);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  color: var(--green);
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
}
.site-header.is-scrolled { padding: 0; background: rgba(253,254,255,.96); box-shadow: 0 14px 38px rgba(28,117,71,.08); backdrop-filter: blur(18px); }
.site-header.is-scrolled .nav-shell { width: 100%; max-width: none; min-height: 76px; padding-inline: max(24px, calc((100vw - 1380px) / 2)); border-right: 0; border-left: 0; border-radius: 0; background: transparent; }
.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 10px 24px;
  border: 1px solid rgba(28, 117, 71, 0.14);
  border-radius: 999px;
  background: rgba(253, 254, 255, 0.82);
  backdrop-filter: blur(18px);
}
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > button { display: inline-flex; min-height: 44px; align-items: center; gap: 5px; padding: 8px 0; border: 0; color: inherit; background: none; font: inherit; line-height: 1; cursor: pointer; }
.nav-dropdown > button span { display: inline-flex; align-items: center; line-height: 1; transform: translateY(-1px); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 18px); right: 0; width: 190px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(253,254,255,.97); box-shadow: 0 18px 50px rgba(16,83,50,.13); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 180ms ease; }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; }
.nav-dropdown-menu a:hover { background: rgba(28,117,71,.08); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.nav-actions {
  justify-content: flex-end;
}
.desktop-nav a,
.nav-actions > a:not(.button) {
  position: relative;
  padding: 8px 0;
  font-size: 0.88rem;
}
.nav-actions .button {
  min-height: 48px;
  padding-inline: 24px;
  font-size: 0.84rem;
}
.desktop-nav a::after,
.nav-actions > a:not(.button)::after {
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: right var(--ease);
}
.desktop-nav a:hover::after,
.nav-actions > a:not(.button):hover::after,
[aria-current="page"]::after {
  right: 0;
}
.brand img {
  width: 164px;
  height: 62px;
  object-fit: contain;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(28, 117, 71, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 5px 16px rgba(9, 44, 28, 0.08);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 24px;
  height: 1px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform var(--ease), opacity var(--ease);
}
.menu-button span { margin-block: 6px; }
.menu-button.is-open::before { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span { opacity: 0; }
.menu-button.is-open::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 120px 28px 40px;
  color: white;
  background: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu a {
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav-actions > a:not(.button) {
    display: none;
  }
  .nav-dropdown {
    display: none;
  }
  .menu-button {
    display: block;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 0;
  }
  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    width: min(1380px, calc(100% - 24px));
    min-height: 64px;
    padding: 6px 12px;
    border: 1px solid rgba(28, 117, 71, 0.14);
    border-radius: 999px;
  }
  .menu-button {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
  }
  .mobile-menu {
    inset: 72px 0 0;
    align-content: start;
    overflow-y: auto;
    padding: 12px 20px 28px;
    overscroll-behavior: contain;
  }
  .mobile-menu nav {
    gap: 0;
  }
  .mobile-menu a {
    display: block;
    padding: 9px 2px;
    border-bottom: 1px solid rgba(253, 254, 255, 0.16);
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }
  .nav-shell {
    grid-template-columns: 1fr auto 1fr;
    min-height: 60px;
  }
  .brand img {
    width: 102px;
    height: 40px;
  }
}

.page-hero {
  padding: 0;
}
.page-hero > .container { width: 100%; max-width: none; }
.inner-hero { padding: clamp(190px, 20vw, 270px) 0 clamp(70px, 8vw, 120px); background: linear-gradient(140deg, #eff8ef, #fdfeff 56%, #f8ffc9); }
.inner-hero h1 { max-width: 1120px; margin-top: 22px; font-size: clamp(4.2rem, 9vw, 9rem); }
.inner-hero p { max-width: 680px; margin-top: 28px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.3rem); line-height: 1.5; }

.image-hero {
  position: relative;
  min-height: min(780px, 86svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--green-dark);
  isolation: isolate;
}
.image-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroIn 0.8s var(--ease) forwards;
  transform: scale(1.04);
}
.image-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 31, 19, 0.12), rgba(5, 31, 19, 0.78));
  content: "";
}
.image-hero > .container { position: relative; z-index: 1; }
.image-hero,
.simple-story-hero,
.quality-hero { margin-top: 99px; }
.image-hero p,
.inner-hero.image-hero p,
.collection-hero.image-hero p,
.contact-hero.image-hero p { color: rgba(255,255,255,.78); }
.programs-hero { background: linear-gradient(140deg, #163f2c, #1c7547); color: white; }
.programs-hero p { color: rgba(255,255,255,.72); }

.document-grid, .program-grid, .post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.document-card { min-height: 440px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.document-card > span { font-size: .72rem; letter-spacing: .1em; }
.document-card h2 { margin-top: auto; padding-top: 70px; font-size: clamp(2.4rem, 3.6vw, 4.4rem); }
.document-card p { margin-top: 20px; color: var(--muted); line-height: 1.5; }
.awards-section { padding-bottom: 18px; }
.award-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.award-card { min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 4vw, 52px); border-radius: 24px; color: white; background: #1c7547; }
.award-card--green { color: var(--green); background: var(--logo-gradient-radial); }
.award-card > span { margin-bottom: auto; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.award-card strong { font-size: clamp(4.8rem, 9vw, 9rem); font-weight: 400; line-height: .75; letter-spacing: -.07em; }
.award-card h2 { margin-top: 22px; font-size: clamp(2.2rem, 4vw, 4.6rem); }
.award-card p { max-width: 430px; margin-top: 16px; line-height: 1.45; opacity: .78; }
.certificate-gallery-section { padding-top: 58px; }
.certificate-section-head { margin-bottom: 34px; }
.certificate-section-head h2 { max-width: 850px; margin-top: 16px; font-size: clamp(3rem, 6vw, 6rem); }
.certificate-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.certificate-card { display: flex; min-height: 360px; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.certificate-card img { width: 100%; height: 100%; max-height: 470px; object-fit: contain; transition: transform 260ms ease; }
.certificate-card:hover img { transform: scale(1.02); }
.document-status { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.program-grid { grid-template-columns: repeat(3, 1fr); }
.program-card { min-height: 310px; padding: 28px; border-radius: 22px; background: #eff8ef; }
.program-card:nth-child(3n + 2) { background: #f5ffad; }
.program-card b { display: block; font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.program-card h3 { margin-top: 100px; font-size: clamp(2rem, 3vw, 3.4rem); }
.program-card p { margin-top: 16px; color: var(--muted); line-height: 1.45; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 4; position: relative; height: 430px; margin: 0; overflow: hidden; border-radius: 22px; cursor: zoom-in; }
.gallery-item--1, .gallery-item--4 { grid-column: span 8; }
.gallery-item--2 { grid-column: span 4; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; right: 16px; bottom: 16px; width: fit-content; max-width: calc(100% - 32px); padding: 13px 16px; border-radius: 999px; background: rgba(8,38,25,.62); backdrop-filter: blur(10px); color: white; font-size: .72rem; }
.gallery-item:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.gallery-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: clamp(16px, 4vw, 48px); background: rgba(4, 20, 13, .88); opacity: 0; visibility: hidden; transition: opacity 240ms ease, visibility 240ms ease; }
.gallery-lightbox.is-open { opacity: 1; visibility: visible; }
.gallery-lightbox-panel { position: relative; width: min(1100px, 100%); height: min(82vh, 800px); overflow: hidden; border-radius: 24px; background: #102d20; box-shadow: 0 30px 90px rgba(0, 0, 0, .45); transform: scale(.97); transition: transform 240ms ease; }
.gallery-lightbox.is-open .gallery-lightbox-panel { transform: scale(1); }
.gallery-lightbox-image { width: 100%; height: 100%; object-fit: contain; }
.gallery-lightbox-copy { position: absolute; right: 0; bottom: 0; left: 0; padding: clamp(70px, 12vw, 150px) clamp(24px, 5vw, 60px) clamp(24px, 5vw, 52px); color: white; background: linear-gradient(180deg, transparent, rgba(4, 25, 16, .92)); pointer-events: none; }
.gallery-lightbox-copy h2 { max-width: 760px; margin: 0; font-size: clamp(2rem, 4vw, 4.5rem); }
.gallery-lightbox-copy p { max-width: 680px; margin: 12px 0 0; color: rgba(255, 255, 255, .82); font-size: clamp(.92rem, 1.3vw, 1.1rem); line-height: 1.45; }
.gallery-lightbox-close { position: absolute; top: 18px; right: 18px; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; color: white; background: rgba(8, 38, 25, .62); backdrop-filter: blur(10px); cursor: pointer; font: 300 2rem/1 Arial, sans-serif; }
body.gallery-lightbox-open { overflow: hidden; }

.estate-facts { background: rgba(28, 117, 71, .045); }
.estate-facts-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 48px; margin-bottom: 36px; }
.estate-facts-head h2 { max-width: 720px; margin: 18px 0 0; }
.estate-facts-head > p { max-width: 520px; margin: 0; color: var(--muted); }
.estate-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.estate-facts-grid > div { min-width: 0; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(253, 254, 255, .72); }
.estate-facts-grid dt { margin-bottom: 9px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.estate-facts-grid dd { margin: 0; color: var(--green); font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.25; overflow-wrap: anywhere; }
.estate-facts-note { margin: 18px 0 0; color: var(--muted); font-size: .74rem; }

.collection-hero { padding: 190px 0 90px; background: linear-gradient(145deg, #eef7ef, #fdfeff 58%, #f7ffc7); text-align: left; }
.collection-hero h1 { margin: 18px 0; font-size: clamp(4.5rem, 11vw, 10rem); line-height: .84; }
.collection-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.3rem); }
.collection-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 50px; margin-bottom: 54px; }
.collection-intro h2 { margin: 18px 0 0; }
.collection-intro > p { margin: 0; color: var(--muted); }
.processing-chart > header { display: grid; max-width: 900px; margin-bottom: 44px; }
.processing-chart > header .eyebrow { width: fit-content; justify-self: start; }
.processing-chart > header h2 { margin: 20px 0; font-size: clamp(3.2rem, 6vw, 7rem); }
.processing-chart > header p { max-width: 720px; color: var(--muted); line-height: 1.5; }
.processing-chart { margin-bottom: clamp(80px, 10vw, 150px); padding: clamp(35px, 6vw, 80px); background: #f3f8f3; }
.process-source { position: relative; width: fit-content; margin: 0 auto 70px; padding: 18px 34px; background: var(--green); color: white; font-size: clamp(1.1rem, 2vw, 1.6rem); }
.process-source::after { position: absolute; top: 100%; left: 50%; width: 1px; height: 44px; background: var(--line); content: ""; }
.process-branches { position: relative; display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 14px; }
.process-branches::before { position: absolute; top: -27px; right: 10%; left: 10%; height: 1px; background: var(--line); content: ""; }
.process-branch { position: relative; padding-top: 20px; }
.process-branch::before { position: absolute; bottom: 100%; left: 50%; width: 1px; height: 47px; background: var(--line); content: ""; }
.process-branch h3 { min-height: 82px; display: grid; place-items: center; padding: 16px 10px; background: var(--green); color: white; font-size: clamp(1.3rem, 2vw, 2rem); text-align: center; }
.process-branch--yellow h3 { background: #eff51f; color: #17241d; }
.process-branch--white h3 { border: 1px solid var(--line); background: white; color: var(--green); }
.process-branch--oolong h3 { background: #237ca1; }
.process-branch--black h3 { background: #792f2b; }
.process-branch--fermented h3 { background: #17241d; }
.process-branch ol { display: grid; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none; }
.process-branch li { position: relative; display: grid; min-height: 58px; place-items: center; padding: 12px 8px; border: 1px solid var(--line); background: white; font-size: .78rem; text-align: center; }
.process-branch li + li::before { position: absolute; bottom: 100%; left: 50%; width: 1px; height: 10px; background: var(--line); content: ""; }
.process-branch > p { margin-top: 18px; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.processing-note { margin: 36px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.collection-list { border-top: 1px solid var(--line); }
.collection-row { display: grid; min-height: 610px; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 120px); padding: clamp(50px, 7vw, 100px) 0; border-bottom: 1px solid var(--line); }
.collection-row:nth-child(even) .collection-row-image { grid-column: 2; grid-row: 1; }
.collection-row:nth-child(even) .collection-row-copy { grid-column: 1; grid-row: 1; }
.collection-row-image { display: block; height: 500px; margin: 0; background: transparent; }
.collection-row-image img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 26px 28px rgba(8,38,25,.12)); transition: transform 500ms var(--ease); }
.collection-row:hover .collection-row-image img { transform: scale(1.035) rotate(-1deg); }
.collection-row-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; }
.collection-row-copy > span { color: var(--muted); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.collection-row-copy h2 { max-width: 650px; margin: 18px 0 24px; font-size: clamp(3.3rem, 6vw, 7rem); line-height: .9; }
.collection-row-copy p { max-width: 600px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.5; }
.collection-row-copy small { margin-top: 24px; color: var(--green); }
.tea-facts { display: grid; width: 100%; max-width: 680px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 26px 0 0; }
.tea-facts div { padding-top: 14px; border-top: 1px solid var(--line); }
.tea-facts dt { color: var(--green); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.tea-facts dd { margin: 7px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.text-link { display: inline-flex; margin-top: 28px; border-bottom: 1px solid currentColor; color: var(--green); font-size: .8rem; }

.tea-detail-hero { padding: 145px 0 70px; background: linear-gradient(145deg, #edf6ed, #fdfeff 55%, #f8ffc9); }
.tea-detail-hero .container { display: grid; min-height: 650px; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.tea-detail-hero-copy { display: flex; align-items: flex-start; flex-direction: column; }
.tea-back { margin-bottom: 48px; color: var(--muted); font-size: .78rem; }
.tea-detail-hero h1 { margin: 20px 0 24px; font-size: clamp(4.4rem, 8vw, 8.5rem); line-height: .84; }
.tea-detail-hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.22rem); }
.tea-profile-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tea-profile-pills span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); font-size: .72rem; }
.tea-detail-hero figure { display: grid; height: 610px; place-items: center; margin: 0; }
.tea-detail-hero figure img { width: 100%; height: 560px; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(8,38,25,.14)); }
.tea-detail-hero figcaption { color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.tea-knowledge-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tea-knowledge-grid article { min-height: 330px; padding: clamp(28px, 4vw, 54px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tea-knowledge-grid article > span { color: var(--muted); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.tea-knowledge-grid h2 { margin: 52px 0 18px; font-size: clamp(2rem, 3.4vw, 3.8rem); }
.tea-knowledge-grid p { margin: 0; color: var(--muted); }
.tea-cup-section { background: var(--green); color: white; }
.tea-cup-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.tea-cup-grid h2 { max-width: 760px; margin: 22px 0; font-size: clamp(3.2rem, 6vw, 7rem); }
.tea-cup-grid p { max-width: 720px; color: rgba(255,255,255,.72); }
.tea-cup-grid dl { margin: 0; border-top: 1px solid rgba(255,255,255,.24); }
.tea-cup-grid dl div { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.tea-cup-grid dt, .brew-panel dt { margin-bottom: 6px; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; opacity: .65; }
.tea-cup-grid dd, .brew-panel dd { margin: 0; font-size: 1.25rem; }
.brew-panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; padding: clamp(30px, 5vw, 70px); border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--green); }
.brew-panel h2 { margin: 20px 0; }
.brew-panel p { color: var(--muted); }
.brew-panel dl { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; }
.brew-panel dl div { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brew-panel dl div:nth-child(-n+2) { border-top: 1px solid var(--line); }
.brew-panel dl div:nth-child(odd) { border-left: 1px solid var(--line); }
.tea-origin-note { padding: clamp(70px, 9vw, 130px) 0; background: linear-gradient(135deg, #0b3622, #1c7547); color: white; text-align: center; }
.tea-origin-note h2 { max-width: 950px; margin: 22px auto; font-size: clamp(3.3rem, 7vw, 8rem); }
.tea-origin-note p { max-width: 780px; margin: 0 auto 34px; color: rgba(255,255,255,.72); }
.tea-detail-nav { padding: 28px 0; border-bottom: 1px solid var(--line); }
.tea-detail-nav .container { display: flex; justify-content: space-between; gap: 30px; }

.contact-hero { padding: 190px 0 90px; background: linear-gradient(145deg, #eaf4e9, #fdfeff 55%, #f8ffc9); }
.contact-hero h1 { max-width: 1100px; margin: 22px 0 28px; font-size: clamp(4.5rem, 10vw, 10rem); }
.contact-hero p { max-width: 760px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.3rem); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.contact-main-column { display: grid; gap: 28px; }
.contact-details { position: sticky; top: 115px; padding: clamp(30px, 4vw, 58px); border-radius: 24px; background: var(--green); color: white; }
.contact-details h2 { margin: 22px 0; font-size: clamp(2.8rem, 4.7vw, 5.5rem); }
.contact-details > p { color: rgba(255,255,255,.7); }
.contact-details dl { margin: 42px 0 0; border-top: 1px solid rgba(255,255,255,.22); }
.contact-details dl div { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-details dt { margin-bottom: 7px; color: rgba(255,255,255,.58); font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }
.contact-details dd { margin: 0; line-height: 1.4; }
.contact-social-panel { display: grid; gap: 34px; padding: clamp(30px, 5vw, 68px); border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.contact-social-head h2 { max-width: 750px; margin: 20px 0 12px; font-size: clamp(3rem, 5vw, 6rem); }
.contact-social-head p { color: var(--muted); }
.contact-social-links { display: grid; gap: 12px; }
.contact-social-link { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 12px; background: white; transition: transform 260ms ease, border-color 260ms ease, background 260ms ease; }
.contact-social-link:hover { transform: translateY(-2px); border-color: var(--green); background: #f8ffc9; }
.contact-social-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 10px; color: var(--green-dark); background: #f9e51a; font-size: .84rem; font-weight: 700; }
.contact-social-link strong, .contact-social-link small { display: block; }
.contact-social-link strong { font-size: 1.05rem; }
.contact-social-link small { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.contact-social-arrow { font-size: 1.35rem; }
.contact-map-section { padding: clamp(30px, 5vw, 68px); border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.contact-map-head { margin-bottom: 30px; }
.contact-map-head h2 { margin: 18px 0 12px; font-size: clamp(3rem, 5vw, 6rem); }
.contact-map-head p { max-width: 520px; margin: 0; color: var(--muted); }
.contact-map { height: clamp(360px, 42vw, 520px); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #eff8ef; }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.contact-topics { padding: clamp(70px, 8vw, 120px) 0; background: rgba(28,117,71,.045); }
.contact-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-topic-grid article { min-height: 300px; padding: clamp(25px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.65); }
.contact-topic-grid article > span { color: var(--muted); font-size: .7rem; }
.contact-topic-grid h3 { margin: 70px 0 18px; font-size: clamp(2rem, 3vw, 3.5rem); }
.contact-topic-grid p { color: var(--muted); }

.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; }
.post-image { display: block; height: 270px; overflow: hidden; background: #eff8ef; }
.post-image img { height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.post-card:hover .post-image img { transform: scale(1.04); }
.post-card-copy { padding: 26px; }
.post-card time { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2 { margin-top: 28px; font-size: clamp(2rem, 3vw, 3.2rem); }
.post-card p { margin-top: 18px; color: var(--muted); line-height: 1.45; }
.text-link { display: inline-block; margin-top: 24px; font-size: .78rem; }
.empty-journal { grid-column: 1 / -1; padding: clamp(45px, 8vw, 110px); border-radius: var(--radius); background: #eff8ef; text-align: center; }
.empty-journal h2 { max-width: 800px; margin: 22px auto 0; font-size: clamp(3rem, 6vw, 6rem); }
.empty-journal p { max-width: 600px; margin: 22px auto 28px; color: var(--muted); line-height: 1.5; }
.hero-frame {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  color: white;
  background: var(--green-dark);
  isolation: isolate;
}
.hero-frame > img,
.hero-frame > video {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroIn 0.8s var(--ease) forwards;
}
.hero-frame::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
  content: "";
}
.hero-copy {
  width: 100%;
  padding: 150px max(24px, calc((100vw - 1380px) / 2)) clamp(55px, 8vw, 110px);
}
.hero-copy h1 {
  max-width: 1100px;
  margin-top: 20px;
  font-size: clamp(4rem, 9vw, 9rem);
  text-wrap: balance;
}
.hero-copy p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.35;
}
@keyframes heroIn {
  to {
    transform: scale(1);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}
.intro-grid h2,
.center-head h2 {
  margin-top: 20px;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
}
.intro-grid p,
.center-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.45;
}
.center-head {
  max-width: 950px;
  margin: 0 auto 52px;
  text-align: center;
}
.center-head p {
  max-width: 650px;
  margin: 22px auto 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.feature-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition:
    transform var(--ease),
    background var(--ease),
    color var(--ease);
}
.feature-card:hover {
  color: white;
  background: var(--green);
  transform: translateY(-8px);
}
.feature-card .number {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.feature-card h3 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}
.feature-card p {
  margin-top: 16px;
  color: currentColor;
  opacity: 0.72;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
}
.split img {
  height: 100%;
  object-fit: cover;
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 72px);
}
.split-copy h2 {
  margin-top: 20px;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
}
.split-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
  border: 1px solid var(--line);
}
.metric {
  padding: 35px;
  background: var(--paper);
}
.metric strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}
.metric span {
  display: block;
  max-width: 180px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.steps {
  counter-reset: step;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 90px 0.8fr 1.2fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 0.75rem;
}
.step h3 {
  font-size: clamp(2rem, 4vw, 4.8rem);
}
.step p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.45;
}

.page-cta {
  padding: 12px 0 44px;
}
.cta-box {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--logo-gradient-radial);
}
.cta-box h2 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}
.cta-box p {
  max-width: 600px;
  margin: 22px 0 28px;
  line-height: 1.4;
}
.site-footer {
  padding: 36px 0;
  color: var(--green);
  background: var(--paper);
}
.footer-card {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr;
  gap: 70px;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 117, 71, 0.16);
  background: var(--logo-gradient-radial);
  box-shadow: 0 20px 55px rgba(164, 132, 0, 0.14);
}
.footer-lead h2 {
  max-width: 720px;
  font-size: clamp(3.6rem, 6vw, 7.1rem);
  text-wrap: balance;
}
.footer-column h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.footer-column p,
.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(28, 117, 71, 0.72);
  font-size: 0.86rem;
  line-height: 1.18;
}
.footer-column:nth-child(3) > a { font-size: 0.98rem; }
.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-pills a {
  margin: 0;
  padding: 9px 14px;
  border: 1px solid rgba(28, 117, 71, 0.45);
  border-radius: 8px;
  transition:
    color 260ms ease,
    background 260ms ease;
}
.social-pills a:hover {
  color: white;
  background: var(--green);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(28, 117, 71, 0.55);
  font-size: 0.75rem;
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }

/* Our Story: simple editorial layout. */
.simple-story { color: var(--green-dark); background: var(--paper); }
.simple-story-hero { position: relative; min-height: 76svh; display: flex; align-items: flex-end; overflow: hidden; color: white; background: var(--green-dark); }
.simple-story-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.simple-story-hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 30, 18, .08) 25%, rgba(5, 30, 18, .82) 100%); content: ""; }
.simple-story-hero-copy { position: relative; z-index: 1; padding-top: 170px; padding-bottom: clamp(48px, 7vw, 90px); }
.simple-story-hero h1 { max-width: 1050px; margin: 18px 0 0; font-size: clamp(4rem, 9vw, 9rem); line-height: .9; }
.simple-story-hero p { max-width: 720px; margin: 25px 0 0; color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.5; }
.simple-story-intro { text-align: center; }
.simple-story-intro h2 { max-width: 1000px; margin: 24px auto 0; font-size: clamp(3rem, 6vw, 6.5rem); line-height: .95; }
.simple-story-intro p { max-width: 760px; margin: 30px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.simple-story-chapters { padding-top: 10px; }
.simple-story-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 7vw, 100px); padding: clamp(50px, 7vw, 100px) 0; border-top: 1px solid var(--line); }
.simple-story-row:nth-child(even) figure { grid-column: 2; grid-row: 1; }
.simple-story-row:nth-child(even) > div { grid-column: 1; grid-row: 1; }
.simple-story-row figure { height: clamp(400px, 48vw, 650px); margin: 0; overflow: hidden; border-radius: 22px; background: #eff8ef; }
.simple-story-row img { width: 100%; height: 100%; object-fit: cover; }
.story-year { display: block; color: var(--green); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.simple-story-row h2 { max-width: 650px; margin: 18px 0 24px; font-size: clamp(2.8rem, 5vw, 5.8rem); line-height: .94; }
.simple-story-row p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.simple-story-row p + p { margin-top: 18px; }

/* Story: a vertical film strip with living image windows. */
.story-page {
  background: #102d20;
  color: white;
}
.story-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--logo-gradient);
}
.story-timeline {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}
.story-timeline a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-timeline i {
  order: 2;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    transform 200ms ease,
    background 200ms ease,
    color 200ms ease;
  will-change: transform;
}
.story-timeline span {
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}
.story-timeline a:hover span,
.story-timeline a.active span {
  opacity: 1;
  transform: none;
}
.story-timeline a.active {
  color: transparent;
}
.story-timeline a.active span {
  color: transparent;
  background: var(--logo-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.story-timeline a.active i {
  background: var(--logo-gradient);
  transform: scale(1.65);
  box-shadow: 0 0 22px rgba(255, 206, 4, 0.45);
}
.story-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding-inline: max(24px, calc((100vw - 1380px) / 2));
  text-align: left;
  isolation: isolate;
}
.story-hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--scroll, 0) * 0.16px)) scale(1.08);
  will-change: transform;
}
.story-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.12),
    rgba(7, 30, 20, 0.82)
  );
  content: "";
}
.story-hero-copy {
  max-width: 1100px;
  padding: 130px 0 50px;
}
.story-hero h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 10vw, 10rem);
}
.story-hero p {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.scroll-cue {
  display: inline-block;
  margin-top: 48px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 1s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(9px);
  }
}
.story-chapter {
  position: relative;
  min-height: 82svh;
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 100px);
  padding: 70px max(42px, calc((100vw - 1380px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.story-chapter::before {
  position: absolute;
  top: 0;
  left: max(42px, calc((100vw - 1380px) / 2 + 59px));
  width: 9px;
  height: 9px;
  border: 3px solid #102d20;
  border-radius: 50%;
  background: var(--logo-gradient);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 28px rgba(255, 206, 4, 0.35);
  content: "";
  transform: translate(-50%, -50%);
}
.chapter-mark {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.chapter-mark::after {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}
.story-copy h2 {
  max-width: 600px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 6vw, 7rem);
}
.story-copy p {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}
.timeline-era {
  display: block;
  margin-bottom: 24px;
  color: transparent;
  background: var(--logo-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.4rem, 5vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  opacity: 0.25;
}
.story-visual {
  position: relative;
  height: min(72vh, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 24px 24px;
  clip-path: inset(12% 8% 12% 8% round 48% 48% 20px 20px);
  transition: clip-path 560ms var(--ease);
  will-change: clip-path, transform;
}
.story-visual.visible {
  clip-path: inset(0 round 48% 48% 20px 20px);
}
.story-visual img {
  height: 115%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
  transition: transform 100ms linear;
  will-change: transform;
}
.story-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(8, 38, 25, 0.6);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  text-align: center;
}
.story-quote {
  min-height: 64svh;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  text-align: center;
  background: var(--logo-gradient-radial);
  color: var(--green);
}
.story-quote blockquote {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.story-quote cite {
  display: block;
  margin-top: 28px;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.organic-promise {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 1100px);
  align-items: center;
  justify-content: center;
  padding: 72px max(42px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  color: var(--green);
  background: #eff8ef;
}
.organic-copy { width: 100%; text-align: center; }
.organic-copy h2 {
  max-width: 1050px;
  margin-top: 22px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 6vw, 7rem);
}
.organic-copy p {
  max-width: 760px;
  margin-top: 26px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.5;
}
.organic-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.organic-values span {
  padding: 8px 13px;
  border: 1px solid rgba(28, 117, 71, 0.3);
  border-radius: 999px;
  font-size: 0.7rem;
}

/* Cinematic story scenes: layered photographs with floating memory cards. */
.story-chapter {
  display: block;
  min-height: 86svh;
  padding: 46px max(42px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  isolation: isolate;
}
.story-chapter .chapter-mark {
  position: absolute;
  z-index: 5;
  top: 48px;
  bottom: 48px;
  left: max(20px, calc((100vw - 1380px) / 2 - 28px));
}
.story-chapter .story-visual {
  width: 73%;
  height: min(76vh, 760px);
  margin-left: auto;
  border-radius: 0;
  opacity: 0.35;
  clip-path: polygon(13% 4%, 96% 0, 88% 94%, 3% 100%);
  transform: scale(0.94) rotate(0.8deg);
  transition:
    opacity 320ms ease,
    transform 420ms var(--ease),
    clip-path 420ms var(--ease);
}
.story-chapter .story-visual.visible {
  opacity: 1;
  clip-path: polygon(4% 0, 100% 5%, 95% 100%, 0 93%);
  transform: scale(1) rotate(0);
}
.story-chapter .story-visual .scene-main {
  height: 112%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}
.story-chapter .story-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: max(5vw, calc((100vw - 1380px) / 2));
  width: min(42vw, 570px);
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(28, 117, 71, 0.17);
  border-radius: 3px 34px 3px 34px;
  color: var(--green);
  background: rgba(253, 254, 255, 0.91);
  box-shadow: 0 30px 80px rgba(5, 35, 22, 0.24);
  backdrop-filter: blur(18px);
}
.story-chapter .story-copy[data-reveal] {
  opacity: 0;
  transform: translate(-28px, -50%);
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease);
}
.story-chapter .story-copy[data-reveal].visible {
  opacity: 1;
  transform: translate(0, -50%);
}
.story-chapter .story-copy h2 {
  font-size: clamp(2.7rem, 4.7vw, 5.8rem);
}
.story-chapter .story-copy p {
  margin-top: 17px;
  color: rgba(28, 117, 71, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
}
.story-chapter .timeline-era {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 4.5rem);
  opacity: 0.4;
}
.scene-inset {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 5%;
  width: 29%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 9px solid var(--paper);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  transform: rotate(4deg);
  transition: transform 380ms var(--ease);
}
.story-visual.visible .scene-inset {
  transform: rotate(-2deg) translateY(-10px);
}
.scene-inset img {
  height: 100% !important;
  object-fit: cover;
  transform: none !important;
}
.scene-stamp {
  position: absolute;
  z-index: 2;
  top: 7%;
  left: 7%;
  color: white;
  font-size: clamp(2.5rem, 6vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.76;
  mix-blend-mode: overlay;
  transform: rotate(-4deg);
}
.story-chapter .story-visual figcaption {
  right: auto;
  bottom: 5%;
  left: 7%;
  width: fit-content;
}
.scene--roots {
  background: #102d20;
}
.scene--hands {
  background: var(--logo-gradient-radial);
}
.scene--hands .story-visual {
  margin-right: auto;
  margin-left: 0;
  clip-path: polygon(0 7%, 91% 0, 100% 93%, 8% 100%);
}
.scene--hands .story-copy {
  right: max(5vw, calc((100vw - 1380px) / 2));
  left: auto;
}
.scene--hands .story-copy[data-reveal] {
  transform: translate(28px, -50%);
}
.scene--hands .story-copy[data-reveal].visible {
  transform: translate(0, -50%);
}
.scene--hands .scene-inset {
  right: auto;
  left: 4%;
  transform: rotate(-5deg);
}
.scene--hands .story-visual.visible .scene-inset {
  transform: rotate(2deg) translateY(-10px);
}
.scene--company {
  background: #eff8ef;
}
.scene--company .story-copy {
  background: rgba(16, 83, 50, 0.94);
  color: white;
}
.scene--company .story-copy p {
  color: rgba(255, 255, 255, 0.72);
}
.scene--company .eyebrow {
  color: white;
}
.scene--today {
  background: linear-gradient(145deg, #0c3d26, #1c7547);
}
.scene--today .story-visual {
  width: 78%;
}
.scene--today .story-copy {
  background: rgba(253, 254, 255, 0.94);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 420ms var(--ease),
    transform 420ms var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .simple-story-row { grid-template-columns: 1fr; gap: 30px; }
  .simple-story-row:nth-child(even) figure,
  .simple-story-row:nth-child(even) > div { grid-column: 1; grid-row: auto; }
  .simple-story-row figure { height: min(520px, 70vw); }
  .intro-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split img {
    max-height: 600px;
  }
  .story-chapter {
    min-height: auto;
    padding: 54px 42px;
  }
  .story-chapter::before {
    left: 64px;
  }
  .story-chapter .story-visual,
  .scene--hands .story-visual,
  .scene--today .story-visual {
    width: 86%;
    height: 62vh;
    margin: 320px auto 0;
  }
  .story-chapter .story-copy,
  .scene--hands .story-copy {
    top: 52px;
    right: auto;
    left: 7%;
    width: min(76%, 600px);
  }
  .story-chapter .story-copy[data-reveal],
  .scene--hands .story-copy[data-reveal] {
    transform: translateY(22px);
  }
  .story-chapter .story-copy[data-reveal].visible,
  .scene--hands .story-copy[data-reveal].visible {
    transform: none;
  }
  .chapter-mark {
    position: absolute;
    z-index: 5;
    top: 55px;
    right: 20px;
    height: 220px;
  }
  .story-timeline {
    display: none;
  }
  .organic-promise {
    grid-template-columns: 1fr;
  }
  .footer-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .certificate-gallery { grid-template-columns: repeat(2, 1fr); }
  .document-grid, .program-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item--1, .gallery-item--2, .gallery-item--4 { grid-column: span 6; }
  .estate-facts-head { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .estate-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-intro, .tea-cup-grid, .brew-panel { grid-template-columns: 1fr; gap: 32px; }
  .process-branches { grid-template-columns: repeat(2, 1fr); }
  .process-branches::before, .process-branch::before, .process-source::after { display: none; }
  .process-source { margin-bottom: 28px; }
  .collection-row { min-height: 0; gap: 35px; }
  .collection-row-image { height: 400px; }
  .tea-detail-hero .container { min-height: auto; grid-template-columns: 1fr; gap: 25px; }
  .tea-detail-hero figure { height: 480px; }
  .tea-detail-hero figure img { height: 440px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .contact-topic-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 24px);
  }
  .image-hero,
  .simple-story-hero,
  .quality-hero { margin-top: 72px; }
  .page-hero {
    padding-top: 0;
  }
  .hero-frame {
    min-height: 100svh;
  }
  .hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }
  .feature-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }
  .award-grid, .certificate-gallery { grid-template-columns: 1fr; }
  .award-card { min-height: 360px; }
  .certificate-card { min-height: 300px; }
  .inner-hero { padding-top: 135px; }
  .inner-hero h1 { font-size: clamp(3.5rem, 16vw, 5.8rem); }
  .document-grid, .program-grid, .post-grid { grid-template-columns: 1fr; }
  .document-card { min-height: 360px; }
  .estate-facts-grid { grid-template-columns: 1fr; }
  .estate-facts-grid > div { padding: 20px; }
  .collection-hero { padding: 130px 0 60px; }
  .tea-knowledge-grid { grid-template-columns: 1fr; }
  .collection-row { grid-template-columns: 1fr; padding: 45px 0; }
  .tea-facts { grid-template-columns: 1fr; }
  .processing-chart { margin-inline: -12px; padding: 40px 18px; }
  .process-branches { grid-template-columns: 1fr; }
  .process-branch h3 { min-height: 70px; }
  .collection-row:nth-child(even) .collection-row-image, .collection-row:nth-child(even) .collection-row-copy { grid-column: 1; grid-row: auto; }
  .collection-row-image { height: 330px; }
  .tea-detail-hero { padding: 110px 0 45px; }
  .tea-back { margin-bottom: 30px; }
  .tea-detail-hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .tea-detail-hero figure, .tea-detail-hero figure img { height: 360px; }
  .tea-knowledge-grid article { min-height: 0; }
  .tea-knowledge-grid h2 { margin-top: 32px; }
  .brew-panel dl { grid-template-columns: 1fr; }
  .brew-panel dl div:nth-child(n) { border-top: 0; border-left: 1px solid var(--line); }
  .brew-panel dl div:first-child { border-top: 1px solid var(--line); }
  .tea-detail-nav .container { align-items: flex-start; flex-direction: column; }
  .contact-hero { padding: 130px 0 60px; }
  .contact-social-panel, .contact-details { border-radius: 18px; }
  .contact-social-link { grid-template-columns: 44px 1fr auto; gap: 13px; padding: 14px; }
  .contact-social-icon { width: 44px; height: 44px; }
  .contact-map-section { border-radius: 18px; }
  .contact-map { height: 420px; border-radius: 12px; }
  .contact-topic-grid article { min-height: 240px; }
  .contact-topic-grid h3 { margin-top: 45px; }
  .gallery-item, .gallery-item--1, .gallery-item--2, .gallery-item--4 { grid-column: 1 / -1; height: 360px; }
  .feature-card {
    min-height: 280px;
  }
  .step {
    grid-template-columns: 48px 1fr;
  }
  .step p {
    grid-column: 2;
  }
  .footer-card {
    padding: 34px 24px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .story-chapter {
    padding: 32px 18px 42px;
  }
  .story-chapter .story-copy,
  .scene--hands .story-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 24px 20px;
  }
  .story-chapter .story-copy[data-reveal],
  .scene--hands .story-copy[data-reveal] {
    transform: translateY(18px);
  }
  .story-chapter .story-copy[data-reveal].visible,
  .scene--hands .story-copy[data-reveal].visible {
    transform: none;
  }
  .story-chapter .story-visual,
  .scene--hands .story-visual,
  .scene--today .story-visual {
    width: 100%;
    height: 58vh;
    margin-top: 22px;
  }
  .story-chapter::before {
    display: none;
  }
  .chapter-mark {
    display: none;
  }
  .scene-inset {
    width: 36%;
    border-width: 6px;
  }
  .scene-stamp {
    font-size: 2.4rem;
  }
  .organic-promise {
    padding: 54px 24px;
  }
}

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

  .hero-card img,
  .hero-card video,
  .story-hero img,
  .story-visual,
  .story-visual img,
  .scene-inset,
  .story-timeline i,
  .scroll-cue {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
  }
}
