/* =========================================================
   Matcha Bridge styles.css
   - Extracted from your original <style> block
   - Includes small add-ons for dual CTA buttons and trust row
   ========================================================= */

/* ===== GENERAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --font-title: 'Crimson Text', serif;
  --font-subtitle: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

body {
  font-family: var(--font-body);
  background: #faf9f6;
  color: #1a1a1a;
  line-height: 1.8;
}

/* ===== HEADER / NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 0 8px;
}

.header-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 126px;
  width: auto;
  object-fit: contain;
}

nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  margin-left: 40px;
  transition: color 0.3s;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
}

nav a:hover {
  color: #999;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 18px;
}

.social-links svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.social-links a:hover {
  color: #666;
  transform: scale(1.15);
}

/* ===== HERO ===== */
.hero {
  margin-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-bg.is-visible {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 40, 20, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 40px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: var(--font-title);
  letter-spacing: 2px;
  color: #ffffff;
}

.hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 1.9;
  font-family: var(--font-body);
}

.hero-cta {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
  transition: all 0.3s;
}

.hero-cta:hover {
  background: #333;
}

/* ===== SECTION HEADER ===== */
.section {
  padding: 76px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Keep anchored sections visible below fixed header */
section[id] {
  scroll-margin-top: 96px;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--font-title);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 13px;
  color: #999;
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
  font-weight: 500;
}

/* ===== STORY GRID ===== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.story-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #c5e1a5 0%, #7cb342 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.story-content {
  padding: 36px;
}

.story-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.story-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-link {
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  display: inline-block;
}

.story-link:hover {
  color: #999;
}

/* ===== OUR STORIES (FOUNDER + WHY IT MATTERS) ===== */
#story .story-founder {
  background: #173b1b;
  border: 1px solid #224d27;
  padding: 34px 38px;
  max-width: 980px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 34px;
  align-items: stretch;
}

#story .story-founder-media {
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
}

#story .story-founder-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#story .story-founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

#story .story-founder-tag {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b6c8b8;
  margin-bottom: 14px;
  font-family: var(--font-subtitle);
  border: none;
  padding-bottom: 0;
  font-weight: 500;
  width: fit-content;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

#story .story-founder blockquote {
  font-size: 28px;
  line-height: 1.4;
  color: #eef5ec;
  font-family: var(--font-title);
  font-style: italic;
  margin-bottom: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

#story .story-founder blockquote em {
  color: #cfe6c4;
  font-style: normal;
}

#story .story-matters-head {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--font-title);
  margin-bottom: 16px;
  letter-spacing: 2px;
  color: #1f3a12;
}

#story .story-matters-sub {
  font-size: 13px;
  color: #999;
  margin-bottom: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
  font-weight: 500;
  line-height: 1.8;
  max-width: none;
}

#story .story-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: none;
  background: transparent;
  margin-top: 22px;
}

#story .story-card {
  cursor: pointer;
  border: 1px solid #e6e3dd;
  box-shadow: none;
  border-radius: 0;
  background: #fcfcfb;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

#story .story-card:hover {
  background: linear-gradient(135deg, #122814 0%, #173b1b 100%);
  border-color: #17371b;
}

#story .story-image {
  height: auto;
  justify-content: flex-start;
  padding: 28px 30px 0;
  background: transparent;
  font-size: 58px;
  font-weight: 600;
  font-family: var(--font-title);
  color: #d7dfd8;
  line-height: 1;
}

#story .story-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5f7a51;
  background: #e6ece3;
  padding: 5px 10px;
  border-radius: 2px;
  font-family: var(--font-subtitle);
}

#story .story-content h3 {
  min-height: 86px;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #1d321a;
}

#story .story-content {
  padding: 12px 30px 30px;
}

#story .story-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 0;
}

#story .story-card:hover .story-image,
#story .story-card:hover .story-content h3,
#story .story-card:hover .story-content p {
  color: rgba(255, 255, 255, 0.93);
}

#story .story-card:hover .story-tag {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1260px) {
  #story .story-founder {
    max-width: 920px;
    padding: 34px 32px;
    gap: 28px;
  }

  #story .story-founder blockquote {
    font-size: 25px;
  }

  #story .story-matters-sub {
    font-size: 13px;
  }

  #story .story-content h3 {
    font-size: 19px;
    min-height: 80px;
  }
}

/* ===== FARMS SECTION (original static tiles) ===== */
.farms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .farms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #story .story-founder {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  #story .story-founder-media {
    min-height: 220px;
  }

  #story .story-founder blockquote {
    font-size: 22px;
    margin-bottom: 0;
  }

  #story .story-matters-sub {
    font-size: 13px;
  }

  #story .story-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #story .story-card {
    border: 1px solid #e6e3dd;
  }

  #story .story-image {
    padding: 22px 22px 0;
    font-size: 46px;
  }

  #story .story-content {
    padding: 10px 22px 24px;
  }

  #story .story-content h3 {
    min-height: auto;
    font-size: 22px;
  }

  #story .story-content p {
    font-size: 13px;
  }

  .farms-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #story .story-founder {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 22px;
  }

  #story .story-founder blockquote {
    font-size: 24px;
  }

  #story .story-matters-sub {
    font-size: 13px;
  }

  #story .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #story .story-content h3 {
    min-height: 72px;
    font-size: 20px;
  }

  #story .story-content p {
    font-size: 13px;
  }
}

.farm-item {
  text-align: center;
}

.farm-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
  border-radius: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.farm-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-title);
}

.farm-item p {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

.farm-link {
  font-size: 11px;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.farm-link:hover {
  color: #666;
}

/* ===== PROCESS SECTION ===== */
#process {
  position: relative;
  background: #f7f4ee;
}

#process::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f7f4ee;
  z-index: -1;
}

#process.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.process-timeline {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  background: #fcfbf9;
  border: 1px solid #e8e2d9;
  padding: 14px;
}

.timeline-copy {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2d5b17;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 27px;
  font-family: var(--font-title);
  line-height: 1;
}

.timeline-media {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 4 / 3;
  background: #ece8e0;
  overflow: hidden;
  justify-self: end;
}

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

.timeline-content h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: var(--font-title);
  line-height: 1.25;
}

.timeline-content p {
  font-size: 12px;
  color: #666;
  line-height: 1.75;
}

@media (max-width: 1200px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 30px;
    padding: 18px;
  }

  .timeline-copy {
    grid-template-columns: 88px 1fr;
    gap: 22px;
  }

  .timeline-dot {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .timeline-media {
    max-width: 360px;
  }

  .timeline-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .timeline-content p {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .timeline-media,
  .timeline-media img {
    max-width: 100%;
  }

  .timeline-copy {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .timeline-dot {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .timeline-content h4 {
    font-size: 19px;
  }

  .timeline-content p {
    font-size: 13px;
  }
}

/* ===== NEWS / TOPICS ===== */
.topics-list {
  margin-top: 60px;
}

.topic-item {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.topic-item:last-child {
  border-bottom: none;
}

.topic-date {
  font-size: 12px;
  color: #999;
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-subtitle);
}

.topic-title {
  flex: 1;
}

.topic-title a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.topic-title a:hover {
  color: #666;
}

/* ===== WHY US ===== */
#why {
  position: relative;
  background: #ffffff;
}

#why::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

#why.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

#why .why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  #why .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  #why .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#why .why-card {
  background: #f3f3f3;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

#why .why-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

#why .why-icon {
  width: 84px;
  height: 84px;
  margin: 0 0 16px 0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: #f7f4ee;
  color: #122814;
}

#why .why-card h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-title);
  margin-bottom: 10px;
}

#why .why-card p {
  font-size: 14px;
  color: #5f5f5f;
  font-family: var(--font-body);
  line-height: 1.75;
}

#why .why-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

#why .why-cta-wrap .hero-cta {
  min-width: 280px;
  padding: 15px 44px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #999;
  padding: 60px 40px 40px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-section h4 {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: var(--font-subtitle);
}

.footer-section a {
  display: block;
  font-size: 12px;
  color: #999;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: #666;
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    padding: 0 4px;
  }

  section[id] {
    scroll-margin-top: 54px;
  }

  .logo img {
    height: 64px;
  }

  nav a {
    display: none;
  }

  .hero {
    margin-top: 60px;
    min-height: 88svh;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .section {
    padding: 48px 18px;
  }

  .story-grid {
    gap: 18px;
  }

  #why.section,
  #process.section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #why .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  #process .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .topic-item {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   ADD-ONS (were previously in index.html <style>)
   ========================================================= */

/* Dual CTA wrapper */
.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Secondary button style */
.hero-cta.secondary{
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.hero-cta.secondary:hover{
  background:#1a1a1a;
  color:#fff;
}

/* Optional trust row under hero CTAs */
.trust-row{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align:left;
}

.trust-item{
  background: rgba(255,255,255,0.75);
  border: 1px solid #eee;
  padding: 14px 14px;
  font-size: 12px;
  color: #333;
}

.trust-item b{
  display:block;
  font-weight:600;
  margin-bottom:4px;
  letter-spacing:0.5px;
}

@media(max-width: 768px){
  .trust-row{
    grid-template-columns: 1fr;
    text-align:center;
  }
}

/* ===== FARMS PAGE STYLES ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 40px;
}

.filter {
  padding: 10px 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 12px;
  font-family: var(--font-subtitle);
  cursor: pointer;
  transition: all 0.3s;
}

.filter:hover {
  border-color: #1a1a1a;
}

.pill {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 3px 8px;
  font-size: 11px;
  margin: 6px 6px 0 0;
  color: #444;
}

.score-badge {
  display: inline-block;
  border: 1px solid #1a1a1a;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: 1px;
}

.farm-card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  padding: 22px;
  transition: box-shadow 0.3s;
}

.farm-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.farm-card h3 {
  font-family: var(--font-title);
  font-weight: 400;
  margin-bottom: 6px;
}

.farm-meta {
  color: #777;
  font-size: 12px;
  margin-bottom: 10px;
}

.farm-spec {
  font-size: 12px;
  color: #333;
  line-height: 1.9;
}

.farm-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #1a1a1a;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
  transition: all 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: #1a1a1a;
  color: #fff;
}

.btn.primary:hover {
  background: #333;
}

.btn:hover {
  opacity: .85;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   FORM COMPONENTS — shared: cafes, contact, signin, wholesale-inquiry
   ========================================================= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  background: white;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: #1a1a1a;
  color: white;
  padding: 14px 40px;
  border: none;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-submit:hover {
  background: #333;
}

.form-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECONDARY PAGE HERO — shared: cafes, signin, wholesale-inquiry
   ========================================================= */
.hero-section-cafes {
  background: linear-gradient(135deg, #f5f3f0 0%, #faf9f6 100%);
  margin-top: 128px;
  padding: 100px 40px;
  text-align: center;
}

.hero-section-cafes h1 {
  font-size: 48px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-section-cafes p {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section-cafes {
    margin-top: 64px;
    padding: 60px 20px;
  }

  .hero-section-cafes h1 {
    font-size: 32px;
  }
}

/* =========================================================
   CAFES PAGE
   ========================================================= */
.card {
  background: white;
  border: 1px solid #eee;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.card h3 {
  font-size: 18px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-question {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.faq-answer {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-left: 16px;
  border-left: 2px solid #ddd;
  padding-left: 16px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero {
  background: linear-gradient(135deg, #f5f3f0 0%, #faf9f6 100%);
  margin-top: 128px;
  padding: 100px 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 48px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-hero p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.contact-option {
  background: #f3f3f3;
  border-radius: 24px;
  padding: 28px 22px;
  text-align: left;
}

.contact-option-icon {
  width: 84px;
  height: 84px;
  margin: 0 0 16px 0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  background: #f7f4ee;
  color: #122814;
}

.contact-option h3 {
  font-size: 18px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-option p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-option a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.contact-option a:hover {
  color: #666;
  border-bottom-color: #666;
}

.inquiry-section .section-title,
.inquiry-section .section-subtitle {
  text-align: center;
}

.inquiry-section .inquiry-form-wrap {
  max-width: 600px;
  margin: 40px auto 0;
  background: #f5f5f5;
  padding: 40px;
}

.inquiry-section form {
  text-align: left;
}

.inquiry-section .form-submit {
  display: block;
  margin: 0 auto;
}

.inquiry-section form > p {
  text-align: center;
}

.inquiry-section-block {
  margin-bottom: 80px;
}

.form-note {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contact-hero {
    margin-top: 64px;
    padding: 60px 20px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
  }

  .contact-option {
    padding: 22px 18px;
  }

  .contact-option-icon {
    width: 74px;
    height: 74px;
    font-size: 38px;
    border-radius: 18px;
  }

  .inquiry-section .inquiry-form-wrap {
    padding: 24px 20px;
  }
}

/* =========================================================
   FARM DETAIL PAGE (farm.html) — body.page-farm scoped where needed
   ========================================================= */
.banner {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 16px 24px;
  margin-bottom: 40px;
  border-radius: 2px;
  font-size: 14px;
}

.page-farm .farm-detail-header {
  position: relative;
  margin-top: 128px;
  padding: 80px 40px 40px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(74, 124, 41, 0.1) 100%);
  text-align: center;
}

.page-farm .farm-detail-header h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.page-farm .farm-detail-header .region {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-farm .farm-detail-header .headline {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
}

.lang-toggle {
  position: absolute;
  top: 20px;
  right: 40px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: white;
}

.detail-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.detail-section:last-of-type {
  border-bottom: none;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.section-heading .sub {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sub {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
}

.farm-video-title-top {
  margin-top: 8px;
}

#farmVideos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #f5f5f5;
  margin-top: 12px;
  border-radius: 2px;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.kpi-list {
  display: grid;
  gap: 16px;
}

.kpi-list div {
  font-size: 13px;
  line-height: 1.8;
}

.kpi-list b {
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}

.tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.score-display {
  background: #faf9f6;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 2px;
  margin-top: 20px;
}

.score-number {
  font-size: 48px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  margin-bottom: 8px;
}

.score-breakdown {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
}

.farm-notes-text {
  line-height: 1.8;
  color: #333;
}

.farm-bestfor-wrap {
  margin-top: 20px;
}

.farm-bestfor-label {
  margin-bottom: 12px;
}

.farm-bestfor-value {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.farm-trace-copy {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

.farm-trace-recorded {
  margin-top: 6px;
}

.farm-cta-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.farm-cta-title {
  font-size: 24px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.farm-cta-link {
  display: inline-block;
}

.farm-cta-sub {
  margin-top: 24px;
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.product-card {
  background: #faf9f6;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  background-size: cover;
  background-position: center;
}

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

.farm-error-wrap {
  padding: 40px;
  text-align: center;
  color: #d32f2f;
}

.farm-error-title {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 400;
}

.farm-error-copy {
  font-size: 13px;
  color: #666;
}

.farm-error-link {
  color: #1a1a1a;
  text-decoration: underline;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.product-details {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #farmVideos {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-farm .farm-detail-header {
    margin-top: 64px;
    padding: 60px 20px 30px;
  }

  .page-farm .farm-detail-header h1 {
    font-size: 32px;
  }

  .lang-toggle {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }

  .detail-section {
    padding: 40px 20px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  #farmVideos {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FARMS MAP PAGE (farms.html) — body.page-farms scoped where needed
   ========================================================= */
.farms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 128px);
  margin-top: 128px;
}

.map-panel {
  position: relative;
  padding: 40px;
  background: #faf9f6;
  border-right: 1px solid #eee;
}

.map-panel h2 {
  font-size: 28px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.map-panel p {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}

.japan-map-wrapper {
  position: relative;
  background: linear-gradient(135deg, #f5f3f0 0%, #e8f5e9 100%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 520px;
}

.map-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-pins {
  position: absolute;
  inset: 24px;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.map-pin button {
  background: #2d5016;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-pin.active button {
  background: #ff6b6b;
  transform: scale(1.2);
}

.map-pin svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

.farm-list {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding: 0 8px;
}

.farm-list-item {
  flex-shrink: 0;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.farm-list-item:hover {
  background: #efefef;
  border-color: #2d5016;
}

.farm-list-item.active {
  background: #2d5016;
  color: white;
  border-color: #2d5016;
}

.farm-list-item small {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 2px;
}

.farm-detail-panel {
  background: white;
  overflow-y: auto;
  padding: 40px;
  max-height: calc(100vh - 128px);
}

.page-farms .farm-detail-header {
  margin-bottom: 24px;
  border-bottom: 2px solid #2d5016;
  padding-bottom: 16px;
}

.page-farms .farm-detail-header h3 {
  font-size: 28px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.page-farms .farm-detail-header .region {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-farms .farm-detail-header .founded {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.farm-detail-section {
  margin-bottom: 28px;
}

.farm-producer-type {
  font-size: 13px;
}

.farm-detail-section h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.farm-detail-section p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.tea-characteristics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tea-char-tag {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.farm-not-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #999;
}

.farm-not-selected p {
  font-size: 14px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #333;
}

.farm-map-cta-wrap {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.farm-card-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.no-farms-message {
  color: #666;
}

.farm-list-col {
  flex: 0 0 auto;
}

.farm-list-title {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.farm-details-area {
  flex: 1;
  overflow-y: auto;
}

.error-panel {
  color: #d32f2f;
  padding: 20px;
  background: #ffebee;
  border: 1px solid #ef5350;
  border-radius: 2px;
}

.error-panel-note {
  font-size: 12px;
}

.farms-grid-error {
  grid-column: 1 / -1;
}

.error-inline-note {
  color: #d32f2f;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .farms-container {
    grid-template-columns: 1fr;
  }

  .farm-detail-panel {
    max-height: none;
    border-top: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .farms-container {
    min-height: calc(100vh - 64px);
    margin-top: 64px;
  }

  .map-panel {
    padding: 24px;
  }

  .japan-map-wrapper {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .farm-detail-panel {
    padding: 24px;
  }

  .page-farms .farm-detail-header h3 {
    font-size: 22px;
  }
}

/* =========================================================
   SIGN IN PAGE
   ========================================================= */
.auth-wrap {
  max-width: 520px;
  margin: 60px auto 100px;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 2px;
}

.auth-title {
  font-size: 28px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.auth-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.signin-note {
  font-size: 12px;
  color: #666;
  margin-top: 18px;
}

.signin-link {
  color: #1a1a1a;
  text-decoration: underline;
}

.legal-section-title {
  margin-top: 24px;
}

.legal-meta {
  font-size: 12px;
  color: #666;
}

.legal-meta-primary {
  margin-top: 28px;
}

.legal-link-inherit {
  color: inherit;
}

.footer-note-link {
  color: #666;
}

.cafes-block {
  margin-bottom: 60px;
}

.prep-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid #eee;
  margin-top: 40px;
  overflow-x: auto;
}

.prep-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #999;
}

.prep-tab.active {
  border-bottom-color: #2d5016;
  color: #1a1a1a;
}

.prep-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.prep-content.active {
  display: grid;
}

.prep-media {
  background: #e8f5e9;
  padding: 24px;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.prep-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.prep-desc {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.8;
}

.prep-grade-box {
  background: #faf9f6;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.prep-label {
  display: block;
  margin-bottom: 8px;
}

.prep-label-steps {
  display: block;
  margin-bottom: 12px;
}

.grade-chip {
  background: #2d5016;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
}

.prep-list,
.prep-list-tight {
  margin-left: 20px;
  color: #333;
}

.prep-list {
  line-height: 2;
}

.prep-list-spaced {
  margin-bottom: 24px;
}

.prep-list-tight {
  line-height: 1.8;
  font-size: 13px;
  color: #666;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.partner-grid-secondary {
  margin-top: 24px;
}

.wholesale-wrap {
  margin-bottom: 60px;
  padding: 60px;
  background: #f5f5f5;
  border-radius: 2px;
}

.wholesale-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.card-no-margin {
  margin-bottom: 0;
}

.inline-submit {
  display: inline-block;
  margin-top: 16px;
}

.training-wrap {
  margin-bottom: 60px;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 2px;
}

.training-title {
  font-size: 28px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.training-subtitle {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.training-text {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.training-list {
  font-size: 13px;
  color: #666;
  line-height: 2;
  margin-left: 20px;
}

.training-text-top {
  margin-bottom: 16px;
}

.training-text-bottom {
  margin-top: 16px;
}

.faq-wrap {
  margin-top: 40px;
  max-width: 800px;
}

.traceability-link {
  color: #1a1a1a;
  text-decoration: underline;
}

.cafes-cta {
  text-align: center;
  padding: 80px 0;
}

.cafes-cta-title {
  font-size: 32px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.cafes-cta-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.cafes-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-outline {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

@media (max-width: 980px) {
  .prep-content,
  .partner-grid,
  .wholesale-access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .auth-wrap {
    margin: 40px 16px 80px;
    padding: 28px;
  }
}

/* =========================================================
   TRACEABILITY PAGE
   ========================================================= */
.trace-hero {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
  color: white;
  margin-top: 128px;
  padding: 100px 40px;
  text-align: center;
}

.trace-hero h1 {
  font-size: 48px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.trace-hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

.trace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.trace-card {
  background: white;
  padding: 32px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  text-align: center;
}

.trace-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.trace-card h3 {
  font-size: 16px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.trace-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.trace-timeline {
  position: relative;
  margin: 60px 0;
}

.trace-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.trace-step-number {
  font-size: 48px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  color: #2d5016;
  letter-spacing: 2px;
}

.trace-step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.trace-step-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.trace-step-details {
  background: #f5f5f5;
  padding: 16px;
  font-size: 12px;
  color: #333;
  line-height: 1.8;
  border-radius: 2px;
  margin-top: 16px;
}

.trace-example {
  background: #faf9f6;
  border: 2px dashed #ddd;
  padding: 32px;
  margin: 40px 0;
  border-radius: 2px;
}

.trace-example h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.trace-example-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  font-size: 12px;
}

.trace-example-item {
  padding: 12px;
  background: white;
  border: 1px solid #eee;
  border-radius: 2px;
}

.trace-example-label {
  color: #999;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trace-example-value {
  font-weight: 600;
  color: #333;
}

.trace-block {
  margin-bottom: 60px;
}

.trace-example-section {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.trace-example-section-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: #333;
}

.trace-story-panel {
  margin-bottom: 60px;
  background: #f5f5f5;
  padding: 40px;
}

.trace-story-title {
  font-size: 24px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.trace-text {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.trace-text-top {
  margin-bottom: 20px;
}

.trace-text-bottom {
  margin-top: 20px;
}

.trace-list {
  font-size: 13px;
  color: #666;
  line-height: 2;
  margin-left: 20px;
}

.trace-faq-wrap {
  margin-top: 40px;
  max-width: 800px;
}

.trace-faq-item {
  margin-bottom: 24px;
}

.trace-faq-question {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.trace-faq-answer {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.trace-cta {
  text-align: center;
  padding: 80px 0;
}

.trace-cta-title {
  font-size: 32px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.trace-cta-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .trace-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trace-hero {
    margin-top: 64px;
    padding: 60px 20px;
  }

  .trace-hero h1 {
    font-size: 32px;
  }

  .trace-grid {
    grid-template-columns: 1fr;
  }

  .trace-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trace-example-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WHOLESALE INQUIRY PAGE
   ========================================================= */
.temp-disabled-link {
  display: none;
  pointer-events: none;
}

.form-wrap {
  max-width: 700px;
  margin: 60px auto 100px;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 2px;
}

.form-title {
  font-size: 28px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.form-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.redirect-shell {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redirect-card {
  max-width: 680px;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #e6e3dd;
  padding: 38px 32px;
  text-align: center;
}

.redirect-title {
  font-size: 34px;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.redirect-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form-wrap {
    margin: 40px 16px 80px;
    padding: 28px;
  }
}
