/* ===========================
   BASE & RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --bg-dark:   #080808;
  --bg-card:   #1a1a1a;
  --gold:      #d4b46a;
  --gold-light:#e0c47e;
  --text:      #ffffff;
  --text-muted:#f8f5f0;
  --border:    rgba(212,180,106,0.25);
  --serif:     'Noto Serif JP', serif;
  --display:   'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 0.15em;
}
.logo-en {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.logo-rule {
  display: block;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 4px 0;
}
.logo-ja {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5em;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

.nav { display: flex; gap: 2.5rem; }
.nav-link {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.3s;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nav-link:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.97);
  padding: 1rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 0.9rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.82) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
  animation: fadeUp 1.2s ease both;
  animation-delay: 0.3s;
}
.hero-label {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
}
.btn-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: opacity 0.3s;
}
.btn-scroll:hover { opacity: 0.7; }
.btn-scroll svg { animation: bounce 2s infinite; }

/* ===========================
   SECTION COMMON
=========================== */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-dark); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label-wrap { margin-bottom: 0.75rem; }
.section-label {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 400;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.section-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 3.5rem;
  letter-spacing: 0.04em;
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.about-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  background: var(--bg-card);
}
.about-icon {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.about-item-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.about-item-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2.1;
}

/* ===========================
   DISTILLERIES
=========================== */
.distillery {
  margin-top: 5rem;
  padding: 0 2rem;
}
.distillery-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.distillery-reverse .distillery-inner {
  direction: rtl;
}
.distillery-reverse .distillery-inner > * {
  direction: ltr;
}

.distillery-images {
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 0.75rem;
  height: 520px;
}
.distillery-img-main,
.distillery-img-sub {
  overflow: hidden;
  border-radius: 2px;
}
.distillery-img-main img,
.distillery-img-sub img {
  transition: transform 0.6s ease;
}
.distillery-img-main:hover img,
.distillery-img-sub:hover img { transform: scale(1.04); }

.distillery-label {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.distillery-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.distillery-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2.1;
  margin-bottom: 1rem;
}
.distillery-facts {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.distillery-facts li {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.distillery-facts li span {
  color: var(--gold);
  min-width: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ===========================
   PRODUCTS
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
}
.product-img {
  height: 280px;
  overflow: hidden;
}
.product-img img { transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-info { padding: 1.75rem; }
.product-brand {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.product-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2;
}
.products-cta { text-align: center; }

/* ===========================
   PHILOSOPHY
=========================== */
.section-philosophy {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.6);
}
.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.philosophy-content {
  position: relative;
  text-align: center;
}
.philosophy-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 1rem 0 2rem;
  line-height: 1.4;
}
.philosophy-text {
  font-size: 1.05rem;
  line-height: 2.4;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
}

/* ===========================
   CONTACT
=========================== */
.contact-form {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.required {
  font-size: 0.65rem;
  background: var(--gold);
  color: #000;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,144,128,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-submit { text-align: center; margin-top: 0.5rem; }
.form-message {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  min-height: 1.5rem;
}
.form-message.success { color: var(--gold); }
.form-message.error { color: #e07070; }

.contact-info {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 2;
}
.contact-info a { color: var(--gold); transition: opacity 0.3s; }
.contact-info a:hover { opacity: 0.7; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 1px;
}
.btn-primary:hover {
  background: var(--gold);
  color: #000;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.footer-logo .logo-en {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
}
.footer-logo .logo-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 3px 0;
}
.footer-logo .logo-ja {
  font-family: var(--display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  text-align: center;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   STORY
=========================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.story-body {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.story-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.9;
}
.story-photo-main {
  height: 540px;
  overflow: hidden;
  border-radius: 2px;
}
.story-photo-main img { transition: transform 0.6s ease; }
.story-photo-main:hover img { transform: scale(1.04); }
.story-sub-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.story-sub-photo {
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
}

/* ===========================
   PRODUCTS CTA (DUAL)
=========================== */
.products-single {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.products-cta-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.cta-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cta-label {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cta-note {
  font-size: 0.9rem;
  color: rgba(240,236,230,0.7);
  letter-spacing: 0.04em;
}
.cta-divider {
  width: 1px;
  height: 70px;
  background: var(--border);
  align-self: center;
}
.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: 1px;
}
.btn-outline:hover {
  background: var(--text-muted);
  color: #000;
}

/* ===========================
   FOOTER LINKS
=========================== */
.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-links a { color: var(--gold); transition: opacity 0.3s; }
.footer-links a:hover { opacity: 0.7; }
.footer-sep { color: rgba(212,180,106,0.3); font-size: 0.7rem; }

/* ===========================
   SELECT (FORM)
=========================== */
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4b46a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: #1a1a1a; }

/* ===========================
   WHOLESALE PAGE
=========================== */
.wholesale-hero {
  padding: 9rem 0 5rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.wholesale-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin: 1rem 0;
  line-height: 1.4;
}
.wholesale-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 3rem;
}
.flow-title {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.flow-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 2;
}

/* 卸売商品グリッド */
.wholesale-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.wholesale-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.wholesale-product-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wholesale-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.4s ease;
}
.wholesale-product-card:hover .wholesale-product-img img { transform: scale(1.05); }
.wholesale-product-info { padding: 1rem; }
.wholesale-product-tag {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.wholesale-product-name {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  min-height: 2.8rem;
}
.wholesale-product-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wholesale-product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.wholesale-product-specs li span:first-child {
  color: rgba(212,180,106,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-table th {
  background: var(--bg-card);
  border-bottom: 2px solid var(--gold);
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-size: 0.8rem;
}
.price-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.price-coming-soon {
  text-align: center;
  padding: 3rem !important;
  color: rgba(216,208,196,0.35) !important;
  line-height: 2;
}
.price-note {
  font-size: 0.78rem;
  color: rgba(216,208,196,0.4);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.bank-info {
  max-width: 600px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  background: var(--bg-card);
  padding: 2rem 2.5rem;
}
.bank-item {
  display: flex;
  gap: 2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.bank-item:last-of-type { border-bottom: none; }
.bank-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  min-width: 6rem;
  padding-top: 0.1rem;
}
.bank-value { color: var(--text-muted); }
.bank-pending { color: rgba(216,208,196,0.35); font-size: 0.85rem; }
.bank-note {
  font-size: 0.78rem;
  color: rgba(216,208,196,0.4);
  margin-top: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ===========================
   RESPONSIVE
=========================== */

/* 日本語テキストの孤立文字防止 */
.hero-title,
.section-title,
.section-lead,
.about-item-title,
.about-item-text,
.distillery-name,
.distillery-desc,
.distillery-facts li,
.product-name,
.product-desc,
.philosophy-title,
.philosophy-text,
.contact-info {
  overflow-wrap: break-word;
  word-break: auto-phrase;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .distillery-inner { grid-template-columns: 1fr; gap: 2rem; }
  .distillery-reverse .distillery-inner { direction: ltr; }
  .distillery-images { height: 300px; grid-template-rows: 2fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-cta-wrap { flex-direction: column; gap: 2rem; }
  .cta-divider { width: 60px; height: 1px; align-self: auto; }
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }

  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.75rem; }
  .header-inner { padding: 1rem 1.75rem; }

  /* ヒーロー */
  .hero-title {
    font-size: 1.9rem;
    letter-spacing: 0.03em;
  }
  .hero-sub {
    font-size: 0.9rem;
  }

  /* セクション共通 */
  .section-title { font-size: 1.5rem; }
  .section-lead { font-size: 0.95rem; margin-bottom: 2rem; }

  /* テキサスウイスキーとは */
  .about-grid { gap: 1rem; }
  .about-item { padding: 1.5rem; }
  .about-item-title { font-size: 1rem; }
  .about-item-text { font-size: 0.93rem; }

  /* 蒸留所 */
  .distillery { padding: 0 1.75rem; margin-top: 3rem; }
  .distillery-inner { gap: 1.5rem; }
  .distillery-images {
    height: 240px;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr;
  }
  .distillery-name { font-size: 1.7rem; margin-bottom: 1.25rem; }
  .distillery-desc { font-size: 0.93rem; }
  .distillery-facts li { font-size: 0.88rem; }

  /* 商品 */
  .product-img { height: 220px; }
  .product-info { padding: 1.25rem; }
  .product-name { font-size: 1rem; }
  .product-desc { font-size: 0.9rem; }

  /* ストーリー */
  .story-photo-main { height: 280px; }
  .story-sub-photo { height: 140px; }

  /* フィロソフィー */
  .section-philosophy { padding: 5rem 0; }
  .philosophy-content { padding: 0 1.75rem; }
  .philosophy-title { font-size: 1.5rem; }
  .philosophy-text { font-size: 0.95rem; line-height: 2.1; }

  /* フォーム */
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; } /* iOSズーム防止 */

  /* ボタン */
  .btn-primary { padding: 0.85rem 2rem; font-size: 0.88rem; width: 100%; text-align: center; }
  .btn-outline { padding: 0.85rem 2rem; font-size: 0.88rem; width: 100%; text-align: center; }

  /* ホールセール */
  .wholesale-hero { padding: 7rem 0 3.5rem; }
  .wholesale-hero-title { font-size: 1.6rem; }
  .wholesale-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .wholesale-product-img { height: 200px; }
  .wholesale-product-name { font-size: 0.88rem; min-height: auto; }
  .flow-step { gap: 1.25rem; }
  .flow-num { font-size: 1.8rem; min-width: 2.5rem; }
  .bank-info { padding: 1.5rem; }
  .bank-item { flex-direction: column; gap: 0.25rem; }
  .bank-label { min-width: auto; }

  /* フッター */
  .footer-copy { font-size: 0.78rem; text-align: center; }
}

/* ===========================
   AGE NOTICE & FORM NOTE
=========================== */
.age-notice {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(212,180,106,0.4);
  border-radius: 6px;
  text-align: center;
  background: rgba(212,180,106,0.08);
}
.age-notice p {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 2;
  margin: 0;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.8;
}

.wholesale-hero-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0.8;
}

/* ===========================
   PRODUCTS — BRAND SHOWCASE (index 8カード)
=========================== */
.products-status-note {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin: -2rem 0 3rem;
}
.tw-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tw-product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.tw-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,180,106,0.5);
}
.tw-product-media {
  position: relative;
  height: 250px;
  background: radial-gradient(ellipse at center, #242424 0%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tw-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem 0.5rem;
  transition: transform 0.5s ease;
}
.tw-product-card:hover .tw-product-media img { transform: scale(1.05); }

.tw-award {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  max-width: calc(100% - 1.4rem);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(212,180,106,0.45);
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
}
.tw-status {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.tw-status.soon {
  background: rgba(212,180,106,0.16);
  color: var(--gold-light);
  border: 1px solid rgba(212,180,106,0.5);
}
.tw-status.planned {
  background: rgba(255,255,255,0.06);
  color: rgba(248,245,240,0.78);
  border: 1px solid rgba(248,245,240,0.28);
}

.tw-product-body {
  padding: 1.2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tw-product-brand {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.tw-product-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}
.tw-product-type {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(248,245,240,0.6);
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}
.tw-product-meta {
  display: flex;
  gap: 1.5rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.85rem;
}
.tw-product-meta div { display: flex; flex-direction: column; gap: 0.15rem; }
.tw-product-meta .k {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.tw-product-meta .v { font-size: 0.95rem; font-weight: 500; }
.tw-product-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.85;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  text-wrap: pretty;
}

@media (max-width: 1100px) { .tw-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .tw-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  {
  .tw-products-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .tw-product-media { height: 280px; }
}

/* ===========================
   ORIGIN（テキサス地図ブロック）
=========================== */
.origin { margin-top: 5.5rem; padding: 0 2rem; }
.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.origin-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212,180,106,0.25);
  box-shadow: 0 14px 44px rgba(0,0,0,0.5);
}
.origin-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.origin-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .origin { padding: 0 1.75rem; margin-top: 3.5rem; }
  .origin-inner { grid-template-columns: 1fr; gap: 2rem; }
}
