/* =========================================================
   fuwari crêpe — Brand Landing Page
   Colors / Tokens
   ========================================================= */
:root {
  --c-cream: #fbf6ef;
  --c-cream-deep: #f3e8db;
  --c-white: #ffffff;
  --c-pink: #f4a6b8;
  --c-pink-soft: #fbdde4;
  --c-rasp: #d94c6a;
  --c-pista: #9cc4a0;
  --c-ink: #3d2b23;
  --c-ink-soft: #6b574d;

  --font-disp: "Fraunces", "Zen Maru Gothic", serif;
  --font-round: "Zen Maru Gothic", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;

  --maxw: 1120px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -20px rgba(61, 43, 35, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(61, 43, 35, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset / Base
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 40px, 760px); }

.section { padding: clamp(72px, 11vw, 130px) 0; }
.section--cream { background: var(--c-cream-deep); }

.sp-only { display: none; }

/* =========================================================
   Section heading helpers
   ========================================================= */
.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section__eyebrow {
  font-family: var(--font-disp);
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--c-rasp);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.section__desc { margin-top: 16px; color: var(--c-ink-soft); }

/* =========================================================
   Placeholder blocks (差し替え前のダミー / data-img でファイル名表示)
   ========================================================= */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--c-pink-soft), var(--c-cream-deep) 55%, #f7ddc9);
  overflow: hidden;
}
.ph::after {
  content: "📷 " attr(data-img);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(61, 43, 35, 0.45);
  text-align: center;
  padding: 8px;
}
.ph::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary { background: var(--c-rasp); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(217, 76, 106, 0.6); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: #fff; transform: translateY(-3px); }
.btn--lg { padding: 18px 46px; font-size: 1.08rem; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 10px 0;
}
.header.is-scrolled {
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px -12px rgba(61, 43, 35, 0.5);
}
.header__inner {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark { font-size: 1.6rem; color: var(--c-rasp); line-height: 1; }
.logo__text {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo__text small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--c-ink-soft);
  margin-top: 3px;
}
.logo__text--light { color: var(--c-cream); }
.logo__text--light small { color: rgba(251, 246, 239, 0.7); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--c-rasp);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--c-rasp);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--c-ink);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.ph--hero {
  background: linear-gradient(140deg, #f7c9d4 0%, #fbe3d2 45%, #e9d3bd 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(61, 43, 35, 0.42), rgba(61, 43, 35, 0.08) 60%, transparent);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  color: #fff;
  max-width: 660px;
}
.hero__eyebrow {
  font-family: var(--font-disp);
  font-style: italic;
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0.95;
}
.hero__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(61, 43, 35, 0.35);
}
.hero__title-accent { color: var(--c-pink-soft); }
.hero__lead {
  margin-top: 22px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 2;
  text-shadow: 0 2px 12px rgba(61, 43, 35, 0.4);
}
.hero__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions .btn--ghost { color: #fff; border-color: #fff; }
.hero__actions .btn--ghost:hover { background: #fff; color: var(--c-ink); }

.float-emoji {
  position: absolute;
  z-index: 2;
  font-size: clamp(2rem, 5vw, 3.4rem);
  filter: drop-shadow(0 8px 14px rgba(61, 43, 35, 0.25));
  animation: float 6s var(--ease) infinite;
}
.float-emoji--1 { top: 18%; right: 12%; animation-delay: 0s; }
.float-emoji--2 { bottom: 22%; right: 24%; animation-delay: 1.5s; font-size: clamp(1.6rem, 4vw, 2.6rem); }
.float-emoji--3 { top: 30%; right: 32%; color: #fff; animation-delay: 0.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
}
.scroll-cue__line {
  width: 1px; height: 46px;
  background: linear-gradient(#fff, transparent);
  animation: cue 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue { 0%, 100% { transform: scaleY(0.4); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--c-rasp);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-disp);
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  padding-right: 1ch;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Story
   ========================================================= */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.story__media { position: relative; }
.ph--story { aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: var(--shadow); }
.story__badge {
  position: absolute;
  bottom: -22px; right: -14px;
  background: var(--c-pista);
  color: #fff;
  font-family: var(--font-disp);
  font-style: italic;
  text-align: center;
  line-height: 1.3;
  padding: 18px 22px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}
.story__text { margin-top: 20px; color: var(--c-ink-soft); }

/* =========================================================
   Menu tabs
   ========================================================= */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.tab:hover { transform: translateY(-2px); }
.tab.is-active { background: var(--c-ink); color: #fff; }

.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: fadePanel 0.5s var(--ease); }
@keyframes fadePanel { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ph--menu { aspect-ratio: 4 / 3; }
.card__body { padding: 22px; }
.card__tag {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: var(--c-cream-deep);
  color: var(--c-ink-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card__tag--pink { background: var(--c-pink); color: #fff; }
.card__title { font-family: var(--font-round); font-weight: 700; font-size: 1.2rem; }
.card__desc { font-size: 0.9rem; color: var(--c-ink-soft); margin-top: 6px; }
.card__price {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  color: var(--c-rasp);
  margin-top: 12px;
}
.menu__note { text-align: center; margin-top: 36px; font-size: 0.82rem; color: var(--c-ink-soft); }

/* =========================================================
   Features
   ========================================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.feature { position: relative; text-align: center; }
.feature__num {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 3.4rem;
  color: var(--c-pink);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.ph--feature {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 22px;
  max-width: 240px;
}
.feature__title { font-family: var(--font-round); font-weight: 700; font-size: 1.35rem; }
.feature__text { margin-top: 12px; color: var(--c-ink-soft); font-size: 0.95rem; }

/* =========================================================
   Shops
   ========================================================= */
.shops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
.shop {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.shop:hover { transform: translateY(-6px); }
.ph--shop { aspect-ratio: 16 / 10; }
.shop__body { padding: 24px; }
.shop__name {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.shop__name span {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 0.7rem;
  color: var(--c-pista);
  letter-spacing: 0.1em;
}
.shop__info { margin: 16px 0; }
.shop__info > div { display: flex; gap: 12px; padding: 5px 0; font-size: 0.9rem; }
.shop__info dt {
  flex: 0 0 40px;
  color: var(--c-rasp);
  font-weight: 700;
  font-family: var(--font-round);
}
.shop__info dd { color: var(--c-ink-soft); }
.shop__map { font-family: var(--font-round); font-weight: 700; color: var(--c-rasp); font-size: 0.9rem; }
.shop__map:hover { text-decoration: underline; }

/* =========================================================
   Seasonal banner
   ========================================================= */
.seasonal {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.seasonal__bg { position: absolute; inset: 0; }
.ph--seasonal { background: linear-gradient(120deg, #d94c6a, #f4a6b8 60%, #e9b27e); }
.seasonal__overlay { position: absolute; inset: 0; background: rgba(61, 43, 35, 0.32); }
.seasonal__content { position: relative; z-index: 2; }
.seasonal__eyebrow {
  font-family: var(--font-disp);
  font-style: italic;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.seasonal__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-shadow: 0 3px 16px rgba(61, 43, 35, 0.4);
}
.seasonal__text { margin: 18px 0 30px; line-height: 2; text-shadow: 0 2px 10px rgba(61, 43, 35, 0.4); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.gallery__item:hover { transform: scale(1.03); filter: brightness(1.05); }
.gallery__action { text-align: center; margin-top: 40px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-ink);
  text-align: left;
}
.faq__icon { position: relative; flex: 0 0 18px; height: 18px; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--c-rasp);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p { padding: 0 24px 22px; color: var(--c-ink-soft); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background:
    radial-gradient(circle at 20% 20%, var(--c-pink-soft), transparent 50%),
    radial-gradient(circle at 80% 80%, #f7ddc9, transparent 50%),
    var(--c-cream);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.cta__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.4;
}
.cta__text { margin: 18px 0 32px; color: var(--c-ink-soft); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--c-ink); color: var(--c-cream); padding: 60px 0 28px; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 246, 239, 0.15);
}
.footer__brand .logo__mark { font-size: 1.6rem; }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__copy-text { font-size: 0.85rem; color: rgba(251, 246, 239, 0.6); margin-top: 14px; line-height: 1.8; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-family: var(--font-round); font-size: 0.92rem; transition: color 0.3s; }
.footer__nav a:hover { color: var(--c-pink); }
.footer__sns { display: flex; gap: 12px; height: fit-content; }
.sns-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 246, 239, 0.3);
  border-radius: 50%;
  font-family: var(--font-disp);
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.sns-icon:hover { background: var(--c-pink); color: var(--c-ink); transform: translateY(-3px); border-color: transparent; }
.footer__copy { text-align: center; margin-top: 26px; font-size: 0.75rem; color: rgba(251, 246, 239, 0.5); }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .menu__grid, .shops__grid, .features__grid { grid-template-columns: repeat(2, 1fr); }
  .shops__grid .shop:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}

@media (max-width: 720px) {
  .sp-only { display: inline; }

  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78%, 320px);
    background: var(--c-cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px -20px rgba(61, 43, 35, 0.5);
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 1.15rem; }

  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 420px; margin-inline: auto; }
  .ph--story { aspect-ratio: 4 / 3; }

  .menu__grid, .features__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .shops__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .shops__grid .shop:last-child { max-width: none; }

  .feature__num { font-size: 2.8rem; }

  .footer__inner { flex-direction: column; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Real images (replacing placeholders)
   ========================================================= */
.ph--hero       { background: url(../assets/images/hero.png) center/cover no-repeat !important; }
.ph--story      { background: url(../assets/images/story.png) center/cover no-repeat !important; }
.ph--seasonal   { background: url(../assets/images/seasonal.png) center/cover no-repeat !important; }
.ph--feature[data-img="feature-dough.png"]      { background: url(../assets/images/feature-dough.png) center/cover no-repeat !important; }
.ph--feature[data-img="feature-ingredient.png"] { background: url(../assets/images/feature-ingredient.png) center/cover no-repeat !important; }
.ph--feature[data-img="feature-photo.png"]      { background: url(../assets/images/feature-photo.png) center/cover no-repeat !important; }
.ph--shop[data-img="shop-shinsaibashi.png"]     { background: url(../assets/images/shop-shinsaibashi.png) center/cover no-repeat !important; }
.ph--shop[data-img="shop-umeda.png"]            { background: url(../assets/images/shop-umeda.png) center/cover no-repeat !important; }
.ph--shop[data-img="shop-namba.png"]            { background: url(../assets/images/shop-namba.png) center/cover no-repeat !important; }
.ph--shop[data-img="shop-tennoji.png"]          { background: url(../assets/images/shop-tennoji.png) center/cover no-repeat !important; }
.ph--shop[data-img="shop-kyobashi.png"]         { background: url(../assets/images/shop-kyobashi.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-1.png"]               { background: url(../assets/images/ig-1.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-2.png"]               { background: url(../assets/images/ig-2.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-3.png"]               { background: url(../assets/images/ig-3.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-4.png"]               { background: url(../assets/images/ig-4.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-5.png"]               { background: url(../assets/images/ig-5.png) center/cover no-repeat !important; }
.ph--gallery[data-img="ig-6.png"]               { background: url(../assets/images/ig-6.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-strawberry.png"]   { background: url(../assets/images/menu-strawberry.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-choco.png"]        { background: url(../assets/images/menu-choco.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-tiramisu.png"]     { background: url(../assets/images/menu-tiramisu.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-hamcheese.png"]    { background: url(../assets/images/menu-hamcheese.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-egg.png"]          { background: url(../assets/images/menu-egg.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-shrimp.png"]       { background: url(../assets/images/menu-shrimp.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-latte.png"]        { background: url(../assets/images/menu-latte.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-strawberrymilk.png"] { background: url(../assets/images/menu-strawberrymilk.png) center/cover no-repeat !important; }
.ph--menu[data-img="menu-tea.png"]          { background: url(../assets/images/menu-tea.png) center/cover no-repeat !important; }
.ph::after { display: none !important; }

/* ---- Hover zoom on menu/gallery images ---- */
.card { overflow: hidden; }
.card img { transition: transform 0.4s ease; }
.card:hover img { transform: scale(1.05); }
.gallery__item { overflow: hidden; transition: transform 0.4s ease; }
.gallery__item:hover { transform: scale(1.05); }
