:root {
  --ink: #191514;
  --paper: #fffaf7;
  --muted: #6f6761;
  --rose: #b51635;
  --rose-deep: #6e1022;
  --leaf: #2f6748;
  --leaf-dark: #153726;
  --line: rgba(25, 21, 20, 0.14);
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

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

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

.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f4b342, var(--leaf));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  padding: 12px 16px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 247, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(25, 21, 20, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: -4px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.08);
  will-change: transform;
}

.hero-media img {
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.78), rgba(10, 8, 7, 0.18) 58%, rgba(10, 8, 7, 0.56)),
    linear-gradient(0deg, rgba(10, 8, 7, 0.62), rgba(10, 8, 7, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 94svh;
  margin: 0 auto;
  padding: 112px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7b166;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.split-content h2,
.product-copy h2,
.journal-inner h2,
.access-copy h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 900;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  border-color: var(--rose);
  background: var(--rose);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero-status {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-status span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.intro-band,
.method,
.gallery,
.journal,
.access {
  padding: 110px 20px;
}

.intro-band {
  background: var(--paper);
}

.section-copy,
.intro-grid,
.method-track,
.gallery-grid,
.journal-inner,
.access {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-copy h2,
.split-content h2,
.product-copy h2,
.journal-inner h2,
.access-copy h2 {
  font-size: clamp(34px, 5vw, 66px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 48px;
  margin-top: 48px;
}

.large-text {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.5;
}

.intro-note {
  align-self: end;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.intro-note span {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.intro-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.visual-split,
.products {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 760px;
}

.split-image,
.product-media {
  min-height: 560px;
  overflow: hidden;
}

.split-content,
.product-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 96px);
}

.split-content {
  background: var(--leaf-dark);
  color: var(--white);
}

.split-content p:not(.eyebrow),
.product-copy p,
.journal-inner p,
.contact-panel p {
  color: inherit;
  opacity: 0.78;
}

.farm-film {
  padding: 110px 20px;
  background: #0e1210;
  color: var(--white);
}

.film-stage {
  position: relative;
  width: min(100%, 1320px);
  height: min(76svh, 760px);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.film-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  animation: filmFrame 18s infinite;
}

.film-frame img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
  animation: slowPush 18s linear infinite;
}

.frame-a {
  animation-delay: 0s;
}

.frame-b {
  animation-delay: 6s;
}

.frame-c {
  animation-delay: 12s;
}

.frame-b img {
  animation-delay: 6s;
}

.frame-c img {
  animation-delay: 12s;
}

.film-scan {
  position: absolute;
  inset: -20%;
  z-index: 2;
  background: linear-gradient(112deg, transparent 0 36%, rgba(255, 255, 255, 0.2) 46%, transparent 58% 100%);
  mix-blend-mode: screen;
  opacity: 0.35;
  transform: translateX(-55%);
  animation: lightScan 8s ease-in-out infinite;
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(circle at 78% 62%, rgba(181, 22, 53, 0.22), transparent 20%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 34%, rgba(0, 0, 0, 0.25));
}

.film-caption {
  position: absolute;
  right: clamp(18px, 6vw, 72px);
  bottom: clamp(20px, 6vw, 72px);
  z-index: 4;
  max-width: 560px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(14, 18, 16, 0.44);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.film-caption h2 {
  margin: 0;
  font-size: clamp(30px, 4.7vw, 62px);
  line-height: 1.12;
}

.film-caption p:last-child {
  margin: 18px 0 0;
  opacity: 0.78;
}

.method {
  background: #f1f5ee;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
}

.method-item {
  min-height: 320px;
  padding: 34px;
  background: #f8fbf5;
}

.method-item span {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 34px;
}

.method-item h3 {
  margin: 58px 0 14px;
  font-size: 24px;
}

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

.products {
  background: var(--ink);
  color: var(--white);
}

.product-media {
  order: 2;
}

.price-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.price-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  background: var(--ink);
}

.price-list dt {
  color: #d7b166;
  font-weight: 900;
}

.price-list dd {
  margin: 0;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(25, 21, 20, 0.72);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 12px;
}

.journal {
  position: relative;
  overflow: hidden;
  background: var(--rose-deep);
  color: var(--white);
}

.marquee {
  position: absolute;
  top: 28px;
  left: 0;
  display: flex;
  width: max-content;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.journal-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: calc((100% - min(100%, var(--max))) / 2);
}

.access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 30px;
  width: min(100%, 1320px);
  min-height: 720px;
  align-items: stretch;
}

.map-wrap {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: hidden;
  background: var(--leaf-dark);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.08);
}

.map-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 55, 38, 0.08), rgba(21, 55, 38, 0.34)),
    radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(14, 18, 16, 0.28) 72%);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(181, 22, 53, 0.52);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: pinPulse 2.6s ease-out infinite;
}

.map-pin span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 10px rgba(181, 22, 53, 0.18);
  transform: translate(-50%, -50%);
}

.access-card {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.86)),
    url("assets/arrangement.jpg") center / cover;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 30px 80px rgba(25, 21, 20, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.access-card h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.address {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-panel {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(25, 21, 20, 0.1);
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel a {
  display: block;
  margin: 6px 0 14px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes filmFrame {
  0% {
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  31% {
    opacity: 1;
  }

  39%,
  100% {
    opacity: 0;
  }
}

@keyframes slowPush {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.16) translateX(-2%);
  }
}

@keyframes lightScan {
  0%,
  38% {
    transform: translateX(-55%);
  }

  68% {
    transform: translateX(55%);
  }

  100% {
    transform: translateX(55%);
  }
}

@keyframes pinPulse {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.62);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 32px));
    gap: 0;
    padding: 10px;
    background: rgba(255, 250, 247, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(25, 21, 20, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 92svh;
  }

  .intro-grid,
  .visual-split,
  .products,
  .access {
    grid-template-columns: 1fr;
  }

  .visual-split,
  .products {
    min-height: 0;
  }

  .farm-film {
    padding: 80px 14px;
  }

  .film-stage {
    height: 78svh;
    min-height: 600px;
  }

  .film-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .product-media {
    order: 0;
  }

  .method-track {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .journal-inner {
    margin: 0 auto;
  }

  .access {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(calc(100% - 20px), 1240px);
    min-height: 60px;
    padding: 9px 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 94px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .hero-status {
    right: auto;
    left: 14px;
    bottom: 16px;
  }

  .intro-band,
  .method,
  .gallery,
  .journal,
  .access {
    padding: 76px 14px;
  }

  .split-content,
  .product-copy {
    padding: 56px 18px;
  }

  .split-image,
  .product-media {
    min-height: 420px;
  }

  .film-stage {
    min-height: 540px;
  }

  .film-caption {
    padding: 20px;
  }

  .map-wrap {
    min-height: 430px;
    aspect-ratio: 4 / 5;
  }

  .map-wrap iframe {
    filter: saturate(0.8) contrast(1.12);
  }

  .map-vignette {
    background:
      linear-gradient(180deg, rgba(21, 55, 38, 0.1), rgba(21, 55, 38, 0.26)),
      radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(14, 18, 16, 0.34) 76%);
  }

  .map-pin {
    top: 48%;
    width: 78px;
    height: 78px;
    border-color: rgba(181, 22, 53, 0.68);
  }

  .map-pin span {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 9px rgba(181, 22, 53, 0.2);
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-panel a {
    font-size: 31px;
  }

  .site-footer {
    display: grid;
  }
}

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