/* ==========================================================================
   Bronson Pizza
   Palette: warm paper + charcoal, one fired-brick red accent, ember for rules.
   ========================================================================== */

:root {
  --paper:      #FAF6EF;
  --paper-2:    #F2ECE1;
  --ink:        #1C1B17;
  --ink-2:      #2B2A25;
  --muted:      #57534A;
  --muted-dark: #C9C4B8;
  --red:        #B3261C;
  --red-deep:   #8E1F16;
  --ember:      #E8A33D;
  --rule:       rgba(28, 27, 23, 0.16);
  --rule-dark:  rgba(250, 246, 239, 0.20);

  --shell:  1240px;
  --gutter: 24px;

  --font-display: "Archivo Black", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Archivo", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { margin: 0; line-height: 1.08; font-weight: 400; }
p  { margin: 0 0 1.1em; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
address { font-style: normal; }

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ------------------------------------------------------------- helpers ---- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display { font-family: var(--font-display); letter-spacing: 0.005em; }
.display--lg { font-size: 40px; line-height: 1.06; }
.display--xl { font-size: 48px; line-height: 1.02; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow--light { color: var(--ember); }

.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head__note { margin: 20px 0 0; color: var(--muted); max-width: 56ch; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn--lg { padding: 17px 30px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(179, 38, 28, 0.22);
}
.btn--solid:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179, 38, 28, 0.32);
}

.btn--outline { border-color: rgba(255, 255, 255, 0.65); color: #fff; }
.btn--outline:hover { background: #fff; border-color: #fff; color: var(--ink); transform: translateY(-2px); }

.btn--ghost { border-color: var(--rule); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.link-arrow::after { content: "\2192"; font-size: 16px; }
.link-arrow:hover { color: var(--red-deep); gap: 14px; }
.link-arrow--light { color: var(--ember); }
.link-arrow--light:hover { color: #fff; }

/* -------------------------------------------------------------- masthead -- */
.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 11, 9, 0.62), rgba(12, 11, 9, 0));
  pointer-events: none;
}
.masthead.is-stuck {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}
.masthead.is-stuck::after { opacity: 0; }

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 44px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.brand__since {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s var(--ease);
}
.masthead.is-stuck .brand__name { color: var(--ink); }
.masthead.is-stuck .brand__since { color: var(--muted); }

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.navlist { display: flex; align-items: center; gap: 26px; }
.navlist a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  padding-block: 6px;
  transition: color 0.25s var(--ease);
}
.navlist a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.navlist a:hover::after { transform: scaleX(1); }
.masthead.is-stuck .navlist a { color: var(--ink); }
.masthead.is-stuck .navlist a::after { background: var(--red); }

.navlist__actions { display: flex; align-items: center; gap: 12px; }
.navlist__actions .btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.navlist__actions .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.masthead.is-stuck .navlist__actions .btn--ghost { border-color: var(--rule); color: var(--ink); }
.masthead.is-stuck .navlist__actions .btn--ghost:hover { border-color: var(--ink); background: transparent; }

.navtoggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  color: #fff;
}
.navtoggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navtoggle__bars { display: block; width: 22px; }
.navtoggle__bars i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.navtoggle__bars i + i { margin-top: 5px; }
.masthead.is-stuck .navtoggle { color: var(--ink); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media video {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12, 11, 9, 0.88) 0%, rgba(12, 11, 9, 0.42) 48%, rgba(12, 11, 9, 0.52) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(12, 11, 9, 0.4) 100%);
}

.hero__body {
  position: relative;
  z-index: 1;
  padding-bottom: 96px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.hero__lede {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero__call {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
}
.hero__call a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero__call a:hover { color: var(--ember); border-color: var(--ember); }
.hero__call-note { color: rgba(255, 255, 255, 0.62); font-size: 14px; }
.hero__call-sep { padding-inline: 8px; color: rgba(255, 255, 255, 0.4); }

/* ------------------------------------------------------------ facts band -- */
.facts {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 300px 0 64px;
}
.facts__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.facts__row li {
  padding-inline: 40px;
  border-left: 1px solid var(--rule);
}
.facts__row li:first-child { padding-left: 0; border-left: 0; }
.facts__row li:last-child { padding-right: 0; }
.facts__key {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.facts__val { display: block; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ------------------------------------------------------------- signature -- */
.signature { padding-block: 100px; background: var(--paper); }
.signature__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}
.signature__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow__tag {
  display: inline-block;
  background: rgba(179, 38, 28, 0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.signature__copy .display {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.signature__copy .lead {
  margin-bottom: 30px;
  max-width: 48ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.specsheet {
  border-top: 1px solid var(--rule);
  margin-bottom: 34px;
}
.specsheet > div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  align-items: center;
  padding-block: 13px;
  border-bottom: 1px solid var(--rule);
}
.specsheet dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.specsheet dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}

.signature__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }

.signature__figure { margin: 0; position: relative; }
.signature__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 40px -12px rgba(28, 27, 23, 0.16), 0 4px 12px rgba(28, 27, 23, 0.06);
  background: var(--paper-2);
}
.signature__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.signature__figure:hover .signature__media img {
  transform: scale(1.025);
}
.signature__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(28, 27, 23, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.signature__figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ------------------------------------------------------------------ menu -- */
.menu { padding-block: 108px; background: var(--paper-2); }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 48px;
}
.menu__tab {
  position: relative;
  padding: 14px 22px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.22s var(--ease);
}
.menu__tab:first-child { padding-left: 0; }
.menu__tab::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.menu__tab:first-child::after { width: calc(100% + 0px); }
.menu__tab:hover { color: var(--ink); }
.menu__tab[aria-selected="true"] { color: var(--ink); }
.menu__tab[aria-selected="true"]::after { transform: scaleX(1); }

.menu__panel {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.menu__panel[hidden] { display: none; }
.menu__panel:focus-visible { outline-offset: 8px; }

.menu__figure { margin: 0; position: sticky; top: calc(var(--nav-h) + 32px); }
.menu__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.menu__figure:hover img { transform: scale(1.025); filter: saturate(1.08); }
.menu__figure figcaption {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.menu__lists { display: grid; gap: 40px; }
.menu__note {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
  max-width: 62ch;
}
.menu__group h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.itemlist li {
  padding-block: 15px;
  border-bottom: 1px solid var(--rule);
}
.itemlist li:last-child { border-bottom: 0; }
.itemlist__name { display: block; font-weight: 600; font-size: 17px; }
.itemlist__price {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.itemlist__desc { display: block; margin-top: 3px; font-size: 15px; color: var(--muted); }

.menu__footlink { margin: 48px 0 0; }
.menu__price-note {
  max-width: 64ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* --------------------------------------------------------------- kitchen -- */
.kitchen {
  background: var(--ink);
  color: var(--paper);
  padding-block: 108px;
}
.kitchen__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
}
.kitchen__figure { margin: 0; }
.kitchen__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}
.kitchen__copy .display { margin-bottom: 24px; }
.kitchen__copy .lead { color: var(--muted-dark); margin-bottom: 20px; }
.kitchen__copy p { color: var(--muted-dark); max-width: 58ch; }
.kitchen__hours-lead { margin-bottom: 28px; }

/* ------------------------------------------------------------- locations -- */
.locations { padding-block: 108px; background: var(--paper); }
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.place {
  padding: 40px 40px 44px;
  border-left: 1px solid var(--rule);
}
.place:first-child { padding-left: 0; border-left: 0; }
.place:last-child { padding-right: 0; }
.place__name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 18px;
}
.place__address { font-size: 17px; line-height: 1.6; margin-bottom: 14px; }
.place__phone { margin-bottom: 20px; }
.place__phone a {
  font-family: var(--font-display);
  font-size: 21px;
  text-decoration: none;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.place__phone a:hover { color: var(--red); border-color: var(--red); }
.place__links { margin: 0; }
.place__note { margin: 20px 0 0; font-size: 14.5px; color: var(--muted); }

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 11px;
  border-bottom: 1px solid var(--rule);
  font-size: 15.5px;
}
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------------- contact -- */
.contact { padding-block: 100px; background: var(--paper-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.contact__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.contact__copy .display { font-size: 40px; line-height: 1.08; margin-bottom: 18px; }
.contact__copy .lead { margin-bottom: 28px; max-width: 46ch; font-size: 18px; line-height: 1.6; color: var(--muted); }

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(28, 27, 23, 0.12);
}

.contact-card--featured {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  padding: 20px 22px;
  box-shadow: 0 4px 14px -4px rgba(28, 27, 23, 0.08);
}
.contact-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 10px 24px -6px rgba(179, 38, 28, 0.18);
}
.contact-card--featured .contact-card__val {
  color: var(--red);
  font-size: 26px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin-block: 4px 6px;
}

.contact-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.contact-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(179, 38, 28, 0.1);
  color: var(--red);
  padding: 2px 7px;
  border-radius: 3px;
}
.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card__val {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.contact-card__val--sm {
  font-size: 14px;
  word-break: break-all;
}
.contact-card__hint {
  font-size: 13.5px;
  color: var(--muted);
}

.contact-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 16px 36px -10px rgba(28, 27, 23, 0.12), 0 4px 12px rgba(28, 27, 23, 0.04);
}
.form__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.form__intro {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 22px;
  padding: 10px 12px;
  background: var(--paper-2);
  border-radius: 4px;
  border: 1px solid var(--rule);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(28, 27, 23, 0.22);
  border-radius: 5px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:hover, .field textarea:hover { border-color: rgba(28, 27, 23, 0.45); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179, 38, 28, 0.15);
}
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }
.field__error { margin: 6px 0 0; font-size: 13px; font-weight: 600; color: var(--red); }

.form__status { margin: 16px 0 0; font-size: 14.5px; font-weight: 600; min-height: 1px; }
.form__status.is-ok { color: var(--red); }

/* ---------------------------------------------------------------- closer -- */
.closer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 104px;
  text-align: center;
}
.closer__inner { max-width: 760px; }
.closer .display { margin-bottom: 20px; }
.closer__lede { font-size: 19px; color: var(--muted-dark); margin-bottom: 34px; }
.closer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 26px;
}
.closer__note { margin: 0; font-size: 14px; color: rgba(250, 246, 239, 0.6); }

/* ---------------------------------------------------------------- footer -- */
.footer {
  background: #131210;
  color: var(--muted-dark);
  padding-block: 72px 34px;
  font-size: 15px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-dark);
}
.footer__brand img { width: 78px; margin-bottom: 16px; }
.footer__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  color: var(--paper);
}
.footer__tagline span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ember);
}
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer__nav li, .footer__col li { margin-bottom: 11px; }
.footer__nav a, .footer__col a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__nav a:hover, .footer__col a:hover { color: var(--paper); border-color: var(--ember); }
.footer__places li { margin-bottom: 20px; line-height: 1.6; }
.footer__places span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 40px;
  padding-top: 26px;
  font-size: 13.5px;
  color: rgba(201, 196, 184, 0.72);
}
.footer__base p { margin: 0; }
.footer__disclaimer { max-width: 62ch; }
.footer__disclaimer a { color: var(--muted-dark); }
.footer__disclaimer a:hover { color: var(--paper); }

/* -------------------------------------------------------------- reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal.is-visible { opacity: 1; transform: none; }

[data-hero] {
  opacity: 0;
  transform: translateY(22px);
}
.hero.is-ready [data-hero] {
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero.is-ready [data-hero="1"] { animation-delay: 0.08s; }
.hero.is-ready [data-hero="2"] { animation-delay: 0.18s; }
.hero.is-ready [data-hero="3"] { animation-delay: 0.30s; }
.hero.is-ready [data-hero="4"] { animation-delay: 0.42s; }
.hero.is-ready [data-hero="5"] { animation-delay: 0.52s; }

@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero__media { transform: scale(1.06); transition: transform 1.6s var(--ease); }
.hero.is-ready .hero__media { transform: scale(1); }

/* Full-viewport cover transition shared with the finalized Bacata site. */
.hero-spacer { display: none; }

.site-body {
  position: relative;
  z-index: 1;
  background: var(--paper);
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    body {
      --hero-cover-lift: 100svh;
      --hero-cover-drag: 112svh;
    }

    .hero {
      --hero-tail: 46px;
      position: fixed;
      z-index: 20;
      inset: 0 0 auto;
      width: 100%;
      height: calc(100svh + var(--hero-tail));
      min-height: 0;
      max-height: none;
      border-radius: 0 0 42px 42px;
      box-shadow: 0 34px 58px -18px rgba(28, 27, 23, 0.68);
      will-change: transform;
      animation: bronson-hero-cover-lift linear both;
      animation-range: 0 var(--hero-cover-lift);
      animation-timeline: scroll(root);
    }

    .hero-spacer {
      display: block;
      height: var(--hero-cover-drag);
    }

    .site-body {
      z-index: 10;
      will-change: transform;
      animation: bronson-site-body-pin linear both;
      animation-range: 0 var(--hero-cover-drag);
      animation-timeline: scroll(root);
    }

    .facts__row {
      transform-origin: top center;
      will-change: transform, opacity, filter;
      animation: bronson-facts-settle linear both;
      animation-range: 50svh var(--hero-cover-drag);
      animation-timeline: scroll(root);
    }
  }
}

@keyframes bronson-hero-cover-lift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -100%, 0); }
}

@keyframes bronson-site-body-pin {
  from { transform: translate3d(0, -112svh, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes bronson-facts-settle {
  from { opacity: 0.2; filter: blur(3px); transform: translate3d(0, 56px, 0) scale(0.975); }
  45% { opacity: 0.72; filter: blur(1.4px); transform: translate3d(0, 20px, 0) scale(0.99); }
  78% { opacity: 0.94; filter: blur(0.35px); transform: translate3d(0, 5px, 0) scale(0.997); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

/* ===================================================== responsive: 1080 === */
@media (max-width: 1080px) {
  .display--lg { font-size: 34px; }
  .display--xl { font-size: 42px; }
  .hero__title { font-size: 74px; }

  .facts__row li { padding-inline: 24px; }

  .signature__grid, .kitchen__grid, .contact__grid { gap: 48px; }
  .menu__panel { gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ====================================================== responsive: 940 === */
@media (max-width: 940px) {
  :root { --nav-h: 68px; }

  .masthead__nav {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 40px rgba(12, 11, 9, 0.18);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .masthead__nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .navlist { flex-direction: column; align-items: stretch; gap: 0; }
  .navlist li { border-bottom: 1px solid var(--rule); }
  .navlist a {
    display: block;
    padding: 15px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  .navlist a::after { display: none; }

  .navlist__actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 22px; }
  .navlist__actions .btn { width: 100%; }
  .navlist__actions .btn--ghost { border-color: var(--rule); color: var(--ink); }
  .navlist__actions .btn--ghost:hover { border-color: var(--ink); background: transparent; }

  .navtoggle { display: inline-flex; }
  .masthead.is-menu-open { background: var(--paper); box-shadow: 0 1px 0 var(--rule); }
  .masthead.is-menu-open::after { opacity: 0; }
  .masthead.is-menu-open .brand__name,
  .masthead.is-menu-open .navtoggle { color: var(--ink); }
  .masthead.is-menu-open .brand__since { color: var(--muted); }

  .facts__row { grid-template-columns: 1fr; gap: 0; }
  .facts__row li {
    padding: 26px 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .facts__row li:first-child { border-top: 0; padding-top: 0; }
  .facts__row li:last-child { padding-bottom: 0; }

  .signature__grid, .kitchen__grid, .contact__grid, .menu__panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .signature__figure { order: -1; }
  .signature__figure img, .kitchen__figure img { aspect-ratio: 4 / 3; }
  .menu__figure { position: static; }
  .menu__figure img { aspect-ratio: 16 / 10; }

  .locations__grid { grid-template-columns: 1fr; }
  .place {
    padding: 32px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule);
  }
  .place:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ====================================================== responsive: 720 === */
@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }

  .display--lg { font-size: 29px; }
  .display--xl { font-size: 34px; }
  .lead { font-size: 18px; }

  .signature, .menu, .kitchen, .locations, .contact { padding-block: 72px; }
  .facts { padding: 176px 0 44px; }
  .closer { padding-block: 76px; }

  .hero { min-height: 620px; height: 100svh; max-height: none; }
  .hero__title { font-size: 54px; }
  .hero__lede { font-size: 17px; }
  .hero__body { padding-bottom: 84px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__call-sep { display: none; }
  .hero__call a { display: inline-block; margin-top: 2px; }

  .brand__mark { width: 38px; }
  .brand__name { font-size: 16px; }
  .brand__since { font-size: 10px; }
  .navtoggle__label { display: none; }

  .section-head { margin-bottom: 34px; }

  .menu__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab { flex: 0 0 auto; padding: 12px 16px 14px; }

  .specsheet > div { grid-template-columns: 1fr; gap: 4px; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; }

  .form { padding: 26px 22px; }

  .closer__actions .btn { flex: 1 1 100%; }

  .footer { padding-block: 56px 30px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
  .footer__base { flex-direction: column; }
}

/* ================================================== reduced motion ======== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, [data-hero] { opacity: 1 !important; transform: none !important; }
  .hero__media { transform: none !important; }
  .hero__media video { visibility: hidden; }
  .menu__figure:hover img { transform: none; }
  .btn:hover { transform: none; }
}

/* ============================================================ print ======= */
@media print {
  .masthead, .form, .navtoggle { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; height: auto; }
}
