/* ==========================================================================
   Foundations
   ========================================================================== */

:root {
  --font-sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --font-accent: Georgia, "Times New Roman", serif;
  --color-ink: #243128;
  --color-muted: #68746d;
  --color-paper: #fffdf7;
  --color-cream: #f4efe3;
  --color-leaf: #31573f;
  --color-leaf-dark: #1f392b;
  --color-sun: #d59a3a;
  --color-line: #ded6c8;
  --shadow-soft: 0 22px 70px rgba(34, 49, 40, 0.14);
  --shadow-card: 0 14px 30px rgba(66, 50, 29, 0.12);
  --radius-card: 8px;
  --paper-texture: url("../img/decor/paper-cream.png");
  --paper-surface: linear-gradient(rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.9)), var(--paper-texture) center / 560px auto;
  --header-height: 78px;
  --hero-wave-height: clamp(110px, 9vw, 150px);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

/* ==========================================================================
   Theme Overrides / Section-Specific Composition
   ========================================================================== */

body {
  margin: 0;
  color: var(--color-ink);
  background-color: #fbf4e5;
  background-image: var(--paper-texture);
  background-position: center top;
  background-repeat: repeat;
  background-size: 720px auto;
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  inset: 0;
  z-index: 58;
  content: "";
  background: rgba(12, 30, 24, 0.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

body.menu-open .site-header {
  z-index: 100;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(213, 154, 58, 0.8);
  outline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-leaf-dark);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background-color: rgba(255, 250, 239, 0.96);
  background-image: var(--paper-texture);
  background-position: center top;
  background-repeat: repeat;
  background-size: 620px auto;
  border-bottom: 1px solid rgba(222, 214, 200, 0.7);
  box-shadow: 0 10px 28px rgba(54, 41, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 48px;
  overflow: hidden;
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__drawer-header {
  display: none;
}

.menu-button {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(110px, 14vw, 190px) clamp(18px, 6vw, 84px) calc(var(--hero-wave-height, clamp(88px, 10vw, 160px)) + 56px);
  overflow: hidden;
  color: #fff;
  background: var(--color-leaf-dark);
}

.hero-slider,
.hero-slide,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 6s ease;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--farm img {
  object-position: center center;
}

.hero-slide--vegetables img {
  object-position: center center;
}

.hero-slide--island img {
  object-position: center center;
}

.hero-slide--crop img {
  object-position: center 52%;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 38, 27, 0.86) 0%, rgba(10, 38, 27, 0.62) 40%, rgba(10, 38, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 38, 27, 0.5) 0%, rgba(10, 38, 27, 0) 44%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  max-width: none;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-sun);
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.hero h1 {
  max-width: 10em;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.hero-title__line {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  line-height: 2;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--color-leaf);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-leaf-dark);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .button {
  min-width: 220px;
  padding: 18px 28px;
}

.button-outline {
  color: var(--color-leaf-dark);
  border-color: var(--color-leaf);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #fff;
  background: var(--color-leaf);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  z-index: 1;
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: var(--hero-wave-height, clamp(88px, 10vw, 160px));
  pointer-events: none;
}

.hero-wave-layer-back {
  fill: rgba(246, 239, 223, 0.32);
}

.hero-wave-layer-middle {
  fill: rgba(246, 239, 223, 0.56);
}

.hero-wave-layer-front {
  fill: var(--color-paper);
}

/* ==========================================================================
   Shared Layout / Components
   ========================================================================== */

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 84px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.section-copy {
  max-width: 560px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    url("../img/about/paper-texture.png") center top / 720px auto repeat,
    var(--color-cream);
  color: var(--color-leaf-dark);
}

.about-section::before {
  position: absolute;
  top: 64px;
  right: -80px;
  width: min(520px, 36vw);
  aspect-ratio: 1;
  content: "";
  background: url("../img/about/banana-leaf-bg.svg") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.about-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.about-section__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.about-section__label::after {
  width: 92px;
  height: 18px;
  content: "";
  background: url("../img/about/heading-divider.svg") left center / 160px auto no-repeat;
  opacity: 0.78;
}

.about-section__title {
  color: var(--color-leaf-dark);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.04em;
  word-break: keep-all;
}

.about-section__lead {
  margin-top: 30px;
  color: rgba(36, 49, 40, 0.86);
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: 0.02em;
}

.about-section__lead + .about-section__lead {
  margin-top: 22px;
}

.section-copy h2,
.section-heading h2,
.story-copy h2 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
}

.section-copy p,
.section-heading p,
.story-copy p,
.contact-inner p,
address {
  color: var(--color-muted);
  font-style: normal;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.photo-pair img:nth-child(2) {
  transform: translateY(42px);
}

.about-section__photos {
  position: relative;
  display: block;
  min-height: 520px;
}

.about-section__photos::before {
  position: absolute;
  bottom: -48px;
  left: -74px;
  width: 520px;
  height: 400px;
  content: "";
  background: url("../img/about/photo-brush-gold.svg") center / contain no-repeat;
  opacity: 0.56;
  pointer-events: none;
}

.about-section__photo {
  position: absolute;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 8px solid rgba(255, 252, 244, 0.92);
  box-shadow: 0 24px 54px rgba(54, 49, 22, 0.16);
}

.about-section__photo img {
  display: block;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.about-section__photo--main {
  top: 0;
  left: 0;
  width: min(460px, 72%);
  aspect-ratio: 1 / 1.08;
  border-radius: 28px 34px 26px 36px;
}

.about-section__photo--sub {
  top: 120px;
  right: 0;
  width: min(300px, 42%);
  aspect-ratio: 0.76 / 1;
  border-radius: 22px;
}

.about-section__wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: clamp(88px, 8vw, 150px);
  background: url("../img/about/bottom-wave.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

/* ==========================================================================
   Products / Cards
   ========================================================================== */

.products-section {
  background: var(--color-cream);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: var(--color-leaf-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper-surface);
  border: 1px solid rgba(222, 199, 163, 0.8);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.product-card::before {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 78px;
  height: 78px;
  content: "";
  border-radius: 50%;
  background: var(--color-leaf-dark);
  opacity: 0;
  transform: translate(12px, 12px) scale(0.72);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.product-card::after {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 3;
  width: 22px;
  height: 22px;
  content: "";
  background: url("../img/icons/arrow-circle.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translate(12px, 12px) scale(0.72);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  position: relative;
  flex: 1;
  min-height: 172px;
  padding: 22px 66px 28px 22px;
}

.product-card h3,
.person-card h3 {
  margin: 0 0 6px;
  color: var(--color-leaf-dark);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.35;
}

.product-card p:not(.product-label) {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.product-label {
  margin: 0 0 8px;
  color: var(--color-sun);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.product-card__meta span + span::before {
  margin: 0 8px;
  color: rgba(213, 154, 58, 0.48);
  content: "|";
}

.is-hidden {
  display: none;
}

.sp-only {
  display: none;
}

.products-more {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-width: 1220px;
  margin: 40px auto 0;
}

/* ==========================================================================
   Sub Pages
   ========================================================================== */

.page-hero {
  min-height: 56svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 72px) clamp(18px, 6vw, 84px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.76), rgba(18, 28, 22, 0.22)),
    url("../../img/farm/farm-28.jpg") center / cover;
}

.achievements-page-hero {
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.78), rgba(18, 28, 22, 0.24)),
    url("../../img/farm/farm-31.jpg") center / cover;
}

.news-page-hero {
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.78), rgba(18, 28, 22, 0.22)),
    url("../../img/farm/farm-31.jpg") center / cover;
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.products-page-section {
  background: var(--color-paper);
}

.product-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-slider-shell {
  max-width: 1220px;
  margin: 0 auto;
}

.achievements-intro {
  background: #fff;
}

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

.achievement-stats div {
  min-height: 156px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.achievement-stats strong {
  color: var(--color-leaf-dark);
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
}

.achievement-stats span {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.achievements-section {
  background: var(--color-cream);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.achievement-card {
  overflow: hidden;
  border: 1px solid rgba(222, 214, 200, 0.9);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.achievement-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.achievement-card div {
  padding: 20px;
}

.achievement-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.achievement-card p:not(.achievement-label) {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.achievement-label {
  margin: 0 0 8px;
  color: var(--color-sun);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-section {
  background: #fff;
}

.timeline {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
}

.timeline li:last-child {
  border-bottom: 1px solid var(--color-line);
}

.timeline time {
  color: var(--color-leaf);
  font-family: var(--font-accent);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
}

.timeline h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.timeline p {
  margin: 0;
  color: var(--color-muted);
}

/* ==========================================================================
   Farm Story
   ========================================================================== */

.story-band {
  display: block;
  background:
    linear-gradient(rgba(13, 52, 37, 0.96), rgba(13, 52, 37, 0.96)),
    url("../img/decor/paper-green.png") center / 640px auto;
  color: #fff;
  overflow: hidden;
}

.story-media {
  position: relative;
  height: clamp(360px, 47vw, 660px);
  overflow: hidden;
}

.story-media::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 96px;
  content: "";
  background: linear-gradient(to bottom, rgba(13, 52, 37, 0), rgba(13, 52, 37, 0.96));
  pointer-events: none;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.story-media::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  width: min(30vw, 360px);
  height: 20px;
  content: "";
  background: url("../img/patterns/minsa-divider-sand.svg") center / auto 18px repeat-x;
  opacity: 0.38;
}

.story-media-caption {
  position: absolute;
  z-index: 2;
  top: 22%;
  right: clamp(44px, 9vw, 120px);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.5vw, 2.45rem);
  letter-spacing: 0.18em;
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(13, 33, 24, 0.38);
  writing-mode: vertical-rl;
}

.story-copy {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) 28px clamp(84px, 9vw, 128px);
}

.story-copy::before,
.story-copy::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.18;
}

.story-copy::before {
  top: 16px;
  left: -120px;
  width: min(30vw, 320px);
  aspect-ratio: 1;
  background-image: url("../img/decor/leaf-flower-left.png");
  filter: brightness(0) saturate(100%) invert(78%) sepia(38%) saturate(527%) hue-rotate(357deg) brightness(92%) contrast(86%);
}

.story-copy::after {
  display: none;
}

.story-copy .eyebrow {
  grid-column: 1;
  color: var(--color-sun);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.28em;
}

.story-copy h2 {
  grid-column: 1;
  max-width: 980px;
  color: #fff;
  font-size: clamp(2.5rem, 6.6vw, 5.35rem);
  line-height: 1.22;
}

.story-copy p,
.story-copy dd {
  color: rgba(255, 255, 255, 0.78);
}

.story-copy > p:not(.eyebrow) {
  grid-column: 1;
  max-width: 780px;
  margin-top: 30px;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 2.05;
}

.farm-facts {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  gap: 14px;
  max-width: 860px;
  margin: 0;
}

.farm-facts div {
  position: relative;
  min-height: 112px;
  padding: 24px 28px 22px 124px;
  border: 1px solid rgba(220, 177, 91, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.farm-facts div::before {
  position: absolute;
  top: 50%;
  left: 28px;
  width: 72px;
  height: 72px;
  content: "";
  border: 2px solid rgba(220, 177, 91, 0.88);
  border-radius: 999px;
  background-color: rgba(220, 177, 91, 0.1);
  transform: translateY(-50%);
}

.farm-facts dt::before {
  position: absolute;
  top: 50%;
  left: 45px;
  width: 38px;
  height: 38px;
  content: "";
  background: var(--color-sun);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translateY(-50%);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.farm-facts div:nth-child(1) dt::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.4 6-11a6 6 0 1 0-12 0c0 5.6 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.4'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.4 6-11a6 6 0 1 0-12 0c0 5.6 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.4'/%3E%3C/g%3E%3C/svg%3E");
}

.farm-facts div:nth-child(2) dt::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 13C8 13 5 10 5 6c4 0 7 3 7 7Z'/%3E%3Cpath d='M12 11c4 0 7-3 7-7-4 0-7 3-7 7Z'/%3E%3Cpath d='M6 21h12'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 13C8 13 5 10 5 6c4 0 7 3 7 7Z'/%3E%3Cpath d='M12 11c4 0 7-3 7-7-4 0-7 3-7 7Z'/%3E%3Cpath d='M6 21h12'/%3E%3C/g%3E%3C/svg%3E");
}

.farm-facts div:nth-child(3) dt::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18c3-3 6-4.5 9-4.5S18 15 21 18'/%3E%3Cpath d='M5 21c3-1.5 5.3-2.2 7-2.2s4 .7 7 2.2'/%3E%3Cpath d='M12 4v3'/%3E%3Cpath d='M6.8 7.2 9 9.4'/%3E%3Cpath d='M17.2 7.2 15 9.4'/%3E%3Cpath d='M8.5 13a3.5 3.5 0 0 1 7 0'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18c3-3 6-4.5 9-4.5S18 15 21 18'/%3E%3Cpath d='M5 21c3-1.5 5.3-2.2 7-2.2s4 .7 7 2.2'/%3E%3Cpath d='M12 4v3'/%3E%3Cpath d='M6.8 7.2 9 9.4'/%3E%3Cpath d='M17.2 7.2 15 9.4'/%3E%3Cpath d='M8.5 13a3.5 3.5 0 0 1 7 0'/%3E%3C/g%3E%3C/svg%3E");
}

.farm-facts dt {
  color: var(--color-sun);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.farm-facts dd {
  margin: 8px 0 0;
  font-size: clamp(1.22rem, 2.5vw, 1.9rem);
  line-height: 1.35;
}

/* ==========================================================================
   Members
   ========================================================================== */

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 22px;
}

.person-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
}

.person-card img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.person-card p:not(.person-role) {
  margin: 0;
  color: var(--color-muted);
}

.person-role {
  margin: 0 0 6px;
  color: var(--color-sun);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   Farm Visit / Access
   ========================================================================== */

.access-section {
  position: relative;
  padding-top: 72px;
  padding-bottom: 104px;
  overflow: hidden;
  background:
    var(--paper-texture) center top / 560px auto repeat,
    var(--color-paper);
}

.access-section .section-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.access-section .section-copy {
  max-width: 590px;
}

.access-title {
  position: relative;
  margin-bottom: 30px;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  line-height: 1.2;
  word-break: keep-all;
  line-break: strict;
}

.access-title .nowrap {
  white-space: nowrap;
}

.access-title::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 24px;
  content: "";
  background: var(--color-sun);
}

.access-info {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(176, 137, 75, 0.24);
}

.access-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(176, 137, 75, 0.24);
}

.access-info p {
  margin: 0;
  color: var(--color-ink);
}

.access-info strong {
  display: inline-block;
  margin-bottom: 6px;
}

.access-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-leaf-dark);
  background: rgba(49, 87, 63, 0.1);
  border-radius: 50%;
}

.access-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-cta {
  display: inline-flex;
  min-width: 240px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
  padding: 16px 28px;
  color: #fff;
  background: var(--color-leaf-dark);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 48, 32, 0.14);
  font-weight: 700;
  text-decoration: none;
}

.access-cta span {
  font-size: 1.12rem;
}

.access-section address {
  display: none;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(181, 143, 82, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 252, 244, 0.78), rgba(255, 252, 244, 0.78)),
    var(--paper-texture) center / 560px auto;
  box-shadow: 0 22px 46px rgba(64, 50, 24, 0.14);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 16px;
}

/* ==========================================================================
   Contact / Footer
   ========================================================================== */

.contact-section {
  position: relative;
  padding: clamp(110px, 10vw, 150px) clamp(18px, 6vw, 84px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(8, 55, 39, 0.92), rgba(8, 55, 39, 0.92)),
    url("../../img/farm/farm-39.jpg") center / cover;
}

.contact-section::before {
  display: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  margin: 0 0 22px;
  color: var(--color-sun);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.04em;
  word-break: keep-all;
}

.contact-title span {
  white-space: nowrap;
}

.contact-divider {
  width: 160px;
  height: 14px;
  margin: 26px auto 28px;
  background: url("../img/patterns/minsa-divider-sand.svg") center / contain no-repeat;
  opacity: 0.55;
}

.contact-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.contact-button {
  display: inline-flex;
  min-width: 230px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.contact-button--mail {
  color: var(--color-leaf-dark);
  background: #f7efdd;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.contact-button--tel {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.contact-button--tel:hover,
.contact-button--tel:focus-visible {
  color: var(--color-leaf-dark);
  background: #fff;
}

.site-footer {
  padding: 42px clamp(18px, 6vw, 84px) 28px;
  color: var(--color-leaf-dark);
  background:
    var(--paper-texture) center / 520px auto repeat,
    var(--color-paper);
  border-top: 1px solid rgba(176, 137, 75, 0.22);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__brand img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.site-footer__name,
.site-footer__address,
.site-footer__copyright {
  margin: 0;
}

.site-footer__name {
  font-weight: 700;
}

.site-footer__address {
  color: rgba(23, 60, 45, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.site-footer__nav a,
.site-footer__contact a {
  color: inherit;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer__contact {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.site-footer__copyright {
  display: block;
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(176, 137, 75, 0.22);
  color: rgba(23, 60, 45, 0.58);
  font-size: 0.82rem;
  text-align: center;
}

/* ==========================================================================
   Theme Overrides / Section-Specific Composition
   ========================================================================== */

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 18px;
  content: "";
  background: url("../img/patterns/header-border-minsa.svg") center / auto 18px repeat-x;
  opacity: 0.75;
  pointer-events: none;
}

.brand {
  width: 150px;
  height: 60px;
}

.brand img {
  height: 56px;
}

.hero {
  min-height: clamp(560px, 82svh, 860px);
  margin-top: 0;
  border-bottom: 0;
}

.hero::before {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: calc(var(--hero-wave-height) - 38px);
  z-index: 2;
  width: min(32vw, 420px);
  height: 18px;
  content: "";
  background: url("../img/patterns/minsa-divider-sand.svg") center / auto 18px repeat-x;
  opacity: 0.42;
  pointer-events: none;
}

.hero-content,
.hero-note {
  z-index: 3;
}

.people-section {
  position: relative;
  overflow: hidden;
}

.products-section {
  position: relative;
  overflow: hidden;
  background:
    var(--paper-texture) center top / 560px auto repeat,
    var(--color-cream);
}

.people-grid {
  grid-template-columns: repeat(2, minmax(0, 500px));
  max-width: 1120px;
  margin: 0 auto;
}

.person-card {
  position: relative;
  grid-template-columns: 190px 1fr;
  min-height: 250px;
  padding: 34px 42px;
  overflow: hidden;
  border-color: rgba(222, 199, 163, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.92)),
    var(--paper-texture) center / 620px auto;
  box-shadow: 0 18px 36px rgba(66, 50, 29, 0.12);
}

.person-card img {
  width: 170px;
  box-shadow: 0 8px 20px rgba(54, 41, 22, 0.12);
}

.person-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.person-card div {
  position: relative;
  z-index: 1;
}

.product-grid {
  position: relative;
  z-index: 1;
}

.product-card__link {
  position: absolute;
  z-index: 1;
  inset: 0;
  text-decoration: none;
}

.products-section > .button,
.products-more {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .product-card {
    transition: transform 240ms ease, box-shadow 240ms ease;
  }

  .product-card img {
    transition: transform 420ms ease;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(47, 38, 20, 0.14);
  }

  .product-card:hover::before,
  .product-card:hover::after {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  .product-card:hover img {
    transform: scale(1.04);
  }
}

.news-section {
  position: relative;
  padding-top: 88px;
  padding-bottom: 48px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 239, 0.78), rgba(255, 250, 239, 0.78)),
    url("../img/decor/paper-leaf-wide.png") center top / cover;
}

.news-section .section-grid {
  align-items: start;
}

.news-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  color: var(--color-ink);
}

.news-list time {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.news-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px 22px 8px 22px;
  box-shadow: 0 18px 38px rgba(54, 41, 22, 0.14);
}

.section-bridge {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  height: 48px;
  margin: 0 auto;
}

.section-bridge::before {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(
    to right,
    rgba(193, 156, 91, 0),
    rgba(193, 156, 91, 0.44),
    rgba(193, 156, 91, 0)
  );
  transform: translateY(-50%);
}

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1020px) {
  .product-grid,
  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .story-band {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 96px;
    --hero-wave-height: 76px;
  }

  .site-header {
    justify-content: center;
    padding: 12px 18px;
    background-color: rgba(255, 253, 247, 0.98);
    background-image: var(--paper-texture);
    background-position: center top;
    background-repeat: repeat;
    background-size: 520px auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 61;
    width: 132px;
    height: 70px;
    pointer-events: auto;
  }

  .brand img {
    width: auto;
    height: 64px;
  }

  .menu-button {
    position: relative;
    z-index: 80;
    display: flex;
    width: 64px;
    height: 64px;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .site-header .menu-button {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: max(20px, env(safe-area-inset-right));
    z-index: 90;
  }

  .menu-button span:not(.sr-only) {
    width: 32px;
    height: 3px;
    background: var(--color-ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  body.menu-open .site-header .menu-button {
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open .brand {
    opacity: 0;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 75;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(86vw, 380px);
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    visibility: hidden;
    padding: calc(22px + env(safe-area-inset-top)) max(28px, env(safe-area-inset-right)) 28px 28px;
    overflow-y: auto;
    border-left: 1px solid rgba(176, 137, 75, 0.24);
    background-color: rgba(255, 253, 247, 0.98);
    background-image: var(--paper-texture);
    background-position: center top;
    background-repeat: repeat;
    background-size: 520px auto;
    color: var(--color-leaf-dark);
    font-size: 1.18rem;
    opacity: 0;
    box-shadow: -18px 0 44px rgba(18, 28, 22, 0.22);
    transform: translateX(100%);
    transition: opacity 240ms ease, visibility 240ms ease, transform 320ms ease;
    pointer-events: auto;
  }

  .site-nav__drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    margin-bottom: 28px;
  }

  .site-nav__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 58px;
    overflow: hidden;
  }

  .site-nav__logo img {
    width: auto;
    height: 56px;
    object-fit: contain;
  }

  .site-nav__close {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav__close span {
    position: absolute;
    top: 50%;
    right: 9px;
    left: 9px;
    height: 2px;
    background: var(--color-leaf-dark);
  }

  .site-nav__close span:first-child {
    transform: rotate(45deg);
  }

  .site-nav__close span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav > a {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
    border-bottom: 1px solid rgba(176, 137, 75, 0.2);
    text-align: left;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .site-nav > a::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    content: "→";
    color: var(--color-sun);
    background: transparent;
    font-size: 1rem;
    transform: none;
    transition: transform 180ms ease;
  }

  .site-nav > a:active::after {
    transform: translateX(3px);
  }

  .site-nav > a[aria-current="page"]::after {
    transform: none;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: calc(var(--header-height) + 56px) 28px calc(var(--hero-wave-height) + 36px);
  }

  .hero::before {
    right: 24px;
    bottom: calc(var(--hero-wave-height) - 30px);
    width: 44vw;
    opacity: 0.28;
  }

  .page-hero {
    min-height: 360px;
    padding: calc(var(--header-height) + 42px) 28px 48px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    line-height: 1.28;
    letter-spacing: 0.02em;
  }

  .hero-content {
    padding-inline: 0;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-slide--farm img {
    object-position: center center;
  }

  .hero-slide--vegetables img {
    object-position: 58% center;
  }

  .hero-slide--island img {
    object-position: center center;
  }

  .hero-slide--crop img {
    object-position: 52% center;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 17px 24px;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .products-page-section {
    position: relative;
    padding: 48px 18px 64px;
  }

  .products-section {
    padding-top: 56px;
  }

  .products-section .section-heading {
    margin-bottom: 34px;
  }

  .products-page-section::before,
  .products-page-section::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.34;
    pointer-events: none;
  }

  .products-page-section::before {
    top: 8px;
    left: -78px;
    width: 210px;
    aspect-ratio: 1;
    background-image: url("../img/decor/leaf-mobile-side.png");
    transform: rotate(-6deg);
  }

  .news-section .section-grid {
    gap: 28px;
  }

  .news-section {
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .section-bridge {
    width: calc(100% - 36px);
    height: 28px;
  }

  .news-list li {
    grid-template-columns: 84px 1fr;
    gap: 10px;
    font-size: 0.92rem;
  }

  .products-page-section::after {
    right: -86px;
    top: 45%;
    width: 190px;
    aspect-ratio: 1;
    background-image: url("../img/decor/leaf-mobile-side.png");
    transform: scaleX(-1) rotate(10deg);
  }

  .products-page-section .section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }

  .products-page-section .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .photo-pair {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 clamp(8px, 4vw, 18px);
  }

  .about-section::before {
    top: 56px;
    right: -160px;
    width: 420px;
    opacity: 0.12;
  }

  .about-section__inner {
    display: block;
    max-width: 430px;
    padding-bottom: 72px;
  }

  .about-section__label {
    margin-bottom: 18px;
  }

  .about-section__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.25;
  }

  .about-section__lead {
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .about-section__photos {
    min-height: 430px;
    margin-top: 40px;
    padding: 0;
  }

  .about-section__photos::before {
    bottom: 18px;
    left: -54px;
    width: 420px;
    height: 310px;
    opacity: 0.5;
  }

  .about-section__photo {
    border-width: 6px;
    box-shadow: 0 18px 40px rgba(54, 49, 22, 0.14);
  }

  .about-section__photo--main {
    top: 0;
    left: 0;
    width: 84%;
    aspect-ratio: 1 / 1.02;
    border-radius: 28px;
  }

  .about-section__photo--sub {
    top: 215px;
    right: 0;
    width: 54%;
    aspect-ratio: 1 / 0.88;
    border-radius: 22px;
  }

  .about-section__wave {
    height: 84px;
  }

  .photo-pair img {
    aspect-ratio: 1 / 1.08;
    border-radius: 28% 28% 24% 24% / 18% 18% 16% 16%;
    box-shadow: 0 18px 44px rgba(34, 49, 40, 0.14);
  }

  .photo-pair img:nth-child(2) {
    transform: none;
  }

  .about-section__photo img,
  .about-section__photo img:nth-child(2) {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .product-grid,
  .achievement-grid,
  .achievement-stats,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .products-page-section .product-slider-shell {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .products-page-section .product-slider-shell::before {
    display: none;
  }

  .products-page-section .product-grid-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .product-card,
  .achievement-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 158px;
  }

  .products-page-section .product-card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(222, 199, 163, 0.82);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(66, 50, 29, 0.12);
  }

  .product-card img,
  .achievement-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .products-page-section .product-card img {
    height: auto;
    aspect-ratio: 1 / 0.86;
  }

  .product-card div,
  .achievement-card div {
    min-height: auto;
    padding: 18px;
  }

  .products-page-section .product-card div {
    min-height: 190px;
    padding: 18px 16px 20px;
  }

  .products-page-section .product-card h3 {
    font-size: 1.45rem;
  }

  .products-page-section .product-card p {
    font-size: 0.92rem;
  }

  .product-card::before,
  .product-card::after {
    display: none;
  }

  .achievement-stats div {
    min-height: 120px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-band {
    min-height: 0;
  }

  .story-copy {
    display: block;
    padding: 54px 18px 64px;
  }

  .sp-only {
    display: block;
  }

  .story-copy h2 {
    font-size: clamp(2.125rem, 9.6vw, 2.75rem);
    line-height: 1.32;
    letter-spacing: 0.03em;
    word-break: keep-all;
  }

  .story-media {
    height: 520px;
  }

  .story-media img {
    object-position: center top;
  }

  .story-media-caption {
    top: 18%;
    right: 28px;
    font-size: 1.55rem;
  }

  .story-media::after {
    right: 0;
    bottom: 18px;
    width: 48vw;
  }

  .farm-facts {
    margin-top: 36px;
  }

  .farm-facts div {
    min-height: 92px;
    padding: 18px 18px 18px 90px;
    border-radius: 14px;
  }

  .farm-facts div::before {
    left: 20px;
    width: 58px;
    height: 58px;
  }

  .farm-facts dt::before {
    left: 34px;
    width: 30px;
    height: 30px;
  }

  .farm-facts div::after {
    display: none;
  }

  .farm-facts dd {
    font-size: clamp(1.05rem, 4.8vw, 1.25rem);
    line-height: 1.55;
    word-break: keep-all;
  }

  .person-card {
    grid-template-columns: 86px 1fr;
  }

  .person-card img {
    width: 86px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .access-section .section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-section .section-copy,
  .map-frame {
    width: 100%;
    max-width: none;
  }

  .access-section {
    padding-top: 52px;
    padding-bottom: 80px;
  }

  .access-title {
    font-size: clamp(1.875rem, 8vw, 2.375rem);
    line-height: 1.35;
  }

  .access-lead {
    margin-bottom: 34px;
  }

  .access-info {
    margin-top: 0;
  }

  .access-info-item {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .access-icon {
    width: 36px;
    height: 36px;
  }

  .access-cta {
    width: 100%;
    margin-top: 28px;
  }

  .map-frame {
    margin-top: 6px;
    padding: 10px;
    border-radius: 18px;
  }

  .map-frame iframe {
    border-radius: 14px;
  }

  .contact-section {
    padding: 76px 28px 84px;
  }

  .contact-title {
    font-size: clamp(2.125rem, 9.4vw, 2.875rem);
    line-height: 1.34;
  }

  .contact-title span {
    display: block;
  }

  .contact-actions {
    display: grid;
    gap: 14px;
    margin-top: 32px;
  }

  .contact-button {
    width: 100%;
    min-width: 0;
    height: 58px;
  }

  .site-footer {
    padding: 34px 28px 30px;
  }

  .site-footer__inner {
    display: block;
  }

  .site-footer__brand {
    margin-bottom: 24px;
  }

  .site-footer__brand img {
    height: 48px;
  }

  .site-footer__nav {
    justify-content: flex-start;
    gap: 12px 18px;
    margin: 24px 0;
  }

  .site-footer__contact {
    justify-items: start;
    gap: 6px;
  }

  .site-footer__copyright {
    margin-top: 26px;
    padding-top: 20px;
    text-align: left;
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  .product-card,
  .achievement-card {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .achievement-card img {
    aspect-ratio: 1.2;
  }
}
