/* =============================================
   SEAFOOD KINGS — Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Dark background on html (not just body) prevents a white flash at the
     nav/hero seam during scroll repaints and overscroll bounce. */
  background: #0D0D0D;
  overscroll-behavior: none;
}

/* --- Accessibility: keyboard focus --- */
/* Mouse users see no ring; keyboard users get a clear gold focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: var(--gold);
  color: #0D0D0D;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background: #0D0D0D;
  color: #E0E0E0;
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --bg:         #0D0D0D;
  --bg-2:       #141414;
  --bg-3:       #1C1C1C;
  --gold:       #F2C34F;
  --gold-dark:  #C9A030;
  --gold-light: #F7D97C;
  --white:      #FFFFFF;
  --text:       #E0E0E0;
  --muted:      #808080;
  --border:     rgba(242,195,79,0.12);
  --border-2:   rgba(255,255,255,0.06);
  --radius:     6px;
  --radius-lg:  14px;
  --shadow:     0 4px 30px rgba(0,0,0,0.5);
  --glow:       0 0 40px rgba(242,195,79,0.12);
  --transition: 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:      1200px;
  --nav-h:      80px;
}

/* --- Typography --- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text); line-height: 1.8; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-header { margin-bottom: 3.5rem; }

.divider {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}
.divider-left { margin: 1.25rem 0; }

/* --- Buttons --- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo, ease),
              box-shadow 0.35s ease,
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
  border: none;
}
/* Keep button label above the sheen */
.btn > * { position: relative; z-index: 1; }

.btn-primary {
  background: var(--gold);
  color: #0D0D0D;
}
/* Light sheen sweeps across on hover — subtle, expensive */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out-expo, ease);
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242,195,79,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0D0D0D;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.875rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}
/* Logo sits on the left, fixed width so links can center */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
/* Logo: badge image only — larger so SEAFOOD KINGS text inside is readable */
.nav-logo {
  display: flex !important;
  align-items: center;
}
.logo-img {
  height: 58px;
  width: 58px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.logo-fallback { display: none; }
@media (max-width: 480px) { .logo-img { height: 46px; width: 46px; } }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 0.55rem 1.35rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-2);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn {
  margin-top: 2rem;
  width: 100%;
  font-size: 0.875rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
/* =============================================
   SMOOTH SCROLL HERO (SmoothScrollHero port)
   ============================================= */

/* Outer wrapper — total height = scrollHeight + 100vh
   gives the sticky element room to animate            */
.ssh-wrapper {
  position: relative;
  width: 100%;
  height: calc(1500px + 100vh);
}

/* Sticky viewport — stays fixed while parent scrolls */
.ssh-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

/* Clipping container — clip-path driven by JS */
.ssh-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  /* Initial state: 25%–75% center crop (matches initialClipPercentage=25) */
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  will-change: clip-path;
  overflow: hidden;
}

/* Chef's video fills the clipped container */
.ssh-video {
  position: absolute;
  inset: -2px; /* tiny bleed to prevent sub-pixel edge flash */
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  /* Initial zoom matches backgroundSize 170% */
  transform: scale(1.7);
  transform-origin: center center;
  will-change: transform;
}

/* Dark gradient overlay — keeps text readable at all clip states */
.ssh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.50) 55%,
    rgba(13,13,13,0.72) 100%
  );
  z-index: 1;
}

/* Decorative layers sit above video overlay */
.ssh-sticky .hero-grain { z-index: 2; pointer-events: none; }
.ssh-sticky .hero-glow  { z-index: 2; pointer-events: none; }

/* Hero content — full height flex column so stats pin to bottom */
.ssh-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: stretch;
}
.ssh-content .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  width: 100%;
}
/* Staggered pop-up reveal — each element starts hidden + below, JS pops them up top→bottom */
.hero-pill,
.ssh-content h1,
.hero-sub,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(55px);
  will-change: opacity, transform;
  animation: none !important;
}

/* Subtext: white with shadow so it reads over any video frame */
.hero-sub {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow:
    0 1px 12px rgba(0, 0, 0, 0.85),
    0 2px 4px  rgba(0, 0, 0, 0.6);
}
/* Keep hero-content as a natural flow block */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
}
/* Stats pinned to bottom, no cut-off */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* Scroll hint */
.ssh-sticky .hero-scroll-hint { z-index: 10; }

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(242,195,79,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(242,195,79,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,195,79,0.08);
  border: 1px solid rgba(242,195,79,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeSlideUp 0.8s ease both;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.8); }
}

.hero h1 {
  animation: fadeSlideUp 0.8s 0.15s ease both;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease both;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.7);
}
/* Divider line above stats reads better over video too */
.hero-stats { border-top-color: rgba(255,255,255,0.18); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll-hint::before {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

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

@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* =============================================
   MENU CARDS
   ============================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.menu-card:hover {
  border-color: rgba(242,195,79,0.35);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.menu-card-img {
  height: 210px;
  background: linear-gradient(135deg, #181818, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.menu-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.4), transparent 60%);
}
.menu-badge {
  position: absolute;
  top: 0.875rem; right: 0.875rem;
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  z-index: 1;
}
.menu-card-body { padding: 1.5rem; }
.menu-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.menu-card-body p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.6; }
.menu-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.price-note {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  margin-top: 0.1rem;
}

/* =============================================
   RETAIL / RAW SECTION
   ============================================= */
.retail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Homepage split photo — moody fish counter in a gold-edged frame */
.retail-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.retail-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.retail-photo:hover img { transform: scale(1.05); }
/* Warm gradient kiss at the bottom so chips below feel connected */
.retail-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.45), transparent 45%);
  pointer-events: none;
}

/* =============================================
   BAKED STUFFED OYSTERS FEATURE
   ============================================= */
.oyster-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  margin-top: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.oyster-feature:hover {
  border-color: rgba(242,195,79,0.25);
  box-shadow: var(--glow);
}
.oyster-feature-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.oyster-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.oyster-feature:hover .oyster-feature-img img { transform: scale(1.05); }
.oyster-feature-body { padding: 2.5rem; }

.oyster-menu { margin-top: 0.5rem; }
.oyster-row {
  display: grid;
  grid-template-columns: 1fr 76px 76px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-2);
}
.oyster-row > span:not(.oyster-name) {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  font-size: 1rem;
}
.oyster-head { border-bottom: 1px solid var(--border); }
.oyster-head > span {
  font-family: var(--font-body) !important;
  font-size: 0.66rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
}
.oyster-name {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.oyster-name small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}
.oyster-row-hero {
  background: rgba(242,195,79,0.07);
  margin: 0.35rem -0.85rem 0;
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius);
  border-bottom: none;
}
.oyster-row-hero .oyster-name { color: var(--gold); }

@media (max-width: 768px) {
  .oyster-feature { grid-template-columns: 1fr; }
  .oyster-feature-img { min-height: 220px; }
  .oyster-feature-body { padding: 1.75rem 1.5rem; }
}

/* Products page raw-tab banner — full-width cinematic counter shot */
.retail-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.retail-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out-expo);
}
.retail-banner:hover img { transform: scale(1.04); }
.retail-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.55) 45%,
    rgba(13,13,13,0.15) 100%
  );
}
.retail-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  max-width: 540px;
}
.retail-banner-text h2 { margin-bottom: 0.5rem; }
.retail-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 380px;
}
@media (max-width: 600px) {
  .retail-banner img { height: 240px; }
  .retail-banner-text { padding: 0 1.5rem; }
  .retail-banner-overlay {
    background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.25) 100%);
  }
  .retail-banner-text { justify-content: flex-end; padding-bottom: 1.5rem; }
  .retail-photo img { height: 240px; }
}

.retail-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.retail-cat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(242,195,79,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  transition: all var(--transition);
}
.retail-cat:hover { border-color: var(--gold); color: var(--gold); }
.rcat-icon { font-size: 1.2rem; }

/* Products Page Tabs */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.9rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.retail-cat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 2.5rem 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.retail-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}
.retail-item {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.retail-item:hover { border-color: rgba(242,195,79,0.3); transform: translateY(-2px); }
.retail-item-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.retail-item-note { font-size: 0.72rem; color: var(--muted); }
.retail-item .btn { font-size: 0.68rem; padding: 0.45rem 0.9rem; }

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(242,195,79,0.25);
  transform: translateY(-3px);
}
.feature-icon  { font-size: 2rem; display: block; margin-bottom: 1.1rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p  { font-size: 0.875rem; color: var(--muted); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, rgba(242,195,79,0.08) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p  { max-width: 460px; margin: 0 auto 2.25rem; color: var(--muted); }
.cta-band .btn-row {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   QUOTE MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  background: none; border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--white); }
.modal h3 { margin-bottom: 0.3rem; }
.modal .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #1C1C1C; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { width: 100%; margin-top: 0.5rem; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  overflow: hidden;
}
.about-badge-float {
  position: absolute;
  top: 2rem; left: -2rem;
  background: var(--gold);
  color: #0D0D0D;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 110px;
  box-shadow: 0 8px 30px rgba(242,195,79,0.3);
}
.about-badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.about-badge-float span { font-size: 0.7rem; font-weight: 700; }

.about-vals { display: flex; flex-direction: column; gap: 0.875rem; margin: 1.75rem 0 2.25rem; }
.about-val {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.av-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.about-val h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.about-val p  { font-size: 0.8rem; color: var(--muted); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(242,195,79,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.service-icon { font-size: 2.25rem; }
.service-card h3 { font-size: 1.2rem; }
.service-card p  { font-size: 0.875rem; color: var(--muted); flex: 1; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid rgba(242,195,79,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #0D0D0D;
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(242,195,79,0.25);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #181818, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-card-body { padding: 1.6rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.65rem;
}
.blog-cat {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-date { font-size: 0.72rem; color: var(--muted); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }
.blog-read {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read { gap: 0.65rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon {
  width: 40px; height: 40px;
  background: rgba(242,195,79,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.cd-text span { font-size: 0.9rem; color: var(--muted); }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.75rem; }
.soc-link {
  width: 40px; height: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all var(--transition);
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); }

.contact-form-box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-form-box h3 { margin-bottom: 0.3rem; }
.contact-form-box > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,195,79,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p  { color: var(--muted); max-width: 520px; font-size: 1.05rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.875rem 0 1.5rem;
  max-width: 270px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
/* Refined reveal — expensive easing (easeOutExpo-ish), subtle scale + lift.
   Slower, deeper settle reads as crafted rather than default AOS fade. */
:root { --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1); }

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.revealed { opacity:1; transform: translateY(0) scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.revealed { opacity:1; transform:translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.revealed { opacity:1; transform:translateX(0); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* =============================================
   GOLD LINE-ICON SYSTEM
   ============================================= */
.ic {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
/* Icon containers render in gold */
.rcat-icon,
.feature-icon,
.service-icon,
.av-icon,
.cd-icon { color: var(--gold); }

/* Contact icons a touch larger inside their 40px tiles */
.cd-icon .ic { width: 1.25rem; height: 1.25rem; }

/* Social icons: inherit link color (muted → dark on gold hover) */
.soc-link .ic { width: 1.2rem; height: 1.2rem; }

/* Blog card "image" becomes a large centered gold icon mark */
.blog-card-img .ic {
  width: 3.25rem;
  height: 3.25rem;
  color: var(--gold);
  opacity: 0.9;
  stroke-width: 1.4;
  transition: transform 0.6s var(--ease-out-expo);
}
.blog-card:hover .blog-card-img .ic { transform: scale(1.08) translateY(-2px); }

/* CTA buttons with a leading icon: nudge spacing */
.btn .ic { width: 1.1em; height: 1.1em; margin-right: 0.1em; }

/* =============================================
   HANDCRAFTED MICRO-INTERACTIONS
   ============================================= */

/* Cursor-tracking gold glow — a soft light follows the pointer inside cards.
   JS sets --mx / --my per card. Restrained opacity = expensive, not flashy. */
.menu-card, .feature-card, .service-card, .blog-card { position: relative; }
.menu-card::before,
.feature-card::before,
.service-card::before,
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(242, 195, 79, 0.10),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 3;
}
.menu-card:hover::before,
.feature-card:hover::before,
.service-card:hover::before,
.blog-card:hover::before { opacity: 1; }

/* Refined, slower hover lift on cards — expensive easing + deeper shadow */
.menu-card, .feature-card, .service-card, .blog-card {
  transition: transform 0.5s var(--ease-out-expo),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

/* Eyebrow gets a small gold tick that draws in when its section reveals */
.reveal .eyebrow,
.reveal-left .eyebrow,
.reveal-right .eyebrow { position: relative; }

/* Animated underline-wipe for footer + quick links */
.footer-col ul li a,
.blog-read {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease-out-expo), color 0.3s ease, gap 0.3s ease;
}
.footer-col ul li a:hover { background-size: 100% 1px; }

/* Social icons: gold fill rises from bottom on hover */
.soc-link {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.soc-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.soc-link:hover { color: #0D0D0D; border-color: var(--gold); }
.soc-link:hover::before { transform: translateY(0); }

/* Retail item + contact-detail icons: subtle scale-in on row hover */
.retail-cat:hover .rcat-icon,
.contact-detail:hover .cd-icon { transform: scale(1.12); }
.rcat-icon, .cd-icon { transition: transform 0.4s var(--ease-out-expo); }

/* Magnetic buttons get smoothed return when JS releases them */
.btn.is-magnetic { transition: transform 0.45s var(--ease-out-expo), box-shadow 0.35s ease, background 0.3s ease; }

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.gone { opacity:0; visibility:hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.loader-logo span { color: var(--gold); }
.loader-track {
  width: 180px; height: 2px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderAnim 1s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderAnim {
  from { width:0; }
  to   { width:100%; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .retail-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
}
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 4rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .menu-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tabs { flex-wrap: wrap; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
}

/* =============================================
   MOBILE — DESIGNED, NOT SHRUNK  (<= 768px)
   Different layout decisions for phones, not a
   compressed desktop.
   ============================================= */
.mobile-bar { display: none; }

@media (max-width: 768px) {

  /* --- HERO: full-bleed video, text readable immediately ---
     The desktop scroll-clip reveal is replaced by a clean,
     standard full-screen video hero. No 1500px scroll gate. */
  .ssh-wrapper { height: auto; }
  .ssh-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  .ssh-bg { clip-path: none !important; }
  .ssh-video {
    transform: none !important;
    opacity: 0.5;
  }
  .ssh-content {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  /* Hero text visible at rest; JS drives a subtle scroll fade/lift (no !important
     so the scroll handler can animate opacity/transform). */
  .hero-pill,
  .ssh-content h1,
  .hero-sub,
  .hero-actions,
  .hero-stats {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  /* Mobile nav: SOLID dark, GPU-promoted, no backdrop-filter, no hairline border.
     A solid, layer-promoted fixed bar eliminates the iOS sub-pixel seam that
     causes the white-line flash where the nav meets the scrolling hero. */
  .nav,
  .nav.scrolled {
    background: #0D0D0D;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none !important;
    box-shadow: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }
  .nav::before { display: none; }

  /* Promote the hero layers so the compositor aligns them cleanly with the nav */
  .ssh-sticky,
  .ssh-bg,
  .ssh-video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  /* Anchor content below the nav (flex-start) so tall content never
     overflows upward into the fixed logo/nav. Hero grows if needed. */
  .ssh-content .container {
    justify-content: center;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 6.5rem; /* clears the sticky action bar */
  }
  .ssh-content h1 { font-size: clamp(2.3rem, 9vw, 3rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-scroll-hint { display: none; }

  /* Hero CTAs stack full-width — proper thumb targets */
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; }

  /* Stats become a tidy 2x2 grid instead of a cramped 4-across row */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1rem;
    padding-top: 1.5rem;
  }

  /* Retail chips read fuller in 2 columns on phone */
  .retail-cats { grid-template-columns: 1fr 1fr; }
  .retail-items { grid-template-columns: 1fr 1fr; }

  /* Tighter, intentional section rhythm */
  .section { padding: 3.25rem 0; }
  .section-header { margin-bottom: 2.25rem; }
  .container { padding: 0 1.25rem; }

  /* Menu cards: shorter image, denser stack */
  .menu-card-img { height: 190px; }

  /* Page hero (inner pages) tightened for phone */
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }

  /* =============================================
     STICKY MOBILE ACTION BAR
     Persistent Call + Order — the premium restaurant
     mobile pattern. Only appears on phones.
     ============================================= */
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 0.6rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(13, 13, 13, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
  }
  .mobile-bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 50px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .mobile-bar-btn:active { transform: scale(0.97); }
  .mobile-bar-call {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
  }
  .mobile-bar-order {
    background: var(--gold);
    color: #0D0D0D;
  }
  .mobile-bar .ic { width: 1.05em; height: 1.05em; }

  /* Keep footer clear of the fixed bar */
  body { padding-bottom: 70px; }
}

/* Phones that are short in landscape — let hero size naturally */
@media (max-width: 768px) and (max-height: 480px) {
  .ssh-sticky, .ssh-content { height: auto; min-height: 0; }
  .ssh-content .container { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 7rem; }
}
