:root {
  --green-deep: #173620;
  --green-mid: #2b5436;
  --gold: #b8902f;
  --gold-light: #d4af5a;
  --cream: #faf7ee;
  --text-main: #2a2a24;
  --text-sub: #5c5c54;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.9;
}

h1, h2, h3, .logo-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(23, 54, 32, 0.92);
  backdrop-filter: blur(4px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #fff;
}

.logo-text {
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: #f0ead9;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--gold-light); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,20,0.55) 0%, rgba(15,35,20,0.75) 60%, rgba(15,35,20,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 1rem;
  color: #e8e2cf;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #1b1b14;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-primary:hover { background: var(--gold-light); }

/* Sections */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 12px;
}

.eyebrow.center { text-align: center; }

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--green-deep);
}

.center { text-align: center; }

.lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.lead-sub {
  color: var(--text-sub);
  margin-bottom: 48px;
}

.section p { color: var(--text-sub); margin-bottom: 12px; }

.quote {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse .col-image { order: 2; }
.two-col.reverse .col-text { order: 1; }

.col-image img {
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(23, 54, 32, 0.18);
}

.honsakaki {
  background: #fbf3df;
  border-top: 1px solid rgba(184, 144, 47, 0.25);
  border-bottom: 1px solid rgba(184, 144, 47, 0.25);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-3 img { height: 220px; }

.gallery figure:hover img { transform: scale(1.05); }

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15,35,20,0) 0%, rgba(15,35,20,0.35) 45%, rgba(15,35,20,0.85) 100%);
  color: #f7f2e4;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 56px 20px 18px;
  text-align: left;
}

.gallery figcaption::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 10px;
}

.farm { background: #fff; }

.farm-story {
  margin-bottom: 64px;
}

.farm-story h3 {
  color: var(--green-deep);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact {
  background: var(--green-deep);
  color: #fff;
}

.contact h2 { color: #fff; }

.contact .lead-sub { color: #cfd9c9; }

.contact-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #9aa893;
}

/* Footer */
.site-footer {
  background: #0f2415;
  color: #cfd9c9;
  text-align: center;
  padding: 48px 24px 32px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

.site-footer p { margin-bottom: 4px; font-size: 0.85rem; }

.copyright {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #6f7d68;
}

/* Responsive */
@media (max-width: 860px) {
  .site-nav { display: none; }
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col.reverse .col-image,
  .two-col.reverse .col-text { order: initial; }
  .gallery-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.6rem; }
  .section { padding: 72px 20px; }
}
