/* ═══════════════════════════════════════════════════════════
   QTEA DUBLIN — Luxurious Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'SN Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--bg);
  color: var(--text);
}

body.loading {
  overflow: hidden;
}


/* ─── LOADING SCREEN ────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out),
              visibility 0.6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader__cup {
  width: 80px;
  color: var(--accent);
}

.loader__cup svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.loader__cup-body {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: loaderDraw 1.4s var(--ease-out) forwards;
}

.loader__cup-rim {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: loaderDraw 1s var(--ease-out) 0.3s forwards;
}

@keyframes loaderDraw {
  to { stroke-dashoffset: 0; }
}

.loader__tea-clip-rect {
  animation: loaderFill 2s var(--ease-out) 0.5s forwards;
}

@keyframes loaderFill {
  0% { y: 160; }
  100% { y: 40; }
}

.loader__steam {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: loaderSteam 1.2s ease-in-out 0.8s infinite alternate;
}

.loader__steam--2 {
  animation-delay: 1s;
}

.loader__steam--3 {
  animation-delay: 1.2s;
}

@keyframes loaderSteam {
  0% { stroke-dashoffset: 40; opacity: 0; }
  50% { opacity: 0.5; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.loader__text {
  overflow: hidden;
}

.loader__kanji {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0;
  transform: translateY(100%);
  animation: loaderTextUp 0.7s var(--ease-out) 0.5s forwards;
  letter-spacing: 0.3em;
}

@keyframes loaderTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader__bar-track {
  width: 120px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
}


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

ul {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

address {
  font-style: normal;
}


/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'SN Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Noto Serif JP', serif;

  /* Sizing */
  --nav-height: 72px;
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

/* ─── LIGHT THEME ───────────────────────────────────────── */
[data-theme="light"] {
  --bg: #faf8f5;
  --bg-secondary: #f3efe9;
  --bg-card: #ffffff;
  --bg-nav: rgba(250, 248, 245, 0.85);
  --bg-order: #2c2c2c;

  --text: #2a2520;
  --text-secondary: #6b6158;
  --text-muted: #a09484;
  --text-on-dark: #faf8f5;

  --accent: #7b9e6b;
  --accent-light: #a8c99a;
  --accent-subtle: rgba(123, 158, 107, 0.1);

  --gold: #c5a254;
  --gold-light: #dfc07a;
  --gold-subtle: rgba(197, 162, 84, 0.12);

  --orange: #e8852e;

  --border: rgba(42, 37, 32, 0.08);
  --border-accent: rgba(123, 158, 107, 0.25);

  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.04);
  --shadow-md: 0 4px 20px rgba(42, 37, 32, 0.06);
  --shadow-lg: 0 12px 48px rgba(42, 37, 32, 0.08);
  --shadow-glow: 0 0 30px rgba(123, 158, 107, 0.15);

  --hero-gradient: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0) 0%,
    rgba(250, 248, 245, 0.6) 60%,
    rgba(250, 248, 245, 1) 100%
  );

  --card-glow: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(123, 158, 107, 0.06),
    transparent 40%
  );
}

/* ─── DARK THEME ────────────────────────────────────────── */
[data-theme="dark"] {
  --bg: #141413;
  --bg-secondary: #1c1c1a;
  --bg-card: #1f1f1d;
  --bg-nav: rgba(20, 20, 19, 0.88);
  --bg-order: #0a0a09;

  --text: #e8e4dd;
  --text-secondary: #a09a90;
  --text-muted: #6b655b;
  --text-on-dark: #e8e4dd;

  --accent: #8abf78;
  --accent-light: #6b9e5b;
  --accent-subtle: rgba(138, 191, 120, 0.08);

  --gold: #d4b06a;
  --gold-light: #b89548;
  --gold-subtle: rgba(212, 176, 106, 0.1);

  --orange: #f09840;

  --border: rgba(232, 228, 221, 0.06);
  --border-accent: rgba(138, 191, 120, 0.2);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(138, 191, 120, 0.1);

  --hero-gradient: linear-gradient(
    180deg,
    rgba(20, 20, 19, 0) 0%,
    rgba(20, 20, 19, 0.6) 60%,
    rgba(20, 20, 19, 1) 100%
  );

  --card-glow: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(138, 191, 120, 0.04),
    transparent 40%
  );
}


/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}


/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-title--light {
  color: var(--text-on-dark);
}

.section-title--light em {
  color: var(--gold-light);
}


/* ─── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s var(--ease-in-out),
              border-color 0.5s var(--ease-in-out),
              transform 0.4s var(--ease-out);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity var(--transition-fast);
}

.nav__logo:hover {
  opacity: 0.7;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

[data-theme="light"] .logo--dark,
[data-theme="dark"] .logo--light {
  display: none;
}

.nav__links {
  display: none;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle__track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: background 0.4s var(--ease-in-out),
              border-color 0.4s var(--ease-in-out);
  overflow: hidden;
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  transition: opacity 0.3s, color 0.3s;
}

.theme-toggle__icon--sun {
  left: 7px;
  color: var(--gold);
}

.theme-toggle__icon--moon {
  right: 7px;
  color: var(--accent);
}

[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
}

[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0.3;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 0.3;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 1;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.4s var(--ease-out),
              background 0.4s var(--ease-in-out);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(24px);
}

/* Mobile Menu Button */
.nav__mobile-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .nav__mobile-btn {
    display: none;
  }
}

.nav__mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out),
              opacity 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__mobile-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}

.nav__mobile-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-in-out);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  text-align: center;
}

.mobile-menu__links li {
  margin-bottom: var(--space-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out),
              opacity 0.5s var(--ease-out);
}

.mobile-menu.active .mobile-menu__links li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-menu__links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__links li:nth-child(3) { transition-delay: 0.3s; }

.mobile-menu__links a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition-fast);
}

.mobile-menu__links a:hover {
  color: var(--accent);
}


/* ─── HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__parallax-bg {
  position: absolute;
  inset: -50px;
  pointer-events: none;
  z-index: 0;
}

.hero__leaf {
  position: absolute;
  color: var(--accent);
  transition: color 0.6s var(--ease-in-out);
}

.hero__leaf--1 {
  width: 180px;
  top: 8%;
  right: 8%;
  transform: rotate(-15deg);
  animation: float 8s ease-in-out infinite;
}

.hero__leaf--2 {
  width: 120px;
  bottom: 15%;
  left: 5%;
  transform: rotate(25deg);
  animation: float 10s ease-in-out infinite 2s;
}

.hero__leaf--3 {
  width: 90px;
  top: 35%;
  left: 12%;
  transform: rotate(-40deg);
  animation: float 12s ease-in-out infinite 4s;
}

.hero__cup {
  position: absolute;
  width: 260px;
  right: 15%;
  bottom: 10%;
  color: var(--text);
  opacity: 0.6;
  transition: color 0.6s var(--ease-in-out);
}

@media (max-width: 768px) {
  .hero__cup {
    width: 160px;
    right: 5%;
    bottom: 15%;
  }

  .hero__leaf--1 {
    width: 120px;
    right: 2%;
  }

  .hero__leaf--2 {
    width: 80px;
  }

  .hero__leaf--3 {
    width: 60px;
  }
}

/* Boba Pearls */
.hero__pearl {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.06;
  transition: background 0.6s var(--ease-in-out);
}

.hero__pearl--1 { width: 300px; height: 300px; top: -5%; right: -5%; animation: float 9s ease-in-out infinite; }
.hero__pearl--2 { width: 200px; height: 200px; bottom: 10%; left: -3%; animation: float 11s ease-in-out infinite 1s; }
.hero__pearl--3 { width: 100px; height: 100px; top: 30%; right: 20%; animation: float 7s ease-in-out infinite 3s; }
.hero__pearl--4 { width: 60px; height: 60px; top: 60%; left: 25%; animation: float 8s ease-in-out infinite 2s; }
.hero__pearl--5 { width: 140px; height: 140px; bottom: 5%; right: 35%; animation: float 13s ease-in-out infinite 5s; }
.hero__pearl--6 { width: 80px; height: 80px; top: 15%; left: 40%; animation: float 10s ease-in-out infinite 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg);
  padding-bottom: 7rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero__title-kanji {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
  margin-left: 0.1em;
}

.hero__title-sub {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-top: 0.2em;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xl);
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta .btn {
  min-width: 180px;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}


/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(123, 158, 107, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(123, 158, 107, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.btn--delivery,
.btn--pickup {
  padding: 1.1rem 2.2rem;
  border-radius: var(--border-radius);
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: left;
}

.btn--delivery span,
.btn--pickup span {
  display: flex;
  flex-direction: column;
}

.btn--delivery small,
.btn--pickup small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn--delivery i,
.btn--pickup i {
  font-size: 1.3rem;
}

.btn--delivery {
  background: #ff3008;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 48, 8, 0.2);
}

.btn--delivery:hover {
  box-shadow: 0 8px 35px rgba(255, 48, 8, 0.35);
}

.btn--pickup {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(197, 162, 84, 0.2);
}

.btn--pickup:hover {
  box-shadow: 0 8px 35px rgba(197, 162, 84, 0.35);
}


/* ─── ABOUT SECTION ─────────────────────────────────────── */
.about {
  padding: var(--space-3xl) 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
  }
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__art {
  width: 85%;
  height: 85%;
  color: var(--accent);
  transition: color 0.6s var(--ease-in-out), opacity 0.6s var(--ease-out);
  position: absolute;
  z-index: 1;
}

.about__art.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Carousel */
.carousel {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.carousel.loaded {
  opacity: 1;
}

.carousel__track {
  position: absolute;
  inset: 0;
}

.carousel__track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s var(--ease-in-out);
}

.carousel__track img.active {
  opacity: 1;
}

.carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
}

.carousel__dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.4);
}

.carousel__dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Carousel Arrows */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out),
              background 0.3s var(--ease-out),
              transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}

.about__image-frame:hover .carousel__arrow {
  opacity: 1;
}

.carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.carousel__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel__arrow--prev {
  left: 0.75rem;
}

.carousel__arrow--next {
  right: 0.75rem;
}

.about__float-badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 5;
}

@media (min-width: 900px) {
  .about__float-badge {
    right: -2rem;
    bottom: 2rem;
  }
}

.about__float-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}

.about__float-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__content {
  max-width: 560px;
}

.about__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.about__text:last-of-type {
  margin-bottom: var(--space-xl);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.about__stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--accent);
}

.about__stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}


/* ─── MENU SECTION ──────────────────────────────────────── */
.menu {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
  position: relative;
  transition: background 0.6s var(--ease-in-out);
}

.menu__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.menu__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 400px;
  margin: 0 auto;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .menu__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

/* Menu Cards */
.menu-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.4s var(--ease-out);
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.menu-card__glow {
  position: absolute;
  inset: 0;
  background: var(--card-glow);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-card:hover .menu-card__glow {
  opacity: 1;
}

.menu-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
  color: var(--accent);
  transition: color 0.4s;
}

.menu-card__icon svg {
  width: 100%;
  height: 100%;
}

.menu-card__category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.menu-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.menu-card__items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-card__items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-card__items li:last-child {
  border-bottom: none;
}

.menu-card__item-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.menu-card__item-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}


/* ─── ORDER CTA SECTION ─────────────────────────────────── */
.order {
  padding: var(--space-3xl) 0;
  background: var(--bg-order);
  position: relative;
  overflow: hidden;
}

.order__wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.order__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.order .section-tag {
  color: var(--gold-light);
}

.order .section-tag::before {
  background: var(--gold-light);
}

.order__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.order__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-kanji {
  font-family: var(--font-accent);
  color: var(--accent);
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  line-height: 1.7;
}

.footer__info h4,
.footer__hours h4,
.footer__social h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.footer__info address,
.footer__hours p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.hours-table {
  border-collapse: collapse;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hours-table td {
  padding: 0.15rem 0;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--text);
  padding-right: 1rem;
  white-space: nowrap;
}

.hours-table td:last-child {
  white-space: nowrap;
}

.footer__social-links {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: transform var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.footer__social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}


/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────── */
.reveal,
.reveal-left,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}


/* ─── SMOOTH SCROLL & SELECTION ─────────────────────────── */
::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* Orange Q accent */
.q-accent {
  color: var(--orange);
  font-weight: inherit;
  letter-spacing: -0.02em;
  margin-right: -0.03em;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}


/* ─── RESPONSIVE FINE-TUNING ────────────────────────────── */
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn--delivery,
  .btn--pickup {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .order__buttons {
    flex-direction: column;
    align-items: center;
  }

  .about__stats {
    gap: var(--space-sm);
  }
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 var(--space-lg);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-up {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
