/* Kikoo Sushi — dark mobile-first redesign */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #121216;
  --bg-card: #16161c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --muted: #a8a29a;
  --accent: #e07040;
  --accent-soft: #f0a070;
  --accent-dim: rgba(224, 112, 64, 0.15);
  --gold: #d4b483;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1100px;
  --header-h: 64px;
  --sticky-h: 64px;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in,
  .fade-in.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .animate-rise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-media img,
  .hero-media video {
    animation: none !important;
  }
  .btn-primary {
    animation: none !important;
  }
  .sticky-bar {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  .gallery-item:hover img,
  .gallery-item:hover video {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

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

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2rem, 560px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.brand img {
  height: 52px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}
@media (max-width: 420px) {
  .brand img { height: 44px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: 0.6rem; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: #1a0e08 !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-desktop .nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  min-height: 44px;
  border-radius: 8px;
}
.nav-mobile a:hover { background: var(--bg-card); }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform-origin: center center;
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.04) translate(-0.8%, -0.5%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.35) 0%, rgba(10,10,12,0.55) 40%, rgba(10,10,12,0.92) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(224,112,64,0.22), transparent 55%);
}


.hero-logo {
  margin: 0 0 1.1rem;
}
.hero-logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
}
@media (min-width: 700px) {
  .hero-logo img { height: 92px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 3.5rem;
}

/* Hero text rise-in */
.animate-rise {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content .animate-rise:nth-child(1) { animation-delay: 0.08s; }
.hero-content .animate-rise:nth-child(2) { animation-delay: 0.18s; }
.hero-content .animate-rise:nth-child(3) { animation-delay: 0.28s; }
.hero-content .animate-rise:nth-child(4) { animation-delay: 0.38s; }
.hero-content .animate-rise:nth-child(5) { animation-delay: 0.48s; }
.hero-content .animate-rise:nth-child(6) { animation-delay: 0.58s; }

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


.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 9vw, 4.25rem);
  letter-spacing: -0.02em;
}
h1 em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 500;
}

h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: 1.35rem; }

.hero-lede,
.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #1a0e08 !important;
  animation: softPulse 2.6s ease-in-out infinite;
}
.btn-primary:hover { filter: brightness(1.08); color: #1a0e08 !important; }

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 112, 64, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(224, 112, 64, 0); }
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text) !important;
  border-color: var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); color: var(--text) !important; }

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--accent-soft); color: var(--accent-soft) !important; }

.hero-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.hero-meta a { color: var(--text); text-decoration: none; font-weight: 500; }

/* Sections */
.section {
  padding: 4.5rem 0;
}
.section-head { margin-bottom: 2rem; }
.section-head .lede { margin-bottom: 0; }

.experience { background: var(--bg); }

.feature-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.pitch-banner {
  display: grid;
  gap: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pitch-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.pitch-copy {
  padding: 1.5rem 1.35rem 1.75rem;
}
.pitch-copy p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.pitch-copy .btn { margin: 0 0.5rem 0.5rem 0; }


/* Pricing */
.hero-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-pricing a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(224, 112, 64, 0.45);
  padding-bottom: 1px;
}
.hero-pricing a:hover { color: var(--accent-soft); }
.hero-pricing strong { color: var(--accent-soft); font-weight: 700; }

.pricing {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: rgba(224, 112, 64, 0.45);
  background:
    linear-gradient(165deg, rgba(224,112,64,0.12), transparent 42%),
    var(--bg-elevated);
}
.price-tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #1a0e08;
}
.price-tag.soft {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}
.price-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  margin: 0.25rem 0 0.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.price-amount .currency {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 0.05em;
  color: var(--accent-soft);
}
.price-amount .digits { color: var(--accent-soft); }
.price-unit {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.price-includes {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  flex: 1;
}
.price-includes li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.price-includes li:last-child { border-bottom: 0; }
.price-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.price-card .btn { width: 100%; }
.pricing-disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}
.pricing-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  .price-card { padding: 1.85rem 1.75rem 1.9rem; }
}

/* Hours */
.hours {
  background:
    radial-gradient(ellipse at 50% 0%, var(--accent-dim), transparent 55%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:last-child { color: var(--muted); font-weight: 400; text-align: right; }
.hours-list li.closed span:last-child { color: #c45c5c; }
.hours-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1.25rem 0 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1;
}
.gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.07);
}
.gallery-item.video-item {
  position: relative;
}
.gallery-item.video-item::after {
  content: "▶";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10,10,12,0.7);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  pointer-events: none;
}
.ig-follow {
  text-align: center;
  margin: 1.75rem 0 0;
}
.ig-follow a {
  font-weight: 600;
  text-decoration: none;
  color: var(--gold);
}
.ig-follow a:hover { color: var(--accent-soft); }

/* Visit */
.visit-grid {
  display: grid;
  gap: 2rem;
}
.visit address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
.visit-phone {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  margin: 0 0 1.25rem;
}
.visit-phone a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.visit-note { color: var(--muted); font-size: 0.9rem; margin: 0; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: var(--bg-card);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #070709;
}
.footer-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand img {
  margin: 0 auto 0.5rem;
  height: 36px;
  width: auto;
  opacity: 0.9;
}
.footer-brand p { color: var(--muted); margin: 0; font-size: 0.9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent-soft); }
.copyright {
  color: #6b6560;
  font-size: 0.8rem;
  margin: 0;
}

/* Sticky bottom bar */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 1fr;
  background: rgba(12, 12, 16, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
  animation: stickyFloatIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes stickyFloatIn {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 52px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
}
.sticky-bar a:hover,
.sticky-bar a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  outline: none;
}
.sticky-bar .sb-accent {
  color: #1a0e08;
  background: var(--accent);
}
.sticky-bar .sb-accent:hover {
  color: #1a0e08;
  filter: brightness(1.06);
  background: var(--accent);
}
.sb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
}
.sb-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}
.sticky-bar .sb-accent .sb-icon {
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.08));
}

/* Fade-in + stagger */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
.feature-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.feature-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.feature-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.pricing-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.gallery-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.gallery-grid .fade-in:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .fade-in:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .fade-in:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .fade-in:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid .fade-in:nth-child(7) { transition-delay: 0.36s; }
.gallery-grid .fade-in:nth-child(8) { transition-delay: 0.42s; }
.gallery-grid .fade-in:nth-child(9) { transition-delay: 0.48s; }
.gallery-grid .fade-in:nth-child(10) { transition-delay: 0.54s; }
.gallery-grid .fade-in:nth-child(n+11) { transition-delay: 0.6s; }

/* Desktop */
@media (min-width: 768px) {
  :root { --header-h: 72px; }
  /* Keep sticky bar + bottom padding (mobile shell; never hide bar) */
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; }
  .nav-mobile { display: none !important; }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
  .pitch-banner {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
  .pitch-banner img {
    height: 100%;
    min-height: 280px;
  }
  .pitch-copy {
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
  .visit-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    gap: 2.5rem;
  }
  .visit-map,
  .visit-map iframe { min-height: 360px; height: 100%; }
  .footer-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: end;
  }
  .footer-brand img { margin: 0 0 0.5rem; }
  .footer-links { justify-content: flex-end; }
  .copyright { grid-column: 1 / -1; }
  .hero-content { padding: 7rem 0 4.5rem; }
}

@media (min-width: 1024px) {
  .section { padding: 5.5rem 0; }
  .gallery-grid { gap: 1rem; }
}

.pricing-flyer {
  margin: 1.5rem auto 0;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.pricing-flyer img { display: block; width: 100%; height: auto; }


/* === Mobile-first app shell (Jimmy: mobile version) === */
:root {
  --max: 430px;
  --phone-bg: #050506;
}

body {
  background: var(--phone-bg);
}

/* Center a phone-width column on tablets/desktops */
.site-header,
main,
.sticky-bar {
  width: min(100%, 430px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  max-width: 430px;
}

.sticky-bar {
  left: 50%;
  right: auto;
  width: min(100%, 430px);
  max-width: 430px;
  /* Keep centered X while float-in runs on Y */
  animation: stickyFloatInCentered 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes stickyFloatInCentered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Always use mobile chrome: hide desktop nav */
.nav-desktop { display: none !important; }
.nav-toggle { display: inline-flex !important; }

/* Always show sticky bar (even on wide viewports) */
.sticky-bar {
  display: grid !important;
}
body {
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px)) !important;
}


.wrap,
.wrap.narrow {
  width: min(100% - 1.25rem, 430px);
}

.hero {
  min-height: 88svh;
}

.hero-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.hero-ctas .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-grid,
.feature-grid,
.gallery-grid {
  grid-template-columns: 1fr !important;
}

.gallery-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 0.5rem;
}

.pitch-banner {
  grid-template-columns: 1fr !important;
}

.hours-list {
  font-size: 0.95rem;
}

@media (min-width: 480px) {
  body {
    background:
      radial-gradient(ellipse at top, rgba(224,112,64,0.08), transparent 45%),
      var(--phone-bg);
  }
  .site-header,
  main {
    box-shadow: var(--shadow);
  }
  main {
    background: var(--bg);
    min-height: 100svh;
  }
}

.sticky-bar .sb-accent {
  box-shadow: 0 6px 18px rgba(224, 112, 64, 0.35);
}

/* Google rating badge */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.75rem 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.google-rating:hover,
.google-rating:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(250, 187, 5, 0.45);
  outline: none;
  transform: translateY(-1px);
}
.gr-google { display: inline-flex; }
.gr-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.gr-star-partial {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
}
.gr-star-partial .gr-star-bg,
.gr-star-partial .gr-star-fg {
  position: absolute;
  left: 0;
  top: 0;
}
.gr-star-partial .gr-star-fg {
  clip-path: inset(0 80% 0 0); /* 4.2 → 20% of 5th star */
}
.gr-score {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.gr-score strong { font-weight: 700; color: #fff; }
.gr-count {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Videos (Google / social) */
.videos .section-head { margin-bottom: 1.25rem; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}
.video-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.video-card:hover,
.video-card:focus-visible {
  border-color: rgba(224, 112, 64, 0.55);
  transform: translateY(-2px);
  outline: none;
}
.video-card video,
.video-thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: #121218;
  display: block;
}
.video-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: linear-gradient(145deg, #1a1a22, #0e0e14);
}
.video-meta {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.video-platform {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft, var(--accent));
}
.video-meta strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.video-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.google-gallery-cta {
  margin: 0 0 1rem;
  text-align: center;
}
.gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
}
.gallery-links span { color: var(--muted); }


/* Photo marquee under hero */
.photo-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
  background: #0d0d10;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.photo-marquee-track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  padding: 0.65rem 0;
  animation: marquee-scroll 48s linear infinite;
}
.photo-marquee-track img {
  width: 148px;
  height: 108px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 auto;
  opacity: 0.92;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .photo-marquee-track { animation: none; }
}

/* Feature cards with photos */
.feature-card-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card-photo .feature-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.feature-card-photo .feature-body {
  padding: 1.1rem 1.15rem 1.25rem;
}
.feature-card-photo h3 { margin-top: 0; }

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}
.gallery-item.tall img {
  height: 100%;
  min-height: 280px;
}
@media (max-width: 700px) {
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: 0; }
  .photo-marquee-track img { width: 120px; height: 90px; }
}

/* hide removed site-header */
.site-header{display:none!important}
