/* NITE OWL — site styles. Ported from the Claude Design export.
   Layout values are transcribed 1:1 from the export's inline styles. */

@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

html { scroll-behavior: smooth; }
body { background: var(--surface-base); color: var(--text-primary); }

/* Links inside prose keep the DS underline; structural links opt out. */
a.plain,
a[data-cta] { border-bottom: none; }
a.plain:hover,
a[data-cta]:hover { border-bottom: none; }

a:focus-visible,
[data-cta]:focus-visible {
  outline: var(--border-w-thick) solid var(--border-focus);
  outline-offset: 2px;
}

/* ---------- skip link ---------- */
.skip {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; background: var(--action-primary-bg); color: var(--action-primary-fg);
  font-size: var(--type-caption); font-weight: var(--weight-body-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-label);
  border-radius: var(--radius-1); border-bottom: none;
  transform: translateY(-64px); opacity: 0;
}
.skip:focus-visible { transform: none; opacity: 1; }

/* ---------- sticky nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: var(--space-6);
  height: 64px; padding: 0 var(--space-6);
  background: rgba(8, 9, 11, 0.82);
  -webkit-backdrop-filter: var(--blur-glass); backdrop-filter: var(--blur-glass);
  border-bottom: var(--border-w) solid var(--border-hairline);
  transform: translateY(-100%);
  transition: transform var(--dur-3) var(--ease-standard);
}
.nav[data-shown] { transform: none; }
.nav__logo { display: inline-flex; align-items: center; gap: 12px; }
.nav__word { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 20px; line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-loud); }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: var(--type-caption); font-weight: var(--weight-body-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-label);
  color: var(--text-primary);
  transition: color var(--dur-2) var(--ease-standard);
}
.nav__links a:hover { color: var(--c-neon-amber); }

/* Anchor targets clear the fixed nav. */
#menu, #hours, #visit { scroll-margin-top: 88px; }

/* ---------- shared ---------- */
.page { min-height: 100vh; background: var(--surface-base); color: var(--text-primary); font-family: var(--font-body); }
.label { display: block; font-size: var(--type-micro); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: var(--tracking-label); color: var(--text-muted); }
.lede { margin: 28px 0 0; font-size: var(--type-body); line-height: var(--leading-body); color: var(--text-primary); max-width: var(--measure); text-wrap: pretty; }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 var(--space-6);
  background: var(--action-primary-bg); color: var(--action-primary-fg);
  font-size: 16px; font-weight: var(--weight-body-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-label); line-height: 1;
  border-radius: var(--radius-1);
  transition: background var(--dur-2) var(--ease-standard), transform var(--dur-1) var(--ease-standard);
}
.cta:hover { background: var(--action-primary-bg-hover); color: var(--action-primary-fg); }
.cta:active { background: var(--action-primary-bg-active); transform: scale(var(--press-scale)); }
/* One amber glow moment per viewport. */
.cta--glow { box-shadow: var(--glow-amber); }
.cta--soft { box-shadow: var(--glow-amber-soft); }
.cta--mini { height: 40px; padding: 0 20px; font-size: var(--type-caption); }

.status { display: inline-flex; align-items: center; gap: var(--space-2); }
.status__dot { width: 7px; height: 7px; border-radius: var(--radius-pill); background: var(--status-open); display: block; }
.status__text { font-size: var(--type-caption); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: 0.16em; color: var(--status-open); }

/* ---------- 1 · hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Motion loop sits above the still and fades in only once it can actually play,
   so a failed/blocked/slow video is indistinguishable from the approved static hero. */
.hero__vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity var(--dur-4) var(--ease-standard);
  pointer-events: none;
}
.hero__vid[data-playing] { opacity: 1; }
/* Phones get the still, never the video. */
@media (max-width: 720px), (prefers-reduced-motion: reduce) {
  .hero__vid { display: none; }
}
.hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,11,0.92) 0%, rgba(8,9,11,0.64) 36%, rgba(8,9,11,0) 64%); }
.hero__scrim { position: absolute; inset: 0; background: var(--scrim-bottom); opacity: 0.5; }
.hero__mast { position: relative; padding: 36px var(--space-9) 0; }
.hero__body { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px var(--space-9) 120px; max-width: 1040px; }
.hero__title { margin: 0; font-weight: var(--weight-display-max); font-size: clamp(52px, 5.9vw, 104px); }
.hero__sub { margin: 24px 0 0; font-size: 18px; font-weight: var(--weight-body-medium); line-height: var(--leading-body); color: var(--text-primary); max-width: 44ch; }
.hero__actions { margin-top: 36px; display: flex; gap: var(--space-4); }

.logo { display: block; height: auto; mix-blend-mode: screen; }
.logo--mast { width: 200px; margin-left: -9px; }
.logo--foot { width: 130px; margin-left: -5px; }

/* ---------- 2 · menu ---------- */
.menu { padding: var(--space-10) var(--space-9) 96px; }
.menu__inner { max-width: 880px; margin: 0 auto; }
.menu__list { margin-top: var(--space-5); border-top: var(--border-w) solid var(--border-hairline); }

.row { display: grid; grid-template-columns: 220px minmax(0,1fr); align-items: center; column-gap: var(--space-6); row-gap: var(--space-2); padding: var(--space-5) 0; border-bottom: var(--border-w) solid var(--border-hairline); }
.row__thumb { width: 220px; height: 220px; overflow: hidden; position: relative; flex: 0 0 auto; }
.row__thumb img { position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; transform: translate(-50%,-50%); object-fit: cover; max-width: none; }
.row__text { display: flex; flex-direction: column; gap: var(--space-3); min-width: 0; }
.row__title { display: flex; align-items: baseline; gap: var(--space-4); flex-wrap: wrap; font-family: var(--font-display); font-weight: var(--weight-display); font-size: var(--type-display-4); line-height: 1; text-transform: uppercase; letter-spacing: var(--tracking-display); color: var(--text-loud); }
.row__price { font-family: var(--font-display); font-weight: var(--weight-display); font-size: var(--type-display-4); line-height: 1; letter-spacing: var(--tracking-display); font-variant-numeric: tabular-nums lining-nums; color: var(--text-primary); }
.row__desc { font-size: var(--type-body-sm); color: var(--text-muted); max-width: var(--measure); text-wrap: balance; }

/* One tag spec. Colour is the only variable. */
.tag { font-family: var(--font-body); font-size: var(--type-micro); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: 0.12em; line-height: 1; padding: 6px 12px; border: var(--border-w) solid currentColor; border-radius: var(--radius-2); }
.tag--note { color: var(--c-neon-amber); }
.tag--flag { color: var(--c-chrome-bright); }

/* ---------- 3 · griddle ---------- */
.griddle { position: relative; overflow: hidden; border-top: var(--border-w) solid var(--border-hairline); border-bottom: var(--border-w) solid var(--border-hairline); }
.griddle__tex { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.griddle__veil { position: absolute; inset: 0; background: rgba(13,14,17,0.55); }
.griddle__inner { position: relative; max-width: var(--content-max); margin: 0 auto; padding: var(--space-10) var(--space-9); }
.griddle__title { margin: var(--space-5) 0 0; font-weight: var(--weight-display-max); font-size: 72px; }
.griddle__grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.griddle__grid img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: center; border: var(--border-w) solid var(--border-hairline); border-radius: var(--radius-0); }
/* Crop the drizzle shot past the garbled neon sign in its upper corner. */
.griddle__grid img:nth-child(3) { object-position: 72% 62%; }

/* ---------- 4 · the room ----------
   Split layout: type sits on solid ground, the photo is framed instead of buried
   under scrims. Legibility from structure, not from darkening the photograph. */
.room { border-bottom: var(--border-w) solid var(--border-hairline); }
.room__inner { max-width: var(--content-max); margin: 0 auto; padding: var(--space-10) var(--space-9); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.room__title { margin: var(--space-5) 0 0; font-weight: var(--weight-display-max); font-size: 72px; }
.room__stamp { display: block; margin-top: 20px; font-size: var(--type-micro); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: var(--tracking-label); color: var(--text-muted); }
.room__media { margin: 0; }
.room__media img {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 68% center;
  border: var(--border-w) solid var(--border-hairline); border-radius: var(--radius-0);
  /* Warm the teal-heavy grade toward the page's amber world. */
  filter: sepia(0.16) saturate(0.92) contrast(1.02) brightness(0.97);
}

/* ---------- 4b · from the counter ---------- */
.quote { background: var(--surface-sunken); }
.quote__inner { max-width: var(--content-max); margin: 0 auto; padding: 96px var(--space-9); display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-5); }
.quote__text { margin: 0; font-size: var(--type-lead); font-weight: var(--weight-body-medium); line-height: 1.45; color: var(--text-loud); max-width: 38ch; text-wrap: balance; }
.quote__attr { font-size: var(--type-micro); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: var(--tracking-label); color: var(--text-muted); }

/* ---------- 5 · hours strip ---------- */
.strip { border-top: var(--border-w) solid var(--border-hairline); border-bottom: var(--border-w) solid var(--border-hairline); background: var(--surface-base); }
.strip__inner { max-width: var(--content-max); margin: 0 auto; padding: 30px var(--space-9); display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.strip__text { font-size: var(--type-caption); font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: 0.16em; color: #A6A6A6; text-align: center; font-variant-numeric: tabular-nums lining-nums; }

/* ---------- 6 · closing cta ----------
   The owl sign gets the left half to itself, uncovered; the type lives in the
   darkened right half where the wash was already darkest. Sign and words stop
   fighting over the same pixels. */
.closer { position: relative; padding: var(--space-11) var(--space-9); overflow: hidden; }
.closer__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.closer__wash { position: absolute; inset: 0; background: linear-gradient(to left, rgba(8,9,11,0.18) 0%, rgba(8,9,11,0.45) 40%, rgba(8,9,11,0.94) 68%, rgba(8,9,11,0.97) 100%); }
.closer__inner { position: relative; max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 520px) minmax(0, 1fr); }
.closer__content { grid-column: 1; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-6); }
.closer__label { color: var(--c-neon-amber); }
.closer__title { margin: 0; font-weight: var(--weight-display-max); font-size: 96px; }
.closer__sub { margin: 0; font-size: var(--type-body); line-height: var(--leading-body); color: var(--text-primary); max-width: 46ch; }

/* ---------- 7 · footer ---------- */
.foot { background: var(--surface-card); border-top: var(--border-w) solid var(--border-hairline); }
.foot__cols { max-width: var(--content-max); margin: 0 auto; padding: var(--space-9) var(--space-9) 72px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 64px; }
.foot__col { display: flex; flex-direction: column; gap: 14px; }
.foot__strong { font-size: var(--type-body); font-weight: var(--weight-body-medium); color: var(--text-loud); font-variant-numeric: tabular-nums lining-nums; }
.foot__body { font-size: var(--type-body-sm); line-height: var(--leading-body); color: var(--text-primary); }
.foot__link { font-size: var(--type-body-sm); font-weight: var(--weight-body-medium); width: fit-content; }
.foot__note { font-size: var(--type-caption); line-height: var(--leading-body); color: var(--text-muted); }
.foot__hours { display: grid; grid-template-columns: auto 1fr; gap: 8px var(--space-5); font-variant-numeric: tabular-nums lining-nums; }
.foot__hours span { font-size: var(--type-body-sm); font-weight: var(--weight-body-medium); }
.foot__day { color: var(--text-primary); }
.foot__time { color: var(--text-loud); }
.foot__bar { border-top: var(--border-w) solid var(--border-hairline); }
.foot__barin { max-width: var(--content-max); margin: 0 auto; padding: var(--space-7) var(--space-9) 44px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.foot__hoursline { font-size: 14px; font-weight: var(--weight-body-bold); text-transform: uppercase; letter-spacing: var(--tracking-label); color: #A6A6A6; }
.foot__footnote { font-size: var(--type-caption); color: var(--text-muted); padding-bottom: 4px; }

/* ---------- scroll reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal-armed] [data-reveal] {
    transition: opacity var(--dur-3) var(--ease-standard), transform var(--dur-3) var(--ease-standard);
  }
  [data-reveal-armed] [data-reveal]:not([data-revealed]) { opacity: 0; transform: translateY(8px); }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__mast, .hero__body, .menu, .griddle__inner, .room__inner, .quote__inner, .strip__inner, .closer, .foot__cols, .foot__barin { padding-left: var(--space-6); padding-right: var(--space-6); }
  .griddle__title, .room__title { font-size: 56px; }
  .closer__title { font-size: 72px; }
  .closer__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 440px); }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .hero__title { font-size: clamp(44px, 11.5vw, 72px); }
  .hero__body { padding-bottom: 88px; }
  .nav__links { display: none; }
  .row { grid-template-columns: 1fr; row-gap: var(--space-4); }
  .row__thumb { width: 100%; height: auto; aspect-ratio: 1/1; }
  .row__thumb img { position: static; transform: none; width: 100%; height: 100%; }
  .griddle__grid { grid-template-columns: 1fr; }
  .griddle__title, .room__title { font-size: 44px; }
  .room__inner { grid-template-columns: 1fr; gap: 48px; }
  .room__media img { aspect-ratio: 1/1; }
  .quote__inner { padding-top: 72px; padding-bottom: 72px; }
  .closer__title { font-size: 56px; }
  .closer__inner { grid-template-columns: 1fr; }
  .closer__content { grid-column: 1; }
  .closer__wash { background: linear-gradient(to top, rgba(8,9,11,0.95) 0%, rgba(8,9,11,0.78) 55%, rgba(8,9,11,0.35) 100%); }
  .foot__cols { grid-template-columns: 1fr; gap: var(--space-7); }
  .foot__barin { align-items: flex-start; gap: var(--space-5); }
}
