:root {
  --green-900: #123f24;
  --green-800: #1d5b34;
  --green-600: #4f7f39;
  --leaf: #91ad58;
  --cream: #fbf7ee;
  --cream-strong: #f2eadb;
  --earth: #8a633b;
  --orange: #e8891d;
  --yellow: #f2c766;
  --text: #263428;
  --muted: #5d6a5c;
  --line: rgba(29, 91, 52, 0.15);
  --shadow: 0 18px 44px rgba(39, 59, 31, 0.14);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.8;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(251, 247, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--green-900);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-800);
  background: #fffdf6;
  border: 1px solid rgba(29, 91, 52, 0.2);
  border-radius: 50%;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1.25;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.72em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 30px);
  color: var(--green-900);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-nav a:hover {
  color: var(--orange);
}

.header-cta {
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--green-800);
  border-radius: 999px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 11vw, 112px) clamp(18px, 4vw, 32px);
}

.hero {
  max-width: none;
  padding-top: clamp(26px, 8vw, 56px);
}

.hero-content {
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
  gap: clamp(28px, 6vw, 58px);
}

.hero-copy {
  align-self: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--green-900);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

h1 {
  max-width: 9.8em;
  font-size: clamp(33px, 10vw, 68px);
}

h2 {
  font-size: clamp(29px, 7.4vw, 48px);
}

h3 {
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.55;
}

.hero-copy p,
.section-copy p,
.vision-inner p,
.contact-copy p,
.section-heading p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(16px, 4.2vw, 18px);
}

.hero-copy p {
  max-width: 42em;
  margin-top: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-width: min(100%, 212px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary,
.button-submit {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(232, 137, 29, 0.28);
}

.button-secondary {
  color: var(--green-900);
  background: #fffdf7;
  border: 1px solid rgba(29, 91, 52, 0.25);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: 65% center;
}

.split-section {
  display: grid;
  gap: clamp(30px, 6vw, 64px);
}

.section-label {
  margin-bottom: 12px;
  color: var(--earth);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.body-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.rounded-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.points-section {
  max-width: none;
  background: #fffdf7;
}

.points-section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
  text-align: center;
}

.point-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.point-card {
  display: grid;
  gap: 12px;
  padding: 26px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(39, 59, 31, 0.08);
}

.point-card p {
  color: var(--muted);
}

.point-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.vision-section {
  padding: clamp(70px, 12vw, 120px) clamp(18px, 4vw, 32px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 63, 36, 0.92), rgba(18, 63, 36, 0.7)),
    url("/assets/images/hero-harvest.png") center / cover;
}

.vision-inner {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 30px;
}

.vision-inner h2,
.vision-inner p {
  color: #fff;
}

.vision-inner p {
  opacity: 0.9;
}

.vision-note {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.95);
  border-radius: var(--radius);
  color: var(--green-900);
}

.vision-note strong {
  font-size: 20px;
}

.vision-note span {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(39, 59, 31, 0.1);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(2.04);
}

.crop-work img {
  transform-origin: 0 0;
}

.crop-harvest img {
  transform-origin: 100% 0;
}

.crop-meal img {
  transform-origin: 0 100%;
}

.crop-group img {
  transform-origin: 100% 100%;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(18, 63, 36, 0.84);
  border-radius: 999px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(62px, 11vw, 112px) clamp(18px, 4vw, 32px);
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 5vw, 32px);
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 6px;
}

label,
.form-note,
.turnstile-placeholder {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
}

label {
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(29, 91, 52, 0.24);
  border-radius: var(--radius);
  font: 16px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 199, 102, 0.75);
  outline-offset: 3px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.privacy-check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.field-error {
  min-height: 1.4em;
  color: #b7381f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.turnstile-placeholder {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(145, 173, 88, 0.12);
  border: 1px dashed rgba(29, 91, 52, 0.35);
  border-radius: var(--radius);
  font-size: 14px;
}

.button-submit {
  width: 100%;
  min-height: 54px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-success {
  padding: 14px 16px;
  color: var(--green-900);
  background: rgba(145, 173, 88, 0.18);
  border: 1px solid rgba(79, 127, 57, 0.35);
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 44px) 24px;
  color: #fff;
  background: var(--green-900);
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.site-footer p,
.footer-nav {
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav {
  display: grid;
  gap: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  font-size: 13px;
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 17px;
  }

  h1 {
    font-size: 31px;
  }

  .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    font-size: 14px;
  }
}

@media (min-width: 600px) {
  .point-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .hero-content,
  .split-section,
  .contact-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  h1 {
    max-width: 12em;
    font-size: clamp(45px, 3.8vw, 58px);
  }

  .hero-media img {
    aspect-ratio: 1.08 / 1;
  }

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

  .vision-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 1.08fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
