:root{
  --brand-red:#a31715;
  --ink:#1b1b1b;
  --muted:#6b7280;
  --bg:#f8f5ef;
}

body{
  font-family:'Inter', system-ui, -apple-system, 'PingFang TC', 'Noto Serif TC', serif;
  color:var(--ink);
  background:var(--bg);
  position:relative;
}

h1,h2,h3,h4{
  font-family:'Noto Serif TC','Inter',serif;
}

/* ===== NAVBAR ===== */
.navbar{
  /* FIXED: Added space between 28px and rgba */
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  padding-top:.35rem;
  padding-bottom:.35rem;
}
.glass-nav{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.navbar .nav-link{
  font-weight:600;
  color:#243b53;
  position:relative;
  padding:.75rem 1rem;
  border-radius:999px;
  transition:color .2s ease, background-color .2s ease;
}
.navbar .nav-link:hover{
  color:var(--brand-red);
  background:rgba(163,23,21,.08);
}
.navbar .nav-link.active{
  color:var(--brand-red)!important;
}
.navbar .nav-link::after{
  content:"";
  position:absolute;
  left:1rem; right:1rem; bottom:.35rem;
  height:2px;
  background:transparent;
  transition:all .2s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  background:var(--brand-red);
}
.btn-brand{
  background:var(--brand-red);
  color:#fff;
  border:none;
}
.btn-brand:hover{ filter:brightness(0.95); }

.brand-logo{
  height:60px;
  width:auto;
  object-fit:contain;
  display:block;
}
@media (min-width:768px){
  .brand-logo{ height:72px; }
}
@media (min-width:1200px){
  .brand-logo{ height:84px; }
}

/* ===== SECTION SPACING ===== */
section{
  padding:80px 0;
  scroll-margin-top:120px;
}
@media (max-width:992px){
  section{ scroll-margin-top:100px; }
}
.section-heading{ margin-bottom:24px; }
.eyebrow{
  letter-spacing:.12em;
  color:var(--brand-red);
  font-weight:700;
  text-transform:uppercase;
  font-size:.82rem;
}
.muted{ color:var(--muted); }
.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
}

/* ===== Spotlight image area lock (prevents layout jump) ===== */
.spotlight-frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 11;
  background:#f6f1ea;
}
.spotlight-frame > img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
@media (max-width:576px){
  .spotlight-frame{ aspect-ratio:4 / 3; }
}
#spotlight-meta{ min-height:120px; }

/* ===== CARDS ===== */
.plate-card{
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:transform .3s ease, box-shadow .3s ease;
  background:#fff;
}
.plate-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.09);
}
.plate-card img{
  aspect-ratio:4 / 3;
  object-fit:cover;
}

/* ===== REVIEWS ===== */
.stars{
  color:#f5b50a;
  letter-spacing:.1em;
}
.review-marquee{
  overflow:hidden;
  position:relative;
  mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.review-track{
  display:flex;
  gap:1rem;
  will-change:transform;
  animation:marquee var(--marquee-duration,40s) linear infinite;
  transform:translateZ(0);
}
.review-group{ display:flex; gap:1rem; }
.review-card{
  min-width:280px;
  max-width:360px;
  padding:1rem;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  position:relative;
}
.review-header{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:.35rem;
}
.review-name{ font-weight:600; }
.review-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 40px;
}
@keyframes marquee{
  from{ transform:translateX(0) }
  to{ transform:translateX(-50%) }
}
.review-card .g-badge{
  position:absolute;
  right:20px;
  top:20px;
  width:35px;
  height:35px;
  line-height:0;
  pointer-events:none;
  background:transparent;
}
.review-card .g-badge img{
  width:100%;
  height:100%;
  display:block;
}
@media (max-width:480px){
  .review-card .g-badge{
    right:8px;
    top:8px;
    width:22px;
    height:22px;
  }
}

/* ===== FOOTER ===== */
footer{
  background:#0f1b29;
  color:#dbe3ec;
}
footer a{
  color:#dbe3ec;
  text-decoration:none;
}
footer a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-title{
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.8;
  font-weight:700;
  margin-bottom:.75rem;
}
.footer-links li{ margin:.35rem 0; }
.footer-links a{
  color:#dbe3ec;
  opacity:.9;
  text-decoration:none;
}
.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
.footer-logo{
  height:56px;
  width:auto;
  display:block;
}
.footer-info i{ opacity:.8; }
.footer-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

/* ===== UTILITIES ===== */
.rounded-2xl{ border-radius:1.25rem; }
.max-w-2xl{ max-width:1200px; }
.underline-on-hover:hover{ text-decoration:underline; }
html{ scroll-behavior:smooth; }
.map-embed{
  min-height:360px;
  border:0;
  width:100%;
}
:focus-visible{
  outline:3px solid #60a5fa;
  outline-offset:3px;
}
.sticky-gmap{
  position:fixed;
  left:16px;
  bottom:calc(16px + env(safe-area-inset-bottom));
  z-index:1080;
}
.sticky-gmap-link{
  display:flex;
  align-items:center;
  gap:.5rem;
  background:#0f1b29;
  color:#fff;
  padding:.65rem .9rem;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
  text-decoration:none;
}
.sticky-gmap-link:hover{ filter:brightness(1.05); }
.sticky-gmap .bi{ font-size:1.1rem; }
@media (max-width:576px){
  .sticky-gmap-link{
    padding:.55rem .75rem;
    font-size:.9rem;
  }
  .sticky-gmap .label{ display:none; }
}

/* ===== HERO SPLIT (TEXT + COLLAGE) ===== */
.hero-split{
  position:relative;
  background:#fff;
  color:#111;
  overflow:hidden;
  min-height:86vh;
  display:flex;
  align-items:center;
  padding:clamp(24px,4vw,56px) 0;
}
.hero-split .container{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  align-items:center;
  gap:min(7vw,56px);
  width:100%;
}
@media (max-width:992px){
  .hero-split{ min-height:auto; padding:48px 0; }
  .hero-split .container{ grid-template-columns:1fr; gap:28px; }
}
.hero-split h1{
  font-weight:700;
  line-height:1.15;
  font-size:clamp(28px,4vw,52px);
  margin:0 0 12px;
}
.hero-split p.lead{
  color:#4b5563;
  margin:0 0 22px;
  font-size:clamp(15px,1.6vw,19px);
}
.hero-split .cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-split .btn-primary{
  background:var(--brand-red);
  border:none;
}
.hero-split .btn-outline-dark{
  border-color:#111;
  color:#111;
}
.hero-split .btn-outline-dark:hover,
.hero-split .btn-outline-dark:focus,
.hero-split .btn-outline-dark:active{
  color:#fff !important;
  background:#111;
  border-color:#111;
}

/* === Collage container (5 dishes) === */
.collage{
  position:relative;
  width:100% !important;
  aspect-ratio:1 / 1;
  max-width:min(660px,44vw);
  justify-self:center;
  isolation:isolate;
}
.collage .half{
  --size:96%;
  position:absolute;
  width:var(--size);
  height:var(--size);
  right:2%;
  top:2%;
  border-radius:999px 999px 0 0;
  background:#f9a15a;
  transform:rotate(35deg);
  box-shadow:0 30px 60px rgba(0,0,0,.18);
  z-index:1;
}

/* Dishes (base) */
.dish{
  position:absolute;
  display:block;
  will-change:transform,opacity;
  z-index:2;
  filter:drop-shadow(0 12px 26px rgba(0,0,0,.18));
  left:var(--x);
  top:var(--y);
  width:var(--w);
  opacity:0;
  transform:translateY(-26px) scale(.98) rotate(var(--r,0deg));
  animation:
    dishIn .65s cubic-bezier(.2,.7,.2,1) var(--delay,.1s) forwards,
    dishFloat var(--float,7s) ease-in-out calc(var(--delay,.1s) + .65s) infinite;
}

/* Main (crab) — single definitive animation list */
.dish.main{
  z-index:3 !important;
  opacity:1 !important;
  animation:
    dishIn .7s cubic-bezier(.2,.7,.2,1) var(--delay,.1s) forwards,
    bob 9s ease-in-out calc(var(--delay,.1s) + .75s) infinite,
    ken 14s ease-in-out calc(var(--delay,.1s) + .75s) infinite alternate;
}

/* Keyframes */
@keyframes dishIn{
  0%{ opacity:0; transform:translateY(-26px) scale(.98) rotate(var(--r,0deg)); }
  60%{ opacity:1; transform:translateY(6px) scale(1.02) rotate(var(--r,0deg)); }
  100%{ opacity:1; transform:translateY(0) scale(1) rotate(var(--r,0deg)); }
}
@keyframes dishFloat{
  0%,100%{ transform:translateY(0) rotate(var(--r,0deg)); }
  50%{ transform:translateY(-8px) rotate(calc(var(--r,0deg) + .2deg)); }
}
@keyframes bob{
  0%,100%{ transform:translateY(0) rotate(var(--r,0deg)); }
  50%{ transform:translateY(-8px) rotate(calc(var(--r,0deg) + .2deg)); }
}
@keyframes ken{
  from{ transform:scale(1) rotate(var(--r,0deg)); }
  to{   transform:scale(1.03) rotate(var(--r,0deg)); }
}

@media (prefers-reduced-motion:reduce){
  .dish{
    animation:none;
    opacity:1;
    transform:rotate(var(--r,0deg));
  }
}
@media (max-width:1200px){
  .dish.main{
    --w:56% !important;
    --x:22% !important;
    --y:20% !important;
  }
}
@media (max-width:768px){
  .dish.main{
    --w:62% !important;
    --x:19% !important;
    --y:22% !important;
  }
}

/* ===== Spotlight: blend-in list + bigger left text ===== */
#spotlight .muted{ color:var(--muted); }
#spotlight-meta h3{
  font-size:clamp(28px, 2.2vw, 34px);
  line-height:1.25;
  margin-bottom:.35rem;
}
#spotlight-meta .en{
  font-size:clamp(16px, 1.4vw, 19px);
  font-weight:600;
  color:#374151;
}
#spotlight-meta .jp{
  font-size:clamp(14px, 1.2vw, 16px);
  color:#6b7280;
}
.fader{
  opacity:1;
  transition:opacity .35s ease;
}
.fader.is-fading{ opacity:0; }
#spotlight-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:0;
}
#spotlight-list .spotlight-item{
  position:relative;
  padding:.55rem 0;
  font-size:clamp(16px, 1.35vw, 20px);
  font-weight:600;
  color:#1f2937;
  cursor:pointer;
  user-select:none;
  transition:color .2s ease, transform .2s ease;
}
#spotlight-list .spotlight-item + .spotlight-item{
  border-top:1px solid rgba(0,0,0,.06);
}
#spotlight-list .spotlight-item:hover{
  color:var(--brand-red);
  transform:translateX(2px);
}
#spotlight-list .spotlight-item.active{ color:#111; }
#spotlight-list .spotlight-item.active::before{
  content:"";
  position:absolute;
  left:-14px;
  top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  transform:translateY(-50%);
  background:#b78a28;
}
@media (max-width:991.98px){
  #spotlight-list{ padding-left:12px; }
}
#spotlight-img{ border-radius:18px; }

/* === About / Story grid === */
#story .story-pic1 img{ object-position:center 1%; }
.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-areas:
    "pic1 pic2"
    "wide wide";
  gap:16px;
}
.story-pic1{ grid-area:pic1; }
.story-pic2{ grid-area:pic2; }
.story-wide{ grid-area:wide; }
.story-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:1.25rem;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.story-grid .story-pic1 img,
.story-grid .story-pic2 img{
  aspect-ratio:4 / 3;
}
.story-grid .story-wide img{
  aspect-ratio:16 / 9;
}
@media (max-width:991.98px){
  .story-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "pic1"
      "pic2"
      "wide";
  }
}

/* ===== Opening overlay (Step 1 scaffold) ===== */
:root{
  --arcXLeft:26px;
  --arcXRight:100px;
  --arcY:20px;
  --intro-hold:600ms;
}
#intro{
  position:fixed;
  inset:0;
  z-index:9999;
  opacity:1;
  transition:opacity .35s ease;
}
#intro::before{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:blur(10px) saturate(1.05);
  -webkit-backdrop-filter:blur(10px) saturate(1.05);
  background:rgba(255,255,255,.35);
  transition:opacity .6s ease;
}
.intro-center{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:24px;
}
.intro-brand{
  display:inline-flex;
  align-items:center;
  gap:clamp(12px, 2vw, 24px);
}
.logo-stack{
  position:relative;
  width:min(260px, 44vw);
  aspect-ratio:1 / 1;
}
.logo-stack img{
  position:absolute;
  inset:0;
  margin:auto;
  max-width:100%;
  max-height:100%;
  display:block;
}
.waterL{
  z-index:1;
  opacity:0;
  transform-origin:56% 80%;
}
.waterR{
  z-index:1;
  opacity:0;
  transform-origin:44% 80%;
}
#intro-fish{
  z-index:3;
  opacity:0;
  transform-origin:50% 80%;
}
#intro-name{
  opacity:0;
  transform:translateY(-40px);
  max-height:80px;
  object-fit:contain;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.16));
}
#final-still{
  position:absolute;
  inset:auto auto 4% 4%;
  width:min(260px,44vw);
  opacity:0;
  z-index:2;
  pointer-events:none;
}
#intro.is-gone{
  opacity:0;
  pointer-events:none;
}
body.intro-lock{ overflow:hidden; }

@keyframes waterLeftArc{
  0%   { transform:translate(0,14px) scale(.92,.90) rotate(-6deg); opacity:0; }
  30%  { opacity:1; }
  55%  { transform:translate(calc(-1*var(--arcXLeft)), calc(-1*var(--arcY))) scale(1.03,1.04) rotate(-2deg); }
  100% { transform:translate(-10px,0) scale(1,1) rotate(0deg); }
}
@keyframes waterRightArc{
  0%   { transform:translate(0,14px) scale(.92,.90) rotate(6deg); opacity:0; }
  30%  { opacity:1; }
  55%  { transform:translate(var(--arcXRight), calc(-1*var(--arcY))) scale(1.03,1.04) rotate(2deg); }
  100% { transform:translate(16px,0) scale(1,1) rotate(0deg); }
}
@keyframes fishJump{
  0%   { transform:translateY(48px) scale(.92) rotate(-6deg); opacity:0; }
  30%  { opacity:1; }
  45%  { transform:translateY(-26px) scale(1.05) rotate(-1deg); }
  70%  { transform:translateY(0)     scale(1)    rotate(3deg); }
  100% { transform:translateY(0)     scale(1)    rotate(0deg); }
}
@keyframes nameDrop{
  0%   { opacity:0; transform:translateY(-40px); }
  40%  { opacity:1; transform:translateY(10px); }
  70%  { transform:translateY(-4px); }
  100% { opacity:1; transform:translateY(0); }
}

.opening-playing .waterL     { animation:waterLeftArc  2s ease-out .05s both; }
.opening-playing .waterR     { animation:waterRightArc 2s ease-out .05s both; }
.opening-playing #intro-fish { animation:fishJump      2s ease-out .05s both; }
.opening-playing #intro-name { animation:nameDrop      1s ease-out .35s both; }

@media (prefers-reduced-motion:reduce){
  #intro{ display:none !important; }
  body.intro-lock{ overflow:auto !important; }
}

/* Back-to-top button */
#backToTop{
  position:fixed;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom));
  z-index:1080;
  display:none;
  border:none;
  border-radius:999px;
  padding:.7rem .9rem;
  background:var(--brand-red);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
  cursor:pointer;
}
#backToTop:focus-visible{
  outline:3px solid #60a5fa;
  outline-offset:3px;
}
#backToTop:hover{ filter:brightness(0.95); }
#backToTop:hover{ filter:brightness(0.95); }

/* Phones — fit all 5 dishes inside without overlap/cutoff */
@media (max-width:576px){
  .collage{ max-width:92vw; aspect-ratio:4/5; }

  /* Base size for dishes reduced to prevent cutoff */
  .collage .dish{ --w:45% !important; }

  /* Main dish (crab) also slightly smaller and re-centered */
  .collage .dish.main{
    --w:48% !important;
    --x:28% !important;
    --y:39% !important;
  }

  /* Positions adjusted to bring dishes in from the edges and prevent overlap */
  .collage .dish.soup   { --x:58% !important; --y:0% !important; }
  .collage .dish.shrimp { --x:58% !important; --y:68% !important; }
  .collage .dish.snail  { --x:2% !important; --y:2% !important; }
  .collage .dish.sashimi{ --x:-5% !important; --y:65% !important; --w:55% !important; }
 
} /* <-- FIXED: This closing bracket was the problem */

/* ===== FAQ PAGE STYLES ===== */
/* FIXED: This whole section was moved outside the media query above */
.faq-header {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  scroll-margin-top: 120px;
}

.faq-content {
  padding: 80px 0;
}

.accordion-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  background: #fff;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 18px !important;
}

.accordion-header {
  border-radius: 18px;
}

.accordion-button {
  font-family: 'Noto Serif TC', 'Inter', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  background: #fff;
  border-radius: 18px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.accordion-button:not(.collapsed) {
  color: var(--brand-red);
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(163, 23, 21, 0.25);
  border-color: rgba(163, 23, 21, 0.5);
}
.accordion-button::after {

  background-image: var(--bs-accordion-btn-icon);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body {
  background: #fff;
  padding: 0 1.25rem 1.25rem;
}
.accordion-body p,
.accordion-body ul,
.accordion-body ol {
  line-height: 1.8; 
  color: #374151;
  font-size: 1.15rem; 
}
.accordion-body ul,
.accordion-body ol {
  padding-left: 1.5rem;
  margin-bottom: 0;
}