/* ═══════════════════════════════════════════════════════════
   Saints & Sinners — Duality Theme
   Red Devil ↔ White Angel · Third Eye · Venice, CA
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --bg-dark:       #0a0a10;
  --bg-card:       #12121a;
  --bg-card-hover: #1a1a24;

  --sinner:        #b91c1c;          /* deep crimson */
  --sinner-light:  #dc2626;
  --sinner-glow:   rgba(220,38,38,.35);

  --saint:         #f5f0e8;          /* warm ivory */
  --saint-glow:    rgba(212,175,55,.30);

  --gold:          #d4af37;
  --gold-light:    #f0d060;

  /* Turquoise accent — traditional third eye */
  --turquoise:     #06b6d4;
  --turquoise-light: #22d3ee;
  --turquoise-glow: rgba(6,182,212,.30);
  --turquoise-deep: #0e7490;

  /* Warm amber accent — candlelit atmosphere */
  --amber:         #d97706;
  --amber-light:   #f59e0b;
  --amber-glow:    rgba(217,119,6,.25);

  --text:          #e8e0d4;
  --text-muted:    #8a7f72;

  --radius:        0.75rem;

  /* Theme-aware surfaces */
  --surface-bg:    var(--bg-dark);
  --surface-card:  var(--bg-card);
  --surface-card-hover: var(--bg-card-hover);
  --nav-bg:        rgba(10,10,16,.92);
  --nav-border:    rgba(6,182,212,.15);
  --mobile-nav-bg: rgba(10,10,16,.97);
  --footer-bg:     var(--bg-card);
  --input-bg:      rgba(255,255,255,.03);
  --overlay-grad:  rgba(10,10,16,.7);
  --scrollbar-track: var(--bg-dark);
  --card-shadow:   rgba(0,0,0,.4);
  --text-heading:  var(--saint);
}

/* ─── Light Theme ─────────────────────────────────────────── */
[data-theme="light"] {
  --surface-bg:    #f8f5f0;
  --surface-card:  #ffffff;
  --surface-card-hover: #f0ebe3;
  --nav-bg:        rgba(248,245,240,.95);
  --nav-border:    rgba(6,182,212,.12);
  --mobile-nav-bg: rgba(248,245,240,.98);
  --footer-bg:     #ede8e0;
  --input-bg:      rgba(0,0,0,.03);
  --overlay-grad:  rgba(248,245,240,.7);
  --scrollbar-track: #f0ebe3;
  --card-shadow:   rgba(0,0,0,.08);
  --text:          #2a2520;
  --text-muted:    #6b6055;
  --text-heading:  #1a1510;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--surface-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .4s, color .4s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

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

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

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--turquoise-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--turquoise); }

/* ─── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .4s;
  box-shadow: 0 2px 20px rgba(6,182,212,.06);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-eye { height: 38px; width: auto; object-fit: contain; filter: drop-shadow(0 0 6px rgba(6,182,212,.4)); }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--turquoise-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo img { height: 50px; object-fit: contain; filter: brightness(1.1); }

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color .3s, text-shadow .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--turquoise), var(--gold));
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saint);
  text-shadow: 0 0 20px rgba(6,182,212,.3);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-bg);
  transition: background .4s;
}

/* Duality split background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, var(--sinner-glow), transparent),
    radial-gradient(ellipse 40% 50% at 50% 30%, var(--turquoise-glow), transparent),
    radial-gradient(ellipse 50% 70% at 80% 50%, var(--amber-glow), transparent);
  opacity: .7;
  pointer-events: none;
}

/* Subtle grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: 5rem;
  color: var(--text-heading);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--sinner-light), var(--turquoise-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ─── Third Eye Decorative Symbol ─────────────────────────── */
.third-eye {
  display: inline-block;
  width: 60px; height: 60px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 12px rgba(6,182,212,.5)) drop-shadow(0 0 30px rgba(6,182,212,.2));
  animation: eyePulse 4s ease-in-out infinite;
}

.third-eye-lg {
  width: 80px; height: 80px;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 16px rgba(6,182,212,.6)) drop-shadow(0 0 40px rgba(6,182,212,.25));
}

@keyframes eyePulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(6,182,212,.5)) drop-shadow(0 0 30px rgba(6,182,212,.2)); }
  50%      { filter: drop-shadow(0 0 20px rgba(6,182,212,.7)) drop-shadow(0 0 50px rgba(6,182,212,.35)); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all .35s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--sinner), var(--sinner-light));
  color: white;
  box-shadow: 0 4px 20px var(--sinner-glow);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--sinner-glow);
  filter: brightness(1.15);
}

.btn-saint {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--saint-glow);
}

.btn-saint:hover {
  box-shadow: 0 8px 30px var(--saint-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--saint-glow);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }

.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Duality gradient divider */
.section-divider {
  height: 2px;
  width: 160px;
  background: linear-gradient(90deg, var(--sinner), var(--turquoise), var(--gold));
  margin: 0 auto 4rem;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(6,182,212,.2);
}

/* ═══════════════════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid rgba(6,182,212,.06);
  transition: transform .4s, box-shadow .4s, border-color .4s, background .4s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--card-shadow), 0 0 30px rgba(6,182,212,.06);
  border-color: rgba(6,182,212,.15);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.card:hover .card-img-wrapper img { transform: scale(1.08); }

/* Red vignette overlay on card images */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--overlay-grad));
  pointer-events: none;
}

.card-content { padding: 1.5rem; }

.card-content h3 {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--turquoise-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   SPECIALS (Featured) SECTION
   ═══════════════════════════════════════════════════════════ */
.specials {
  background: linear-gradient(135deg, #120808, #0a0a10 40%, #081014 70%, #0f0d08);
  border-top: 1px solid rgba(6,182,212,.1);
  border-bottom: 1px solid rgba(212,175,55,.15);
  color: var(--text);
  position: relative;
}

.specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(185,28,28,.08), transparent),
              radial-gradient(ellipse 50% 50% at 70% 50%, rgba(6,182,212,.06), transparent);
  pointer-events: none;
}

.specials-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.specials-img {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(185,28,28,.15), 0 0 40px rgba(6,182,212,.06);
  border: 1px solid rgba(6,182,212,.15);
}

.specials-img img {
  width: 100%; height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.specials-text { flex: 1; }

.badge {
  display: inline-block;
  background: rgba(185,28,28,.15);
  color: var(--sinner-light);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(185,28,28,.3);
}

.specials h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}

.specials p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HEADERS (sub-pages)
   ═══════════════════════════════════════════════════════════ */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface-bg);
  transition: background .4s;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 80%, var(--sinner-glow), transparent),
    radial-gradient(ellipse 40% 40% at 50% 30%, var(--turquoise-glow), transparent),
    radial-gradient(ellipse 60% 50% at 70% 20%, var(--amber-glow), transparent);
  opacity: .4;
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   DUALITY SECTION (About / split design)
   ═══════════════════════════════════════════════════════════ */
.duality-section {
  position: relative;
}

.duality-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--turquoise), transparent);
  transform: translateX(-50%);
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(6,182,212,.12);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--input-bg);
  color: var(--text);
  transition: border-color .3s, box-shadow .3s, background .4s;
}

.form-textarea { min-height: 150px; resize: vertical; }

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 2px var(--turquoise-glow);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
  opacity: .6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(6,182,212,.1);
  padding: 4rem 0;
  text-align: center;
  transition: background .4s;
}

.footer img {
  height: 55px;
  margin: 0 auto 2rem;
  opacity: .7;
}

.footer .footer-logo-eye {
  height: 50px;
  width: auto;
  margin: 0 auto 2rem;
  opacity: .8;
  filter: drop-shadow(0 0 10px rgba(6,182,212,.3));
}

.footer h3 {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-link {
  color: var(--turquoise-light);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(6,182,212,.3);
}

.footer-link:hover {
  color: var(--turquoise);
  text-decoration-color: var(--turquoise);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING THIRD EYE BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.floating-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-item {
  position: absolute;
  top: -150px; left: 10%;
  width: 100px;
  opacity: .10;
  animation: floatUpAndDown 22s linear infinite;
  filter: drop-shadow(0 0 8px rgba(6,182,212,.3));
}

@keyframes floatUpAndDown {
  0%   { transform: translateY(0vh)   rotate(0deg);   }
  50%  { transform: translateY(120vh) rotate(180deg);  }
  100% { transform: translateY(0vh)   rotate(360deg);  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════ */
.scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  z-index: 1000;
  cursor: pointer;
  animation: floatHover 3s infinite ease-in-out;
  border-radius: 50%;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(6,182,212,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform .3s, box-shadow .3s;
}

.scroll-to-top img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 0 4px rgba(6,182,212,.3));
}

.scroll-to-top:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 30px rgba(6,182,212,.35);
}

@keyframes floatHover {
  0%   { transform: translateY(0);     }
  50%  { transform: translateY(-8px);  }
  100% { transform: translateY(0);     }
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--turquoise);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ═══════════════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 0;
  transition: background .4s;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(6,182,212,.06);
  transition: color .2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--turquoise-light); }

/* ═══════════════════════════════════════════════════════════
   MENU CATEGORY HEADERS
   ═══════════════════════════════════════════════════════════ */
.menu-category {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(6,182,212,.12);
}

/* ═══════════════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Inline SVG third eye decorative element */
.eye-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto;
}

.eye-divider::before,
.eye-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise), transparent);
}

/* Glow card variant */
.card-sinner {
  border-color: rgba(185,28,28,.15);
}
.card-sinner:hover {
  border-color: rgba(185,28,28,.35);
  box-shadow: 0 20px 40px rgba(185,28,28,.12), 0 0 20px rgba(185,28,28,.08);
}

.card-saint {
  border-color: rgba(6,182,212,.1);
}
.card-saint:hover {
  border-color: rgba(6,182,212,.3);
  box-shadow: 0 20px 40px rgba(6,182,212,.08), 0 0 20px rgba(6,182,212,.06);
}

/* ═══════════════════════════════════════════════════════════
   DUALITY INTRO BANNER
   ═══════════════════════════════════════════════════════════ */
.duality-banner {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(6,182,212,.1);
  box-shadow: 0 10px 40px rgba(0,0,0,.3), inset 0 0 60px rgba(6,182,212,.03);
}

.duality-banner .side {
  flex: 1;
  padding: 3rem 2.5rem;
  text-align: center;
}

.duality-banner .side-sinner {
  background: linear-gradient(135deg, rgba(185,28,28,.12), rgba(10,10,16,.6));
  border-right: 1px solid rgba(6,182,212,.06);
}

.duality-banner .side-saint {
  background: linear-gradient(135deg, rgba(10,10,16,.6), rgba(6,182,212,.08));
}

.duality-banner h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.duality-banner .side-sinner h3 {
  color: var(--sinner-light);
}

.duality-banner .side-saint h3 {
  color: var(--turquoise-light);
}

.duality-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   INFO CARDS (delivery hours, etc.)
   ═══════════════════════════════════════════════════════════ */
.info-box {
  background: var(--surface-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(6,182,212,.08);
  transition: background .4s;
}

.info-box h3 {
  font-size: 1.5rem;
  color: var(--turquoise-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(6,182,212,.1);
}

/* ═══════════════════════════════════════════════════════════
   FORM CARD
   ═══════════════════════════════════════════════════════════ */
.form-card {
  background: var(--surface-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(6,182,212,.1);
  box-shadow: 0 10px 40px var(--card-shadow);
  transition: background .4s;
}

.form-card h3 {
  font-size: 1.75rem;
  color: var(--turquoise-light);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   SPECIALTIES GRID (Saints & Sinners Menu)
   ═══════════════════════════════════════════════════════════ */
.menu-category-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,55,.08);
  line-height: 1.6;
}

.specialties-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid rgba(6,182,212,.06);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .4s;
}

.specialty-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.specialty-sinner {
  border-left: 3px solid var(--sinner);
}
.specialty-sinner:hover {
  border-color: rgba(185,28,28,.4);
  box-shadow: 0 10px 30px rgba(185,28,28,.1);
}

.specialty-saint {
  border-left: 3px solid var(--turquoise);
}
.specialty-saint:hover {
  border-color: rgba(6,182,212,.5);
  box-shadow: 0 10px 30px rgba(6,182,212,.08);
}

.specialty-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.label-sinner {
  background: rgba(185,28,28,.15);
  color: var(--sinner-light);
  border: 1px solid rgba(185,28,28,.3);
}

.label-saint {
  background: rgba(6,182,212,.1);
  color: var(--turquoise-light);
  border: 1px solid rgba(6,182,212,.25);
}

.specialty-info {
  flex: 1;
}

.specialty-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.specialty-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.specialty-prices {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.specialty-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.specialty-price strong {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--turquoise-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   DRINKS GRID
   ═══════════════════════════════════════════════════════════ */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.drink-item {
  background: var(--surface-card);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(6,182,212,.06);
  text-align: center;
  transition: transform .3s, border-color .3s, background .4s;
}

.drink-item:hover {
  transform: translateY(-3px);
  border-color: rgba(6,182,212,.2);
}

.drink-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.drink-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   PHOTO GALLERY STRIP
   ═══════════════════════════════════════════════════════════ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.photo-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(6,182,212,.08);
  transition: transform .4s, box-shadow .4s, border-color .4s;
}

.photo-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.4), 0 0 20px rgba(6,182,212,.08);
  border-color: rgba(6,182,212,.2);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.photo-gallery-item:hover img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════
   CHEF SECTION
   ═══════════════════════════════════════════════════════════ */
.chef-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(6,182,212,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(6,182,212,.05);
}

.chef-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════════════════════════ */
.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 4px;
  transition: background .3s, border-color .3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--turquoise);
}

.theme-toggle-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--turquoise);
  transition: transform .3s, background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,.3), 0 0 8px rgba(6,182,212,.3);
}

[data-theme="light"] .theme-toggle {
  background: rgba(6,182,212,.1);
  border-color: rgba(6,182,212,.25);
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(24px);
  background: var(--turquoise);
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] .hero::before {
  opacity: .25;
}

[data-theme="light"] .page-header::before {
  opacity: .15;
}

[data-theme="light"] .specials {
  background: linear-gradient(135deg, #f5eeee, #f8f5f0 40%, #edf7f8 70%, #f5f0e0);
  border-top-color: rgba(6,182,212,.1);
  border-bottom-color: rgba(212,175,55,.1);
}

[data-theme="light"] .duality-banner .side-sinner {
  background: linear-gradient(135deg, rgba(185,28,28,.06), rgba(248,245,240,.4));
}

[data-theme="light"] .duality-banner .side-saint {
  background: linear-gradient(135deg, rgba(248,245,240,.4), rgba(6,182,212,.06));
}

[data-theme="light"] .nav-links a {
  color: #6b6055;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: #1a1510;
}

[data-theme="light"] .mobile-nav a {
  color: #6b6055;
  border-bottom-color: rgba(0,0,0,.06);
}

[data-theme="light"] .mobile-nav a:hover,
[data-theme="light"] .mobile-nav a.active {
  color: var(--turquoise-deep);
}

[data-theme="light"] .scroll-to-top {
  background: rgba(6,182,212,.12);
  border-color: rgba(6,182,212,.25);
  box-shadow: 0 4px 20px rgba(6,182,212,.12);
}

[data-theme="light"] .scroll-to-top:hover {
  box-shadow: 0 8px 30px rgba(6,182,212,.2);
}

[data-theme="light"] .floating-item {
  opacity: .06;
}

[data-theme="light"] .hamburger span {
  background: var(--turquoise-deep);
}

[data-theme="light"] .btn {
  box-shadow: 0 4px 20px rgba(185,28,28,.2);
}

[data-theme="light"] .card-sinner:hover {
  box-shadow: 0 20px 40px rgba(185,28,28,.08);
}

[data-theme="light"] .card-saint:hover {
  box-shadow: 0 20px 40px rgba(6,182,212,.06);
}

[data-theme="light"] .specials-img {
  box-shadow: 0 25px 60px rgba(6,182,212,.1);
}

[data-theme="light"] .chef-image {
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .logo-text { font-size: 1.05rem; }
  .logo-eye  { height: 32px; }

  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero h1 { font-size: 2.75rem; }
  .hero p  { font-size: 1.05rem; }

  .specials-content { flex-direction: column; gap: 2.5rem; }

  .page-header { padding: 130px 0 60px; }
  .page-header h1 { font-size: 2.75rem; }

  .section { padding: 60px 0; }
  .section-title { font-size: 2.25rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid   { grid-template-columns: 1fr; }

  .specialty-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .specialty-prices { width: 100%; justify-content: flex-start; gap: 2rem; }

  .photo-gallery { grid-template-columns: repeat(2, 1fr); }

  .duality-banner { flex-direction: column; }
  .duality-banner .side-sinner { border-right: none; border-bottom: 1px solid rgba(6,182,212,.06); }

  [style*="grid-template-columns: repeat(2"] { display: block !important; }
  [style*="grid-template-columns: repeat(2"] > * { margin-bottom: 2rem; }

  [style*="display: flex; justify-content: space-between"] {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer { padding: 3rem 0; }

  .scroll-to-top { width: 46px; height: 46px; bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .page-header h1 { font-size: 2.1rem; }
  .specials h2 { font-size: 2.25rem; }
  .container { padding: 0 1rem; }
}
