/* =====================================================
   076 〇〇 Distillery — Craft Gin
   Botanicals to Bottle. Brass / Botanical Green / Cream / Jet
   Cormorant Infant × Inter × Italiana
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --brass: #b89a5c;
  --brass-light: #d4b878;
  --green: #2d4a32;
  --green-deep: #1a2d1f;
  --cream: #f0e9d6;
  --cream-soft: #f7f1de;
  --jet: #0a0a08;
  --ink: #15140f;
  --line: rgba(184, 154, 92, 0.22);
  --line-soft: rgba(45, 74, 50, 0.18);

  --serif: 'Cormorant Infant', 'Cormorant Garamond', serif;
  --display: 'Italiana', 'Cormorant Infant', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s ease, color .3s ease; }
a:hover { opacity: .65; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 22px; } }

/* ─── DEMO BAR ─────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(240, 233, 214, 0.4);
  font-family: var(--sans); letter-spacing: 0.04em;
}
.demo-badge {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(184, 154, 92, 0.18); color: var(--brass-light);
  padding: 3px 10px; flex-shrink: 0;
}
.demo-link { color: var(--brass-light); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(240, 233, 214, 0.18); font-size: 0.62rem; margin-left: 4px; }
@media (max-width: 640px) { .demo-copy { display: none; } }

/* ─── HEADER ────────────────────────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 8, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 6px; color: var(--cream); }
.is-scrolled .brand, .site-header.menu-active .brand { color: var(--cream); }
.brand-mark {
  font-family: var(--display);
  font-size: 1.65rem; letter-spacing: 0.03em; font-style: italic;
}
.brand-en {
  font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--brass-light); font-weight: 500;
}

.header-nav {
  display: flex; align-items: center; gap: 38px;
}
.header-nav a {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 500;
  color: var(--cream); position: relative; padding: 6px 0;
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--brass-light);
  transition: width .4s ease;
}
.header-nav a:hover::after { width: 100%; }
.header-nav a.header-cta {
  background: var(--brass); color: var(--jet);
  padding: 10px 22px; letter-spacing: 0.22em;
  border: 1px solid var(--brass);
  transition: background .3s ease, color .3s ease;
}
.header-nav a.header-cta::after { display: none; }
.header-nav a.header-cta:hover {
  background: transparent; color: var(--brass-light); opacity: 1;
}

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1100;
}
.mobile-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1px; background: var(--cream);
  transition: transform .35s ease, top .35s ease, opacity .25s ease;
}
.mobile-toggle span:nth-child(1) { top: 16px; }
.mobile-toggle span:nth-child(2) { top: 22px; }
.mobile-toggle span:nth-child(3) { top: 28px; }
.mobile-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .mobile-toggle { display: block; }
  .header-nav {
    position: fixed; inset: 0;
    background: var(--green-deep);
    flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    z-index: 1000;
    transform: translateY(-100%); transition: transform .55s cubic-bezier(.83,.05,.31,1);
  }
  .header-nav.is-open { transform: translateY(0); }
  .header-nav a { font-size: 0.95rem; letter-spacing: 0.32em; color: var(--cream); }
  .header-nav a.header-cta { padding: 14px 28px; }
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .site-header.menu-active {
    background: var(--green-deep) !important;
  }
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--jet);
  overflow: hidden;
  padding: 180px 0 100px;
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(184, 154, 92, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(45, 74, 50, 0.45) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a08 0%, #14140d 100%);
}
.hero-bg.has-image {
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-bg.has-image::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.45) 0%, rgba(10, 10, 8, 0.65) 50%, rgba(10, 10, 8, 0.85) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(45, 74, 50, 0.35) 0%, transparent 70%);
}

/* Botanical drift SVGs (絶対配置で散らす) */
.botanical-drift {
  position: absolute; pointer-events: none; opacity: 0.55;
  animation-name: botanicalDrift; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
.botanical-drift.bd-1 { top: 12%; left: 8%; width: 130px; animation-duration: 14s; animation-delay: 0s; }
.botanical-drift.bd-2 { top: 28%; right: 10%; width: 100px; animation-duration: 16s; animation-delay: -3s; opacity: 0.45; }
.botanical-drift.bd-3 { bottom: 18%; left: 22%; width: 90px; animation-duration: 18s; animation-delay: -6s; opacity: 0.4; }
.botanical-drift.bd-4 { bottom: 32%; right: 18%; width: 150px; animation-duration: 20s; animation-delay: -2s; opacity: 0.5; }
.botanical-drift.bd-5 { top: 60%; left: 4%; width: 70px; animation-duration: 12s; animation-delay: -5s; opacity: 0.38; }
@keyframes botanicalDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(7deg); }
  50% { transform: translate(-10px, 18px) rotate(-5deg); }
  75% { transform: translate(8px, -12px) rotate(4deg); }
}

.hero-content {
  position: relative; z-index: 4;
  max-width: 1280px; margin: 0 auto; padding: 0 36px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brass-light); font-weight: 500; margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 48px; height: 1px; background: var(--brass);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-title .accent {
  color: var(--brass-light);
  font-style: italic;
}
.hero-title .stop {
  color: var(--brass);
  font-style: normal;
}

.hero-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.5em;
  color: rgba(240, 233, 214, 0.78);
  margin-bottom: 50px;
}

.hero-meta-row {
  display: flex; align-items: flex-end; gap: 60px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 36px;
  max-width: 880px;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-num {
  font-family: var(--display);
  font-size: 2.4rem; line-height: 1; color: var(--brass-light);
  font-weight: 400;
}
.hero-meta-label {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(240, 233, 214, 0.55); font-weight: 500;
}
.hero-meta-divider {
  width: 1px; height: 40px; background: var(--line);
  align-self: center;
}
.hero-cta-row {
  margin-top: 48px; display: flex; gap: 22px; flex-wrap: wrap;
}
.hero-cta {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; padding: 16px 32px;
  border: 1px solid var(--brass);
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 14px;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.hero-cta.primary {
  background: var(--brass); color: var(--jet);
}
.hero-cta:hover {
  background: var(--brass-light); color: var(--jet); border-color: var(--brass-light); opacity: 1;
}
.hero-cta-arrow { transition: transform .35s ease; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(6px); }

/* Hero side label (vertical) */
.hero-side-label {
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(184, 154, 92, 0.6); font-weight: 500;
  writing-mode: vertical-rl; z-index: 5;
}
.hero-side-label::before {
  content: ''; display: block; width: 1px; height: 60px;
  background: rgba(184, 154, 92, 0.35); margin: 0 auto 18px;
}

@media (max-width: 768px) {
  .hero { padding: 150px 0 80px; }
  .hero-meta-divider { display: none; }
  .hero-meta-row { gap: 30px; }
  .hero-side-label { display: none; }
}

/* ─── SECTION COMMON ────────────────────────── */
.section { padding: 130px 0; position: relative; }
.section-tight { padding: 90px 0; }
.section.dark {
  background: var(--green-deep); color: var(--cream);
}
.section.dark .section-eyebrow { color: var(--brass-light); }
.section.dark .section-eyebrow::before,
.section.dark .section-eyebrow::after { background: var(--brass); }

.section-eyebrow {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--brass);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.012em;
  color: var(--ink); font-style: italic;
  margin-bottom: 18px;
}
.section.dark .section-title { color: var(--cream); }
.section-title em { color: var(--brass); font-style: italic; }
.section-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 0.95rem; letter-spacing: 0.45em;
  color: rgba(21, 20, 15, 0.55);
  margin-bottom: 40px;
}
.section.dark .section-jp { color: rgba(240, 233, 214, 0.55); }

/* ─── REVEAL ANIMATION ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

/* ─── NEWS ─────────────────────────────────── */
.news-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.news-item {
  display: grid;
  grid-template-columns: 110px 90px 1fr 24px;
  gap: 28px; align-items: center;
  padding: 22px 6px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--sans);
  transition: background .35s ease, padding-left .35s ease;
}
.news-item:hover { background: rgba(184, 154, 92, 0.06); padding-left: 18px; opacity: 1; }
.news-date { font-size: 0.78rem; letter-spacing: 0.14em; color: var(--green); font-weight: 500; }
.news-cat {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  background: var(--green); color: var(--cream);
  padding: 4px 10px; text-align: center; font-weight: 500;
  width: fit-content;
}
.news-title { font-size: 0.92rem; color: var(--ink); line-height: 1.55; font-weight: 400; }
.news-arrow { font-family: var(--display); color: var(--brass); font-size: 1.1rem; text-align: right; }
@media (max-width: 768px) {
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
  .news-arrow { display: none; }
}

/* ─── ABOUT ────────────────────────────────── */
.about { background: var(--cream-soft); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 88px; align-items: center;
}
.about-image-wrap {
  position: relative; aspect-ratio: 4 / 5;
  background: var(--green);
  overflow: hidden;
}
.about-image-wrap::before {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid rgba(240, 233, 214, 0.25);
  z-index: 2; pointer-events: none;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-wrap[data-img]::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/about.jpg');
  background-size: cover; background-position: center;
}
.about-image-tag {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass-light); z-index: 3;
}
.about-text p {
  font-size: 0.96rem; color: rgba(21, 20, 15, 0.78); margin-bottom: 22px; line-height: 1.92;
}
.about-quote {
  font-family: var(--display); font-size: 1.5rem; line-height: 1.4;
  color: var(--green); font-style: italic;
  border-left: 2px solid var(--brass);
  padding: 12px 0 12px 24px; margin: 32px 0;
}
.about-sign {
  font-family: var(--display); font-size: 1.1rem; font-style: italic;
  color: var(--brass); margin-top: 28px;
}
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── PROCESS (5段階・縦長ストーリーテリング) ─── */
.process { background: var(--green-deep); color: var(--cream); padding: 140px 0; position: relative; overflow: hidden; }
.process-head { text-align: center; margin-bottom: 100px; max-width: 720px; margin-left: auto; margin-right: auto; }
.process-track {
  position: relative;
  max-width: 920px; margin: 0 auto;
}
.process-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, transparent, var(--brass) 12%, var(--brass) 88%, transparent);
  transform: translateX(-50%);
}
.process-step {
  position: relative;
  display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0;
  margin-bottom: 90px; align-items: center;
}
.process-step:last-child { margin-bottom: 0; }
.process-step:nth-child(even) .process-text { grid-column: 3; text-align: left; padding-left: 30px; }
.process-step:nth-child(even) .process-visual { grid-column: 1; text-align: right; padding-right: 30px; }
.process-step:nth-child(odd) .process-text { padding-right: 30px; text-align: right; }
.process-step:nth-child(odd) .process-visual { grid-column: 3; padding-left: 30px; text-align: left; }
.process-dot {
  grid-column: 2; justify-self: center;
  width: 14px; height: 14px; background: var(--brass);
  border-radius: 50%; position: relative; z-index: 2;
  box-shadow: 0 0 0 5px rgba(184, 154, 92, 0.18), 0 0 0 10px rgba(184, 154, 92, 0.08);
}
.process-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.95rem; letter-spacing: 0.18em; color: var(--brass-light);
  margin-bottom: 10px;
}
.process-name {
  font-family: var(--display); font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px); color: var(--cream);
  margin-bottom: 6px; line-height: 1;
}
.process-name-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 0.85rem; letter-spacing: 0.4em;
  color: var(--brass-light); margin-bottom: 14px;
}
.process-desc {
  font-size: 0.88rem; color: rgba(240, 233, 214, 0.7); line-height: 1.85;
  font-weight: 300;
}
.process-visual {
  font-family: var(--display); font-style: italic;
  font-size: clamp(72px, 11vw, 144px); line-height: 0.85;
  color: rgba(184, 154, 92, 0.18);
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .process-track::before { left: 28px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 18px; margin-bottom: 60px; }
  .process-step:nth-child(odd) .process-text,
  .process-step:nth-child(even) .process-text {
    grid-column: 2; text-align: left; padding: 0;
  }
  .process-step:nth-child(odd) .process-visual,
  .process-step:nth-child(even) .process-visual { display: none; }
  .process-dot { grid-column: 1; justify-self: center; }
}

/* ─── BOTANICALS GRID (10種) ─── */
.botanicals { background: var(--cream); }
.botanicals-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: end; }
.botanicals-head p { font-size: 0.95rem; color: rgba(21, 20, 15, 0.7); line-height: 1.92; max-width: 460px; }
.botanicals-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.botanical-cell {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 38px 24px 32px;
  background: var(--cream-soft);
  transition: background .4s ease;
  display: flex; flex-direction: column; gap: 6px; min-height: 220px;
  position: relative; overflow: hidden;
}
.botanical-cell:hover { background: var(--cream); }
.botanical-cell:nth-child(5n) { border-right: none; }
.botanical-cell-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.78rem; letter-spacing: 0.18em; color: var(--brass);
}
.botanical-cell-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 1.4rem; color: var(--green); font-weight: 500;
  letter-spacing: 0.06em; line-height: 1.3; margin-top: 8px;
}
.botanical-cell-en {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(45, 74, 50, 0.65); font-weight: 500; margin-top: auto;
}
.botanical-cell-line {
  position: absolute; left: 24px; right: 24px; bottom: 0;
  height: 2px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.7,.05,.31,1);
}
.botanical-cell:hover .botanical-cell-line { transform: scaleX(1); }
@media (max-width: 980px) {
  .botanicals-head { grid-template-columns: 1fr; gap: 24px; }
  .botanicals-grid { grid-template-columns: repeat(2, 1fr); }
  .botanical-cell { min-height: 170px; padding: 26px 20px; }
  .botanical-cell:nth-child(5n) { border-right: 1px solid var(--line); }
  .botanical-cell:nth-child(2n) { border-right: none; }
}

/* ─── BOTTLES ─── */
.bottles { background: var(--green-deep); color: var(--cream); padding: 130px 0; }
.bottles-head { max-width: 720px; margin: 0 auto 90px; text-align: center; }
.bottles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bottle-card {
  background: rgba(240, 233, 214, 0.04);
  border: 1px solid rgba(184, 154, 92, 0.2);
  padding: 0;
  transition: border-color .4s ease, transform .5s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.bottle-card:hover { border-color: var(--brass); transform: translateY(-6px); }
.bottle-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, rgba(45, 74, 50, 0.5), rgba(10, 10, 8, 0.7));
  position: relative;
  overflow: hidden;
}
.bottle-image::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/bottle-default.jpg');
  background-size: cover; background-position: center;
  opacity: 0.95;
}
.bottle-card[data-bottle="origin"] .bottle-image::after { background-image: url('../images/bottle-origin.jpg'); }
.bottle-card[data-bottle="harvest"] .bottle-image::after { background-image: url('../images/bottle-harvest.jpg'); }
.bottle-card[data-bottle="shibuya"] .bottle-image::after { background-image: url('../images/bottle-shibuya.jpg'); }
.bottle-card[data-bottle="nightcap"] .bottle-image::after { background-image: url('../images/bottle-nightcap.jpg'); }
.bottle-image-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--brass); color: var(--jet);
  padding: 4px 10px; font-weight: 600;
}
.bottle-body { padding: 28px 24px 30px; }
.bottle-name {
  font-family: var(--display); font-style: italic;
  font-size: 1.85rem; line-height: 1; color: var(--cream);
  margin-bottom: 6px;
}
.bottle-abv {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-light); font-weight: 500; margin-bottom: 18px;
}
.bottle-notes {
  font-size: 0.82rem; color: rgba(240, 233, 214, 0.65);
  line-height: 1.75; margin-bottom: 22px;
}
.bottle-tasting {
  border-top: 1px solid rgba(184, 154, 92, 0.18); padding-top: 16px;
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 0.75rem; letter-spacing: 0.18em; color: var(--brass-light);
  line-height: 1.7;
}
@media (max-width: 980px) {
  .bottles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .bottles-grid { grid-template-columns: 1fr; }
}

/* ─── VISIT CTA BAND ─── */
.visit-band {
  background: var(--jet); color: var(--cream);
  padding: 110px 0; position: relative; overflow: hidden;
  text-align: center;
}
.visit-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(184, 154, 92, 0.18) 0%, transparent 60%);
}
.visit-band-inner { position: relative; z-index: 2; }
.visit-band-eyebrow {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 28px;
}
.visit-band-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(40px, 6vw, 86px); line-height: 1; margin-bottom: 22px;
}
.visit-band-title em { color: var(--brass); font-style: italic; }
.visit-band-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 0.95rem; letter-spacing: 0.45em;
  color: rgba(240, 233, 214, 0.6); margin-bottom: 48px;
}
.visit-band-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream); border-bottom: 1px solid var(--brass);
  padding: 10px 4px; transition: gap .35s ease;
}
.visit-band-cta:hover { gap: 24px; opacity: 1; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink); color: rgba(240, 233, 214, 0.6);
  padding: 90px 0 36px; border-top: 1px solid var(--line);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px; padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--display); font-style: italic;
  font-size: 1.85rem; color: var(--cream); margin-bottom: 8px; line-height: 1;
}
.footer-brand-en {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 22px;
}
.footer-info { font-size: 0.82rem; line-height: 1.85; }
.footer-col-title {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass-light); font-weight: 500; margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(240, 233, 214, 0.55); }
.footer-links a:hover { color: var(--brass-light); opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; color: rgba(240, 233, 214, 0.32);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── PAGE HEADER (sub pages) ─── */
.page-hero {
  background: var(--green-deep); color: var(--cream);
  padding: 200px 0 120px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 30%, rgba(184, 154, 92, 0.1) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.page-hero-eyebrow::before {
  content: ''; width: 48px; height: 1px; background: var(--brass);
}
.page-hero-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(44px, 7vw, 110px); line-height: 1; margin-bottom: 22px;
}
.page-hero-jp {
  font-family: 'Shippori Mincho', var(--serif);
  font-size: 0.95rem; letter-spacing: 0.45em; color: rgba(240, 233, 214, 0.55);
}

/* ─── ABOUT PAGE BLOCKS ─── */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  margin-bottom: 100px;
}
.story-block:nth-child(even) .story-image { order: 2; }
.story-image-frame {
  aspect-ratio: 4 / 5; background: var(--green); position: relative; overflow: hidden;
}
.story-image-frame::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.story-image-frame[data-img="atelier"]::before { background-image: url('../images/atelier.jpg'); }
.story-image-frame[data-img="copper"]::before { background-image: url('../images/copper.jpg'); }
.story-image-frame[data-img="botanical-shelf"]::before { background-image: url('../images/botanical-shelf.jpg'); }
.story-text p { font-size: 0.95rem; line-height: 1.92; color: rgba(21, 20, 15, 0.78); margin-bottom: 18px; }
.story-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.18em; color: var(--brass); margin-bottom: 12px;
}
.story-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; color: var(--ink);
  margin-bottom: 22px;
}
@media (max-width: 980px) {
  .story-block { grid-template-columns: 1fr; gap: 32px; }
  .story-block:nth-child(even) .story-image { order: 0; }
}

/* ─── TIMELINE (about) ─── */
.timeline-list { list-style: none; padding: 0; }
.timeline-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 36px;
  padding: 26px 0; border-bottom: 1px solid var(--line-soft);
}
.timeline-year {
  font-family: var(--display); font-style: italic;
  font-size: 1.4rem; color: var(--brass);
}
.timeline-content h4 {
  font-family: var(--display); font-style: italic;
  font-size: 1.3rem; color: var(--ink); margin-bottom: 6px;
}
.timeline-content p { font-size: 0.88rem; color: rgba(21, 20, 15, 0.65); line-height: 1.75; }
@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── VISIT (recruit) PAGE ─── */
.tour-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tour-card {
  background: var(--cream-soft); border: 1px solid var(--line);
  padding: 36px 32px; transition: background .35s ease, border-color .35s ease;
}
.tour-card:hover { background: var(--cream); border-color: var(--brass); }
.tour-card-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.18em; color: var(--brass); margin-bottom: 14px;
}
.tour-card-name {
  font-family: var(--display); font-style: italic;
  font-size: 1.7rem; line-height: 1.1; color: var(--ink); margin-bottom: 10px;
}
.tour-card-meta {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 18px;
}
.tour-card-desc {
  font-size: 0.86rem; color: rgba(21, 20, 15, 0.7); line-height: 1.8; margin-bottom: 22px;
}
.tour-card-price {
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; color: var(--green);
  border-top: 1px solid var(--line-soft); padding-top: 14px;
}
.tour-card-price small {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  display: block; margin-bottom: 4px; color: rgba(45, 74, 50, 0.55); font-weight: 500;
  font-style: normal;
}
@media (max-width: 980px) {
  .tour-card-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start;
}
.contact-info-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px; margin-top: 22px;
}
.contact-info-block:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.contact-info-label {
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--display); font-style: italic;
  font-size: 1.3rem; color: var(--ink); line-height: 1.5;
}
.contact-info-sub { font-size: 0.85rem; color: rgba(21, 20, 15, 0.6); margin-top: 4px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: flex; flex-direction: column; gap: 8px;
}
.form-row label {
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  border: none; border-bottom: 1px solid var(--line);
  background: transparent; padding: 12px 0;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  outline: none; transition: border-color .3s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--brass); }
.form-row textarea { resize: vertical; min-height: 140px; }
.form-submit {
  margin-top: 14px; padding: 16px 28px; align-self: flex-start;
  background: var(--green); color: var(--cream);
  border: 1px solid var(--green);
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.form-submit:hover { background: var(--brass); color: var(--jet); border-color: var(--brass); }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── PRIVACY / TEXT BLOCK ─── */
.text-block { max-width: 780px; }
.text-block h2 {
  font-family: var(--display); font-style: italic;
  font-size: 1.6rem; color: var(--ink); margin: 36px 0 14px;
}
.text-block h2:first-child { margin-top: 0; }
.text-block p {
  font-size: 0.92rem; line-height: 1.92; color: rgba(21, 20, 15, 0.78); margin-bottom: 16px;
}
.text-block ul { padding-left: 22px; margin-bottom: 18px; }
.text-block li { font-size: 0.9rem; line-height: 1.85; color: rgba(21, 20, 15, 0.75); }

/* ─── NEWS LIST PAGE ─── */
.journal-list { display: flex; flex-direction: column; }
.journal-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--line-soft);
  transition: padding-left .35s ease;
}
.journal-item:hover { padding-left: 14px; }
.journal-thumb {
  aspect-ratio: 4 / 3; background: var(--green); position: relative; overflow: hidden;
}
.journal-thumb::after {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: url('../images/journal-default.jpg');
}
.journal-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.journal-date {
  font-family: var(--display); font-style: italic;
  font-size: 0.95rem; color: var(--brass);
}
.journal-cat {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  background: var(--green); color: var(--cream);
  padding: 4px 10px; font-weight: 500;
}
.journal-title {
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; line-height: 1.3; color: var(--ink); margin-bottom: 10px;
}
.journal-excerpt {
  font-size: 0.88rem; line-height: 1.85; color: rgba(21, 20, 15, 0.65);
}
@media (max-width: 768px) {
  .journal-item { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── ARTICLE (single) ─── */
.article {
  max-width: 780px; margin: 0 auto;
}
.article-meta {
  display: flex; gap: 14px; align-items: center; margin-bottom: 22px;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
}
.article-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15; color: var(--ink);
  margin-bottom: 28px;
}
.article-body p {
  font-size: 0.96rem; line-height: 1.95; color: rgba(21, 20, 15, 0.82); margin-bottom: 22px;
}
.article-body h3 {
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; color: var(--ink); margin: 36px 0 14px;
}
.article-image {
  width: 100%; aspect-ratio: 16 / 9; background: var(--green);
  margin: 36px 0;
}

/* ─── BACK LINK ─── */
.back-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
  margin-top: 50px;
}
.back-link:hover { color: var(--brass); opacity: 1; }

/* ─── COLLECTION ROW (works.html) ────────────── */
.collection-row {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--line-soft);
}
.collection-row:last-child { border-bottom: none; }
.collection-row:nth-child(even) .collection-bottle { order: 2; }
.collection-bottle {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184, 154, 92, 0.4), transparent 55%),
    linear-gradient(180deg, rgba(45, 74, 50, 0.6), var(--jet));
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 22px;
}
.collection-bottle::before {
  content: '';
  position: absolute;
  left: 50%; top: 16%; bottom: 20%;
  transform: translateX(-50%);
  width: 35%;
  background: linear-gradient(180deg, rgba(240, 233, 214, 0.12) 0%, rgba(184, 154, 92, 0.35) 30%, rgba(45, 74, 50, 0.6) 100%);
  border: 1px solid rgba(184, 154, 92, 0.4);
  border-radius: 4px 4px 12px 12px;
}
.collection-bottle::after {
  content: '';
  position: absolute;
  left: 50%; top: 10%;
  transform: translateX(-50%);
  width: 13%; height: 7%;
  background: rgba(184, 154, 92, 0.5);
  border: 1px solid rgba(184, 154, 92, 0.6);
}
.collection-tag {
  position: relative; z-index: 2;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass-light);
}
.collection-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.95rem; letter-spacing: 0.18em; color: var(--brass);
  margin-bottom: 14px;
}
.collection-name {
  font-family: var(--display); font-style: italic;
  font-size: clamp(40px, 5vw, 72px); line-height: 1; color: var(--ink);
  margin-bottom: 18px;
}
.collection-spec {
  display: flex; flex-wrap: wrap; gap: 28px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 0; margin-bottom: 28px;
}
.collection-spec span {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(21, 20, 15, 0.55); font-weight: 500;
}
.collection-spec strong {
  font-family: var(--display); font-style: italic;
  font-size: 1.3rem; color: var(--ink); font-weight: 400;
  text-transform: none; letter-spacing: 0.02em;
}
.collection-desc {
  font-size: 0.95rem; color: rgba(21, 20, 15, 0.78); line-height: 1.95;
  margin-bottom: 16px;
}
.collection-tasting {
  font-family: var(--display); font-style: italic;
  font-size: 1.2rem; color: var(--green);
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 20px; margin-top: 24px;
}
@media (max-width: 980px) {
  .collection-row { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .collection-row:nth-child(even) .collection-bottle { order: 0; }
}

/* ─── ARTICLE IMAGE (news article) ────────── */
.article-image {
  width: 100%; aspect-ratio: 16 / 9;
  background: var(--green);
  margin: 0 0 36px;
  border: 1px solid var(--line);
}


/* ====================================================
   Visual safety override (2026-05-04 一括強制表示化)
   feedback_pre_upload_visual_check ルール準拠
   JS未発火時/画像非表示を防ぐため、すべての
   reveal系クラスを初期表示OKに強制
==================================================== */
.reveal, .reveal-up, .reveal-fade, .reveal-clip, .reveal-noren,
.scrub-item, .reveal-left, .reveal-right { 
  opacity: 1 !important; 
  transform: none !important; 
  clip-path: inset(0 0 0% 0) !important;
  -webkit-clip-path: inset(0 0 0% 0) !important;
}



/* ====================================================
   スマホ時 contact フォーム強制1カラム化（2026-05-05）
   2カラム表示で入力欄が狭くなる問題
==================================================== */
@media (max-width: 767px) {
    .form-row,
    .form-grid,
    .form-2col,
    .form-pair,
    .input-row,
    .input-grid,
    [class*="form-row"],
    [class*="form-grid"],
    [class*="two-col"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="number"],
    form textarea,
    form select,
    .form-row > input,
    .form-row > textarea,
    .form-row > select,
    .form-row > div,
    .form-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .form-row, .form-grid {
        margin-bottom: 1rem;
    }
}



/* ====================================================
   contact 1カラム化 強化版（2026-05-05・全クラス網羅）
==================================================== */
@media (max-width: 767px) {
    .contact-grid,
    .contact-form,
    .ct-grid,
    .ct-form,
    .booking-form,
    .reserve-form,
    .form-card,
    .form-wrap,
    .form-box,
    [class*="contact-grid"],
    [class*="contact-form"],
    [class*="ct-grid"],
    [class*="ct-form"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    .contact-grid > *,
    .contact-form > *,
    .ct-grid > *,
    .ct-form > *,
    .booking-form > *,
    .reserve-form > *,
    .form-card > *,
    .form-wrap > *,
    .form-box > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .ct-budget-grid,
    .ct-field {
        grid-template-columns: 1fr !important;
        display: block !important;
    }
}

/* ====================================================
   横スクロール防止（2026-05-14 一括追加）
   CLAUDE.md ルール「html/body 両方に overflow-x:hidden」準拠
==================================================== */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ====================================================
   多カラムgrid スマホ最適化（2026-05-15 千尋）
==================================================== */
@media (max-width: 768px) {
  /* 1カラム化（流れ・5カラム以上） */
  .botanicals-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
}

/* ====================================================
   process-grid（4STEPS）スマホ1カラム化（2026-05-16 一括追加）
==================================================== */
@media(max-width:640px){
  .process-grid{grid-template-columns:1fr !important;margin-top:32px}
  .process-step{padding:26px 20px;border-right:none !important;border-bottom:1px solid currentColor !important}
  .process-step:nth-child(2){border-right:none !important;border-bottom:1px solid currentColor !important}
  .process-step:last-child{border-bottom:none !important}
  .process-step .step-num{margin-bottom:14px}
  .process-step h4{font-size:22px;margin-bottom:10px}
  .process-step p{font-size:13px;line-height:1.78}
}
