/* =========================================================
   Sushi Soo — Shared Stylesheet
   Hanok-inspired palette: brighter terracotta, warm wood-brown, jade & gold accents
   Theming: default (home) / .theme-jp / .theme-kr / .theme-drinks (scoped wrappers)
   ========================================================= */

:root{
  --ink: #2b2118;             /* text colour — warm dark brown instead of near-black */
  --charcoal: #40311f;
  --cream: #fdf8ee;           /* brighter cream */
  --cream-2: #f7ead2;
  --gold: #d4a13d;            /* brighter, more saturated gold */
  --gold-soft: #f0c975;
  --gold-dark: #a97a24;
  --accent: #d1552e;          /* Sushi Soo signature terracotta */
  --accent-dark: #a63f20;
  --accent-tint: #fbe4d6;
  --deep: #4d2c1e;            /* warm terracotta-brown for dark-background sections (replaces near-black) */
  --deep-2: #663923;
  --text-soft: #7c6e58;
  --line: #f0dfb8;
  --shadow: 0 24px 50px -22px rgba(77,44,30,.35);
  --radius: 16px;
  font-size: 16px;
}

/* ---------- Theme: Japanese (scoped to a section wrapper) ---------- */
.theme-jp{
  --accent: #2f5a86;
  --accent-dark: #1f3d5c;
  --accent-tint: #e6eef6;
  --gold: #d4a13d;
  --deep: #234769;
  --deep-2: #2f5a86;
}

/* ---------- Theme: Korean (scoped to a section wrapper) ---------- */
.theme-kr{
  --accent: #d9432c;
  --accent-dark: #ab2f1c;
  --accent-tint: #fbe4dc;
  --gold: #dba14a;
  --deep: #8a2e1c;
  --deep-2: #b3402a;
}

/* ---------- Theme: Drinks (scoped to a section wrapper) ---------- */
.theme-drinks{
  --accent: #c98a2c;
  --accent-dark: #9c691c;
  --accent-tint: #fbecd2;
  --gold: #f0c975;
  --deep: #7a5518;
  --deep-2: #a97a24;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

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

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{ font-family:'Cormorant Garamond', serif; line-height:1.15; font-weight:600; }

/* ---------- Divider ---------- */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 auto 22px;
}
.divider::before, .divider::after{
  content:'';
  width:44px; height:1px;
  background:var(--gold);
}
.divider i{ color:var(--gold); font-size:.7rem; }
.divider.left{ justify-content:flex-start; margin-left:0; }
.divider.light::before, .divider.light::after{ background:var(--gold-soft); }
.divider.light i{ color:var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 32px;
  border-radius:100px;
  font-weight:600;
  font-size:.92rem;
  letter-spacing:.3px;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:all .3s ease;
  white-space:nowrap;
  font-family:'Inter', sans-serif;
}
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-dark); transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-outline{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.55); backdrop-filter:blur(4px); }
.btn-outline:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:var(--gold-dark); transform:translateY(-2px); }
.btn-outline-dark{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline-dark:hover{ background:var(--ink); color:#fff; }
.btn-gold{ background:var(--gold); color:#fff; }
.btn-gold:hover{ background:var(--gold-dark); transform:translateY(-2px); }

/* ---------- Top bar ---------- */
.top-bar{ background:var(--deep); color:#f5ecd8; font-size:.78rem; }
.top-bar-inner{
  max-width:1200px; margin:0 auto; padding:8px 24px;
  display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
}
.top-bar-inner i{ color:var(--gold-soft); margin-right:6px; }
.top-bar-rating i{ color:#f0b429; }
.top-bar-phone{ color:#e9e2d3; text-decoration:none; }
.top-bar-phone:hover{ color:var(--gold-soft); text-decoration:underline; }

/* ---------- Navbar ---------- */
.navbar{
  position:sticky; top:0; z-index:500;
  background:rgba(250,247,239,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-container{
  max-width:1200px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.logo{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); }
.logo-img{
  width:44px; height:44px; border-radius:50%;
  object-fit:cover; flex-shrink:0; border:1px solid var(--line); background:#fff;
}
.logo-text.light .logo-img{ border-color:rgba(255,255,255,.25); }
.logo-wordmark{ height:72px; width:auto; object-fit:contain; display:block; }
.footer-logo-wrap{
  display:inline-flex; align-items:center; background:#fff; padding:12px 20px;
  border-radius:10px; box-shadow:var(--shadow);
}
.footer-logo-wrap .logo-wordmark{ height:52px; }
.logo-text{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:1.55rem;
  letter-spacing:2px;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.logo-text .logo-sub{
  font-family:'Inter', sans-serif;
  font-size:.6rem;
  font-weight:600;
  letter-spacing:2.5px;
  color:var(--text-soft);
  text-transform:uppercase;
}
.logo-text em{ color:var(--accent); font-style:italic; }
.logo-text.light{ color:#fff; }
.logo-text.light .logo-sub{ color:#c9c1af; }

.nav-menu{ display:flex; gap:28px; flex:1; justify-content:center; }
.nav-menu a{
  color:var(--ink); text-decoration:none; font-weight:500; font-size:.92rem;
  position:relative; padding:6px 0; letter-spacing:.2px;
}
.nav-menu a.active{ color:var(--accent); }
.nav-menu a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--accent); transition:width .3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after{ width:100%; }

.nav-cta{
  background:var(--accent); color:#fff; padding:11px 24px; border-radius:100px;
  text-decoration:none; font-weight:600; font-size:.88rem; white-space:nowrap;
  transition:background .3s ease;
}
.nav-cta:hover{ background:var(--accent-dark); }

.menu-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.menu-toggle span{ width:26px; height:2px; background:var(--ink); border-radius:2px; transition:all .3s ease; }
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Home) ---------- */
.hero{ position:relative; min-height:94vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(77,44,30,.82) 18%, rgba(140,70,40,.48) 52%, rgba(180,100,50,.2) 100%);
}
.hero-content{ position:relative; z-index:1; max-width:1200px; margin:0 auto; padding:130px 24px 90px; color:#fff; width:100%; }
.hero-eyebrow{
  color:var(--gold-soft); letter-spacing:3px; text-transform:uppercase; font-size:.82rem; font-weight:600; margin-bottom:18px;
  font-family:'Inter',sans-serif;
}
.hero-title{
  font-size:clamp(2.6rem, 6.4vw, 5rem); font-weight:600; margin-bottom:24px; max-width:860px; letter-spacing:.5px;
}
.hero-title em{ font-style:italic; color:var(--gold-soft); }
.hero-title span{ display:block; font-size:.42em; font-weight:400; color:#e9e2d3; margin-top:10px; letter-spacing:3px; text-transform:uppercase; font-family:'Inter',sans-serif; }
.hero-subtitle{ max-width:580px; font-size:1.12rem; color:#e5ddcb; margin-bottom:38px; font-weight:300; }
.hero-badges{ display:flex; gap:22px; flex-wrap:wrap; margin-bottom:42px; }
.hero-badge{
  display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.22); backdrop-filter:blur(6px); padding:13px 20px; border-radius:12px;
}
.hero-badge i{ font-size:1.25rem; color:var(--gold-soft); }
.hero-badge strong{ display:block; font-size:1rem; font-weight:600; }
.hero-badge span{ display:block; font-size:.76rem; color:#f0dfc4; }
.hero-cta-row{ display:flex; gap:16px; flex-wrap:wrap; }
.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%); color:#fff; font-size:1.3rem;
  z-index:1; animation:bounce 2s infinite; opacity:.75;
}
@keyframes bounce{ 0%,100%{ transform:translate(-50%,0); } 50%{ transform:translate(-50%,10px); } }

/* ---------- Sub-page Hero (Japanese / Korean / Drinks) ---------- */
.page-hero{ position:relative; min-height:56vh; display:flex; align-items:center; overflow:hidden; }
.page-hero-bg{ position:absolute; inset:0; z-index:0; }
.page-hero-bg img{ width:100%; height:100%; object-fit:cover; }
.page-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(77,44,30,.45) 0%, rgba(77,44,30,.7) 100%);
}
/* ---------- In-page Cuisine Banner (Japanese / Korean / Drinks sections) ---------- */
.cuisine-banner{ position:relative; min-height:46vh; display:flex; align-items:center; overflow:hidden; }
.cuisine-banner-bg{ position:absolute; inset:0; z-index:0; }
.cuisine-banner-bg img{ width:100%; height:100%; object-fit:cover; }
.cuisine-banner-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(77,44,30,.4) 0%, rgba(77,44,30,.75) 100%);
}
.theme-jp .cuisine-banner-overlay{ background:linear-gradient(180deg, rgba(35,71,105,.4) 0%, rgba(35,71,105,.8) 100%); }
.theme-kr .cuisine-banner-overlay{ background:linear-gradient(180deg, rgba(138,46,28,.4) 0%, rgba(138,46,28,.8) 100%); }
.theme-drinks .cuisine-banner-overlay{ background:linear-gradient(180deg, rgba(122,85,24,.4) 0%, rgba(122,85,24,.8) 100%); }
.cuisine-banner-content{ position:relative; z-index:1; max-width:820px; margin:0 auto; padding:78px 24px; color:#fff; text-align:center; width:100%; }
.cuisine-banner-kicker{ letter-spacing:3px; text-transform:uppercase; font-size:.8rem; font-weight:600; color:var(--gold-soft); margin-bottom:14px; }
.cuisine-banner-title{ font-size:clamp(2.2rem, 5vw, 3.4rem); margin-bottom:14px; }
.cuisine-banner-title em{ font-style:italic; color:var(--gold-soft); }
.cuisine-banner-desc{ color:#e5ddcb; font-size:1rem; max-width:600px; margin:0 auto; font-weight:300; }
.cuisine-block{ border-top:1px solid rgba(255,255,255,.06); }
.page-hero-content{ position:relative; z-index:1; max-width:900px; margin:0 auto; padding:150px 24px 70px; color:#fff; text-align:center; width:100%; }
.page-hero-kicker{ letter-spacing:3px; text-transform:uppercase; font-size:.8rem; font-weight:600; color:var(--gold-soft); margin-bottom:14px; }
.page-hero-title{ font-size:clamp(2.4rem, 5.6vw, 4rem); margin-bottom:16px; }
.page-hero-title em{ font-style:italic; color:var(--gold-soft); }
.page-hero-desc{ color:#e5ddcb; font-size:1.05rem; max-width:640px; margin:0 auto; font-weight:300; }
.page-hero-crumb{ margin-top:26px; font-size:.85rem; color:#f0dfc4; }
.page-hero-crumb a{ color:var(--gold-soft); text-decoration:none; }
.page-hero-crumb a:hover{ text-decoration:underline; }

/* ---------- Info strip ---------- */
.info-strip{ background:var(--cream-2); padding:24px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.info-strip-inner{ max-width:1200px; margin:0 auto; padding:0 24px; display:flex; flex-wrap:wrap; justify-content:space-around; gap:16px; color:var(--charcoal); }
.info-item{ display:flex; align-items:center; gap:10px; font-size:.88rem; font-weight:600; }
.info-item i{ color:var(--accent); font-size:1.1rem; }

/* ---------- Section shared ---------- */
.section-eyebrow{ color:var(--accent); text-transform:uppercase; letter-spacing:3px; font-weight:700; font-size:.78rem; margin-bottom:12px; font-family:'Inter',sans-serif; }
.section-eyebrow.light{ color:var(--gold-soft); }
.section-title{ font-size:clamp(1.9rem, 4vw, 2.8rem); font-weight:600; color:var(--ink); margin-bottom:20px; }
.section-title em{ font-style:italic; color:var(--accent); }
.section-title.light{ color:#fff; }
.section-desc{ color:var(--text-soft); max-width:640px; margin:0 auto 24px; font-size:1.02rem; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- About ---------- */
.about-section{ padding:110px 0; background:var(--cream); }
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:74px; align-items:center; }
.about-image{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.about-image img{ width:100%; height:540px; object-fit:cover; }
.about-image-tag{
  position:absolute; bottom:22px; left:22px; background:rgba(255,255,255,.96);
  padding:11px 20px; border-radius:100px; font-size:.84rem; font-weight:600; display:flex; align-items:center; gap:8px;
}
.about-image-tag i{ color:#f0b429; }
.about-text p{ color:var(--text-soft); margin-bottom:17px; font-size:1.02rem; }
.about-highlights{ display:flex; flex-wrap:wrap; gap:12px; margin:26px 0 32px; }
.highlight-pill{
  display:flex; align-items:center; gap:8px; background:var(--cream-2); border:1px solid var(--line);
  padding:10px 18px; border-radius:100px; font-size:.84rem; font-weight:600; color:var(--charcoal);
}
.highlight-pill i{ color:var(--gold-dark); }

/* ---------- Cuisine Split (Home) ---------- */
.cuisine-section{ padding:110px 0; background:linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%); position:relative; }
.cuisine-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; margin-top:50px; }
.cuisine-card{
  position:relative; border-radius:20px; overflow:hidden; min-height:520px;
  display:flex; align-items:flex-end; text-decoration:none;
  box-shadow:var(--shadow); transition:transform .4s ease;
}
.cuisine-card:hover{ transform:translateY(-8px); }
.cuisine-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.cuisine-card:hover img{ transform:scale(1.06); }
.cuisine-card-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(58,32,20,.05) 30%, rgba(58,32,20,.9) 100%);
}
.cuisine-card-body{ position:relative; z-index:1; padding:40px; color:#fff; width:100%; }
.cuisine-tag{
  display:inline-block; font-size:.72rem; letter-spacing:2.5px; text-transform:uppercase; font-weight:700;
  padding:6px 14px; border-radius:100px; margin-bottom:16px;
}
.cuisine-card.jp .cuisine-tag{ background:rgba(31,51,80,.85); color:#dbe4ef; }
.cuisine-card.kr .cuisine-tag{ background:rgba(179,56,42,.88); color:#fbe6df; }
.cuisine-card.dr .cuisine-tag{ background:rgba(140,100,37,.88); color:#f7ecd6; }
.cuisine-card-body h3{ font-size:2.2rem; margin-bottom:10px; }
.cuisine-card-body p{ color:#d8d2c2; font-size:.96rem; margin-bottom:20px; max-width:400px; }
.cuisine-link{ display:inline-flex; align-items:center; gap:10px; color:#fff; font-weight:600; font-size:.92rem; text-decoration:none; }
.cuisine-link i{ transition:transform .3s ease; }
.cuisine-card:hover .cuisine-link i{ transform:translateX(6px); }

/* ---------- Menu (Japanese / Korean / Drinks pages) ---------- */
.menu-section{ padding:100px 0; background:var(--cream-2); }
.menu-intro{ max-width:700px; margin:0 auto 10px; text-align:center; }
.menu-tabs{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:34px 0 44px; }
.menu-tab{
  background:#fff; border:1px solid var(--line); color:var(--charcoal); padding:12px 22px; border-radius:100px;
  font-size:.85rem; font-weight:600; cursor:pointer; transition:all .25s ease; font-family:'Inter',sans-serif;
}
.menu-tab:hover{ border-color:var(--gold); color:var(--gold-dark); }
.menu-tab.active{ background:var(--accent); border-color:var(--accent); color:#fff; }

.menu-panel{ display:none; }
.menu-panel.active{ display:block; animation:fadeIn .4s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }

.menu-page-img{
  width:100%; max-width:730px; margin:0 auto; border-radius:var(--radius); box-shadow:var(--shadow);
  cursor:zoom-in; border:1px solid var(--line);
}
.menu-page-double{ display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:1100px; margin:0 auto; }
.menu-page-double .menu-page-img{ max-width:100%; }
.menu-note{ text-align:center; color:var(--text-soft); font-size:.85rem; margin-top:40px; }
.menu-note i{ color:var(--gold); margin-right:4px; }

/* ---------- Signature ---------- */
.signature-section{ background:linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%); padding:110px 0; }
.signature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; margin-top:46px; }
.signature-card{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius);
  overflow:hidden; position:relative; transition:transform .3s ease, background .3s ease; text-decoration:none; display:block;
}
.signature-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,.09); }
.sig-photo{ width:100%; height:210px; overflow:hidden; }
.sig-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.signature-card:hover .sig-photo img{ transform:scale(1.08); }
.signature-card h3, .signature-card p, .signature-card .sig-number{ padding-left:26px; padding-right:26px; }
.signature-card h3{ margin-top:20px; color:#fff; font-size:1.35rem; margin-bottom:10px; }
.signature-card p{ color:#e9d9bd; font-size:.92rem; padding-bottom:28px; }
.sig-number{
  display:inline-block; font-family:'Cormorant Garamond', serif; font-size:.85rem; font-weight:700;
  color:var(--ink); background:var(--gold-soft); padding:4px 12px; border-radius:6px; margin-top:20px;
}
.sig-cuisine{ display:inline-block; font-size:.68rem; letter-spacing:2px; text-transform:uppercase; font-weight:700; color:var(--gold-soft); margin-top:20px; }

/* ---------- Gallery ---------- */
.gallery-section{ padding:110px 0; background:var(--cream); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:220px; gap:18px; margin-top:46px; }
.gallery-item{ overflow:hidden; border-radius:var(--radius); box-shadow:var(--shadow); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item.large{ grid-column:span 2; grid-row:span 2; }
.gallery-item.wide{ grid-column:span 2; }

/* ---------- Reviews ---------- */
.reviews-section{ padding:110px 0; background:var(--cream-2); }
.rating-summary{ display:flex; align-items:center; justify-content:center; gap:22px; margin-bottom:48px; }
.rating-score{ font-family:'Cormorant Garamond', serif; font-size:3.4rem; font-weight:700; color:var(--accent); }
.rating-stars .stars{ color:#f0b429; font-size:1.4rem; letter-spacing:2px; }
.rating-stars span{ display:block; color:var(--text-soft); font-size:.85rem; }
.reviews-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.review-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px;
  display:flex; flex-direction:column; gap:16px; box-shadow:var(--shadow);
}
.review-stars{ color:#f0b429; letter-spacing:2px; }
.review-card p{ color:var(--charcoal); font-size:.92rem; flex:1; }
.review-author{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:38px; height:38px; border-radius:50%; background:var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0;
}
.review-author strong{ display:block; font-size:.88rem; }
.review-author span{ display:block; font-size:.75rem; color:var(--text-soft); }

/* ---------- Location ---------- */
.location-section{ padding:110px 0; background:var(--cream); }
.location-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:stretch; }
.location-list{ list-style:none; margin:26px 0 34px; display:flex; flex-direction:column; gap:20px; }
.location-list li{ display:flex; gap:16px; align-items:flex-start; }
.location-list i{
  color:#fff; background:var(--accent); width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.95rem;
}
.location-list strong{ display:block; font-size:.98rem; margin-bottom:2px; }
.location-list span{ color:var(--text-soft); font-size:.9rem; }
.location-cta-row{ display:flex; gap:16px; flex-wrap:wrap; }
.location-map{ min-height:400px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }

/* ---------- Footer ---------- */
.footer{ background:linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%); color:#e6d9c4; padding:84px 0 0; }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:50px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand p{ font-size:.9rem; margin:16px 0 20px; max-width:340px; }
.footer-brand .logo-text.light{ display:flex; align-items:center; gap:12px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; transition:all .25s ease;
}
.footer-social a:hover{ background:var(--accent); border-color:var(--accent); }
.footer-links h4, .footer-contact h4{ color:#fff; font-family:'Inter',sans-serif; font-size:1rem; margin-bottom:18px; letter-spacing:.5px; }
.footer-links{ display:flex; flex-direction:column; }
.footer-links a{ color:#e6d9c4; text-decoration:none; font-size:.9rem; margin-bottom:12px; transition:color .2s ease; }
.footer-links a:hover{ color:var(--gold-soft); }
.footer-contact p{ font-size:.9rem; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.footer-contact i{ color:var(--gold-soft); }
.footer-contact a{ color:#e6d9c4; text-decoration:none; transition:color .2s ease; }
.footer-contact a:hover{ color:var(--gold-soft); }
.footer-bottom{ text-align:center; padding:22px 0; font-size:.82rem; color:#c9b190; }

/* ---------- Lightbox ---------- */
.lightbox{ position:fixed; inset:0; background:rgba(43,33,24,.94); z-index:1000; display:none; align-items:center; justify-content:center; padding:40px; }
.lightbox.active{ display:flex; }
.lightbox img{ max-width:100%; max-height:90vh; border-radius:8px; box-shadow:0 30px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:24px; right:28px; background:rgba(255,255,255,.12); border:none; color:#fff;
  width:44px; height:44px; border-radius:50%; font-size:1.2rem; cursor:pointer; transition:background .2s ease;
}
.lightbox-close:hover{ background:var(--accent); }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; bottom:28px; right:28px; width:48px; height:48px; border-radius:50%;
  background:var(--accent); color:#fff; border:none; font-size:1rem; cursor:pointer; box-shadow:var(--shadow);
  z-index:400; opacity:0; pointer-events:none; transform:translateY(10px); transition:all .3s ease;
}
.back-to-top.visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.back-to-top:hover{ background:var(--accent-dark); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-image img{ height:380px; }
  .cuisine-grid{ grid-template-columns:1fr; }
  .cuisine-card{ min-height:400px; }
  .signature-grid{ grid-template-columns:repeat(2,1fr); }
  .reviews-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; }
  .gallery-item.large{ grid-column:span 2; grid-row:span 1; }
  .gallery-item.wide{ grid-column:span 2; }
  .location-grid{ grid-template-columns:1fr; }
  .location-map{ min-height:320px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:span 2; }
}

@media (max-width: 768px){
  .top-bar-inner{ font-size:.72rem; justify-content:center; gap:10px; text-align:center; }
  .logo-wordmark{ height:52px; }
  .nav-menu{
    position:fixed; top:0; right:-300px; height:100vh; width:280px; background:var(--cream);
    flex-direction:column; justify-content:flex-start; align-items:flex-start; padding:100px 32px 32px; gap:22px;
    transition:right .35s ease; box-shadow:-10px 0 40px rgba(0,0,0,.15); z-index:600;
  }
  .nav-menu.active{ right:0; }
  .nav-cta{ display:none; }
  .menu-toggle{ display:flex; position:relative; z-index:601; }
  .hero-content{ padding:110px 20px 60px; }
  .hero-badges{ gap:12px; }
  .hero-badge{ padding:10px 14px; }
  .page-hero-content{ padding:130px 20px 60px; }
  .menu-page-double{ grid-template-columns:1fr; }
  .signature-grid{ grid-template-columns:1fr; }
  .reviews-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:160px; }
  .gallery-item.large{ grid-column:span 2; grid-row:span 1; }
  .gallery-item.wide{ grid-column:span 2; }
  .footer-grid{ grid-template-columns:1fr; text-align:left; }
  .footer-brand{ grid-column:span 1; }
  .about-section, .menu-section, .signature-section, .gallery-section, .reviews-section, .location-section, .cuisine-section{ padding:64px 0; }
}

@media (max-width: 480px){
  .hero-cta-row{ flex-direction:column; align-items:stretch; }
  .hero-cta-row .btn{ justify-content:center; }
  .menu-tabs{ justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; padding-bottom:6px; -webkit-overflow-scrolling:touch; }
  .menu-tab{ flex-shrink:0; }
  .location-cta-row{ flex-direction:column; }
  .location-cta-row .btn{ justify-content:center; }
}
