/* Milano Restaurant & Bar — shared styles
   Palette + fonts from milanotherestaurant.com brand DNA (sampled, not guessed) */
:root {
  --ink: #131d21;          /* site dark — from theme CSS */
  --black: #1a1919;        /* logo black — sampled from logo file */
  --paper: #f4efe6;        /* warm paper — softened, menu-paper tone */
  --paper-bright: #faf6ee; /* nav + elevated surfaces — warm, never pure white */
  --cream: #ece5d7;        /* deeper cream — fine print, subtle fields */
  --white: #f3eee4;        /* warm white — NO pure #fff anywhere; text on dark + flag rule */
  --green: #008362;        /* accent — the OG site's button/headline green */
  --it-green: #15a748;     /* tricolor green — sampled from logo */
  --it-red: #d8232a;       /* tricolor red — sampled from logo */
  --muted-dark: #93999c;
  --muted-light: #6b7075;
  --border-dark: rgba(243,238,228,0.12);
  --border-light: rgba(19,29,33,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Mulish', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, .btn-primary, .btn-outline, .tab-btn, .menu-item-price {
  font-family: 'Montserrat', sans-serif;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── TRICOLOR RULE — echoes the logo's flag slash ── */
.rule {
  width: 72px; height: 4px; margin: 1.2rem 0 2rem;
  background: linear-gradient(100deg, var(--it-green) 0 45%, var(--white) 45% 55%, var(--it-red) 55% 100%);
  border-radius: 2px;
}
.on-light .rule, .on-white .rule {
  background: linear-gradient(100deg, var(--it-green) 0 48%, var(--it-red) 52% 100%);
}
.rule.centered { margin-left: auto; margin-right: auto; }

/* ── LANGUAGE TOGGLE ── */
#lang-toggle { display: flex; border: 1px solid var(--border-light); border-radius: 2px; overflow: hidden; }
#lang-toggle button {
  background: transparent; color: var(--muted-light); border: none;
  padding: 0.4rem 0.8rem; font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; cursor: pointer; transition: all 0.2s;
}
#lang-toggle button.active { background: var(--ink); color: var(--white); }
#lang-toggle button:hover:not(.active) { color: var(--ink); }

/* ── NAV — white bar with the black circle logo, like the original site ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0.7rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 18px rgba(19,29,33,0.12); }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 2px solid transparent; transition: border-color 0.2s;
}
.nav-links a:hover { border-color: var(--it-red); }
.nav-links a.active { border-color: var(--it-green); }
.nav-reserve {
  background: var(--green); color: var(--white); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1.4rem; border-radius: 3px; transition: background 0.2s;
  white-space: nowrap;
}
.nav-reserve:hover { background: #006b50; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 5.5px 0; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: var(--paper-bright);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%); transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--ink); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.3rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.mobile-menu a.active { color: var(--it-green); }
.mobile-menu .mobile-reserve {
  background: var(--green); color: var(--white);
  padding: 1rem 1.8rem; border-radius: 3px; font-size: 1rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--green); color: var(--white); text-decoration: none;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 3px; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #006b50; transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.05rem 2rem; border: 1.5px solid rgba(243,238,228,0.65); border-radius: 3px; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(243,238,228,0.08); }
.on-light .btn-outline, .on-white .btn-outline { color: var(--white); border-color: var(--border-dark); }
.on-light .btn-outline:hover, .on-white .btn-outline:hover { border-color: var(--white); background: rgba(243,238,228,0.08); }

/* ── HERO (home only) — the flambé image stays exactly as-is ── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover; background-position: center right;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19,29,33,0.92) 0%, rgba(19,29,33,0.72) 42%, rgba(19,29,33,0.25) 75%, rgba(19,29,33,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; width: 100%; }
.hero-logo { width: 168px; height: auto; margin-bottom: 2rem; }
.hero-eyebrow {
  display: inline-block; color: var(--it-green);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800;
  line-height: 1.08; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--white); margin-bottom: 1.4rem; max-width: 13ch;
}
.hero-title em { font-style: normal; color: var(--it-red); }
.hero-subtitle { font-size: 1.15rem; color: rgba(240,235,225,0.85); max-width: 44ch; margin-bottom: 2.4rem; font-weight: 300; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-address { margin-top: 3rem; font-size: 0.92rem; color: rgba(240,235,225,0.75); line-height: 1.65; }
.hero-address strong { color: var(--white); font-weight: 600; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  padding: 9.5rem 0 3.5rem;
  background: var(--ink); text-align: center;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--it-green) 0 33%, var(--white) 33% 66%, var(--it-red) 66% 100%) 1;
}
.page-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--white);
}
.page-banner .section-label { margin-bottom: 0.6rem; }

/* ── SECTION BASICS ── */
section { padding: 6rem 0; }
.section-label {
  display: inline-block; color: var(--green);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.12;
}
.on-light { background: #172227; color: var(--paper); }
.on-white { background: var(--ink); color: var(--paper); }
.on-light .section-title, .on-white .section-title { color: var(--white); }

/* ── HOME: signature band ── */
.home-signature {
  background: var(--black); padding: 4.5rem 0;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--it-green) 0 33%, var(--white) 33% 66%, var(--it-red) 66% 100%) 1;
}
.home-signature .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.home-signature .photo { border-radius: 4px; overflow: hidden; }
.home-signature .photo img { width: 100%; height: 100%; object-fit: cover; }
.sig-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.35rem; text-transform: uppercase; margin: 0.8rem 0 0.6rem; }
.sig-desc { font-size: 0.95rem; color: rgba(240,235,225,0.8); line-height: 1.65; margin-bottom: 1.4rem; }
.sig-price { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--it-red); margin-bottom: 1.6rem; }

/* ── HOME: chef teaser ── */
.home-chef .inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.home-chef .photo { border-radius: 4px; overflow: hidden; }
.home-chef p { color: var(--muted-dark); line-height: 1.75; margin-bottom: 1.6rem; }

/* ── HOME: gallery strip ── */
.home-gallery { background: var(--ink); }
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.4rem 0; }
.strip .shot { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.strip .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.strip .shot:hover img { transform: scale(1.05); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: sticky; top: 110px; }
.about-img-main { grid-column: 1 / -1; overflow: hidden; border-radius: 4px; }
.about-img-sub { overflow: hidden; border-radius: 4px; }
.about-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-images img:hover { transform: scale(1.03); }
.about-text p { margin-bottom: 1.15rem; line-height: 1.75; color: var(--muted-dark); font-size: 0.98rem; }
.pull-quote {
  margin: 2rem 0; padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--it-green);
  background: #1b262c; border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 14px rgba(19,29,33,0.06);
}
.pull-quote p { font-style: italic; color: var(--paper); margin-bottom: 0.8rem; }
.pull-quote cite { font-style: normal; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--it-red); }
.about-credentials { display: flex; gap: 2.6rem; margin-top: 2.4rem; flex-wrap: wrap; }
.cred { display: flex; flex-direction: column; gap: 0.3rem; }
.cred-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); }
.cred-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); }

/* ── MENU PAGE ── */
#menu-page { text-align: center; padding-top: 4rem; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 0 0 3rem; }
.tab-btn {
  background: transparent; color: var(--paper);
  border: 1.5px solid var(--border-dark); border-radius: 3px;
  padding: 0.7rem 1.25rem; cursor: pointer;
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--paper); }
.tab-btn.active { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.menu-panel { display: none; text-align: left; max-width: 980px; margin: 0 auto; }
.menu-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2.6rem; }
.menu-item {
  display: flex; justify-content: space-between; gap: 1.2rem;
  padding: 0.9rem 0; border-bottom: 1px dotted rgba(243,238,228,0.25);
}
.menu-item-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); }
.menu-item-desc { font-size: 0.88rem; color: #a9b0b3; line-height: 1.5; margin-top: 0.25rem; }
.menu-item-price { font-weight: 800; font-size: 1rem; color: var(--white); white-space: nowrap; }
.menu-badge {
  display: inline-block; font-family: 'Mulish', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 10px;
  padding: 0.14rem 0.5rem; margin-left: 0.35rem; vertical-align: 2px;
}
.badge-vegan { background: rgba(21,167,72,0.18); color: var(--it-green); }
.badge-gf { background: rgba(216,35,42,0.16); color: var(--it-red); }
.badge-fresh { background: rgba(0,131,98,0.16); color: var(--green); }

.menu-note { font-size: 0.88rem; color: var(--muted-dark); margin-top: 1.6rem; }
.menu-note strong { color: var(--paper); }

.signature-dish {
  margin-top: 2.4rem; padding: 1.8rem 2rem;
  background: var(--black); color: var(--white); border-radius: 4px;
  display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap;
}
.sig-label {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--it-green);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.signature-dish > div:nth-child(2) { flex: 1; min-width: 260px; }
.signature-dish .sig-name { font-size: 1.15rem; margin: 0 0 0.4rem; }
.signature-dish .sig-desc { font-size: 0.9rem; margin-bottom: 0; }
.signature-dish .sig-price { margin-bottom: 0; }

.menu-finePrint {
  max-width: 980px; margin: 3rem auto 0; padding: 1.4rem 1.8rem;
  background: #172227; border-radius: 4px; text-align: left;
  font-size: 0.8rem; color: var(--muted-light); line-height: 1.7;
}
.menu-cta-row { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY PAGE ── */
.gallery-section { background: var(--ink); padding-top: 4rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── VISIT PAGE ── */
.visit-section { background: var(--ink); padding-top: 4rem; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.hours-block { margin: 1.8rem 0; max-width: 420px; }
.hours-row {
  display: flex; justify-content: space-between; padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-dark); font-size: 0.95rem;
}
.hours-day { color: var(--muted-dark); }
.hours-time { font-weight: 700; color: var(--paper); }
.hours-row.closed .hours-time { color: var(--it-red); }
.address-block p { line-height: 1.7; font-size: 1rem; }
.address-block a { color: var(--it-green); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.address-block a:hover { text-decoration: underline; }
.mapbox { border-radius: 4px; overflow: hidden; background: var(--black); }
.mapbox iframe {
  width: 100%; height: 430px; border: 0; display: block;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.92) saturate(0.85);
}

/* ── RESERVE BAND ── */
#reserve {
  background: var(--black); text-align: center;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--it-green) 0 33%, var(--white) 33% 66%, var(--it-red) 66% 100%) 1;
}
.reserve-content { max-width: 640px; margin: 0 auto; padding: 0 2rem; }
#reserve p { color: var(--muted-dark); margin: 1.2rem 0 2.2rem; line-height: 1.7; }
.reserve-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #0e1518; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--muted-dark); font-size: 0.9rem; line-height: 1.65; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--it-green); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; color: var(--muted-dark); font-size: 0.9rem; }
.footer-col a { color: var(--muted-dark); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem; border-top: 1px solid var(--border-dark);
}
.footer-bottom > p { color: var(--muted-dark); font-size: 0.82rem; }
.social-links { display: flex; gap: 0.9rem; }
.social-links a { display: inline-flex; }
.social-links svg { width: 20px; height: 20px; fill: var(--muted-dark); transition: fill 0.2s; }
.social-links a:hover svg { fill: var(--paper); }

.footer-credit {
  --credit-color: var(--muted-dark);
  color: var(--credit-color);
  font-size: 0.85rem; text-align: center;
  padding-top: 24px; margin-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.footer-credit a { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.blok-logo {
  display: inline-block; width: 70px; height: 14px; vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: url('assets/8blok-logo.png') left center / contain no-repeat;
          mask: url('assets/8blok-logo.png') left center / contain no-repeat;
}
.footer-credit a:hover .blok-logo { background-color: var(--it-green); }

/* ── MOBILE ── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-reserve { display: none; }
  .about-grid, .visit-grid, .home-signature .inner, .home-chef .inner { grid-template-columns: 1fr; }
  .about-images { position: static; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.4rem; }
  nav { padding: 0.6rem 1.2rem; }
  .nav-logo img { height: 48px; }
  .hero-bg { background-image: url('assets/hero-mobile.jpg'); background-position: center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(19,29,33,0.55) 0%, rgba(19,29,33,0.82) 70%, rgba(19,29,33,0.95) 100%); }
  .hero-content { padding: 0 1.4rem; }
  .hero-logo { width: 128px; }
  .hero-address { font-size: 0.86rem; }
  .page-banner { padding: 7.5rem 0 2.6rem; }
  .signature-dish { padding: 1.4rem; }
  .sig-label { writing-mode: horizontal-tb; transform: none; }
  .mapbox iframe { height: 330px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ── WOW PASS — editorial full-bleed + printed-menu layout ── */

/* tricolor slash motif (from the logo) */
.slash {
  display: inline-block; width: 88px; height: 9px; margin: 0.2rem 0 1.6rem;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, var(--it-green) 0 44%, var(--white) 44% 56%, var(--it-red) 56% 100%);
}

/* full-bleed photo sections */
.bleed {
  position: relative; min-height: 86vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.bleed-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,29,33,0.35) 0%, rgba(19,29,33,0.1) 40%, rgba(19,29,33,0.88) 100%);
}
.bleed-inner { position: relative; z-index: 2; width: 100%; padding-top: 5rem; padding-bottom: 4.5rem; }
.bleed-right .bleed-inner { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.bleed-right .slash { transform: skewX(24deg); }
.display-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.9rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--white);
  margin: 0.6rem 0 0.9rem;
  text-shadow: 0 2px 24px rgba(19,29,33,0.55);
}
.bleed-copy { max-width: 52ch; color: rgba(240,235,225,0.92); line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.6rem; text-shadow: 0 1px 14px rgba(19,29,33,0.6); }
.bleed-row { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.bleed-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.3rem; color: var(--it-red); text-shadow: 0 1px 14px rgba(19,29,33,0.6); }

.chef-quote { font-style: italic; font-size: 1.18rem; color: var(--paper); line-height: 1.65; margin-bottom: 1.1rem; }
.home-chef .btn-outline { margin-top: 0.6rem; }

/* printed-menu section bars — straight off the physical menu */
.menu-bar {
  display: flex; align-items: baseline; gap: 0.8rem;
  background: var(--black); color: var(--white);
  margin: 3.2rem -2rem 1.8rem; padding: 1rem 2rem;
}
.menu-bar:first-of-type { margin-top: 0.5rem; }
.menu-bar h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.menu-bar span { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); }
.menu-block { max-width: 980px; margin: 0 auto; text-align: left; scroll-margin-top: 130px; }

/* sticky jump nav */
.menu-jump {
  position: sticky; top: 72px; z-index: 90;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1.4rem;
  background: rgba(19,29,33,0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--border-dark);
}
.menu-jump a {
  color: var(--muted-dark); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.menu-jump a:hover { color: var(--paper); border-color: var(--it-red); }

@media (max-width: 760px) {
  .bleed { min-height: 68vh; }
  .bleed-right .bleed-inner { align-items: flex-start; text-align: left; }
  .bleed-right .slash { transform: skewX(-24deg); }
  .menu-bar { margin-left: -1.4rem; margin-right: -1.4rem; padding: 0.85rem 1.4rem; }
  .menu-bar h2 { font-size: 1.1rem; }
  .menu-jump { top: 64px; gap: 0.2rem 1rem; }
}
