@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
  --forest: #18362c;
  --forest-dark: #0e221b;
  --forest-mid: #31583c;
  --cacao: #2c1f17;
  --clay: #c46b3c;
  --bark: #74452a;
  --sun: #f3b34b;
  --ochre: #d5a84c;
  --mist: #f7f2ea;
  --cream: #f6ebda;
  --sage: #cddfcd;
  --ink: #17191b;
  --plum: #512731;
  --stone: #efe6da;
  --accent: #2c8a6b;
  --wayusa-teal: #1f9ea7;
  --accent-soft: #d9f2e7;
  --border: rgba(23, 25, 27, 0.12);
  --shadow: 0 24px 60px rgba(18, 22, 20, 0.14);
  --shadow-soft: 0 16px 34px rgba(18, 22, 20, 0.1);
  --glow: 0 0 0 1px rgba(44, 138, 107, 0.2), 0 10px 40px rgba(44, 138, 107, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Fraunces", "Noto Serif JP", serif;
  --font-body: "Manrope", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 45%),
    linear-gradient(135deg, #f8f1e6 0%, #f0efe9 48%, #e4f0ea 100%);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(47, 122, 98, 0.18), transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(201, 116, 66, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 193, 93, 0.18), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(61, 42, 30, 0.14), transparent 45%);
  opacity: 0.7;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

.grid .card img {
  width: 100%;
  height: 220px;
  margin: 0 0 16px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 234, 0.9);
  border-bottom: 1px solid rgba(27, 28, 30, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 229, 218, 0.94));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(17, 23, 19, 0.12);
  border: 1px solid rgba(24, 54, 44, 0.08);
  overflow: hidden;
}

.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(24, 54, 44, 0.62);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(47, 122, 98, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.lang-switch button {
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: rgba(27, 28, 30, 0.7);
}

.lang-switch button.active {
  color: var(--forest);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-outline {
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
}

.btn-light {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  letter-spacing: 0.4px;
}

.section-title-compact {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  margin-top: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 245, 233, 0.86);
  border: 1px solid rgba(196, 107, 60, 0.2);
  color: rgba(98, 57, 31, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 42px;
  height: 8px;
  flex: 0 0 auto;
  opacity: 0.9;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='8' viewBox='0 0 42 8'%3E%3Cpath d='M1 7 5 1 9 7 13 1 17 7 21 1 25 7 29 1 33 7 37 1 41 7' fill='none' stroke='%23d5a84c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 25, 27, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(44, 138, 107, 0.25);
}

.grid .card {
  position: relative;
  overflow: hidden;
}

.grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(44, 138, 107, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.grid .card:hover::after {
  opacity: 1;
}

.badge {
  background: rgba(44, 138, 107, 0.12);
  color: var(--forest);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.editorial-hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.hero-copy-card,
.story-copy-card,
.chakra-scene-card,
.origin-callout,
.catalog-hero {
  position: relative;
  overflow: hidden;
}

.hero-copy-card {
  background:
    radial-gradient(circle at top left, rgba(243, 179, 75, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(44, 138, 107, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 233, 0.94));
  border-radius: 34px;
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  gap: 16px;
}

.hero-lead {
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  color: rgba(23, 25, 27, 0.82);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(24, 54, 44, 0.06);
  border: 1px solid rgba(24, 54, 44, 0.1);
  color: rgba(24, 54, 44, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  background: rgba(252, 245, 232, 0.94);
  border: 1px solid rgba(196, 107, 60, 0.16);
}

.hero-visual-stack {
  position: relative;
  min-height: 620px;
}

.hero-photo-panel,
.catalog-hero-media,
.origin-callout-media,
.mosaic-panel {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.8);
}

.hero-photo-panel img,
.catalog-hero-media img,
.origin-callout-media img,
.mosaic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  position: absolute;
  inset: 0 72px 86px 0;
}

.hero-photo-portrait {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: min(42%, 250px);
  height: 54%;
}

.hero-floating-card {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  z-index: 2;
  border-radius: 28px;
  padding: 22px;
  background: rgba(18, 34, 27, 0.86);
  color: #fdf6ec;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(14, 34, 27, 0.24);
  display: grid;
  gap: 10px;
}

.hero-floating-card .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff3de;
}

.hero-floating-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero-floating-card p,
.hero-floating-card li {
  color: rgba(255, 246, 236, 0.84);
}

.section-tight {
  padding-top: 4px;
}

.impact-ribbon {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-stat-card {
  border-radius: 24px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 233, 0.92));
  border: 1px solid rgba(24, 54, 44, 0.1);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.impact-stat-card::after {
  content: "";
  width: 112px;
  height: 10px;
  opacity: 0.82;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='10' viewBox='0 0 112 10'%3E%3Cpath d='M2 8 10 2 18 8 26 2 34 8 42 2 50 8 58 2 66 8 74 2 82 8 90 2 98 8 106 2' fill='none' stroke='%23d5a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left center/contain no-repeat;
}

.impact-stat-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.impact-stat-icon {
  width: 76px;
  height: 58px;
  flex: 0 0 auto;
  color: var(--forest);
}

.impact-stat-card strong {
  font-size: 1.22rem;
  color: var(--forest);
  line-height: 1.15;
}

.impact-stat-card span {
  color: rgba(23, 25, 27, 0.68);
  font-size: 0.92rem;
}

.story-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.story-copy-card {
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.14), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 242, 0.94));
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  height: 100%;
}

.section-subtitle-tight {
  max-width: 68ch;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-point {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(44, 138, 107, 0.08);
  border: 1px solid rgba(44, 138, 107, 0.14);
  color: rgba(24, 54, 44, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.story-quote {
  margin-top: 6px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(196, 107, 60, 0.12);
}

.story-quote p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.35;
}

.story-quote footer {
  margin-top: 8px;
  color: rgba(23, 25, 27, 0.6);
  font-size: 0.88rem;
}

.photo-mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.78fr);
  min-height: 100%;
  height: 100%;
}

.mosaic-panel-large {
  grid-row: 1 / span 2;
  height: 100%;
}

.mosaic-panel-tall {
  min-height: 100%;
}

.mosaic-panel-square {
  min-height: 100%;
}

.section-chakra {
  padding-top: 12px;
}

.chakra-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-bottom: 20px;
}

.chakra-copy {
  display: grid;
  gap: 14px;
}

.chakra-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chakra-legend-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 54, 44, 0.12);
  box-shadow: 0 8px 18px rgba(18, 22, 20, 0.06);
  font-size: 0.84rem;
  font-weight: 700;
}

.chakra-scene-card {
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 244, 241, 0.95));
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.chakra-scene-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  height: 10px;
  opacity: 0.8;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='10' viewBox='0 0 160 10'%3E%3Cpath d='M2 8 10 2 18 8 26 2 34 8 42 2 50 8 58 2 66 8 74 2 82 8 90 2 98 8 106 2 114 8 122 2 130 8 138 2 146 8 154 2' fill='none' stroke='%23d5a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain repeat-x;
}

.chakra-scene {
  position: relative;
  overflow: visible;
  border-radius: 28px;
  min-height: 620px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), transparent 15%),
    radial-gradient(circle at 82% 14%, rgba(255, 222, 164, 0.45), transparent 18%),
    linear-gradient(180deg, rgba(224, 244, 232, 0.98), rgba(247, 241, 228, 0.95) 56%, rgba(228, 215, 188, 0.94) 56%, rgba(177, 132, 86, 0.92) 100%);
}

.chakra-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.54), transparent 14%),
    radial-gradient(circle at 78% 18%, rgba(255, 220, 164, 0.38), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 62%);
}

.chakra-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 230, 176, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(126, 83, 39, 0.02), rgba(84, 55, 27, 0.28)),
    repeating-linear-gradient(90deg, rgba(76, 49, 26, 0.06), rgba(76, 49, 26, 0.06) 5px, rgba(146, 106, 66, 0.06) 5px, rgba(146, 106, 66, 0.06) 12px);
}

.chakra-flow-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 38%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 107, 60, 0.08), rgba(44, 138, 107, 0.26), rgba(243, 179, 75, 0.1));
  animation: flowShift 6.8s ease-in-out infinite;
}

.chakra-plant {
  position: absolute;
  bottom: var(--plant-bottom, 24%);
  left: var(--x);
  width: var(--plant-width, 84px);
  height: var(--plant-height);
  background: none;
  border: none;
  padding: 0;
  cursor: help;
  z-index: var(--plant-z, 2);
  transform: translateX(-50%);
}

.chakra-plant:focus-visible {
  outline: 2px solid rgba(24, 54, 44, 0.46);
  outline-offset: 8px;
}

.chakra-plant-art {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center bottom;
  animation: plantGrow 1.15s ease both, plantSway 6.2s ease-in-out infinite;
  animation-delay: var(--delay), calc(var(--delay) + 1.15s);
}

.chakra-plant-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chakra-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 28px);
  transform: translateX(-50%) translateY(10px);
  width: min(260px, 44vw);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(17, 33, 27, 0.92);
  color: #fff5ea;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(14, 34, 27, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.chakra-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.chakra-tooltip small {
  display: block;
  color: rgba(255, 245, 234, 0.84);
  font-size: 0.8rem;
  line-height: 1.45;
}

.chakra-plant:hover,
.chakra-plant:focus-visible {
  z-index: 4;
}

.chakra-plant:hover .chakra-tooltip,
.chakra-plant:focus-visible .chakra-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.chakra-plant.tooltip-left .chakra-tooltip {
  left: 0;
  transform: translateY(10px);
}

.chakra-plant.tooltip-left:hover .chakra-tooltip,
.chakra-plant.tooltip-left:focus-visible .chakra-tooltip {
  transform: translateY(0);
}

.chakra-plant.tooltip-right .chakra-tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.chakra-plant.tooltip-right:hover .chakra-tooltip,
.chakra-plant.tooltip-right:focus-visible .chakra-tooltip {
  transform: translateY(0);
}

.chakra-plant.tooltip-inset-left .chakra-tooltip,
.chakra-plant.tooltip-inset-right .chakra-tooltip {
  top: 18px;
  bottom: auto;
  transform: translateY(10px);
}

.chakra-plant.tooltip-inset-left .chakra-tooltip {
  left: 0;
}

.chakra-plant.tooltip-inset-right .chakra-tooltip {
  left: auto;
  right: 0;
}

.chakra-plant.tooltip-inset-left:hover .chakra-tooltip,
.chakra-plant.tooltip-inset-left:focus-visible .chakra-tooltip,
.chakra-plant.tooltip-inset-right:hover .chakra-tooltip,
.chakra-plant.tooltip-inset-right:focus-visible .chakra-tooltip {
  transform: translateY(0);
}

.chakra-plant.canopy {
  z-index: 1;
}

.chakra-plant.chonta {
  z-index: 1;
}

.chakra-layer-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.chakra-layer-card {
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 54, 44, 0.1);
  box-shadow: var(--shadow-soft);
}

.chakra-layer-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 0.98rem;
}

.products-filter-shell {
  display: grid;
  gap: 18px;
  padding: 24px 0 6px;
}

.product-filter-nav {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.products-filter-note {
  max-width: 68ch;
  color: rgba(23, 25, 27, 0.68);
  font-size: 0.94rem;
}

.community-impact-section {
  padding-top: 10px;
}

.community-impact-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
}

.community-impact-copy {
  display: grid;
  gap: 16px;
  height: 100%;
  align-content: start;
}

.impact-summary-grid,
.community-note-grid,
.flow-visual-grid,
.contact-step-grid {
  display: grid;
  gap: 14px;
}

.impact-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-auto-rows: 1fr;
}

.impact-summary-card,
.community-note-card,
.flow-card,
.feature-card,
.contact-step-card,
.contact-next-card {
  border-radius: 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 54, 44, 0.09);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.contact-next-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.impact-summary-card strong,
.community-note-card strong,
.flow-card h3,
.feature-card h3,
.contact-step-card strong {
  color: var(--forest);
}

.impact-summary-top,
.community-note-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.feature-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.impact-summary-icon,
.community-note-icon,
.feature-card-icon {
  width: 58px;
  height: 46px;
  flex: 0 0 auto;
}

.impact-summary-icon svg,
.community-note-icon svg,
.feature-card-icon svg {
  width: 100%;
  height: 100%;
}

.impact-summary-card strong {
  display: block;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.24;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.impact-summary-card {
  align-content: start;
  min-height: 178px;
}

.impact-summary-card-1 {
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.09), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 242, 0.96));
}

.impact-summary-card-2 {
  background:
    radial-gradient(circle at top left, rgba(213, 168, 76, 0.14), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 228, 0.96));
}

.impact-summary-card-3 {
  background:
    radial-gradient(circle at bottom right, rgba(196, 107, 60, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 233, 0.96));
}

.community-note-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
}

.community-note-card strong,
.contact-step-card strong {
  display: block;
  font-size: 0.92rem;
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.community-note-card {
  align-content: start;
  min-height: 214px;
}

.community-note-card-1 {
  border-radius: 28px 28px 22px 22px;
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.08), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 241, 0.95));
}

.community-note-card-2 {
  border-radius: 22px 32px 24px 30px;
  background:
    radial-gradient(circle at top left, rgba(213, 168, 76, 0.15), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 229, 0.95));
}

.community-note-card-3 {
  border-radius: 30px 22px 30px 22px;
  background:
    radial-gradient(circle at bottom right, rgba(196, 107, 60, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 233, 0.95));
}

.community-impact-media {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  height: 100%;
  min-height: 100%;
}

.community-impact-media > .impact-photo {
  height: 100%;
}

.impact-photo {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.88);
}

.impact-photo img,
.contact-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-photo-aerial {
  grid-row: 1 / span 2;
}

.order-flow-section {
  display: grid;
  gap: 10px;
}

.flow-visual-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
}

.flow-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.14), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 242, 0.95));
  align-content: start;
}

.flow-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.flow-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 36px;
  color: rgba(24, 54, 44, 0.84);
  font-size: clamp(2.4rem, 3.6vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-display);
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(24, 54, 44, 0.08);
}

.flow-icon svg,
.btn-submit-lush svg {
  width: 22px;
  height: 22px;
}

.flow-card-1 {
  min-height: 240px;
  border-radius: 34px 26px 28px 22px;
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.12), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 242, 0.96));
}

.flow-card-2 {
  min-height: 228px;
  border-radius: 26px 34px 22px 30px;
  background:
    radial-gradient(circle at top left, rgba(213, 168, 76, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.96));
}

.flow-card-3 {
  min-height: 252px;
  border-radius: 30px 24px 34px 24px;
  background:
    radial-gradient(circle at bottom right, rgba(196, 107, 60, 0.12), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 238, 232, 0.96));
}

.flow-card-4 {
  min-height: 236px;
  border-radius: 22px 32px 26px 34px;
  background:
    radial-gradient(circle at top right, rgba(81, 39, 49, 0.1), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 240, 235, 0.96));
}

.flow-card-1 .flow-step-index {
  color: var(--wayusa-teal);
}

.flow-card-2 .flow-step-index {
  color: var(--ochre);
}

.flow-card-3 .flow-step-index {
  color: var(--clay);
}

.flow-card-4 .flow-step-index {
  color: var(--plum);
}

.flow-icon-1 {
  background: rgba(31, 158, 167, 0.16);
  color: var(--wayusa-teal);
}

.flow-icon-2 {
  background: rgba(213, 168, 76, 0.18);
  color: var(--ochre);
}

.flow-icon-3 {
  background: rgba(196, 107, 60, 0.16);
  color: var(--clay);
}

.flow-icon-4 {
  background: rgba(81, 39, 49, 0.12);
  color: var(--plum);
}

.feature-card {
  min-height: 244px;
  align-content: start;
  overflow: hidden;
}

.feature-card-copy,
.rich-copy {
  display: grid;
  gap: 12px;
}

.feature-card-copy p,
.rich-copy p {
  margin: 0;
}

.feature-card-1 {
  min-height: 336px;
  border-radius: 34px 24px 30px 22px;
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.12), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 242, 0.95));
}

.feature-card-2 {
  border-radius: 24px 34px 22px 32px;
  background:
    radial-gradient(circle at top left, rgba(213, 168, 76, 0.16), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.95));
}

.feature-card-3 {
  border-radius: 30px 22px 34px 22px;
  background:
    radial-gradient(circle at bottom right, rgba(196, 107, 60, 0.12), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 233, 0.95));
}

.feature-card-1 .feature-card-icon {
  color: var(--wayusa-teal);
}

.feature-card-2 .feature-card-icon {
  color: var(--ochre);
}

.feature-card-3 .feature-card-icon {
  color: var(--clay);
}

@media (min-width: 1200px) {
  .community-impact-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  }

  .impact-summary-grid,
  .community-note-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact-summary-card,
  .community-note-card {
    height: 100%;
  }

  .home-feature-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "feature-a feature-b"
      "feature-a feature-c";
    align-items: stretch;
  }

  .feature-card-1 {
    grid-area: feature-a;
    min-height: 360px;
  }

  .feature-card-2 {
    grid-area: feature-b;
    min-height: 208px;
  }

  .feature-card-3 {
    grid-area: feature-c;
    min-height: 232px;
  }

  .flow-visual-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(0, 1fr);
    grid-template-areas:
      "flow-a flow-b flow-d"
      "flow-a flow-c flow-d";
    align-items: stretch;
  }

  .flow-card-1 {
    grid-area: flow-a;
    min-height: 330px;
  }

  .flow-card-2 {
    grid-area: flow-b;
    min-height: 188px;
  }

  .flow-card-3 {
    grid-area: flow-c;
    min-height: 206px;
  }

  .flow-card-4 {
    grid-area: flow-d;
    min-height: 320px;
  }
}

.contact-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.contact-form-card {
  display: grid;
  gap: 18px;
}

.contact-form-grid {
  align-items: start;
}

.contact-message-input {
  min-height: 210px;
  grid-column: 1 / -1;
}

.btn-submit-lush {
  grid-column: 1 / -1;
  justify-self: start;
  justify-content: center;
  min-height: 64px;
  min-width: 260px;
  padding: 16px 22px;
  background:
    linear-gradient(135deg, rgba(11, 56, 43, 0.98), rgba(31, 108, 80, 0.94)),
    var(--forest);
  color: #fff8ee;
  box-shadow: 0 22px 40px rgba(14, 34, 27, 0.24);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-submit-lush:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.contact-note {
  margin-top: 4px;
}

.contact-support-stack {
  display: grid;
  gap: 16px;
}

.contact-visual-card {
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow);
}

.contact-step-grid {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.origin-callout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at left top, rgba(243, 179, 75, 0.18), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 231, 0.96));
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow-soft);
  align-items: center;
}

.origin-callout-copy {
  display: grid;
  gap: 14px;
}

.about-origin-stage {
  align-items: stretch;
}

.about-origin-copy {
  align-content: start;
}

.about-origin-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-origin-fact {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-origin-fact-1 {
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.1), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 242, 0.95));
}

.about-origin-fact-2 {
  background:
    radial-gradient(circle at top left, rgba(213, 168, 76, 0.16), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.95));
}

.about-origin-fact-3 {
  background:
    radial-gradient(circle at bottom right, rgba(196, 107, 60, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 233, 0.95));
}

.about-origin-fact-icon,
.about-origin-graphic-icon,
.about-support-icon {
  width: 74px;
  height: 56px;
  display: inline-flex;
}

.about-origin-fact-icon svg,
.about-origin-graphic-icon svg,
.about-support-icon svg {
  width: 100%;
  height: 100%;
}

.about-origin-fact strong,
.about-origin-graphic strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1rem;
}

.about-origin-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 100%;
}

.about-origin-visual-main {
  grid-row: 1 / span 2;
}

.about-origin-visual-side {
  min-height: 220px;
}

.about-origin-graphic {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(31, 158, 167, 0.12), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 241, 0.95));
  border: 1px solid rgba(24, 54, 44, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-support-card {
  align-content: start;
}

.about-support-icon {
  margin-bottom: 2px;
}

.origin-callout-media {
  min-height: 280px;
}

body.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 24px 0 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: rgba(27, 28, 30, 0.68);
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 28, 30, 0.08);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17, 19, 16, 0.08);
  display: grid;
  gap: 12px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.card small {
  color: rgba(27, 28, 30, 0.65);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(201, 116, 66, 0.12);
  color: var(--cacao);
  font-size: 0.78rem;
  font-weight: 600;
}

.notice {
  border-radius: var(--radius-sm);
  background: rgba(47, 122, 98, 0.1);
  padding: 12px 16px;
  font-size: 0.9rem;
}

.estimated-price-card {
  border-radius: 18px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(44, 138, 107, 0.12), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(24, 54, 44, 0.12);
  display: grid;
  gap: 10px;
  min-height: 260px;
  align-content: start;
}

.price-level-option {
  appearance: none;
  width: 100%;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.price-level-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
}

.price-level-row-primary {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(24, 54, 44, 0.1);
}

.price-level-row span {
  color: rgba(23, 25, 27, 0.72);
  font-weight: 700;
}

.price-level-row strong {
  text-align: right;
  justify-self: end;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
  white-space: nowrap;
}

.market-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.market-price-tile {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 54, 44, 0.1);
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 86px;
}

.price-level-option.is-active {
  box-shadow: 0 0 0 2px rgba(24, 54, 44, 0.2);
  transform: translateY(-1px);
}

.market-price-tile span {
  color: rgba(23, 25, 27, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.market-price-tile strong {
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
}

.product-list-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 10px;
  padding: 18px 18px 20px;
}

.product-list-card > img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.product-list-card-title {
  width: 100%;
  margin: 0;
  min-height: 4.8rem;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-copy {
  width: 100%;
  margin: 0;
  min-height: 7.8rem;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  width: 100%;
  margin-top: auto;
}

.product-card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-template-columns: none;
  align-items: stretch;
}

.product-list-card .btn {
  width: auto;
  min-width: 0;
  align-self: stretch;
  justify-content: center;
  text-align: center;
}

.product-list-card .estimated-price-card {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.product-list-card .price-level-row {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.product-list-card .price-level-row span,
.product-list-card .price-level-row strong,
.product-list-card .market-price-tile span,
.product-list-card .market-price-tile strong,
.product-list-card .price-level-note,
.product-list-card .price-level-caption {
  text-align: center;
}

.product-list-card .price-level-row strong {
  justify-self: center;
}

.product-list-card .market-price-grid {
  grid-template-columns: 1fr;
}

.product-list-card .market-price-tile {
  justify-items: center;
}

.price-level-note,
.price-level-caption {
  display: block;
  color: rgba(23, 25, 27, 0.68);
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-detail-hero {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
}

.product-media,
.product-summary {
  min-width: 0;
}

.product-gallery-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-gallery-shell-single {
  grid-template-columns: minmax(0, 1fr);
}

.product-gallery-thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-gallery-thumb {
  appearance: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(27, 28, 30, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(44, 138, 107, 0.42);
  box-shadow: var(--glow);
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery-main-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(27, 28, 30, 0.08);
  background:
    radial-gradient(circle at top left, rgba(243, 179, 75, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 241, 0.92));
  box-shadow: var(--shadow);
  min-height: min(70vh, 680px);
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-gallery-main-image {
  width: 100%;
  height: 100%;
  max-height: min(64vh, 640px);
  object-fit: contain;
  border-radius: 22px;
}

.product-detail-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.stepper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 120px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.step.active {
  background: var(--forest);
  color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  text-align: left;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(27, 28, 30, 0.08);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checkout-party-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-party-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(24, 54, 44, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 247, 0.92)),
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.09), transparent 34%);
  align-content: start;
}

.checkout-party-card-full {
  grid-column: 1 / -1;
}

.checkout-party-card[hidden],
.checkout-party-card.is-force-hidden,
[data-checkout-exw-only][hidden],
[data-checkout-exw-only].is-force-hidden,
[data-order-party][hidden],
[data-order-party].is-force-hidden,
[data-order-exw-only][hidden],
[data-order-exw-only].is-force-hidden {
  display: none !important;
}

.checkout-party-card h3,
.checkout-party-card h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0;
}

.checkout-party-card .form-grid {
  gap: 12px;
}

.checkout-party-card textarea.input {
  min-height: 150px;
  resize: vertical;
}

.checkout-party-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background: rgba(244, 250, 247, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(24, 54, 44, 0.86);
}

.checkbox-inline input {
  accent-color: var(--forest);
}

.checkbox-inline-compact {
  padding: 7px 11px;
  font-size: 0.8rem;
}

.checkout-organic-choice {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.checkout-organic-choice p {
  margin: 0;
  color: var(--muted);
}

.checkout-organic-choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checkout-organic-choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.checkout-organic-choice-card-managed {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 249, 0.96));
}

.checkout-organic-choice-card-self {
  background:
    radial-gradient(circle at top right, rgba(226, 169, 64, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 249, 241, 0.96));
}

.checkout-organic-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 54, 44, 0.2);
  box-shadow: 0 16px 34px rgba(18, 37, 31, 0.08);
}

.checkout-organic-choice-card:has(input:checked) {
  border-color: rgba(24, 54, 44, 0.32);
  background:
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 247, 0.96));
  box-shadow: 0 20px 42px rgba(18, 37, 31, 0.1);
}

.checkout-organic-choice-card input {
  margin-top: 3px;
  accent-color: var(--forest);
}

.checkout-organic-choice-copy {
  display: grid;
  gap: 6px;
}

.checkout-organic-choice-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-organic-choice-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1;
  color: var(--forest);
  background: rgba(24, 54, 44, 0.08);
  border: 1px solid rgba(24, 54, 44, 0.15);
  flex-shrink: 0;
}

.checkout-organic-choice-card-self .checkout-organic-choice-badge {
  color: #8e5b00;
  background: rgba(226, 169, 64, 0.16);
  border-color: rgba(184, 133, 33, 0.24);
}

.checkout-organic-choice-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-organic-choice-copy strong {
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.25;
}

.checkout-organic-choice-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.checkout-import-details {
  margin-top: 14px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 249, 0.94));
  overflow: clip;
}

.checkout-import-details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-import-details summary::-webkit-details-marker {
  display: none;
}

.checkout-import-details summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 54, 44, 0.08);
  color: var(--forest);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.checkout-import-details[open] summary::after {
  content: "−";
}

.checkout-import-details summary span {
  display: grid;
  gap: 4px;
}

.checkout-import-details summary strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.checkout-import-details summary small {
  color: var(--muted);
  line-height: 1.45;
}

.checkout-import-details-body {
  padding: 0 18px 18px;
  display: grid;
  gap: 14px;
}

.checkout-import-details-intro {
  margin: 0;
  color: var(--muted);
}

.checkout-party-grid-compact {
  gap: 14px;
}

.account-shell {
  display: grid;
  gap: 16px;
}

.account-shell-head {
  align-items: start;
}

.order-overview-stack {
  display: grid;
  gap: 16px;
}

.order-summary-top {
  align-items: center;
}

.order-summary-total {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.order-summary-total strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.order-alert-stack,
.document-grid,
.order-payment-customer-grid {
  display: grid;
  gap: 12px;
}

.order-card-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.order-card-head p {
  margin: 0;
  color: var(--muted);
}

.order-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.document-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.document-card {
  border-radius: 18px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.document-card strong {
  font-size: 1rem;
}

.document-card small {
  color: rgba(27, 28, 30, 0.64);
}

.bank-detail-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.bank-detail-list li {
  line-height: 1.5;
}

.order-payment-customer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-payment-state {
  border-radius: 18px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background: rgba(244, 250, 247, 0.92);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  min-width: 160px;
  width: fit-content;
  max-width: 100%;
}

.order-payment-state-muted {
  background: rgba(255, 255, 255, 0.9);
}

.order-payment-state strong {
  font-size: 0.98rem;
}

.order-payment-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-bank-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-action-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.94rem;
}

.order-action-feedback.success {
  background: rgba(44, 138, 107, 0.12);
  color: #16362b;
}

.order-action-feedback.error {
  background: rgba(196, 72, 72, 0.12);
  color: #7d1f1f;
}

.order-edit-form textarea {
  min-height: 150px;
  grid-column: 1 / -1;
}

.order-edit-form {
  display: grid;
  gap: 16px;
}

.order-edit-form button {
  width: fit-content;
}

.order-edit-checkbox {
  grid-column: 1 / -1;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 12px;
}

.order-timeline-card .timeline {
  margin-top: 8px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .checkout-party-grid {
    grid-template-columns: 1fr;
  }

  .checkout-party-card-full {
    grid-column: auto;
  }
}

.timeline-item.inactive .timeline-dot {
  background: rgba(27, 28, 30, 0.2);
}

.order-record-accordion,
.order-inline-details {
  border: 1px solid rgba(24, 54, 44, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  overflow: clip;
}

.order-record-accordion summary,
.order-inline-details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-record-accordion summary::-webkit-details-marker,
.order-inline-details summary::-webkit-details-marker {
  display: none;
}

.order-record-accordion summary::after,
.order-inline-details summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 54, 44, 0.08);
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

.order-record-accordion[open] summary::after,
.order-inline-details[open] summary::after {
  content: "−";
}

.order-record-accordion summary span,
.order-inline-details summary span {
  display: grid;
  gap: 4px;
}

.order-record-accordion summary strong,
.order-inline-details summary strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
}

.order-record-accordion summary small,
.order-inline-details summary small {
  color: var(--muted);
}

.order-record-accordion-body,
.order-inline-details-body {
  padding: 0 22px 22px;
}

.order-documents-card .document-grid {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .order-main-grid {
    grid-template-columns: 1fr;
  }
}

.chat-widget-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 30;
  border: none;
}

.chat-widget-pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #86f0bf;
  box-shadow: 0 0 0 0 rgba(134, 240, 191, 0.42);
  animation: chatPulse 1.8s ease-out infinite;
}

.chat-widget-unread {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffcc66;
  box-shadow: 0 0 0 6px rgba(255, 204, 102, 0.18);
}

.chat-drawer {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: min(420px, calc(100vw - 24px));
  max-height: min(76vh, 760px);
  border-radius: 28px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98)),
    #fff;
  box-shadow: 0 28px 80px rgba(14, 34, 27, 0.22);
  overflow: hidden;
  z-index: 31;
}

.chat-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  background:
    radial-gradient(circle at top right, rgba(243, 179, 75, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(44, 138, 107, 0.12), rgba(24, 54, 44, 0.04));
  border-bottom: 1px solid rgba(24, 54, 44, 0.1);
}

.chat-drawer-header strong {
  display: block;
  font-size: 1.05rem;
}

.chat-drawer-header p {
  margin-top: 4px;
  color: rgba(23, 25, 27, 0.68);
  font-size: 0.88rem;
}

.chat-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(24, 54, 44, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-drawer-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.chat-drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-drawer-actions .btn {
  padding: 10px 14px;
}

.chat-install-hint {
  font-size: 0.82rem;
  color: rgba(23, 25, 27, 0.68);
}

.chat-start-form,
.chat-compose-form {
  display: grid;
  gap: 12px;
}

.chat-start-form label,
.chat-compose-form label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(23, 25, 27, 0.7);
}

.chat-translate-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(23, 25, 27, 0.76);
}

.chat-drawer-thread {
  min-height: 260px;
  max-height: 38vh;
  overflow: auto;
  display: grid;
  gap: 10px;
  padding-right: 4px;
}

.chat-empty {
  border-radius: 18px;
  border: 1px dashed rgba(24, 54, 44, 0.18);
  padding: 18px;
  background: rgba(239, 246, 242, 0.72);
  color: rgba(23, 25, 27, 0.68);
}

.chat-message {
  display: grid;
  gap: 6px;
}

.chat-message-buyer {
  justify-items: end;
}

.chat-message-winak {
  justify-items: start;
}

.chat-message-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(23, 25, 27, 0.58);
}

.chat-message-bubble {
  width: min(100%, 320px);
  border-radius: 20px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 25, 27, 0.08);
  box-shadow: var(--shadow-soft);
}

.chat-message-buyer .chat-message-bubble {
  background: linear-gradient(135deg, rgba(44, 138, 107, 0.12), rgba(255, 255, 255, 0.98));
  border-color: rgba(44, 138, 107, 0.18);
}

.chat-message-winak .chat-message-bubble {
  background: linear-gradient(135deg, rgba(196, 107, 60, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(196, 107, 60, 0.14);
}

.chat-message-bubble p {
  margin: 0;
}

.chat-message-bubble details {
  margin-top: 8px;
}

.chat-message-bubble summary {
  cursor: pointer;
  color: rgba(23, 25, 27, 0.7);
}

.chat-message-original {
  margin-top: 6px;
  font-size: 0.88rem;
  color: rgba(23, 25, 27, 0.72);
}

.chat-widget-note[hidden] {
  display: none;
}

@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(134, 240, 191, 0.42);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(134, 240, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(134, 240, 191, 0);
  }
}

@media (max-width: 980px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-gallery-shell {
    grid-template-columns: 1fr;
  }

  .product-gallery-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(84px, 92px);
    overflow-x: auto;
    padding-bottom: 4px;
    order: 2;
  }

  .product-gallery-main-frame {
    min-height: 0;
  }

  .product-gallery-main-image {
    max-height: none;
    aspect-ratio: 1 / 1;
  }
}

.footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(27, 28, 30, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  font-size: 0.9rem;
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.fade-delay-1 { animation-delay: 0.1s; }
.fade-delay-2 { animation-delay: 0.2s; }
.fade-delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes plantGrow {
  from { opacity: 0; transform: translateY(12px) scaleY(0.12); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

@keyframes plantSway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}

@keyframes flowShift {
  0%, 100% { transform: scaleX(0.96); opacity: 0.64; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }
  .menu-toggle {
    display: inline-flex;
  }

  .chat-drawer {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
  }

  .chat-widget-button {
    right: 12px;
    bottom: 12px;
  }

  .brand-copy small {
    letter-spacing: 0.08em;
  }

  .editorial-hero,
  .story-layout,
  .chakra-showcase,
  .origin-callout,
  .community-impact-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .impact-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-visual-stack {
    min-height: 540px;
  }

  .hero-photo-main {
    inset: 0 0 150px 0;
  }

  .hero-photo-portrait {
    width: 46%;
    right: 18px;
    bottom: 132px;
  }

  .hero-floating-card {
    left: 18px;
    right: 18px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
  }

  .about-origin-facts,
  .impact-summary-grid,
  .community-note-grid {
    grid-template-columns: 1fr;
  }

  .about-origin-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-origin-visual-main {
    grid-row: auto;
  }

  .mosaic-panel-large {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 260px;
  }

  .origin-callout-media,
  .contact-visual-card {
    min-height: 240px;
  }

  .community-impact-media {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .impact-photo-aerial {
    grid-row: auto;
  }

  .chakra-scene {
    min-height: 620px;
  }

  .chakra-tooltip {
    width: min(220px, 70vw);
  }

  .chakra-layer-grid,
  .flow-visual-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .feature-card-1,
  .feature-card-2,
  .feature-card-3,
  .flow-card-1,
  .flow-card-2,
  .flow-card-3,
  .flow-card-4 {
    grid-area: auto;
  }
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
