/* ===========================================================
   Makoto Revolving Sushi Bar and Tea — Staten Island, NY
   Premium dark Japanese theme | crimson + gold accents
   =========================================================== */

:root {
  --ink: #0e0e10;
  --ink-2: #16161a;
  --ink-3: #1f1f25;
  --paper: #f7f4ee;
  --paper-2: #efe9dd;
  --crimson: #c8102e;
  --crimson-dark: #9c0c23;
  --gold: #c9a24a;
  --gold-light: #e3c987;
  --text: #2a2a2a;
  --text-light: #d8d6d0;
  --muted: #8a8a8a;
  --border: #e4ddcf;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 14px;
  --maxw: 1240px;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Songti SC", Georgia, serif;
  --sans: "Poppins", "Helvetica Neue", "PingFang SC", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-ink { background: var(--ink-2); color: var(--text-light); }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-dark .eyebrow, .section-ink .eyebrow { color: var(--gold); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head .eyebrow { display: block; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-head p, .section-ink .section-head p { color: var(--text-light); opacity: 0.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--crimson-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(200, 16, 46, 0.4); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(201, 162, 74, 0.4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-3px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.18);
  transition: background 0.3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--crimson); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  border: 2px solid var(--gold);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--serif); color: #fff; font-size: 1.18rem; letter-spacing: 0.02em; }
.logo-text span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--text-light); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; position: relative; padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--crimson); transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: #fff; }
.nav .btn { padding: 11px 24px; font-size: 0.85rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; color: #fff; text-align: center;
  overflow: hidden; background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(10,10,12,0.55), rgba(10,10,12,0.80));
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: 120px 24px 80px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: 1.18rem; opacity: 0.92; margin-bottom: 36px; max-width: 620px; margin-left: auto; margin-right: auto; }
.hero .btn-row { justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); animation: bob 2s infinite; z-index: 2;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

.page-hero {
  padding: 170px 0 90px; text-align: center; color: #fff;
  background: linear-gradient(rgba(10,10,12,0.66), rgba(10,10,12,0.82)), url("images/sushi-11.jpg") center/cover;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; }
.page-hero p { opacity: 0.9; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { margin-top: 18px; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold); }
.breadcrumb a { opacity: 0.85; }
.breadcrumb a:hover { opacity: 1; }

/* ---------- Belt strip (marquee) ---------- */
.belt-strip { background: var(--crimson); overflow: hidden; padding: 14px 0; }
.belt-track { display: flex; gap: 48px; white-space: nowrap; animation: scroll-left 28s linear infinite; }
.belt-track span {
  font-family: var(--serif); font-style: italic; color: #fff;
  font-size: 1.05rem; display: flex; align-items: center; gap: 48px;
}
.belt-track span::after { content: "\25C6"; color: var(--gold-light); font-size: 0.7rem; }
@keyframes scroll-left { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ---------- Intro / about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }
.split-media .badge-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); color: var(--ink); padding: 22px 30px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
}
.split-media .badge-float strong { font-family: var(--serif); font-size: 2.2rem; display: block; }
.split-media .badge-float span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }
.split-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.split-text > p { color: var(--muted); margin-bottom: 18px; }
.section-dark .split-text > p, .section-ink .split-text > p { color: var(--text-light); opacity: 0.82; }
.feature-list { list-style: none; margin: 26px 0; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.feature-list li::before {
  content: "\2713"; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--crimson); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 700; margin-top: 3px;
}
.feature-list li strong { display: block; font-family: var(--serif); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong { font-family: var(--serif); font-size: 3rem; color: var(--gold); display: block; }
.stat span { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.82; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 0.95rem; }
.card-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--crimson); font-weight: 600; margin-bottom: 8px;
}

/* ---------- Plate pricing ---------- */
.plates { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.plate-card {
  background: var(--ink-3); border-radius: var(--radius); padding: 32px 18px;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.plate-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.plate-disc {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,0.35), 0 8px 18px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.15);
}
.plate-red { background: radial-gradient(circle at 35% 30%, #e6394e, #a50d20); }
.plate-silver { background: radial-gradient(circle at 35% 30%, #e8e8ea, #9a9aa0); }
.plate-gold { background: radial-gradient(circle at 35% 30%, #f0d488, #b8902f); }
.plate-black { background: radial-gradient(circle at 35% 30%, #4a4a52, #131316); }
.plate-jade { background: radial-gradient(circle at 35% 30%, #6fcf97, #1f7a4d); }
.plate-card .price { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.plate-card .label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); opacity: 0.7; }

/* ---------- Menu list ---------- */
.menu-block { margin-bottom: 56px; }
.menu-block-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.menu-block-head h3 { font-size: 1.8rem; white-space: nowrap; }
.menu-block-head .line { flex: 1; height: 1px; background: var(--border); }
.menu-block-head .jp { font-family: var(--serif); color: var(--crimson); font-size: 1rem; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 48px; }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.menu-item .mi-name { font-weight: 600; font-family: var(--serif); font-size: 1.06rem; }
.menu-item .mi-dots { flex: 1; border-bottom: 1px dotted #c9c2b2; transform: translateY(-4px); }
.menu-item .mi-price { font-weight: 700; color: var(--crimson); white-space: nowrap; }
.menu-item .mi-desc { display: block; width: 100%; color: var(--muted); font-size: 0.86rem; margin-top: -4px; }
.menu-note { background: var(--paper-2); border-left: 4px solid var(--gold); padding: 16px 22px; border-radius: 6px; font-size: 0.92rem; color: #555; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.12); filter: brightness(1.08); }
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; position: relative; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--crimson); color: #fff; display: flex; align-items: center;
  justify-content: center; font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  border: 3px solid var(--gold);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }
.section-dark .step p, .section-ink .step p { color: var(--text-light); opacity: 0.78; }

/* ---------- FAQ / accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 44px 24px 0; font-family: var(--serif); font-size: 1.16rem; font-weight: 700;
  color: var(--text); position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--crimson); transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 0 24px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }

/* GEO answer box */
.geo-box {
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  color: var(--text-light); border-radius: var(--radius);
  padding: 32px 36px; border-left: 5px solid var(--gold); margin: 28px 0;
}
.geo-box h3 { color: #fff; font-size: 1.35rem; margin-bottom: 12px; }
.geo-box h3 span { color: var(--gold); }
.geo-box p { opacity: 0.9; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); position: relative;
}
.quote-card::before {
  content: "\201C"; font-family: var(--serif); font-size: 5rem; color: var(--gold);
  position: absolute; top: 6px; left: 22px; line-height: 1; opacity: 0.5;
}
.quote-card p { font-style: italic; color: #444; margin: 18px 0 16px; position: relative; }
.quote-stars { color: var(--gold); letter-spacing: 2px; }
.quote-author { font-family: var(--serif); font-weight: 700; margin-top: 6px; }
.quote-author span { display: block; font-family: var(--sans); font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* ---------- Review carousel (auto-rotate) ---------- */
.review-carousel { max-width: 940px; margin: 0 auto; }
.review-viewport {
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; overflow: hidden;
}
.review-slide { display: none; text-align: center; padding: 8px 12px; }
.review-slide.active { display: block; animation: fadeReview 0.55s ease; }
@keyframes fadeReview { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.review-mark {
  font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--gold);
  opacity: 0.55; display: block; margin-bottom: 18px;
}
.review-source {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.review-stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 4px; margin-bottom: 22px; }
.review-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.42rem; line-height: 1.6;
  color: #fff; margin-bottom: 26px;
}
.review-author { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.08rem; }
.review-author span {
  display: block; font-family: var(--sans); font-weight: 400; font-size: 0.85rem;
  color: var(--text-light); opacity: 0.7; margin-top: 5px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(rgba(200,16,46,0.92), rgba(156,12,35,0.95)), url("images/sushi-3.jpg") center/cover fixed;
  color: #fff; text-align: center; padding: 90px 0;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { opacity: 0.94; margin-bottom: 30px; font-size: 1.08rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Info / contact ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card {
  background: var(--ink-3); border-radius: var(--radius); padding: 34px 28px;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
}
.info-card .ic-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(201,162,74,0.14); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.info-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.info-card p, .info-card a { color: var(--text-light); opacity: 0.85; font-size: 0.96rem; }
.info-card a:hover { color: var(--gold); opacity: 1; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--crimson); }
.hours-table tr:last-child td { border-bottom: none; }

/* ---------- Visit info panel (elegant card) ---------- */
.visit-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  padding: 34px 36px;
  margin: 30px 0;
}
.visit-card h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.visit-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200, 16, 46, 0.08); color: var(--crimson);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px dashed var(--border);
  font-size: 0.97rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li .hl-day { color: #555; font-weight: 500; letter-spacing: 0.01em; }
.hours-list li .hl-time { font-weight: 600; color: var(--text); font-family: var(--serif); }
.hours-list li .hl-time.today { color: var(--crimson); }
.visit-divider { height: 1px; background: var(--border); margin: 24px 0; }
.visit-row {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 10px 0; transition: color 0.25s ease;
}
.visit-row .vr-text { display: flex; flex-direction: column; line-height: 1.55; }
.visit-row .vr-text strong {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 2px;
}
.visit-row .vr-text span { font-size: 1rem; }
a.visit-row:hover { color: var(--crimson); }
a.visit-row:hover .visit-ico { background: var(--crimson); color: #fff; }

/* ---------- The Makoto Catch (full-width marquee) ---------- */
.catch-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.catch-track {
  display: flex; gap: 24px; width: max-content;
  animation: catch-scroll 64s linear infinite;
}
.catch-marquee:hover .catch-track { animation-play-state: paused; }
@keyframes catch-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.catch-slide {
  position: relative; flex: 0 0 auto;
  width: clamp(280px, 30vw, 460px);
  height: clamp(370px, 38vw, 580px);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.catch-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.catch-slide:hover img { transform: scale(1.08); }
.catch-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 58px 28px 24px;
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.94));
  color: #fff;
}
.catch-label strong { font-family: var(--serif); font-size: 1.42rem; display: block; }
.catch-label span {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Instagram section ---------- */
.ig-head { text-align: center; margin-bottom: 46px; }
.ig-handle {
  display: inline-flex; align-items: center; gap: 13px;
  font-family: var(--serif); font-size: 1.55rem; color: #fff; margin-top: 6px;
}
.ig-badge {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ig-tile:hover img { transform: scale(1.1); }
.ig-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(14, 14, 16, 0); opacity: 0; transition: 0.35s ease;
  color: #fff; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.ig-tile:hover .ig-overlay { background: rgba(14, 14, 16, 0.55); opacity: 1; }

/* ---------- Contact form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.contact-wrap > .visit-card, .contact-wrap > .form-card { height: 100%; }
.form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 9px;
  font-family: var(--sans); font-size: 0.95rem; background: var(--paper); transition: border-color 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--crimson);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 0; width: 100%; height: 340px; }

/* ---------- Visit Makoto section (refined) ---------- */
.visit-section {
  background: linear-gradient(160deg, #FAF7F0 0%, #F3E7D3 100%);
  padding: 112px 0; position: relative;
}
.visit-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(rgba(183,138,59,0.11) 1px, transparent 1.5px);
  background-size: 26px 26px;
}
.visit-wrap {
  position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 48fr 52fr; gap: 56px; align-items: start;
}
.visit-info .eyebrow { color: #C81E2A; }
.visit-info h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); color: #111111; margin-bottom: 16px; }
.visit-sub { color: #6F6A61; font-size: 1.05rem; line-height: 1.8; margin-bottom: 22px; }
.visit-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.visit-tag {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 7px 16px; border-radius: 50px;
  background: rgba(183,138,59,0.12); color: #B78A3B; border: 1px solid #E8D9C4;
}
.visit-card-v2 {
  background: rgba(255,255,255,0.94); border: 1px solid #E8D9C4; border-top: 3px solid #C81E2A;
  border-radius: 28px; padding: 32px 34px;
  box-shadow: 0 24px 60px rgba(17,17,17,0.08); margin-bottom: 28px;
}
.vc-hours h4 {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.2rem; color: #111111; margin-bottom: 14px;
}
.vc-ico {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: transform 0.3s ease;
}
.vc-ico-red { background: rgba(200,30,42,0.10); }
.vc-ico-gold { background: rgba(183,138,59,0.15); }
.vc-hours-list { list-style: none; }
.vc-hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; font-size: 0.97rem; border-bottom: 1px dashed #E8D9C4;
}
.vc-hours-list li:last-child { border-bottom: none; }
.vc-hours-list li span:first-child { color: #6F6A61; font-weight: 500; }
.vc-hours-list li span:last-child { color: #111111; font-weight: 600; font-family: var(--serif); }
.vc-line { height: 1px; background: #E8D9C4; margin: 20px 0; }
.vc-row { display: flex; align-items: flex-start; gap: 14px; padding: 9px 0; transition: color 0.25s ease; }
.vc-text { display: flex; flex-direction: column; line-height: 1.5; color: #111111; font-size: 1rem; }
.vc-text strong {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #B78A3B; font-weight: 700; margin-bottom: 2px;
}
a.vc-row:hover { color: #C81E2A; }
a.vc-row:hover .vc-ico { transform: scale(1.1); }
.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.vbtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.vbtn-arr { transition: transform 0.25s ease; }
.vbtn:hover .vbtn-arr { transform: translateX(4px); }
.vbtn-red { background: #C81E2A; color: #fff; }
.vbtn-red:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(200,30,42,0.34); }
.vbtn-ink { background: #111111; color: #fff; }
.vbtn-ink:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(17,17,17,0.28); }
.vbtn-outline { background: transparent; color: #111111; border-color: #E8D9C4; }
.vbtn-outline:hover { transform: translateY(-3px); border-color: #C81E2A; color: #C81E2A; box-shadow: 0 10px 24px rgba(17,17,17,0.08); }
.visit-map-col { display: flex; flex-direction: column; gap: 18px; }
.visit-map-frame {
  position: relative; border-radius: 32px; overflow: hidden;
  border: 1px solid #E8D9C4; box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.visit-map { width: 100%; height: 540px; display: block; border: 0; }
.map-status {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: #fff; color: #1f7a4d; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 50px; box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  display: inline-flex; align-items: center; gap: 7px;
}
.map-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2bb673;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(43,182,115,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(43,182,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,182,115,0); }
}
.map-float-card {
  position: absolute; bottom: 20px; left: 20px; z-index: 2; max-width: 300px;
  background: rgba(255,255,255,0.97); border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.20);
  display: flex; flex-direction: column; gap: 3px;
}
.map-float-card strong { font-family: var(--serif); font-size: 1.02rem; color: #111111; }
.map-float-card span { font-size: 0.84rem; color: #6F6A61; }
.map-float-card small { font-size: 0.73rem; color: #B78A3B; margin-top: 4px; }
.landmarks {
  background: rgba(255,255,255,0.72); border: 1px solid #E8D9C4;
  border-radius: 24px; padding: 22px 24px;
}
.landmarks-title {
  display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #B78A3B; font-weight: 700; margin-bottom: 14px;
}
.landmark-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.landmark-chip {
  font-size: 0.84rem; color: #111111; background: #FAF7F0;
  border: 1px solid #E8D9C4; border-radius: 50px; padding: 8px 16px; cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.landmark-chip:hover {
  transform: translateY(-4px); border-color: #B78A3B;
  box-shadow: 0 10px 22px rgba(17,17,17,0.10);
}
.visit-map-col.reveal { transform: translateY(36px) scale(0.97); }
.visit-map-col.reveal.visible { transform: translateY(0) scale(1); }

@media (max-width: 980px) {
  .visit-section { padding: 80px 0; }
  .visit-wrap { grid-template-columns: 1fr; gap: 40px; }
  .visit-info { text-align: center; }
  .visit-info .visit-tags, .visit-info .visit-cta { justify-content: center; }
  .visit-cta { flex-direction: column; }
  .vbtn { justify-content: center; }
  .visit-map { height: 360px; }
}
@media (max-width: 480px) {
  .visit-card-v2 { padding: 26px 22px; }
  .map-float-card { max-width: calc(100% - 40px); }
}

/* ---------- Blog ---------- */
.blog-card .card-body { padding: 28px; }
.blog-meta { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 10px; }
.blog-meta span { color: var(--crimson); font-weight: 600; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card .read { color: var(--crimson); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; }

.article { max-width: 820px; margin: 0 auto; }
.article p { margin-bottom: 22px; color: #3a3a3a; }
.article h2 { font-size: 1.9rem; margin: 44px 0 18px; }
.article h3 { font-size: 1.4rem; margin: 32px 0 14px; }
.article img { border-radius: var(--radius); margin: 30px 0; box-shadow: var(--shadow); }
.article ul, .article ol { margin: 0 0 22px 22px; color: #3a3a3a; }
.article li { margin-bottom: 8px; }
.article-lead { font-size: 1.18rem; color: #555 !important; font-family: var(--serif); font-style: italic; }
.article-share { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--text-light); padding: 70px 0 0; }
.footer-content { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-section h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.footer-section p { font-size: 0.92rem; opacity: 0.78; margin-bottom: 10px; }
.footer-section a:hover { color: var(--gold); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 9px; }
.footer-links-list a { font-size: 0.92rem; opacity: 0.78; }
.footer-links-list a:hover { opacity: 1; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink-3);
  display: flex; align-items: center; justify-content: center; font-size: 0.82rem;
  letter-spacing: 0.04em; transition: background 0.25s ease;
}
.footer-social a:hover { background: var(--crimson); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center;
  font-size: 0.82rem; opacity: 0.62;
}
.footer-bottom .footer-partner { margin-top: 8px; }
.footer-bottom .footer-partner a { color: var(--gold); }

/* ---------- Dynamic hover effects ---------- */
@keyframes shine { to { left: 145%; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Shine sweep across image cards */
.card-img { position: relative; }
.card-img::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  z-index: 3; transform: skewX(-22deg); pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}
.card:hover .card-img::after { animation: shine 0.95s ease; }
.card-body h3 { transition: color 0.3s ease; }
.card:hover .card-body h3 { color: var(--crimson); }
.card:hover .card-img img { transform: scale(1.12); }
.card-tag { transition: letter-spacing 0.3s ease; }
.card:hover .card-tag { letter-spacing: 0.2em; }

/* Catch slides — gold frame, brightness, label shift */
.catch-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border: 0 solid var(--gold); border-radius: var(--radius);
  transition: border-width 0.3s ease;
}
.catch-slide:hover::after { border-width: 3px; }
.catch-slide:hover img { transform: scale(1.1); filter: brightness(1.08) saturate(1.1); }
.catch-slide .catch-label strong { transition: transform 0.35s ease; }
.catch-slide:hover .catch-label strong { transform: translateX(8px); }

/* Instagram tiles */
.ig-tile:hover img { transform: scale(1.14) rotate(1.5deg); }

/* Split-media images lift on hover (no clip — keeps badge visible) */
.split-media img { transition: transform 0.55s ease, box-shadow 0.55s ease; }
.split-media:hover img { transform: translateY(-10px); box-shadow: 0 32px 72px rgba(0,0,0,0.34); }
.badge-float { animation: floaty 3.6s ease-in-out infinite; }

/* Plate discs spin on hover */
.plate-disc { transition: transform 0.6s ease; }
.plate-card:hover .plate-disc { transform: rotate(160deg) scale(1.07); }

/* Buttons — shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  transform: skewX(-22deg); pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0) 100%);
}
.btn:hover::after { animation: shine 0.8s ease; }

/* Info & quote cards */
.info-card { transition: transform 0.3s ease, border-color 0.3s ease; }
.info-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.info-card .ic-icon { transition: transform 0.35s ease; }
.info-card:hover .ic-icon { transform: scale(1.14) rotate(-6deg); }
.quote-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.quote-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

/* Step numbers pulse */
.step-num { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(200,16,46,0.12); }

/* GEO answer boxes */
.geo-box { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.geo-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Section heading underline accent */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: -12px; width: 0; height: 3px;
  background: var(--crimson); border-radius: 2px; transform: translateX(-50%);
  transition: width 0.6s ease;
}
.section-head.visible h2::after, .reveal.visible .section-head h2::after { width: 64px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Staggered cascade for grid children */
.grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid-4 > .reveal:nth-child(4) { transition-delay: 0.3s; }
.grid-3 > .reveal:nth-child(5) { transition-delay: 0.1s; }
.grid-3 > .reveal:nth-child(6) { transition-delay: 0.2s; }
.plates > .reveal:nth-child(2) { transition-delay: 0.08s; }
.plates > .reveal:nth-child(3) { transition-delay: 0.16s; }
.plates > .reveal:nth-child(4) { transition-delay: 0.24s; }
.plates > .reveal:nth-child(5) { transition-delay: 0.32s; }
.steps > .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps > .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps > .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
  .belt-track, .badge-float, .catch-track { animation: none; }
  .card:hover .card-img::after, .btn:hover::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .plates { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; top: 78px; right: 0; width: 280px; height: calc(100vh - 78px);
    background: var(--ink-2); flex-direction: column; align-items: flex-start;
    padding: 32px 30px; gap: 22px; transform: translateX(100%); transition: transform 0.35s ease;
    border-left: 1px solid rgba(201,162,74,0.18);
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .split, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .split-media .badge-float { right: 18px; bottom: -22px; }
  .grid-3, .grid-2, .info-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .gallery-grid, .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 0; }
  .hero { background-attachment: scroll; }
  .cta-band { background-attachment: scroll; }
  .form-row { grid-template-columns: 1fr; }
  .review-quote { font-size: 1.12rem; }
  .review-viewport { min-height: 360px; }
}
@media (max-width: 480px) {
  .grid-4, .plates, .gallery-grid { grid-template-columns: 1fr; }
  .logo-text strong { font-size: 1rem; }
  .stat strong { font-size: 2.3rem; }
}
