:root {
  --bg: #46444d;
  --surface: #171b24;
  --surface-soft: #1f2531;
  --text: #eef2ff;
  --muted: #a8b0c4;
  --accent: #cb5500;
  --line: #2a3040;
  --fs-body: 1rem;
  --fs-small: 0.92rem;
  --fs-nav: 0.96rem;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Menu / About / Contact: one hero height + mark size per viewport (no % centering in a variable box) */
  --page-hero-h: clamp(312px, 40vh, 432px);
  --page-hero-pad-t: 2.75rem;
  --page-hero-pad-b: 2.5rem;
  --page-hero-mark: min(calc(208px * 1.1), calc(30vw * 1.1));
  --page-hero-mark-opacity: 0.266;
  --page-hero-mark-shift-y: 30px;
}
* { box-sizing: border-box; }
html {
  background-color: var(--bg);
  min-height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(1200px 700px at 20% -20%, #1d2331, var(--bg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#main-content {
  background: transparent;
}
img {
  max-width: 100%;
  height: auto;
}
p, li, a, button {
  font-size: var(--fs-body);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  background: #ffffff;
  color: #111827;
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0.75rem;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
  background: rgb(70 68 77 / 88%); border-bottom: 1px solid var(--line);
}
.nav { min-height: 78px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.brand-link { text-decoration: none; color: inherit; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(2px);
}
.brand-mark {
  width: 42px; height: 42px; border: 2px solid var(--accent); color: var(--accent);
  border-radius: 10px; display: grid; place-items: center; font-weight: 800;
}
.brand-title { margin: 0; font-weight: 800; letter-spacing: 0.03em; }
.brand-subtitle { margin: 0; color: var(--muted); font-size: var(--fs-small); }
.main-nav { display: flex; gap: 1rem; }
.main-nav a { color: #dce2f5; text-decoration: none; font-weight: 600; font-size: var(--fs-nav); }
.main-nav a:hover { color: #fff; }
.main-nav a[aria-current="page"] { color: #fff; text-decoration: underline; text-underline-offset: 0.25rem; }
.hero { padding: 5rem 0 4rem; position: relative; }
.hero.subpage-hero {
  overflow: hidden;
  box-sizing: border-box;
  height: var(--page-hero-h);
  min-height: var(--page-hero-h);
  max-height: var(--page-hero-h);
  padding: 0;
}
.hero.subpage-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - var(--page-hero-mark-shift-y)));
  width: var(--page-hero-mark);
  height: var(--page-hero-mark);
  background: transparent url("./images/logo.png") center / contain no-repeat;
  opacity: var(--page-hero-mark-opacity);
}
.subpage-hero__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--page-hero-pad-t);
  padding-bottom: var(--page-hero-pad-b);
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
  overflow-x: hidden;
  overflow-y: auto;
}
.hero.subpage-hero .subpage-hero__inner .container {
  width: 100%;
}
.page-body {
  width: 100%;
}
.page-body > .section > .container.content-narrow {
  margin-left: auto;
  margin-right: auto;
}
.hero-with-bg {
  background-color: #0b0d12;
  background-image: url("./images/hero-bg.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: transparent;
  background-image: url("./images/logo.png");
  background-repeat: no-repeat;
  background-position: 78% 46%;
  background-size: min(40vw, 520px);
  opacity: 0.6;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(8 10 16 / 88%) 20%, rgb(8 10 16 / 45%) 70%);
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.hero-content { max-width: 670px; }
.hero-with-bg .hero-content,
.hero-with-bg .glass {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}
.glass {
  max-width: 670px; padding: 1.4rem; border-radius: 18px;
  background: rgb(18 22 32 / 62%); border: 1px solid rgb(255 255 255 / 13%);
}
.eyebrow { color: #cb5500; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
h1, h2, h3 { margin-top: 0; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.55rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); line-height: 1.25; }
.hero-copy, .section-copy { color: var(--muted); max-width: 68ch; font-size: 1.02rem; line-height: 1.7; }
.section { padding: 3.25rem 0; }
.section-dark { background: linear-gradient(180deg, #121722, var(--surface)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 1rem; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.2rem 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: 0.72rem 1.2rem; font-weight: 700; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.95; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #cb5500); color: #fff; }
.btn-secondary { border-color: #3a4256; color: var(--text); background: #1c2230; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #cb5500;
  outline-offset: 2px;
}
.quick-points { margin: 0; padding-left: 1rem; color: #d5dcf0; }
.quick-points li { line-height: 1.65; }
.cards { display: grid; gap: 1rem; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem;
}
.text-link { color: #cb5500; text-decoration: none; font-weight: 700; }
.split { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; align-items: start; }
.gallery-grid {
  display: grid; gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-grid img {
  width: 100%; height: 230px; object-fit: cover; border-radius: 14px; border: 1px solid #31394d;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.02); filter: saturate(1.08); }
.reviews-layout { display: grid; gap: 1rem; }
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #4a556d;
  background: #1a2130;
  color: #dce6ff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.83rem;
  font-weight: 700;
}
.reviews { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-card {
  border: 1px solid var(--line); background: var(--surface-soft); border-radius: 14px; padding: 0.9rem 1rem;
}
.review-stars {
  margin: 0 0 0.4rem;
  color: #cb5500;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.review-card p { margin: 0 0 0.45rem; }
.review-card span { color: var(--muted); font-size: 0.9rem; }
.menu-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-list { list-style: none; margin: 0.7rem 0 0; padding: 0; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem;
  padding: 0.46rem 0; border-bottom: 1px dashed #313a4e;
}
.price-list li:last-child { border-bottom: 0; }
.mini-title { color: #cb5500; font-weight: 700; margin: 0.8rem 0 0.2rem; }
.hours-list { list-style: none; padding: 0; margin: 0.85rem 0 1rem; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.42rem 0; border-bottom: 1px dashed #41495e;
}
.hours-image-wrap { max-width: 450px; background: #fff; padding: 0.7rem; border-radius: 14px; }
.hours-image-wrap img { width: 100%; display: block; }
.content-narrow { max-width: 780px; }
.story {
  background: var(--surface-soft); border: 1px solid var(--line); border-radius: 18px; padding: 1.1rem;
}
.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.map-frame { width: 100%; height: 320px; border: 0; border-radius: 14px; }
.sticky-order {
  position: fixed; right: 16px; bottom: 68px; z-index: 25; background: linear-gradient(135deg, #cb5500, #cb5500);
  color: #fff; text-decoration: none; font-weight: 800; font-size: 0.93rem; padding: 0.66rem 0.9rem; border-radius: 999px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
}
.site-footer { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-row p { margin: 0; color: var(--muted); font-size: var(--fs-small); }
.footer-details { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer-details a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-details a:hover { text-decoration: underline; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  :root {
    --page-hero-h: clamp(292px, 36vh, 396px);
    --page-hero-pad-t: 2.25rem;
    --page-hero-pad-b: 2rem;
    --page-hero-mark: min(calc(188px * 1.1), calc(28vw * 1.1));
    --page-hero-mark-opacity: 0.242;
    --page-hero-mark-shift-y: 30px;
  }
  @supports (height: 100dvh) {
    :root {
      --page-hero-h: clamp(292px, 36dvh, 396px);
    }
  }
  .cards.three, .split, .menu-grid, .contact-grid, .gallery-grid, .reviews { grid-template-columns: 1fr; }
  .container { width: min(1120px, 94%); }
  .nav {
    min-height: unset;
    padding: 0.7rem 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1rem;
  }
  .brand-link {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
  }
  .main-nav a {
    font-size: 0.95rem;
  }
  .hero {
    padding: 3.6rem 0 2.7rem;
  }
  .hero-with-bg::before {
    background-position: center;
    background-size: min(50vw, 390px);
    opacity: 0.52;
  }
  .section {
    padding: 2.5rem 0;
  }
  .review-actions {
    width: 100%;
  }
  .review-actions .btn {
    flex: 1 1 220px;
  }
  .map-frame {
    height: 280px;
  }
  .sticky-order {
    left: 16px;
    right: 16px;
    bottom: 12px;
    text-align: center;
    border-radius: 14px;
    padding: 0.9rem 1rem;
  }
  body {
    padding-bottom: 5rem;
  }
  .hide-sm { display: none; }
}
@media (max-width: 640px) {
  :root {
    --page-hero-h: clamp(276px, 42vh, 372px);
    --page-hero-pad-t: 2rem;
    --page-hero-pad-b: 1.75rem;
    --page-hero-mark: min(calc(168px * 1.1), calc(26vw * 1.1));
    --page-hero-mark-opacity: 0.218;
    --page-hero-mark-shift-y: 30px;
  }
  @supports (height: 100dvh) {
    :root {
      --page-hero-h: clamp(276px, 42dvh, 372px);
    }
  }
  .hero-with-bg::before {
    background-position: center;
    background-size: min(58vw, 280px);
    opacity: 0.48;
  }
  h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }
  h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.8rem);
  }
  h3 {
    font-size: 1.16rem;
  }
  .brand-title {
    font-size: 0.95rem;
  }
  .brand-subtitle {
    display: none;
  }
  .quick-points {
    padding-left: 1rem;
    font-size: 0.94rem;
  }
  .cta-row .btn {
    width: 100%;
  }
  .card {
    padding: 0.95rem;
  }
  .gallery-grid img {
    height: 190px;
  }
  .price-list li,
  .hours-list li {
    gap: 0.6rem;
    font-size: 0.94rem;
  }
  .footer-details {
    gap: 0.5rem;
  }
}
@media (max-width: 375px) {
  :root {
    --page-hero-h: clamp(260px, 44vh, 328px);
    --page-hero-pad-t: 1.75rem;
    --page-hero-pad-b: 1.5rem;
    --page-hero-mark: min(calc(148px * 1.1), calc(40vw * 1.1));
    --page-hero-mark-opacity: 0.194;
    --page-hero-mark-shift-y: 30px;
  }
  @supports (height: 100dvh) {
    :root {
      --page-hero-h: clamp(260px, 44dvh, 328px);
    }
  }
  .hero-with-bg::before {
    background-position: center;
    background-size: min(62vw, 230px);
    opacity: 0.44;
  }
  .container {
    width: min(1120px, 96%);
  }
  .nav {
    gap: 0.5rem;
    padding: 0.6rem 0;
  }
  .brand {
    gap: 0.5rem;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 0.86rem;
  }
  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 0;
  }
  .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  .main-nav {
    gap: 0.35rem 0.45rem;
  }
  .main-nav a {
    padding: 0.38rem 0.55rem;
    border: 1px solid #31384c;
    border-radius: 999px;
    line-height: 1;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .main-nav a[aria-current="page"] {
    background: #222a3a;
    border-color: #47526a;
    text-decoration: none;
  }
  .hero {
    padding: 3rem 0 2.2rem;
  }
  .hero-content {
    max-width: none;
  }
  .eyebrow {
    font-size: 0.74rem;
  }
  .hero-copy,
  .section-copy {
    font-size: 0.94rem;
  }
  .quick-points li {
    margin-bottom: 0.25rem;
  }
  .price-list li,
  .hours-list li {
    align-items: flex-start;
  }
  .price-list li span,
  .hours-list li span {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .price-list li strong,
  .hours-list li strong {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.9rem;
  }
  .footer-row {
    gap: 0.55rem;
  }
  .footer-row p {
    font-size: 0.9rem;
  }
  .footer-details {
    gap: 0.4rem;
    font-size: 0.9rem;
  }
  .sticky-order {
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 0.82rem 0.95rem;
    font-size: 0.96rem;
  }
}
