/* ==================================================
   とうげマルシェ — Design System CSS
   Based on: design-starbucks.md (layout / components)
   Color adapted for Noto/Wajima regional warmth
   ================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Canvas */
  --canvas-warm:      #f5f2ec;
  --canvas-ceramic:   #ebe7df;
  --card-white:       #ffffff;

  /* Brand greens — 輪島の自然 */
  --brand-green:      #2f5233;
  --accent-green:     #3f6b43;
  --house-green:      #1f3a2d;
  --green-light:      #d9e4d1;

  /* Warm amber — 特別モーメント */
  --warm-amber:       #c9a96e;
  --warm-amber-bg:    #faf6ee;

  /* Text */
  --text-ink:         rgba(0,0,0,.87);
  --text-soft:        rgba(0,0,0,.58);
  --text-on-dark:     #ffffff;
  --text-on-dark-soft:rgba(255,255,255,.72);

  /* Elevation */
  --shadow-card:      0 0 .5px rgba(0,0,0,.14), 0 1px 1px rgba(0,0,0,.24);
  --shadow-nav:       0 1px 3px rgba(0,0,0,.08), 0 2px 2px rgba(0,0,0,.05), 0 0 2px rgba(0,0,0,.05);

  /* Radius */
  --radius-card:      12px;
  --radius-pill:      50px;

  /* Spacing */
  --space-1: .4rem;
  --space-2: .8rem;
  --space-3: 1.6rem;
  --space-4: 2.4rem;
  --space-5: 3.2rem;
  --space-6: 4rem;
  --space-7: 4.8rem;
  --space-8: 5.6rem;
  --space-9: 6.4rem;

  /* Transitions */
  --transition-btn:   all .2s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: -.01em;
  color: var(--text-ink);
  background: var(--canvas-warm);
}

img {
  display: block;
  max-width: 100%;
  opacity: 0;
  transition: opacity .3s ease-in;
}
img.loaded { opacity: 1; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-4); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-6); }
}

.section-pad {
  padding: var(--space-7) 0;
}
@media (min-width: 768px) {
  .section-pad { padding: var(--space-9) 0; }
}

/* Section heading */
.section-title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--brand-green);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: 1.5rem;
  color: var(--text-soft);
  margin-top: -.8rem;
  margin-bottom: var(--space-5);
  letter-spacing: -.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .7rem 2rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: var(--transition-btn);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.95); }

.btn-filled {
  background: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green);
}
.btn-filled:hover { background: var(--brand-green); border-color: var(--brand-green); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-outline-green {
  background: transparent;
  color: var(--accent-green);
  border-color: var(--accent-green);
}
.btn-outline-green:hover { background: var(--green-light); }

.btn-white-green {
  background: #fff;
  color: var(--accent-green);
  border-color: #fff;
}
.btn-white-green:hover { background: var(--green-light); border-color: var(--green-light); }

/* ---------- Card ---------- */
.card {
  background: var(--card-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ---------- Pill badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.badge-amber {
  background: var(--warm-amber);
  color: #fff;
}
.badge-green-outline {
  border: 1.5px solid var(--warm-amber);
  color: var(--warm-amber);
}

/* ======================================================
   NAV
   ====================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-3);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nav-inner { height: 72px; padding: 0 var(--space-4); }
}
@media (min-width: 1024px) {
  .nav-inner { height: 83px; padding: 0 var(--space-6); }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-green);
  letter-spacing: -.02em;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  opacity: 1;
}

.nav-links {
  display: none;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-ink);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent-green); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-ink);
  border-radius: 2px;
  transition: all .25s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--canvas-ceramic);
  padding: var(--space-3) 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 1.2rem var(--space-4);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-ink);
  border-bottom: 1px solid var(--canvas-warm);
}
.nav-drawer a:hover { background: var(--canvas-warm); color: var(--accent-green); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  height: clamp(640px, 78vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 83px;
  overflow: hidden;
}
@media (max-width: 639px) {
  .hero { height: clamp(580px, 90vh, 680px); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--house-green);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .6s ease-in;
  transform: scale(1);
}
.hero-bg img.loaded {
  opacity: 1;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img.loaded { animation: none; }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,26,18,.55) 0%,
    rgba(10,26,18,.45) 35%,
    rgba(10,26,18,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-7) 0 0;
  color: #fff;
  text-align: center;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .5rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--warm-amber);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  color: var(--warm-amber);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5dc26a;
  box-shadow: 0 0 8px rgba(93,194,106,.6);
  animation: blink 1.8s ease-in-out infinite;
}
.hero-badge-sep { color: rgba(255,255,255,.45); }
.hero-badge-status {
  color: #fff;
  font-weight: 500;
  letter-spacing: .02em;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.45);
}

.hero-sub {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #fff;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4);
}

.hero-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* Hours strip at bottom of hero */
.hero-hours {
  position: relative;
  z-index: 1;
  background: rgba(31,58,45,.85);
  backdrop-filter: blur(4px);
  padding: var(--space-4) 0;
  margin-top: var(--space-6);
}
.hero-hours .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  text-align: center;
}
@media (min-width: 640px) {
  .hero-hours .container { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.hours-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  color: var(--text-on-dark);
}
.hours-item .label {
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: var(--warm-amber);
  font-weight: 700;
  text-transform: uppercase;
}
.hours-item .value { font-size: 1.4rem; color: var(--text-on-dark-soft); }
.hours-item a { color: var(--text-on-dark); text-decoration: underline; }
.hours-item a:hover { color: var(--warm-amber); }

/* ======================================================
   3 FEATURES
   ====================================================== */
.features {
  background: var(--canvas-warm);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: var(--space-5) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: -.02em;
}
.feature-card p {
  font-size: 1.4rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ======================================================
   ORIGIN STORY
   ====================================================== */
.origin {
  background: var(--card-white);
}
.origin-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 1024px) {
  .origin-inner { grid-template-columns: 1fr 420px; }
}

.origin-text .section-title { margin-bottom: var(--space-4); }
.origin-text p {
  color: var(--text-ink);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}
.origin-text p:last-child { margin-bottom: 0; }

.origin-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (min-width: 1024px) {
  .origin-photos { grid-template-columns: 1fr; gap: var(--space-4); }
}
.origin-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.origin-photos img.origin-photo-full {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--canvas-ceramic);
}

/* ======================================================
   FOUNDER
   ====================================================== */
.founder {
  background: var(--warm-amber-bg);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 768px) {
  .founder-inner { grid-template-columns: 280px 1fr; }
}

.founder-photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.founder-photo-block img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.founder-name {
  text-align: center;
  font-size: 1.4rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.founder-name strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-ink);
}

.founder-quote {
  position: relative;
}
.founder-quote .section-title { margin-bottom: var(--space-4); }
.founder-quote-mark {
  font-family: "Lora", Georgia, serif;
  font-size: 8rem;
  line-height: .8;
  color: var(--warm-amber);
  opacity: .3;
  position: absolute;
  top: -.5rem;
  left: -1rem;
  pointer-events: none;
}
.founder-quote p {
  color: var(--text-ink);
  line-height: 1.9;
  margin-bottom: var(--space-4);
  padding-left: 1rem;
}

/* ======================================================
   MENU — TEISHOKU
   ====================================================== */
.menu-teishoku {
  background: var(--canvas-warm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .menu-grid { gap: var(--space-4); } }

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.menu-card-body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.menu-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: -.01em;
}
.menu-card-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-amber);
  letter-spacing: -.01em;
}
.menu-card-catch {
  font-size: 1.2rem;
  color: var(--text-soft);
}
.menu-card-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
}

/* ======================================================
   MENU — BENTO
   ====================================================== */
.menu-bento {
  background: var(--canvas-ceramic);
}
.bento-headline {
  text-align: center;
  margin-bottom: var(--space-5);
}
.bento-price {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  color: var(--brand-green);
}
.bento-price span { font-size: 1.6rem; color: var(--text-soft); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 640px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(5, 1fr); }
}

.bento-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.bento-card-body {
  padding: var(--space-2) var(--space-3) var(--space-3);
}
.bento-card-catch {
  font-size: 1.2rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ======================================================
   MEDIA
   ====================================================== */
.media {
  background: var(--card-white);
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .media-grid { grid-template-columns: repeat(3, 1fr); } }

.media-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
  overflow: hidden;
}
.media-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
  transform: translateY(-3px);
}

.media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--house-green);
  overflow: hidden;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease-in;
}
.media-card:hover .media-thumb img {
  transform: scale(1.03);
}
.media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
  transition: background .2s;
}
.media-card:hover .media-play {
  background: rgba(0,0,0,.42);
}
.media-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-play-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--house-green);
  margin-left: 3px;
}

.media-info {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.media-station {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: -.01em;
}
.media-date {
  font-size: 1.2rem;
  color: var(--text-soft);
}
.media-ext {
  font-size: 1.2rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: .4rem;
}

/* ======================================================
   CROWDFUNDING BAND
   ====================================================== */
.crowdfunding {
  background: var(--house-green);
  color: var(--text-on-dark);
}
.crowdfunding-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .crowdfunding-inner { grid-template-columns: 360px 1fr; }
}

.crowdfunding-img-wrap img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
}

.crowdfunding-text .section-title {
  color: #fff;
  margin-bottom: var(--space-3);
}
.crowdfunding-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin: var(--space-4) 0 var(--space-5);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.stat-num {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--warm-amber);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-label {
  font-size: 1.3rem;
  color: var(--text-on-dark-soft);
}
.crowdfunding-body {
  font-size: 1.5rem;
  color: var(--text-on-dark-soft);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

/* ======================================================
   ACCESS
   ====================================================== */
.access {
  background: var(--canvas-warm);
}
.access-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .access-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

.access-info { display: flex; flex-direction: column; gap: var(--space-4); }

.info-block .info-label {
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: var(--accent-green);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.info-block .info-value {
  font-size: 1.5rem;
  color: var(--text-ink);
  line-height: 1.7;
}
.info-block a {
  color: var(--accent-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.access-map iframe {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-card);
  border: 0;
  display: block;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--house-green);
  color: var(--text-on-dark);
  padding: var(--space-7) 0 var(--space-5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 1.2rem;
  letter-spacing: .1em;
  color: var(--warm-amber);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer-col p, .footer-col address {
  font-size: 1.4rem;
  color: var(--text-on-dark-soft);
  font-style: normal;
  line-height: 1.8;
}
.footer-col a {
  color: var(--text-on-dark-soft);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-sns {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.sns-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1.4rem;
  padding: .8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.sns-link:hover { background: rgba(255,255,255,.08); }
.sns-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.sns-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.sns-service {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.sns-name {
  font-size: 1.4rem;
  color: var(--text-on-dark);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer-nav-links a {
  font-size: 1.4rem;
  color: var(--text-on-dark-soft);
}
.footer-nav-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: var(--space-4);
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.4);
}

/* ======================================================
   FEATURE CATCH（3つの居場所のキャッチ）
   ====================================================== */
.feature-catch {
  font-family: "Lora", Georgia, serif;
  font-size: 1.7rem !important;
  font-weight: 600;
  color: var(--brand-green) !important;
  letter-spacing: -.01em;
  line-height: 1.5 !important;
  margin: -.4rem 0 .4rem;
}

/* ======================================================
   MENU HEADLINE ROW（タイトル＋営業中ピル）
   ====================================================== */
.menu-headline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: .8rem;
}
.menu-headline-row .section-title { margin-bottom: 0; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--brand-green);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.status-pill .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e8b3e;
  box-shadow: 0 0 8px rgba(46,139,62,.5);
  animation: blink 1.8s ease-in-out infinite;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  background: var(--canvas-ceramic);
}
.contact .section-title { margin-bottom: var(--space-3); }
.contact .section-sub { margin-bottom: var(--space-6); }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contact-ctas { flex-direction: row; justify-content: center; }
}
.btn-contact {
  width: 100%;
  padding: 1.4rem 2.4rem;
  font-size: 1.5rem;
  gap: .8rem;
}
@media (min-width: 640px) {
  .btn-contact { width: auto; }
}

/* ======================================================
   FOOTER CLOSING（締めメッセージ）
   ====================================================== */
.footer-closing {
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--warm-amber);
  letter-spacing: -.01em;
  margin: 0 auto var(--space-5);
  padding: 0 var(--space-3);
  max-width: 720px;
  line-height: 1.7;
}

/* ======================================================
   SCROLL REVEAL
   ====================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s cubic-bezier(.25,.46,.45,.94),
    transform .8s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: 横並びカードを1枚ずつ遅延 */
.features-grid > [data-reveal]:nth-child(1)  { --reveal-delay: 0s;     }
.features-grid > [data-reveal]:nth-child(2)  { --reveal-delay: .12s;   }
.features-grid > [data-reveal]:nth-child(3)  { --reveal-delay: .24s;   }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ======================================================
   CARD HOVER（メニュー・弁当・メディア共通）
   ====================================================== */
.menu-card,
.menu-bento .card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover,
.menu-bento .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.menu-card-img,
.bento-card-img {
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img,
.menu-bento .card:hover .bento-card-img {
  transform: scale(1.05);
}

/* ======================================================
   RESPONSIVE HELPERS
   ====================================================== */
@media (max-width: 639px) {
  .origin-photos { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
}
