/*
  NORDWERK MOTORS — concept demo stylesheet.
  Design language: cinematic technical. Near-black canvas, signal amber, hard
  90° edges, condensed display type, monospaced data. Fully self-contained:
  every selector is prefixed `nw-` and nothing leaks to the Appvolution site.
*/

.nw {
  --ink: #f2efe9;
  --ink-2: #b9bcc2;
  --ink-3: #7e838c;
  --bg: #0c0e11;
  --bg-2: #121519;
  --bg-3: #171b20;
  --line: rgba(255, 255, 255, .1);
  --line-2: rgba(255, 255, 255, .18);
  --amber: #ff9d2e;
  --amber-soft: rgba(255, 157, 46, .12);
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", "Archivo Narrow", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --shell: 1440px;
  --gut: clamp(20px, 4vw, 56px);

  margin: var(--appv-bar-h) 0 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
.nw *, .nw *::before, .nw *::after { box-sizing: border-box; }
:where(.nw) img { display: block; max-width: 100%; height: auto; }
/* :where() keeps the reset at element specificity so button and link classes
   below can still set their own colour. */
:where(.nw) a { color: inherit; text-decoration: none; }
:where(.nw) p { margin: 0 0 1em; }
.nw :focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.nw .skip {
  position: fixed; left: 12px; top: -80px; z-index: 200; padding: 10px 16px;
  color: #0c0e11; background: var(--amber); font-weight: 700; transition: top .18s;
}
.nw .skip:focus { top: calc(var(--appv-bar-h) + 10px); }

.nw-shell { width: min(100% - var(--gut) * 2, var(--shell)); margin-inline: auto; }

/* Typography: condensed uppercase display, monospaced labels. */
.nw h1, .nw h2, .nw h3 {
  margin: 0; font-family: var(--cond); font-weight: 700;
  line-height: .96; letter-spacing: -.01em; text-transform: uppercase;
}
.nw h1 { font-size: clamp(3rem, 7.4vw, 6.6rem); }
.nw h2 { font-size: clamp(2.1rem, 4.4vw, 3.9rem); }
.nw h3 { font-size: clamp(1.1rem, 1.5vw, 1.32rem); letter-spacing: 0; }
.nw h1 span { color: var(--amber); }
.nw h1 em { display: block; font-style: normal; font-size: .42em; color: var(--ink-3); letter-spacing: .02em; }

.nw-kicker {
  margin: 0 0 14px; font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--amber);
}

/* ---------------------------------------------------------------- buttons */

.nw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 12px 22px; border: 1px solid var(--amber); border-radius: 0;
  color: #0c0e11; background: var(--amber); cursor: pointer;
  font-family: var(--sans); font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: background .16s linear, color .16s linear, border-color .16s linear;
}
.nw-btn:hover { background: #ffb054; border-color: #ffb054; }
.nw-btn--ghost { color: var(--ink); background: transparent; border-color: var(--line-2); }
.nw-btn--ghost:hover { color: var(--amber); background: transparent; border-color: var(--amber); }
.nw-btn--lg { min-height: 56px; padding: 15px 30px; font-size: .9rem; }
.nw-btn--small { min-height: 38px; padding: 9px 15px; font-size: .74rem; }
.nw-btn--block { display: flex; width: 100%; }

.nw-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
}
.nw-link i { font-style: normal; transition: transform .18s linear; }
.nw-link:hover i { transform: translateX(5px); }
.nw-link--back i { transition: none; }
.nw-link--back:hover i { transform: translateX(-4px); }
.nw-link--lg { font-size: .84rem; }

/* ----------------------------------------------------------------- header */

.nw-head {
  position: sticky; top: var(--appv-bar-h); z-index: 90;
  background: rgba(12, 14, 17, .9); border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.nw-head__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nw-logo { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--ink); }
.nw-logo svg { width: 30px; height: 22px; color: var(--amber); }
.nw-logo span { display: flex; flex-direction: column; line-height: 1; }
.nw-logo b { font-family: var(--cond); font-size: 1.28rem; font-weight: 700; letter-spacing: .06em; }
.nw-logo i { font-family: var(--mono); font-size: .58rem; font-style: normal; letter-spacing: .34em; color: var(--ink-3); }
.nw-logo--foot b { font-size: 1.5rem; }

.nw-nav { display: flex; gap: 4px; margin-left: auto; }
.nw-nav a {
  padding: 9px 13px; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-2); transition: color .16s linear;
}
.nw-nav a:hover { color: var(--ink); }
.nw-nav a[aria-current] { color: var(--amber); box-shadow: inset 0 -2px 0 var(--amber); }
.nw-head__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nw-head__actions .nw-btn--ghost { font-family: var(--mono); letter-spacing: .04em; text-transform: none; }

.nw-burger { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-2); background: none; cursor: pointer; }
.nw-burger span, .nw-burger::before, .nw-burger::after {
  content: ""; display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s, opacity .2s;
}
.nw-burger[aria-expanded="true"] span { opacity: 0; }
.nw-burger[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nw-burger[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.nw-mobile { display: none; }

/* ------------------------------------------------------------------- hero */

.nw-hero { position: relative; display: flex; align-items: flex-end; min-height: min(86vh, 820px); padding: 120px 0 56px; overflow: hidden; }
.nw-hero__media { position: absolute; inset: 0; }
.nw-hero__media picture, .nw-hero__img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12, 14, 17, .94) 0%, rgba(12, 14, 17, .74) 42%, rgba(12, 14, 17, .28) 100%),
              linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.nw-hero__inner { position: relative; z-index: 2; }
.nw-hero h1 { max-width: 16ch; }
.nw-hero__lead { max-width: 46ch; margin-top: 26px; color: var(--ink-2); font-size: clamp(1rem, 1.35vw, 1.14rem); }
.nw-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.nw-hero__facts {
  display: flex; flex-wrap: wrap; gap: 12px 52px; margin: 46px 0 0;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.nw-hero__facts div { display: flex; flex-direction: column-reverse; }
.nw-hero__facts dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.nw-hero__facts dd { margin: 0 0 4px; font-family: var(--cond); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; line-height: 1; }

.nw-band { border-block: 1px solid var(--line); background: var(--bg-2); }
.nw-band__inner {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--ink-2);
}
.nw-band__inner span { padding: 18px 22px 18px 0; }
.nw-band__inner span + span { padding-left: 22px; border-left: 1px solid var(--line); }

/* --------------------------------------------------------------- sections */

.nw-section { padding: clamp(64px, 8vw, 118px) 0; }
.nw-section--flush { padding-top: clamp(28px, 4vw, 46px); }
.nw-section--dark { background: var(--bg-2); border-block: 1px solid var(--line); }
.nw-section--split { padding-block: clamp(48px, 6vw, 92px); }

.nw-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }

.nw-page-head { position: relative; padding: clamp(70px, 9vw, 118px) 0 clamp(40px, 5vw, 62px); border-bottom: 1px solid var(--line); }
.nw-page-head--media { overflow: hidden; }
.nw-page-head--media > .nw-shell { position: relative; z-index: 2; }
.nw-page-head__media { position: absolute; inset: 0; }
.nw-page-head__media picture, .nw-page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.nw-page-head__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12, 14, 17, .96) 12%, rgba(12, 14, 17, .6) 78%), linear-gradient(0deg, var(--bg), transparent 55%);
}
.nw-page-head__lead { max-width: 56ch; margin-top: 22px; color: var(--ink-2); }

.nw-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 5vw, 72px); }
.nw-split--reverse .nw-split__media { order: 2; }
.nw-split__copy p { color: var(--ink-2); max-width: 54ch; }
.nw-split__copy h2 { margin-bottom: 22px; }

.nw-frame { position: relative; display: block; overflow: hidden; background: var(--bg-3); }
.nw-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); pointer-events: none; }
.nw-frame img { width: 100%; }

.nw-ticks { margin: 22px 0 30px; padding: 0; list-style: none; }
.nw-ticks li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .94rem; }
.nw-ticks li::before { content: "→"; position: absolute; left: 0; color: var(--amber); }

.nw-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 34px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.nw-facts div { display: flex; flex-direction: column-reverse; }
.nw-facts dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.nw-facts dd { margin: 0 0 3px; font-family: var(--cond); font-size: 2rem; font-weight: 700; line-height: 1; }

/* ------------------------------------------------------------- vehicle UI */

.nw-vgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.nw-vgrid--list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.nw-vcard { display: flex; flex-direction: column; background: var(--bg); transition: background .18s linear; }
.nw-vcard:hover { background: var(--bg-3); }
.nw-vcard.is-hidden { display: none; }
.nw-vcard__media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-3); }
.nw-vcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .3, 1); }
.nw-vcard:hover .nw-vcard__img { transform: scale(1.045); }
.nw-vcard__tag {
  position: absolute; top: 0; left: 0; padding: 6px 12px;
  background: var(--amber); color: #0c0e11;
  font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.nw-vcard__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.nw-vcard__marque { margin: 0; font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.nw-vcard h3 { margin: 8px 0 2px; font-size: 1.42rem; }
.nw-vcard__variant { margin: 0 0 16px; color: var(--ink-3); font-size: .84rem; }
.nw-vcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

.nw-price { font-family: var(--cond); font-size: 1.7rem; font-weight: 700; letter-spacing: -.01em; }
.nw-price--lg { font-size: clamp(2.2rem, 3.4vw, 3rem); margin: 0; }

.nw-specs { margin: 0; }
.nw-specs--mini { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.nw-specs--mini > div { display: flex; justify-content: space-between; gap: 8px; padding: 8px 11px; background: var(--bg); }
.nw-specs--mini dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.nw-specs--mini dd { margin: 0; font-size: .78rem; font-weight: 600; }
.nw-vcard:hover .nw-specs--mini > div { background: var(--bg-3); }

.nw-specs--stack > div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.nw-specs--stack dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.nw-specs--stack dd { margin: 0; font-weight: 600; text-align: right; }

/* ----------------------------------------------------------- filter + list */

.nw-listing { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 34px; align-items: start; }
.nw-filters__sticky { position: sticky; top: calc(var(--appv-bar-h) + 88px); display: flex; flex-direction: column; gap: 20px; }
.nw-fieldset { margin: 0; padding: 0 0 18px; border: 0; border-bottom: 1px solid var(--line); }
.nw-fieldset legend { padding: 0 0 10px; font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }

.nw-check { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: .88rem; color: var(--ink-2); }
.nw-check input { width: 16px; height: 16px; accent-color: var(--amber); flex: 0 0 auto; }
.nw-check:hover { color: var(--ink); }
.nw-check--wide { padding: 12px 0 0; }

.nw-field { display: flex; flex-direction: column; gap: 7px; }
.nw-field > span { font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.nw-field > span b { color: var(--amber); font-weight: 500; }
.nw-field input, .nw-field select, .nw-field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line-2); border-radius: 0;
  color: var(--ink); background: var(--bg-2); font: inherit; font-size: .92rem;
}
.nw-field input[type="range"] { padding: 0; border: 0; background: none; accent-color: var(--amber); }
.nw-field textarea { resize: vertical; }
.nw-field input:focus, .nw-field select:focus, .nw-field textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: var(--amber); }
.nw-field--inline { flex-direction: row; align-items: center; gap: 12px; }
.nw-field--inline select { width: auto; }
.nw-field--wide { grid-column: 1 / -1; }

.nw-results__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.nw-results__bar p { margin: 0; font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.nw-results__bar b { color: var(--amber); font-size: 1.1rem; }
.nw-noresult { margin: 34px 0 0; padding: 26px; border: 1px dashed var(--line-2); color: var(--ink-2); }

/* ----------------------------------------------------------------- detail */

.nw-detail__top { padding: clamp(40px, 6vw, 74px) 0 26px; }
.nw-detail__top .nw-link--back { margin-bottom: 24px; }
.nw-detail__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr); gap: clamp(26px, 4vw, 54px); align-items: start; }

.nw-gallery__main { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-3); }
.nw-gallery__main picture, .nw-gallery__img { width: 100%; height: 100%; object-fit: cover; }
.nw-gallery__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.nw-thumb { padding: 0; border: 1px solid var(--line); background: none; cursor: pointer; overflow: hidden; aspect-ratio: 4 / 3; }
.nw-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .18s linear; }
.nw-thumb.is-active { border-color: var(--amber); }
.nw-thumb.is-active img, .nw-thumb:hover img { opacity: 1; }

.nw-detail__aside { padding: 26px; border: 1px solid var(--line); background: var(--bg-2); }
.nw-detail__vat { margin: 6px 0 22px; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.nw-detail__aside .nw-btn { margin-top: 12px; }

.nw-detail__body { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr); gap: clamp(26px, 4vw, 54px); align-items: start; padding: clamp(44px, 6vw, 78px) 0 0; }
.nw-detail__body h2 { margin-bottom: 16px; }
.nw-detail__body h3 { margin: 28px 0 12px; }
.nw-detail__body p { color: var(--ink-2); }

.nw-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.nw-tags li { padding: 7px 12px; border: 1px solid var(--line-2); font-family: var(--mono); font-size: .72rem; color: var(--ink-2); }

.nw-finance { padding: 26px; border: 1px solid var(--line); background: var(--bg-2); }
/* Narrow column: the condensed display size would otherwise break out. */
.nw-finance h2, .nw-detail__aside h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.nw-finance .nw-field { margin-bottom: 18px; }
.nw-finance__note { font-size: .8rem; color: var(--ink-3); }
.nw-finance__out { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.nw-finance__out span { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.nw-finance__out strong { font-family: var(--cond); font-size: 2rem; font-weight: 700; color: var(--amber); }

/* --------------------------------------------------------------- services */

.nw-sgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.nw-service { display: flex; flex-direction: column; padding: 26px 24px; background: var(--bg); }
.nw-section--dark .nw-service { background: var(--bg-2); }
.nw-service__head { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.nw-service__meta { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-top: 8px; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; }
.nw-service__meta i { font-style: normal; color: var(--ink-3); }
.nw-service__meta b { color: var(--amber); font-weight: 500; }
.nw-service ul { flex: 1; margin: 16px 0 20px; padding: 0; list-style: none; }
.nw-service li { padding: 6px 0 6px 16px; position: relative; color: var(--ink-2); font-size: .86rem; }
.nw-service li::before { content: ""; position: absolute; top: 14px; left: 0; width: 6px; height: 1px; background: var(--amber); }

.nw-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: var(--line); border: 1px solid var(--line); }
.nw-steps li { padding: 28px 24px; background: var(--bg-2); }
.nw-steps b { display: block; margin-bottom: 16px; font-family: var(--cond); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--amber); }
.nw-steps h3 { margin-bottom: 10px; }
.nw-steps p { margin: 0; color: var(--ink-2); font-size: .9rem; }

/* ---------------------------------------------------------------- booking */

.nw-booking { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.nw-booking__rail { margin: 0; padding: 0; list-style: none; position: sticky; top: calc(var(--appv-bar-h) + 96px); }
.nw-booking__rail li { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-3); }
.nw-booking__rail b { font-family: var(--mono); font-size: .78rem; }
.nw-booking__rail span { font-family: var(--cond); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.nw-booking__rail li.is-active { color: var(--amber); }
.nw-booking__rail li.is-done { color: var(--ink); }

.nw-booking__form { min-width: 0; padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); background: var(--bg-2); }
.nw-booking__step { display: none; margin: 0; padding: 0; border: 0; }
.nw-booking__step.is-active { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.nw-booking__step legend {
  grid-column: 1 / -1; float: left; width: 100%; margin-bottom: 8px; padding: 0;
  font-family: var(--cond); font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 700; text-transform: uppercase; line-height: 1;
}

.nw-choice { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.nw-choice__item { position: relative; cursor: pointer; }
.nw-choice__item input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nw-choice__item span { display: block; padding: 15px 17px; border: 1px solid var(--line-2); background: var(--bg); transition: border-color .16s linear, background .16s linear; }
.nw-choice__item b { display: block; font-size: .96rem; }
.nw-choice__item i { display: block; margin-top: 3px; font-family: var(--mono); font-size: .7rem; font-style: normal; color: var(--ink-3); }
.nw-choice__item input:checked + span { border-color: var(--amber); background: var(--amber-soft); }
.nw-choice__item input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }

.nw-slots { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.nw-slot { position: relative; cursor: pointer; }
.nw-slot input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nw-slot span { display: block; padding: 11px 16px; border: 1px solid var(--line-2); font-family: var(--mono); font-size: .8rem; }
.nw-slot input:checked + span { border-color: var(--amber); color: var(--amber); background: var(--amber-soft); }
.nw-slot input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }

.nw-summary { grid-column: 1 / -1; }
.nw-summary dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 8px 0 0; background: var(--line); border: 1px solid var(--line); }
.nw-summary dl > div { display: flex; justify-content: space-between; gap: 10px; padding: 10px 13px; background: var(--bg); }
.nw-summary dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.nw-summary dd { margin: 0; font-size: .84rem; font-weight: 600; text-align: right; }

.nw-booking__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }

/* ------------------------------------------------------------------ forms */

.nw-form-wrap { padding: clamp(48px, 6vw, 88px) 0 0; }
.nw-form-head { max-width: 60ch; margin-bottom: 30px; }
.nw-form-head p { color: var(--ink-2); }
.nw-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.nw-form .nw-btn { grid-column: 1 / -1; justify-self: start; }
.nw-form--card { align-content: start; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); background: var(--bg-2); }
.nw-form--card h2 { grid-column: 1 / -1; margin-bottom: 4px; }

/* ------------------------------------------------------------------- team */

.nw-team { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.nw-person { padding: 28px 24px; background: var(--bg-2); }
.nw-person__index { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; color: var(--amber); }
.nw-person h3 { margin: 14px 0 4px; }
.nw-person__role { margin: 0 0 12px; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; color: var(--ink-3); }
.nw-person p { margin: 0; color: var(--ink-2); font-size: .88rem; }

/* ---------------------------------------------------------------- contact */

.nw-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 62px); align-items: start; padding-bottom: clamp(56px, 7vw, 100px); }
.nw-contact h2 { margin-bottom: 16px; font-size: 1.6rem; }
.nw-contact h2 + h2 { margin-top: 38px; }
.nw-contact address { font-style: normal; color: var(--ink-2); line-height: 1.8; }
.nw-contact__demo { margin-top: 12px; font-family: var(--mono); font-size: .7rem; color: var(--ink-3); }
.nw-hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.nw-hours th, .nw-hours td { padding: 11px 0; text-align: left; border-bottom: 1px solid var(--line); }
.nw-hours thead th { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.nw-hours tbody th { font-weight: 600; }
.nw-hours td { color: var(--ink-2); }

/* -------------------------------------------------------------------- CTA */

.nw-cta { padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.nw-cta__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; align-items: center; gap: 34px; }
.nw-cta__inner p { max-width: 52ch; color: var(--ink-2); }
.nw-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ----------------------------------------------------------------- footer */

.nw-foot { padding: clamp(46px, 6vw, 76px) 0 34px; border-top: 1px solid var(--line); background: var(--bg-2); }
.nw-foot__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.nw-foot__grid p { max-width: 40ch; color: var(--ink-3); font-size: .88rem; }
.nw-foot h3 { margin-bottom: 14px; font-size: .78rem; letter-spacing: .16em; font-family: var(--mono); font-weight: 500; color: var(--ink-3); }
.nw-foot__grid > div > a { display: block; padding: 5px 0; color: var(--ink-2); font-size: .9rem; }
.nw-foot__grid > div > a:hover { color: var(--amber); }
.nw-foot__hours { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .84rem; }
.nw-foot__hours i { font-style: normal; color: var(--ink-3); }
.nw-foot__line { display: block; padding: 4px 0; color: var(--ink-2); font-size: .9rem; }
.nw-note { margin: 26px 0 0; color: var(--ink-3); font-size: .78rem; line-height: 1.7; }
.nw-note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.nw-note a:hover { color: var(--amber); }

/* ------------------------------------------------------------ motion + a11y */

/* Scoped to html.appv-demo, which the demo kit sets once its script runs, so
   the content is never hidden when JavaScript is unavailable. */
@media (prefers-reduced-motion: no-preference) {
  html.appv-demo [data-reveal] { opacity: 0; transform: translateX(-18px); transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .3, 1); }
  html.appv-demo [data-reveal].is-in { opacity: 1; transform: none; }
  html.appv-demo [data-reveal]:nth-child(2) { transition-delay: .06s; }
  html.appv-demo [data-reveal]:nth-child(3) { transition-delay: .12s; }
  html.appv-demo [data-reveal]:nth-child(4) { transition-delay: .18s; }
}

/* ------------------------------------------------------------- responsive */

@media (max-width: 1180px) {
  .nw-vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nw-vgrid--list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nw-sgrid, .nw-steps, .nw-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nw-nav { display: none; }
  .nw-burger { display: block; }
  .nw-head__actions .nw-btn--ghost { display: none; }
  .nw-mobile {
    display: block; max-height: 0; overflow: hidden; border-top: 1px solid var(--line);
    background: var(--bg-2); transition: max-height .26s ease;
  }
  .nw-mobile.is-open { max-height: 480px; }
  .nw-mobile a { display: block; padding: 14px var(--gut); border-bottom: 1px solid var(--line); font-family: var(--cond); font-size: 1.2rem; text-transform: uppercase; }
  .nw-mobile .nw-btn--block { margin: 16px var(--gut) 22px; width: auto; }
  .nw-listing { grid-template-columns: minmax(0, 1fr); }
  .nw-filters__sticky { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 22px; padding: 20px; border: 1px solid var(--line); background: var(--bg-2); }
  .nw-filters__sticky .nw-field--search, .nw-filters__sticky .nw-btn { grid-column: 1 / -1; }
  .nw-detail__grid, .nw-detail__body { grid-template-columns: minmax(0, 1fr); }
  .nw-booking { grid-template-columns: minmax(0, 1fr); }
  .nw-booking__rail { position: static; display: flex; gap: 1px; background: var(--line); border: 1px solid var(--line); }
  .nw-booking__rail li { flex: 1; flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 14px; border: 0; background: var(--bg-2); }
}

@media (max-width: 900px) {
  .nw-split, .nw-contact, .nw-cta__inner { grid-template-columns: minmax(0, 1fr); }
  .nw-split--reverse .nw-split__media { order: 0; }
  .nw-band__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nw-band__inner span { padding: 14px 18px 14px 0; }
  .nw-band__inner span:nth-child(2n) { padding-left: 18px; border-left: 1px solid var(--line); }
  .nw-band__inner span:nth-child(3), .nw-band__inner span:nth-child(4) { border-top: 1px solid var(--line); }
  .nw-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nw-head-row { display: block; }
  .nw-head-row .nw-link { margin-top: 18px; }
  .nw-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

@media (max-width: 680px) {
  /* The header keeps only the brand and the burger; the booking CTA lives in
     the mobile menu, so nothing has to shrink below its legible size. */
  .nw-head__actions > .nw-btn { display: none; }
  .nw-head__inner { justify-content: space-between; height: 62px; }
  .nw-foot__grid { grid-template-columns: minmax(0, 1fr); }
  .nw-vgrid, .nw-vgrid--list, .nw-sgrid, .nw-steps, .nw-team { grid-template-columns: minmax(0, 1fr); }
  .nw-form, .nw-booking__step.is-active, .nw-choice { grid-template-columns: minmax(0, 1fr); }
  .nw-filters__sticky { grid-template-columns: minmax(0, 1fr); }
  .nw-gallery__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nw-hero { min-height: auto; padding: 92px 0 46px; }
  .nw-booking__rail span { font-size: .92rem; }
  .nw-summary dl { grid-template-columns: minmax(0, 1fr); }
}
