:root {
  --green: #5f8254;
  --green-dark: #3f5c34;
  --green-light: #8aa874;
  --cream: #f5f2e9;
  --cream-warm: #ece7d8;
  --ink: #25302a;
  --white: #ffffff;
  --line: rgba(37, 48, 42, 0.12);
  --shadow: 0 24px 70px rgba(37, 48, 42, 0.12);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-brush: "Yuji Boku", serif;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(95, 130, 84, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}
.container--wide { width: min(100% - 2rem, 1360px); }
.container--narrow { width: min(100% - 2rem, 860px); }
.section { padding: clamp(5rem, 9vw, 9rem) 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245, 242, 233, 0.82);
  border-bottom: 1px solid rgba(37, 48, 42, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(100% - 2rem, 1360px);
  height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  white-space: nowrap;
}
.logo-kanji {
  font-family: var(--font-brush);
  font-size: 2.15rem;
  line-height: 1;
  color: var(--green-dark);
  font-weight: 400;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav__menu a:not(.btn) { position: relative; }
.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.35rem;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green); border-color: var(--green); }
.btn--ghost { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.72); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--small { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn--form { width: 100%; }

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.82); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.02;
  color: var(--ink);
}
h1 { font-size: clamp(3.2rem, 8vw, 7.6rem); max-width: 900px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.9rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
p { margin: 0; }
.section__header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.section__header p:last-child { margin-top: 1rem; color: rgba(37, 48, 42, 0.72); }

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  background-image:
    linear-gradient(rgba(20, 35, 24, 0.46), rgba(20, 35, 24, 0.54)),
    url("img/teafarm.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}
.hero__content {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  text-align: center;
  padding: clamp(6rem, 10vw, 10rem) 0;
}
.hero h1 {
  margin-inline: auto;
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.hero__lead {
  max-width: 790px;
  margin: 1.3rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; margin-top: 2rem; }
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  padding: 0;
  margin: 2rem 0 0;
}
.trust-badges li {
  padding: 0.56rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(0.9rem, 2vw, 1.3rem);
  align-items: end;
}
.about__image {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--cream-warm);
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image--track {
  height: 560px;
}
.about__image--track img { object-position: center center; }
.about__image--people {
  height: 440px;
  margin-bottom: clamp(1rem, 4vw, 3rem);
}
.about__image--people img { object-position: center center; }
.about__content p:not(.eyebrow) { margin-top: 1rem; color: rgba(37, 48, 42, 0.75); }
.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
}
.pill-list li {
  border: 1px solid rgba(95, 130, 84, 0.22);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.vision {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(20, 35, 24, 0.72) 0%, rgba(20, 35, 24, 0.50) 46%, rgba(20, 35, 24, 0.14) 100%),
    url("img/3.png");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  color: var(--white);
}
@supports (background-attachment: fixed) {
  .vision { background-attachment: fixed; }
}
.vision__content { margin-inline-start: max(1rem, calc((100vw - 1180px) / 2)); max-width: 790px; }
.vision h2, .vision p { color: var(--white); text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.vision p:not(.eyebrow) { margin-top: 1.1rem; font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: rgba(255, 255, 255, 0.9); }

.teas { background: #fffdf8; }
.tea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.tea-card {
  overflow: hidden;
  border: 1px solid rgba(95, 130, 84, 0.13);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(37, 48, 42, 0.08);
}
.tea-card__image {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  background: #ffffff;
}
.tea-card__image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.tea-card__body { padding: clamp(1.4rem, 3vw, 2.3rem); border-top: 1px solid rgba(37, 48, 42, 0.08); }
.tea-card__body p { margin-top: 0.8rem; color: rgba(37, 48, 42, 0.72); }
.teas__note { margin-top: 1.25rem; text-align: center; color: var(--green-dark); font-weight: 700; }
.flavor {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 30px;
  background: var(--cream);
}
.flavor p:not(.eyebrow) { margin-top: 0.85rem; color: rgba(37, 48, 42, 0.74); }
.flavor__bar {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d5d38, #8aa874, #3f5c34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.flavor__labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  color: rgba(37, 48, 42, 0.72);
  font-size: 0.86rem;
}

.origins { background: var(--cream); overflow: hidden; }
.origins__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(700px, 2.1fr) minmax(230px, 0.72fr);
  gap: clamp(1.25rem, 2.4vw, 2.6rem);
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  min-height: 720px;
}
.origins__leader-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.origin-line {
  fill: none;
  stroke: rgba(95, 130, 84, 0.52);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease, stroke-width 0.25s ease, opacity 0.25s ease;
}
.origin-line.is-active {
  stroke: rgba(63, 92, 52, 0.92);
  stroke-width: 2.1;
}
.origins__map-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(0.25rem, 1vw, 0.75rem);
}
.origins__map {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(37, 48, 42, 0.16));
}
.origins__markers { position: absolute; inset: 0; z-index: 8; }
.origins__cards {
  position: relative;
  z-index: 6;
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}
.origins__cards--left { transform: translateX(0.35rem); }
.origins__cards--right { transform: translateX(-0.35rem); }
.origin-card {
  position: relative;
  padding: 1rem 1.08rem;
  border: 1px solid rgba(95, 130, 84, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(37, 48, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.origin-card::before { display: none; }
.origin-card h3 {
  margin: 0 0 0.35rem;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.38rem;
}
.origin-card p { margin: 0; color: rgba(37, 48, 42, 0.75); font-size: 0.92rem; line-height: 1.62; }
.origin-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(63, 92, 52, 0.68);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(37, 48, 42, 0.12);
}
.origin-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--green-dark);
  box-shadow: 0 0 0 7px rgba(95, 130, 84, 0.18), 0 10px 22px rgba(37, 48, 42, 0.18);
  cursor: pointer;
  z-index: 9;
  padding: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
}
.origin-marker::after {
  content: attr(data-name);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37, 48, 42, 0.12);
}
.origin-marker.is-active { background: var(--green-light); box-shadow: 0 0 0 10px rgba(95, 130, 84, 0.28), 0 12px 26px rgba(37, 48, 42, 0.2); }
.origins__note { max-width: 920px; margin: clamp(2rem, 4vw, 3rem) auto 0; text-align: center; color: rgba(37, 48, 42, 0.68); font-size: 0.95rem; }

.process {
  padding: 0;
  position: relative;
  background-image:
    linear-gradient(rgba(20, 35, 24, 0.56), rgba(20, 35, 24, 0.66)),
    url("img/1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}
.process__overlay { padding: clamp(5.5rem, 9vw, 9rem) 0; }
.section__header--light h2,
.section__header--light p { color: var(--white); }
.section__header--light p:last-child { color: rgba(255, 255, 255, 0.86); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 5rem);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.process-card {
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  padding: clamp(1.2rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}
.process-card__number {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.process-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}
.process-card__icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.process-card h3 {
  margin-top: 0.1rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}
.process-card p {
  max-width: 260px;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.88);
}
.term-card {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid rgba(95, 130, 84, 0.14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(37, 48, 42, 0.07);
}
.term-card p { margin-top: 0.65rem; color: rgba(37, 48, 42, 0.72); }

.terms { background: var(--cream-warm); }
.terms__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.term-card h3 { font-size: 1.35rem; color: var(--green-dark); }
.term-card p { font-weight: 700; color: var(--ink); }
.term-card span { color: rgba(37, 48, 42, 0.62); font-weight: 500; }

.faq { background: #fffdf8; }
.faq__list { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--font-body); font-size: 1rem; }
.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}
.faq-item__button span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}
.faq-item__button span::before,
.faq-item__button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--green-dark);
  transform: translateY(-50%);
}
.faq-item__button span::after { transform: translateY(-50%) rotate(90deg); transition: transform 0.2s ease; }
.faq-item__button[aria-expanded="true"] span::after { transform: translateY(-50%) rotate(0deg); }
.faq-item__panel { padding: 0 0 1.25rem; color: rgba(37, 48, 42, 0.72); }

.contact {
  padding: 0;
  background-image:
    linear-gradient(rgba(20, 35, 24, 0.50), rgba(20, 35, 24, 0.64)),
    url("img/teafarm-last.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}
.contact__overlay { padding: clamp(5rem, 9vw, 9rem) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact h2, .contact p { color: var(--white); }
.contact__copy p:not(.eyebrow) { margin-top: 1rem; max-width: 560px; color: rgba(255, 255, 255, 0.9); }
.contact__copy .btn { margin-top: 1.6rem; background: var(--white); color: var(--green-dark); border-color: var(--white); }
.contact__note { font-size: 0.94rem; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(245, 242, 233, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}
.form-field { display: grid; gap: 0.38rem; }
.form-field--full, .quote-form .btn, .form-note { grid-column: 1 / -1; }
.form-field label { color: var(--green-dark); font-size: 0.88rem; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid rgba(95, 130, 84, 0.22);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { margin: -0.1rem 0 0; color: rgba(37, 48, 42, 0.62); font-size: 0.88rem; text-align: center; }

.footer { padding: 2.5rem 0; background: var(--ink); color: rgba(255, 255, 255, 0.74); }
.footer .site-logo { color: var(--white); }
.footer .logo-kanji { color: var(--cream); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.92rem; }
.footer__links a:hover { color: var(--white); }
.footer p { font-size: 0.92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .origins__layout { grid-template-columns: minmax(210px, 0.66fr) minmax(600px, 1.85fr) minmax(210px, 0.66fr); gap: 1rem; min-height: 660px; }
  .origin-card { padding: 1rem; }
  .origin-card h3 { font-size: 1.26rem; }
  .origin-card p { font-size: 0.88rem; }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .nav__toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(37, 48, 42, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
  }
  .nav__toggle-line { width: 18px; height: 2px; background: var(--ink); border-radius: 999px; transition: transform 0.25s ease; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid rgba(37, 48, 42, 0.1);
    border-radius: 22px;
    background: rgba(245, 242, 233, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__menu a { padding: 0.75rem; }
  .nav__menu .btn { margin-top: 0.35rem; }
  .about__grid, .flavor, .contact__grid { grid-template-columns: 1fr; }
  .about__media { grid-template-columns: 1fr 1fr; }
  .about__image--track { height: 420px; }
  .about__image--people { height: 360px; margin-bottom: 0; }
  .vision { min-height: 560px; background-position: center center; background-attachment: scroll; }
  .tea-grid, .process__grid { grid-template-columns: 1fr; }
  .terms__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .origins__layout { grid-template-columns: 1fr; min-height: auto; }
  .origins__leader-lines { display: none; }
  .origins__map-wrap { width: min(100%, 700px); order: 1; }
  .origins__cards { grid-template-columns: 1fr; }
  .origins__cards--left { order: 2; }
  .origins__cards--right { order: 3; }
  .origin-card::before { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .container, .container--wide, .container--narrow { width: min(100% - 1.2rem, 1180px); }
  .logo-kanji { font-size: 1.86rem; }
  .logo-text { font-size: 1.14rem; }
  .hero__content { text-align: left; }
  .hero h1 { margin-inline: 0; }
  .hero__lead { margin-left: 0; margin-right: 0; }
  .hero__actions, .trust-badges { justify-content: flex-start; }
  .btn { width: 100%; }
  .trust-badges li { font-size: 0.82rem; }
  .section__header { text-align: left; }
  .about__media { grid-template-columns: 1fr; }
  .about__image--track, .about__image--people { height: 320px; }
  .vision { min-height: 520px; }
  .tea-card__image { min-height: 280px; }
  .tea-card__image img { height: 230px; }
  .flavor__labels { font-size: 0.78rem; }
  .origin-marker::after { display: none; }
  .terms__grid, .quote-form { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}




/* Mobile origins refinement: compact map + two-column cards */
@media (max-width: 680px) {
  .origins .section__header {
    margin-bottom: 0.75rem;
  }

  .origins__layout {
    margin-top: 1.15rem;
    gap: 0.72rem;
  }

  .origins__map-wrap {
    width: min(74vw, 315px);
    padding: 0;
    margin: 0 auto 0.85rem;
  }

  .origins__map {
    filter: drop-shadow(0 18px 28px rgba(37, 48, 42, 0.13));
  }

  .origins__markers {
    inset: 0;
  }

  .origin-marker {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    max-width: 12px;
    max-height: 12px;
    padding: 0;
    border-width: 2px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1;
    box-shadow: 0 0 0 5px rgba(95, 130, 84, 0.16), 0 8px 16px rgba(37, 48, 42, 0.16);
  }

  .origin-marker.is-active {
    box-shadow: 0 0 0 7px rgba(95, 130, 84, 0.24), 0 10px 20px rgba(37, 48, 42, 0.18);
  }

  .origins__cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .origins__cards--left,
  .origins__cards--right {
    transform: none;
  }

  .origin-card {
    min-height: 96px;
    padding: 0.78rem 0.72rem;
    border-radius: 15px;
  }

  .origin-card.is-active {
    transform: translateY(-2px);
  }

  .origin-card h3 {
    margin-bottom: 0.22rem;
    font-size: 1.08rem;
    line-height: 1.05;
  }

  .origin-card p {
    font-size: 0.73rem;
    line-height: 1.42;
    letter-spacing: 0.01em;
  }

  .origins__note {
    margin-top: 1.2rem;
    font-size: 0.78rem;
    line-height: 1.6;
    text-align: left;
  }

  .contact {
    background-image:
      linear-gradient(rgba(20, 35, 24, 0.54), rgba(20, 35, 24, 0.68)),
      url("img/teafarm-last.png");
    background-position: center center;
  }
}

@media (max-width: 390px) {
  .origins__map-wrap {
    width: min(70vw, 285px);
  }

  .origin-marker {
    width: 11px;
    height: 11px;
    min-width: 11px;
    min-height: 11px;
    max-width: 11px;
    max-height: 11px;
  }

  .origin-card {
    min-height: 92px;
    padding: 0.68rem 0.62rem;
  }

  .origin-card h3 {
    font-size: 1rem;
  }

  .origin-card p {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .vision { background-attachment: scroll; }
}
