/*
Theme Name: FUJISAWA BEANS
Theme URI: https://fujisawa-beans.jp
Author: FUJISAWA BEANS
Author URI: https://fujisawa-beans.jp
Description: 手回し自家焙煎コーヒー豆 FUJISAWA BEANS のオリジナルテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fujisawa-beans
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ===== CSS VARIABLES ===== */
:root {
  --espresso: #1a1209;
  --dark-roast: #2c1e0f;
  --medium-roast: #5c3d2e;
  --light-roast: #8b6f4e;
  --crema: #d4b896;
  --milk: #f5efe6;
  --latte: #ede4d5;
  --white: #faf8f5;
  --accent-gold: #c9a96e;
  --accent-copper: #b87333;
  --text-dark: #1a1209;
  --text-body: #3d2e1f;
  --text-light: #8b7d6b;
  --logo-brown: #5a3a28;
  --logo-cream: #e8d5b0;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 300;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 28px; left: 0; right: 0; z-index: 100;
  padding: 0.8rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
}
.nav.scrolled {
  top: 0; background: rgba(26,18,9,0.95);
  backdrop-filter: blur(12px); padding: 0.5rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo-img {
  height: 44px; width: auto; transition: height 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.nav.scrolled .nav-logo-img { height: 36px; }
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--logo-cream); letter-spacing: 3px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--crema); text-decoration: none; font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent-gold); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Hamburger menu */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; z-index: 102;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--logo-cream);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: rgba(26,18,9,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: var(--logo-cream); text-decoration: none; font-size: 1rem;
  letter-spacing: 4px; text-transform: uppercase; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent-gold); }

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: var(--logo-brown); color: var(--logo-cream);
  text-align: center; padding: 0.5rem 1rem;
  font-size: 0.7rem; letter-spacing: 2px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  transition: transform 0.4s ease;
}

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 700px; background: var(--espresso);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(92,61,46,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(139,111,78,0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26,18,9,0.2) 0%, rgba(26,18,9,0.85) 100%);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-hex {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cpath d='M56 0L112 28v56L56 112 0 84V28z' fill='none' stroke='%23d4b896' stroke-width='0.8'/%3E%3Cpath d='M56 97L112 125v56L56 209 0 181v-56z' fill='none' stroke='%23d4b896' stroke-width='0.8'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.hero-logo {
  width: clamp(160px, 22vw, 240px); height: auto;
  margin-bottom: 2rem;
  animation: logoReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
}
@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
/* Hero text logo */
.hero-logo-text-wrap {
  margin-bottom: 2rem;
  animation: logoReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--logo-cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.hero-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--crema);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic; color: var(--logo-cream); font-weight: 300;
  letter-spacing: 4px; margin-bottom: 0.8rem;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-sub {
  font-size: 0.8rem; color: var(--light-roast);
  letter-spacing: 3px; margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.8s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 2.5rem; background: transparent;
  border: 1px solid var(--logo-cream); color: var(--logo-cream);
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.4s; cursor: pointer;
  animation: fadeUp 1s ease 1s both;
}
.hero-cta:hover { background: var(--logo-cream); color: var(--espresso); }
.hero-cta .arrow { transition: transform 0.3s; }
.hero-cta:hover .arrow { transform: translateX(5px); }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  color: var(--crema); font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.5;
  animation: fadeUp 1s ease 1.3s both;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: var(--crema); margin: 0.8rem auto 0;
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 8rem 3rem; }
.section-label {
  font-size: 0.63rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent-copper); margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 1.5rem;
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--medium-roast);
}

/* ===== DIVIDER ===== */
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0.5rem 0; }
.divider-line { width: 60px; height: 1px; background: var(--crema); }
.divider-hex {
  width: 12px; height: 12px; background: var(--accent-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ===== INTRO (ABOUT) ===== */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1400px; margin: 0 auto;
}
.intro-text p { font-size: 0.95rem; line-height: 2; margin-bottom: 1.5rem; }
.intro-image { position: relative; }
.intro-image img {
  width: 100%; height: auto; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.intro-video-wrap {
  width: 100%; aspect-ratio: 9/16; overflow: hidden;
  background: var(--espresso);
}
.intro-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.intro-image .img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--latte), var(--crema));
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder .img-label {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--medium-roast); opacity: 0.6; text-align: center; padding: 1rem;
}
.intro-image::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%; border: 1px solid var(--crema); z-index: -1;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--logo-brown); padding: 5rem 3rem;
  position: relative; overflow: hidden;
}
.features-strip::before {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cpath d='M56 0L112 28v56L56 112 0 84V28z' fill='none' stroke='%23e8d5b0' stroke-width='0.6'/%3E%3Cpath d='M56 97L112 125v56L56 209 0 181v-56z' fill='none' stroke='%23e8d5b0' stroke-width='0.6'/%3E%3C/svg%3E");
}
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; position: relative;
}
.feature-card {
  text-align: center; padding: 2.5rem 2rem;
  border: 1px solid rgba(232,213,176,0.12); transition: border-color 0.4s;
}
.feature-card:hover { border-color: var(--logo-cream); }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,213,176,0.08);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 1.3rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--logo-cream); font-weight: 400; margin-bottom: 1rem;
}
.feature-card p {
  font-size: 0.8rem; line-height: 1.9; color: var(--crema); font-weight: 300; opacity: 0.8;
}

/* ===== PROCESS ===== */
.process { background: var(--milk); }
.process-inner { max-width: 1400px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.process-step { position: relative; padding: 2rem; }
.step-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  color: var(--crema); font-weight: 300; line-height: 1; margin-bottom: 1rem;
}
.process-step h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 400; color: var(--text-dark); margin-bottom: 0.8rem;
}
.process-step p { font-size: 0.8rem; line-height: 1.9; color: var(--text-light); }
.process-step::after {
  content: '\2192'; position: absolute; right: -1rem; top: 3rem;
  font-size: 1.2rem; color: var(--crema);
}
.process-step:last-child::after { display: none; }

/* ===== QUOTE ===== */
.quote-section {
  background: var(--espresso); padding: 7rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cpath d='M56 0L112 28v56L56 112 0 84V28z' fill='none' stroke='%23d4b896' stroke-width='0.6'/%3E%3Cpath d='M56 97L112 125v56L56 209 0 181v-56z' fill='none' stroke='%23d4b896' stroke-width='0.6'/%3E%3C/svg%3E");
}
.quote-logo { width: 80px; margin: 0 auto 2rem; opacity: 0.25; filter: brightness(1.5); }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem); font-style: italic;
  color: var(--crema); max-width: 700px; margin: 0 auto 2rem;
  line-height: 1.8; font-weight: 300; position: relative;
}
.quote-author {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--light-roast); position: relative;
}

/* ===== BEANS MENU ===== */
.beans-menu { background: var(--white); }
.beans-inner { max-width: 1400px; margin: 0 auto; }
.beans-header { text-align: center; margin-bottom: 4rem; }
.beans-header p { max-width: 600px; margin: 0 auto; font-size: 0.88rem; line-height: 2; color: var(--text-light); }
.beans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.bean-card {
  background: var(--white); border: 1px solid var(--latte);
  transition: all 0.4s; cursor: pointer; text-decoration: none;
  color: inherit; display: block; position: relative; overflow: hidden;
}
.bean-card:hover {
  border-color: var(--accent-gold); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,18,9,0.1);
}
.bean-card-img {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--latte), var(--crema));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bean-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.bean-card-img .img-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--medium-roast); opacity: 0.5;
}
.bean-card-overlay {
  position: absolute; inset: 0;
  background: rgba(90,58,40,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s; z-index: 2;
}
.bean-card:hover .bean-card-overlay { opacity: 1; }
.bean-card-overlay span {
  color: var(--logo-cream); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; border: 1px solid var(--logo-cream); padding: 0.6rem 1.5rem;
}
.bean-card-body { padding: 1.8rem; }
.bean-origin {
  font-size: 0.63rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-copper); margin-bottom: 0.5rem; font-weight: 500;
}
.bean-name {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--text-dark); font-weight: 400; margin-bottom: 0.8rem;
}
.bean-desc { font-size: 0.78rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1rem; }
.bean-roast-level {
  display: inline-block; font-size: 0.63rem; letter-spacing: 1px;
  padding: 0.2rem 0.6rem; margin-bottom: 0.8rem;
  background: var(--latte); color: var(--medium-roast); border-radius: 2px;
}
.taste-labels { display: flex; justify-content: space-between; margin-bottom: 0.4rem; }
.taste-labels span { font-size: 0.58rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.taste-profile { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.taste-bar { flex: 1; height: 3px; background: var(--latte); border-radius: 2px; overflow: hidden; }
.taste-bar-fill { height: 100%; background: var(--logo-brown); border-radius: 2px; }
.bean-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--latte);
}
.bean-weight { font-size: 0.72rem; color: var(--text-light); letter-spacing: 1px; }
.bean-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-dark); font-weight: 600; }
.bean-price small { font-size: 0.7rem; font-weight: 300; color: var(--text-light); }
.bean-card--special { border-color: var(--accent-gold); }
.bean-card--special .bean-card-img { background: linear-gradient(135deg, var(--logo-brown), var(--medium-roast)); }
.bean-card--special .bean-card-img .img-label { color: var(--logo-cream); opacity: 0.8; }
.bean-card--special .bean-origin { color: var(--accent-gold); }

/* Product Labels */
.bean-label {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: 0.3rem 0.8rem; font-size: 0.65rem; letter-spacing: 1px;
  font-weight: 500; line-height: 1;
}
.bean-label--recommend {
  background: var(--accent-gold); color: var(--white);
}
.bean-label--new {
  background: #c0392b; color: #fff;
}
.bean-label--soldout {
  background: #555; color: #fff;
}

/* SOLD OUT state */
.bean-card--soldout { opacity: 0.75; }
.bean-card--soldout:hover { transform: none; box-shadow: none; border-color: var(--latte); }
.bean-card--soldout .bean-card-img img { filter: grayscale(60%); }
.bean-card-soldout-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.bean-card-soldout-overlay span {
  color: #fff; font-size: 1.2rem; letter-spacing: 4px; font-weight: 600;
  text-transform: uppercase; padding: 0.8rem 2rem;
  border: 2px solid #fff;
}

/* Shipping note */
.beans-shipping-note {
  margin-top: 0.8rem; font-size: 0.78rem; color: var(--accent-copper);
  font-weight: 400;
}

/* ===== ORDER GUIDE ===== */
.order-guide { background: var(--milk); }
.order-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.order-steps { display: flex; gap: 2rem; justify-content: center; margin: 3rem 0; flex-wrap: wrap; }
.order-step { flex: 1; min-width: 200px; max-width: 250px; padding: 2rem; }
.order-step-hex {
  width: 52px; height: 52px; margin: 0 auto 1.2rem;
  background: var(--accent-gold); position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.order-step-hex-inner {
  width: 48px; height: 48px; background: var(--milk);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--accent-gold);
}
.order-step h4 { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--text-dark); }
.order-step p { font-size: 0.78rem; line-height: 1.8; color: var(--text-light); }
.order-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1.1rem 3rem; background: var(--logo-brown); color: var(--logo-cream);
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.4s; font-family: 'Noto Sans JP', sans-serif;
}
.order-cta:hover {
  background: var(--dark-roast); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,18,9,0.2);
}

/* ===== ACCESS ===== */
.access { background: var(--white); }
.access-inner {
  max-width: 800px; margin: 0 auto;
}
.access-detail { margin-bottom: 1.5rem; }
.access-detail dt {
  font-size: 0.63rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-copper); margin-bottom: 0.3rem; font-weight: 500;
}
.access-detail dd { font-size: 0.88rem; line-height: 1.8; }
.access-detail dd a { color: var(--medium-roast); text-decoration: none; transition: color 0.3s; }
.access-detail dd a:hover { color: var(--accent-copper); }
.access-map {
  width: 100%; aspect-ratio: 4/3; background: var(--latte);
  overflow: hidden;
}
.access-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso); padding: 4rem 3rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0; opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cpath d='M56 0L112 28v56L56 112 0 84V28z' fill='none' stroke='%23d4b896' stroke-width='0.6'/%3E%3Cpath d='M56 97L112 125v56L56 209 0 181v-56z' fill='none' stroke='%23d4b896' stroke-width='0.6'/%3E%3C/svg%3E");
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; }
.footer-logo-img { width: 80px; margin-bottom: 1.5rem; opacity: 0.7; filter: brightness(1.3); }
.footer-links {
  display: flex; gap: 2rem; list-style: none;
  justify-content: center; margin-bottom: 2rem; flex-wrap: wrap;
}
.footer-links a {
  color: var(--light-roast); text-decoration: none; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s;
}
.footer-links a:hover { color: var(--crema); }
.footer-copy {
  padding-top: 2rem; border-top: 1px solid rgba(212,184,150,0.08);
  font-size: 0.68rem; color: var(--light-roast); letter-spacing: 1px; opacity: 0.7;
}

/* ===== ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  background: var(--logo-brown); color: var(--logo-cream);
  border: 1px solid var(--logo-cream); padding: 1rem 1.8rem;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta:hover { background: var(--logo-cream); color: var(--logo-brown); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section { padding: 5rem 2rem; }
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .beans-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .access-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0.8rem 1.5rem; }
  .nav-links, .nav-logo-text { display: none; }
  .hamburger { display: block; }
  .section { padding: 4rem 1.5rem; }
  .features-grid, .beans-grid, .process-steps { grid-template-columns: 1fr; }
  .features-strip { padding: 3rem 1.5rem; }
  .order-steps { flex-direction: column; align-items: center; }
  .hero-logo { width: 140px; }
  .quote-section { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem; }
}
