/* ============================================================
   MAKE BLEND × CAFE REST — LP スタイルシート
   デザインテイスト: 青×オレンジ（川×火）/ 白ベース / ミニマル
   ============================================================ */

/* ---------- CSS カスタムプロパティ ---------- */
:root {
  --blue-primary: #1a6fa8;
  --blue-dark:    #0d4e7a;
  --blue-light:   #4a9fd4;
  --blue-pale:    #e8f4fb;
  --orange:       #f56e1b;
  --orange-dark:  #d45610;
  --orange-light: #ff8c42;
  --orange-pale:  #fff3ea;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-800:     #1f2937;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --font-jp:      'Noto Sans JP', sans-serif;
  --font-en:      'Inter', sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:    0 24px 64px rgba(0,0,0,.18);
  --transition:   0.3s ease;
}

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-jp);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

/* ---------- コンテナ ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- セクション共通 ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.label--light {
  color: var(--orange-light);
  background: rgba(255,140,66,.15);
}

.section-title {
  font-family: var(--font-jp);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.title--light {
  color: var(--white);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  padding: 12px 28px;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(245,110,27,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(245,110,27,.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-main {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: .05em;
}
.scrolled .logo-main { color: var(--blue-primary); }

.logo-sub {
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}
.scrolled .nav-links a { color: var(--gray-800); }
.nav-links a:hover { background: rgba(255,255,255,.15); }
.scrolled .nav-links a:hover { background: var(--gray-100); }

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  box-shadow: 0 2px 10px rgba(245,110,27,.4);
}
.nav-links .nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.scrolled .hamburger span { background: var(--gray-800); }

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  display: block;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-cta {
  margin-top: 12px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-md);
  border-bottom: none !important;
  box-shadow: 0 4px 14px rgba(245,110,27,.35);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 78, 122, 0.82) 0%,
    rgba(26, 111, 168, 0.65) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 20px 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(255,140,66,.15);
  border: 1px solid rgba(255,140,66,.4);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em {
  font-style: normal;
  color: var(--orange-light);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-light);
  border-radius: 2px;
}

.hero-sub {
  font-family: var(--font-en);
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.88);
  line-height: 1.9;
  margin-bottom: 44px;
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-en);
  font-size: .72rem;
  letter-spacing: .2em;
}
.scroll-arrow {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   CONCEPT SECTION
   ============================================================ */
.concept {
  padding: 100px 0;
  background: var(--white);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-body p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
}
.concept-body strong {
  color: var(--blue-primary);
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-primary);
  background: var(--blue-pale);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(26,111,168,.15);
}

.concept-card-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.concept-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.concept-card-wrap:hover .concept-img {
  transform: scale(1.05);
}
.concept-card-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,110,27,.4);
}
.stat-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.stat-num span {
  font-size: 1rem;
  font-family: var(--font-jp);
}
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  margin-top: 4px;
  opacity: .9;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.event-card.featured {
  grid-column: span 1;
  border: 2px solid var(--orange);
}

.event-card--river {
  border: 2px solid var(--blue-primary);
}

/* リアル試飲会カード（横長バナー画像）専用 */
.event-card.featured .event-card-img {
  object-fit: cover;
  object-position: center top;
}

.event-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-img {
  transform: scale(1.07);
}
.event-card-img--party {
  filter: hue-rotate(30deg) saturate(1.2);
}

.event-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-card-badge--online { background: var(--blue-primary); }
.event-card-badge--party  { background: #7c3aed; }
.event-card-badge--river  { background: var(--blue-dark); }

.event-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.event-meta > span {
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-date   { color: var(--blue-primary); }
.event-limit  { color: var(--orange); }
.event-online { color: var(--blue-light); }
.event-special{ color: #7c3aed; }
.event-scale  { color: var(--blue-dark); }

.event-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.event-desc {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.event-info {
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.info-item i {
  color: var(--blue-primary);
  width: 16px;
  flex-shrink: 0;
}

.events-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   ABOUT BLEND
   ============================================================ */
.about-blend {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: #000;
}
.about-img-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(26,111,168,.4);
}
.about-img-card i {
  font-size: 1.5rem;
  color: var(--orange-light);
}

.about-body p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-body strong {
  color: var(--orange);
}

.feature-list {
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-text strong {
  font-size: .95rem;
  color: var(--text-primary);
}
.feature-text span {
  font-size: .85rem;
  color: var(--text-secondary);
}

/* ============================================================
   ABOUT CAFE REST
   ============================================================ */
.about-cafe {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.about-cafe-bg {
  position: absolute;
  inset: 0;
}
.cafe-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cafe-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,78,122,.92) 0%,
    rgba(26,111,168,.85) 55%,
    rgba(245,110,27,.6) 100%
  );
}

.cafe-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.cafe-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  line-height: 1.85;
  margin-bottom: 16px;
}
.cafe-desc strong {
  color: var(--orange-light);
  font-weight: 700;
}

.cafe-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 40px;
}
.cafe-info-item {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: var(--white);
}
.cafe-info-item i {
  font-size: 1.4rem;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.cafe-info-item strong {
  font-size: .82rem;
  opacity: .7;
  font-weight: 500;
}
.cafe-info-item span {
  font-size: .9rem;
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-jp);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question[aria-expanded="true"] { background: var(--blue-pale); color: var(--blue-primary); }

.faq-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
  font-size: .85rem;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--blue-primary);
  color: var(--white);
}

.faq-question > span:nth-child(2) { flex: 1; }

.faq-arrow {
  color: var(--gray-400);
  font-size: .85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 22px 74px;
}
.faq-answer p {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
}
.faq-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact {
  padding: 100px 0;
  background: white;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--orange));
}

.contact-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact-form {
  text-align: left;
}

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 7px;
}
.required {
  color: var(--orange);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-jp);
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--gray-50);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,111,168,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  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='%234b5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 16px;
  animation: popIn 0.5s ease;
}
@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  80%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.contact-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-success p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-note {
  margin-top: 24px;
  text-align: center;
}
.contact-note p {
  font-size: .82rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo .logo-main { color: var(--white); font-size: 1rem; }
.footer-logo .logo-sub  { font-size: .82rem; }
.footer-tagline {
  font-size: .88rem;
  opacity: .6;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 60px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-nav a {
  font-size: .86rem;
  opacity: .6;
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 1; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .78rem;
  opacity: .4;
}

/* ============================================================
   FIXED CTA（モバイル用）
   ============================================================ */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  z-index: 900;
}
.fixed-cta .btn {
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 1rem;
}

/* ============================================================
   スクロールアニメーション
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   レスポンシブ — タブレット（max-width: 900px）
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .concept-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { order: -1; }
  .concept-img { height: 320px; }
  .about-img { height: 300px; background: #000; object-fit: contain; }

  .cafe-info-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }
}

/* ============================================================
   レスポンシブ — モバイル（max-width: 640px）
   ============================================================ */
@media (max-width: 640px) {
  html { font-size: 15px; }

  .section-title { font-size: 1.5rem; }

  .hero-content { padding: 100px 20px 100px; }
  .hero-title   { font-size: 2.1rem; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .hero-cta-wrap .btn { width: 100%; max-width: 360px; }

  .concept        { padding: 72px 0; }
  .concept-img    { height: 260px; }

  .events         { padding: 72px 0; }
  .events-grid    { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: span 1; }

  .about-blend    { padding: 72px 0; }
  .about-img      { height: 240px; background: #000; object-fit: contain; }
  .about-img-card { left: 0; }

  .about-cafe     { padding: 80px 0; }
  .cafe-info-grid { grid-template-columns: 1fr; }

  .faq            { padding: 72px 0; }

  .contact        { padding: 72px 0; }
  .form-row       { grid-template-columns: 1fr; }

  .site-footer    { padding: 48px 0 80px; }
  .footer-links   { flex-direction: column; gap: 28px; }

  .fixed-cta      { display: block; }

  .btn-xl         { padding: 16px 28px; font-size: .95rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.75rem; }
}
