/* ============================================================
   NYATI PLAZA — "Ivory & Ink" Design System
   Crafted by Sphurit · v2.0
   Type: Marcellus (display) · Figtree (text)
   Grid: 1280px container · 8-pt spacing scale
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --ink-900: #0A1522;
  --ink-800: #10203275;
  --ink-700: #16283E;
  --navy: #0F2743;
  --gold: #C5A45C;
  --gold-deep: #A0803A;
  --gold-tint: rgba(197, 164, 92, 0.12);
  --alab-50: #FAF9F6;
  --alab-100: #F2F0EA;
  --paper: #FFFFFF;
  --line: #E7E4DC;
  --line-ink: rgba(255, 255, 255, 0.14);
  --text-900: #182430;
  --text-600: #55616F;
  --text-400: #8B95A3;
  --ok: #2E7D57;

  /* Type */
  --ff-display: 'Marcellus', 'Palatino Linotype', Georgia, serif;
  --ff-text: 'Figtree', 'Segoe UI', -apple-system, sans-serif;
  --fs-h1: clamp(2.75rem, 6vw, 4.5rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.125rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-eyebrow: 0.72rem;

  /* Space (8-pt) */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  /* Misc */
  --r-sm: 3px;
  --r-md: 6px;
  --shadow-lift: 0 24px 48px -24px rgba(10, 21, 34, 0.25);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h: 88px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--ff-text);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-900);
  background: var(--alab-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-900);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: 0.01em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

::selection { background: rgba(197, 164, 92, 0.3); color: var(--ink-900); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--s3); }
.container--narrow { max-width: 880px; }
.section { padding: var(--s7) 0; }
.section--tight { padding: var(--s6) 0; }
.section--ivory { background: var(--alab-50); }
.section--alt { background: var(--alab-100); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink-900); color: rgba(255,255,255,0.85); }
.section--ink h2, .section--ink h3 { color: #fff; }

/* Section heading pattern */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.eyebrow--center::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section--ink .eyebrow { color: var(--gold); }
.sec-head { max-width: 720px; margin-bottom: var(--s6); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: var(--s2); }
.sec-head h2 { margin-bottom: var(--s2); }
.sec-head p { color: var(--text-600); font-size: 1.06rem; font-weight: 300; }
.section--ink .sec-head p { color: rgba(255,255,255,0.65); }

.hairline { border: 0; border-top: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ink { background: var(--navy); color: #fff; }
.btn--ink:hover { background: var(--ink-900); }
.btn--gold { background: var(--gold); color: var(--ink-900); }
.btn--gold:hover { background: #D3B571; }
.btn--line { border-color: var(--text-900); color: var(--text-900); background: transparent; }
.btn--line:hover { background: var(--text-900); color: var(--alab-50); }
.btn--line-light { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn--line-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn--wide { width: 100%; }

/* Text link with slide underline */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep); padding-bottom: 4px; position: relative;
}
.link-arrow::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0.35); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow i { transition: transform 0.3s var(--ease); }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header (ink canvas — carries the light/gold wordmark) ---------- */
.np-header { position: sticky; top: 0; z-index: 1000; background: var(--ink-900); }
.np-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(197, 164, 92, 0.28); }
.np-header.is-scrolled { box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.75); }

.util-bar { border-bottom: 1px solid var(--line-ink); overflow: hidden; max-height: 44px; transition: max-height 0.35s var(--ease), opacity 0.3s; }
.np-header.is-scrolled .util-bar { max-height: 0; opacity: 0; border-bottom-color: transparent; }
.util-bar__inner {
  display: flex; justify-content: space-between; align-items: center; height: 44px;
  font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.62);
}
.util-bar__group { display: flex; align-items: center; gap: var(--s3); }
.util-bar i { color: var(--gold); font-size: 0.72rem; margin-right: 6px; }
.util-bar a { transition: color 0.25s var(--ease); }
.util-bar a:hover { color: var(--gold); }
.util-bar .sep { width: 1px; height: 14px; background: var(--line-ink); }
@media (max-width: 900px) { .util-bar { display: none; } }

.nav-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--s4); transition: height 0.3s var(--ease); }
.np-header.is-scrolled .nav-bar { height: 68px; }
.nav-logo img { height: 64px; width: auto; object-fit: contain; transition: height 0.3s var(--ease); }
.np-header.is-scrolled .nav-logo img { height: 48px; }

.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); }
.nav-links a {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86); padding: 6px 0; position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: var(--s3); }
.nav-icon-btn { font-size: 1rem; color: rgba(255, 255, 255, 0.86); padding: 8px; transition: color 0.25s; }
.nav-icon-btn:hover { color: var(--gold); }
.nav-cta { padding: 12px 24px; }
@media (max-width: 1080px) { .nav-links, .nav-cta { display: none; } }

/* Focus rings need to read on the ink canvas */
.np-header a:focus-visible, .np-header button:focus-visible { outline-color: var(--gold); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px 6px; }
.nav-burger span { width: 22px; height: 1.5px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s; }
@media (max-width: 1080px) { .nav-burger { display: flex; } }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — full screen ink panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990; background: var(--ink-900);
  display: flex; flex-direction: column; justify-content: center; padding: var(--s6) var(--s4);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--s2); }
.mobile-menu nav a {
  font-family: var(--ff-display); font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: rgba(255,255,255,0.85); padding: 6px 0;
  border-bottom: 1px solid var(--line-ink);
  display: flex; justify-content: space-between; align-items: center;
  transform: translateY(16px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s, color 0.25s;
}
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--gold); }
.mobile-menu nav a i { font-size: 0.9rem; color: var(--gold); opacity: 0.6; }
.mobile-menu__meta { margin-top: var(--s5); display: flex; flex-direction: column; gap: var(--s2); color: rgba(255,255,255,0.55); font-size: var(--fs-sm); }
.mobile-menu__meta i { color: var(--gold); width: 20px; }
.mobile-menu__social { display: flex; gap: var(--s3); margin-top: var(--s2); }
.mobile-menu__social a { color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.mobile-menu__social a:hover { color: var(--gold); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 1200; background: rgba(10, 21, 34, 0.96);
  display: flex; align-items: center; justify-content: center; padding: var(--s4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__box { width: 100%; max-width: 720px; position: relative; }
.search-overlay__close { position: absolute; top: -80px; right: 0; color: rgba(255,255,255,0.5); font-size: 2rem; transition: color 0.25s; }
.search-overlay__close:hover { color: var(--gold); }
.search-overlay form { position: relative; border-bottom: 1px solid rgba(255,255,255,0.25); }
.search-overlay input {
  width: 100%; background: transparent; border: none; color: #fff;
  font-family: var(--ff-display); font-size: clamp(1.5rem, 4vw, 2.5rem);
  padding: var(--s3) 48px var(--s3) 0;
}
.search-overlay input::placeholder { color: rgba(255,255,255,0.3); }
.search-overlay input:focus { outline: none; }
.search-overlay button[type="submit"] { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.25rem; }
.search-overlay__hints { margin-top: var(--s3); display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; color: rgba(255,255,255,0.45); font-size: var(--fs-sm); }
.search-overlay__hints a { color: rgba(255,255,255,0.7); border-bottom: 1px dotted var(--gold); padding-bottom: 1px; }
.search-overlay__hints a:hover { color: var(--gold); }

/* ---------- Hero (home) ---------- */
.hero { position: relative; height: min(86vh, 820px); min-height: 560px; background: var(--ink-900); overflow: hidden; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.active img { animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero__scrim { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(75deg, rgba(10,21,34,0.85) 0%, rgba(10,21,34,0.55) 42%, rgba(10,21,34,0.08) 100%); }
.hero__scrim::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,34,0.4) 0%, transparent 26%, transparent 62%, rgba(10,21,34,0.72) 100%); }
.hero__content { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; }
.hero__content h1 { color: #fff; margin: var(--s3) 0; max-width: 15ch; }
.hero__content .lede { color: rgba(255,255,255,0.78); font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 300; max-width: 50ch; margin-bottom: var(--s5); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s2); }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }

/* Slide progress indicators */
.hero__progress { position: absolute; z-index: 4; bottom: var(--s4); display: flex; gap: 10px; }
.hero__bar { width: 56px; height: 2px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden; cursor: pointer; border: none; padding: 0; }
.hero__bar span { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero__bar.active span { animation: heroBar var(--hero-interval, 7s) linear forwards; }
@keyframes heroBar { to { transform: scaleX(1); } }

/* Stats band */
.stats-band { border-bottom: 1px solid var(--line); background: var(--alab-50); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-band__cell { padding: var(--s5) var(--s3); text-align: center; border-left: 1px solid var(--line); }
.stats-band__cell:first-child { border-left: none; }
.stats-band__num { font-family: var(--ff-display); font-size: clamp(2rem, 3.6vw, 3rem); color: var(--text-900); line-height: 1; font-variant-numeric: tabular-nums; }
.stats-band__num sup { font-size: 0.5em; color: var(--gold-deep); }
.stats-band__label { margin-top: var(--s1); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-400); }
@media (max-width: 760px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__cell:nth-child(3) { border-left: none; }
  .stats-band__cell { border-top: 1px solid var(--line); padding: var(--s4) var(--s2); }
  .stats-band__cell:nth-child(-n+2) { border-top: none; }
}

/* ---------- Cards & tiles ---------- */
.tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold); }
.tile__media { position: relative; overflow: hidden; background: var(--alab-100); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.04); }
.tile__media--contain img { object-fit: contain; padding: var(--s3); }
.tile__body { padding: var(--s3); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile__body h3 { font-size: 1.15rem; }
.tile__cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.tile__meta { margin-top: auto; padding-top: var(--s2); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.8rem; color: var(--text-600); }
.tile__meta i { color: var(--gold-deep); margin-right: 5px; font-size: 0.72rem; }
.tile__flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink-900); color: var(--gold);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.tile__flag--gold { background: var(--gold); color: var(--ink-900); }

/* Grids */
.grid { display: grid; gap: var(--s3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Underline tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: var(--s4); border-bottom: 1px solid var(--line); }
.tabs button, .tabs a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-400); padding: 0 0 14px; position: relative; transition: color 0.25s;
}
.tabs button::after, .tabs a::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px;
  background: var(--gold-deep); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease);
}
.tabs button:hover, .tabs a:hover { color: var(--text-900); }
.tabs button.active, .tabs a.active { color: var(--text-900); }
.tabs button.active::after, .tabs a.active::after { transform: scaleX(1); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: flex-end; background: var(--ink-900); overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.page-hero__img::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,34,0.5) 0%, rgba(10,21,34,0.25) 45%, rgba(10,21,34,0.88) 100%); }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding: var(--s8) 0 var(--s6); }
.page-hero h1 { color: #fff; margin-top: var(--s2); }
.page-hero .lede { color: rgba(255,255,255,0.72); font-weight: 300; max-width: 55ch; margin-top: var(--s2); font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-400); padding: var(--s3) 0; }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs .sep { color: var(--line); }
.crumbs .here { color: var(--text-600); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-600); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--text-900);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 16px; transition: border-color 0.25s, box-shadow 0.25s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px var(--gold-tint);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-400); }
.form-stack { display: flex; flex-direction: column; gap: var(--s3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field--error input { border-color: #B4432F; }
.field .error-note { font-size: 0.78rem; color: #B4432F; display: none; }

/* Search input (directory pages) */
.dir-search { position: relative; max-width: 520px; }
.dir-search input {
  width: 100%; padding: 16px 52px 16px 48px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  font: inherit; color: var(--text-900); transition: border-color 0.25s, box-shadow 0.25s;
}
.dir-search input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px var(--gold-tint); }
.dir-search > i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-400); }
.dir-search .clear-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-400); padding: 8px; display: none; }
.dir-search .clear-btn:hover { color: var(--text-900); }

/* ---------- Marquee (new arrivals) ---------- */
.marquee { overflow: hidden; position: relative; }
.marquee__track { display: flex; width: max-content; gap: var(--s3); animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .tile { width: 280px; flex-shrink: 0; }
.marquee .tile__media { height: 200px; }

/* ---------- Carousel (dining) ---------- */
.rail { display: flex; gap: var(--s3); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex-shrink: 0; }
.rail-nav { display: flex; gap: var(--s1); }
.rail-nav button {
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--text-900); transition: all 0.25s var(--ease); background: var(--paper);
}
.rail-nav button:hover { background: var(--ink-900); color: var(--gold); border-color: var(--ink-900); }

/* ---------- Feature banner ---------- */
.banner { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; }
.banner img.banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.banner:hover img.banner__bg { transform: scale(1.03); }
.banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,21,34,0.05) 30%, rgba(10,21,34,0.85) 100%); }
.banner__body { position: relative; z-index: 2; padding: var(--s5); color: #fff; width: 100%; }
.banner__body h3 { color: #fff; font-size: clamp(1.75rem, 3.4vw, 2.75rem); margin: var(--s2) 0 var(--s3); }

/* ---------- Services strip ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: var(--s5) var(--s4); background: var(--paper); transition: background 0.3s var(--ease); }
.svc-cell:hover { background: var(--alab-50); }
.svc-cell i { font-size: 1.5rem; color: var(--gold-deep); margin-bottom: var(--s3); display: block; }
.svc-cell h3 { font-size: 1.1rem; margin-bottom: var(--s1); }
.svc-cell p { font-size: var(--fs-sm); color: var(--text-600); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Event cards ---------- */
.event-card { display: grid; grid-template-columns: 96px 1fr; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold); }
.event-card__date { background: var(--ink-900); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: var(--s2); }
.event-card__date .d { font-family: var(--ff-display); font-size: 1.75rem; line-height: 1; color: var(--gold); }
.event-card__date .m { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 6px; color: rgba(255,255,255,0.7); }
.event-card__media { height: 200px; overflow: hidden; grid-column: 1 / -1; order: -1; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.05); }
.event-card__body { padding: var(--s3); display: flex; flex-direction: column; gap: var(--s1); }
.event-card__meta { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 0.78rem; color: var(--text-600); }
.event-card__meta i { color: var(--gold-deep); margin-right: 5px; }
.event-card__desc { font-size: var(--fs-sm); color: var(--text-600); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-card__actions { margin-top: var(--s2); display: flex; gap: var(--s2); flex-wrap: wrap; }

/* Badge */
.badge { display: inline-block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }
.badge--free { background: rgba(46,125,87,0.12); color: var(--ok); }
.badge--paid { background: var(--gold-tint); color: var(--gold-deep); }

/* ---------- Gallery ---------- */
.masonry { columns: 3; column-gap: var(--s3); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry .g-item { break-inside: avoid; margin-bottom: var(--s3); position: relative; border-radius: var(--r-sm); overflow: hidden; cursor: zoom-in; }
.masonry .g-item img { width: 100%; transition: transform 0.6s var(--ease); }
.masonry .g-item:hover img { transform: scale(1.04); }
.masonry .g-item .cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: var(--s3);
  background: linear-gradient(180deg, transparent 55%, rgba(10,21,34,0.8) 100%);
  color: #fff; font-family: var(--ff-display); font-size: 1.1rem;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.masonry .g-item:hover .cap { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1300; background: rgba(6, 12, 20, 0.96); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; }
.lightbox__cap { position: absolute; bottom: var(--s4); left: 50%; transform: translateX(-50%); text-align: center; color: #fff; font-family: var(--ff-display); font-size: 1.1rem; }
.lightbox__cap small { display: block; font-family: var(--ff-text); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }
.lightbox__close { position: absolute; top: var(--s3); right: var(--s4); color: rgba(255,255,255,0.6); font-size: 2rem; }
.lightbox__close:hover { color: var(--gold); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.25); color: #fff; border-radius: var(--r-sm); transition: all 0.25s; }
.lightbox__nav:hover { background: var(--gold); color: var(--ink-900); border-color: var(--gold); }
.lightbox__nav--prev { left: var(--s4); }
.lightbox__nav--next { right: var(--s4); }
@media (max-width: 700px) { .lightbox__nav { display: none; } }

/* ---------- Footer ---------- */
.np-footer { background: var(--ink-900); color: rgba(255,255,255,0.7); }
.np-footer__wordmark { padding: var(--s7) 0 var(--s5); border-bottom: 1px solid var(--line-ink); text-align: center; }
.np-footer__wordmark .mark { font-family: var(--ff-display); font-size: clamp(2.25rem, 6vw, 4rem); color: #fff; letter-spacing: 0.08em; }
.np-footer__wordmark .tag { margin-top: var(--s2); font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); }
.np-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: var(--s5); padding: var(--s6) 0; }
@media (max-width: 900px) { .np-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .np-footer__cols { grid-template-columns: 1fr; } }
.np-footer h4 { color: #fff; font-family: var(--ff-text); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: var(--s3); }
.np-footer h4::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); margin-top: 10px; }
.np-footer ul { display: flex; flex-direction: column; gap: 10px; }
.np-footer ul a { font-size: var(--fs-sm); color: rgba(255,255,255,0.65); transition: color 0.25s, padding-left 0.25s; }
.np-footer ul a:hover { color: var(--gold); padding-left: 6px; }
.np-footer .about-blurb { font-size: var(--fs-sm); font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 36ch; }
.np-footer .contact-list li { display: flex; gap: 12px; font-size: var(--fs-sm); align-items: baseline; }
.np-footer .contact-list i { color: var(--gold); width: 16px; font-size: 0.8rem; }
.np-footer .contact-list a:hover { color: var(--gold); }
.np-footer__social { display: flex; gap: var(--s2); margin-top: var(--s3); }
.np-footer__social a {
  width: 40px; height: 40px; border: 1px solid var(--line-ink); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  transition: all 0.25s var(--ease);
}
.np-footer__social a:hover { background: var(--gold); color: var(--ink-900); border-color: var(--gold); }
.np-footer__bottom { border-top: 1px solid var(--line-ink); padding: var(--s3) 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s2); font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.np-footer__bottom a { color: rgba(255,255,255,0.65); }
.np-footer__bottom a:hover { color: var(--gold); }
.np-footer__bottom .credit a { color: var(--gold); }

/* Back to top */
.to-top {
  position: fixed; bottom: var(--s3); right: var(--s3); z-index: 900;
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--ink-900); color: var(--gold); border: 1px solid rgba(197,164,92,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.25s;
}
.to-top:hover { transform: translateY(-3px); }
.to-top.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Prose (legal pages) ---------- */
.np-prose { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(var(--s4), 5vw, var(--s6)); }
.np-prose h2 { font-size: 1.5rem; margin: var(--s5) 0 var(--s2); }
.np-prose h2:first-child { margin-top: 0; }
.np-prose p { color: var(--text-600); margin-bottom: var(--s2); max-width: 70ch; }
.np-prose ul { list-style: none; padding-left: var(--s3); margin-bottom: var(--s2); color: var(--text-600); }
.np-prose ul li { position: relative; margin-bottom: 8px; }
.np-prose ul li::before { content: ''; position: absolute; left: -20px; top: 0.7em; width: 8px; height: 1px; background: var(--gold-deep); }
.np-prose a { color: var(--gold-deep); border-bottom: 1px dotted var(--gold); }

/* ---------- Utility ---------- */
.skip-link { position: absolute; left: var(--s2); top: -100%; z-index: 3000; background: var(--ink-900); color: #fff; padding: 12px 24px; border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600; font-size: var(--fs-sm); transition: top 0.2s; }
.skip-link:focus { top: 0; }
.center { text-align: center; }
.mt-2 { margin-top: var(--s2); } .mt-3 { margin-top: var(--s3); } .mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); } .mt-6 { margin-top: var(--s6); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; }
html.no-js .reveal { opacity: 1; transform: none; }
.empty-state { text-align: center; padding: var(--s7) var(--s3); border: 1px dashed var(--line); border-radius: var(--r-md); color: var(--text-400); background: var(--paper); }
.empty-state i { font-size: 2rem; color: var(--gold); margin-bottom: var(--s2); display: block; }
.empty-state h3 { color: var(--text-600); margin-bottom: var(--s1); }

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
}
