/* Odem Theater Pub — real brand stylesheet
   Colors pulled from the actual marquee sign & neon (odemlogo2.jpg, odemnight.jpeg):
   navy body of the sign, forest-green letter panel, gold/yellow letters,
   teal + coral-red neon tubing, cream stucco building, pink/chartreuse deco fan. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Jost:wght@400;500;600&display=swap');

:root {
  --navy: #14172b;
  --navy-deep: #0c0e1c;
  --forest: #163f34;
  --gold: #f4c53d;
  --gold-bright: #ffd75e;
  --teal: #2bb8bd;
  --coral: #e5495a;
  --cream: #f3ead6;
  --cream-panel: #faf5e8;
  --pink: #f0a8bf;
  --chartreuse: #cbd66c;
  --ink: #221f1c;
  --ink-dim: #6b6255;
  --line: #ddd0ac;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}

a { color: inherit; }

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

.shell { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ---------- neon rule: teal/coral/gold triple line, like the marquee trim ---------- */
.neon-rule {
  height: 6px;
  background:
    linear-gradient(var(--teal), var(--teal)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--coral), var(--coral)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 2px no-repeat;
}

/* ---------- header ---------- */

.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--navy-deep);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { height: 58px; width: auto; }

.brand span {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
}

nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

nav.main-nav a {
  color: #e9e3d2;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

nav.main-nav a:hover,
nav.main-nav a.current {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}

nav.main-nav a.cta {
  background: linear-gradient(180deg, #4cd6da, var(--teal));
  color: var(--navy-deep);
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(43, 184, 189, 0.3);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}
nav.main-nav a.cta:hover {
  background: linear-gradient(180deg, #4cd6da, #1f8f93);
  color: var(--navy-deep);
  border-bottom: 2px solid transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 184, 189, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,14,28,0.35) 0%, rgba(12,14,28,0.88) 100%);
}

.hero .shell {
  position: relative;
  padding-top: 60px;
  padding-bottom: 44px;
}

.hero h1 {
  font-size: 46px;
  max-width: 16ch;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero p {
  max-width: 56ch;
  font-size: 16.5px;
  color: #e9e3d2;
  margin-top: 14px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  will-change: transform;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.05s; }

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(244, 197, 61, 0.25);
}
.btn-gold:hover { box-shadow: 0 8px 22px rgba(244, 197, 61, 0.45); }
.btn-gold:active { box-shadow: 0 2px 8px rgba(244, 197, 61, 0.3); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(43, 184, 189, 0.12);
  box-shadow: 0 8px 22px rgba(43, 184, 189, 0.25);
}

.btn-coral {
  background: linear-gradient(180deg, #4cd6da, var(--teal));
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(43, 184, 189, 0.3);
}
.btn-coral:hover { background: linear-gradient(180deg, #4cd6da, #1f8f93); box-shadow: 0 8px 22px rgba(43, 184, 189, 0.45); }
.btn-coral:active { box-shadow: 0 2px 8px rgba(43, 184, 189, 0.3); }

.btn-navy {
  background: linear-gradient(180deg, #1b1f3a, var(--navy));
  color: var(--gold-bright);
  box-shadow: 0 2px 8px rgba(12, 14, 28, 0.25);
  border-color: rgba(244, 197, 61, 0.18);
}
.btn-navy:hover { background: linear-gradient(180deg, #21254a, var(--navy-deep)); box-shadow: 0 8px 22px rgba(12, 14, 28, 0.4); border-color: rgba(244, 197, 61, 0.4); }
.btn-navy:active { box-shadow: 0 2px 8px rgba(12, 14, 28, 0.3); }

/* ---------- section scaffolding ---------- */

section.block { padding: 56px 0; }
section.block.tight { padding: 36px 0; }
section.block.on-panel { background: var(--cream-panel); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin: 0 0 8px;
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section-head h2 { font-size: 30px; }
.section-head p { color: var(--ink-dim); margin-top: 8px; }

/* deco fan divider, echoes the menu's art-deco banner shapes */
.fan-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
}
.fan-divider::before, .fan-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  max-width: 160px;
  background: var(--line);
}
.fan-divider span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ---------- cards / grids ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.card img { aspect-ratio: 3/2; object-fit: cover; }
.card .body { padding: 16px; }
.card h3 { font-size: 17px; }
.card p { color: var(--ink-dim); font-size: 13.5px; margin: 6px 0 0; }

/* ---------- menu ---------- */

.menu-cat-nav { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .menu-cat-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 4px;
    margin: 18px -24px 0;
    padding: 4px 24px 10px;
  }
  .menu-cat-nav::-webkit-scrollbar { height: 4px; }
  .menu-cat-nav::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

  .menu-cat-nav .menu-cat-btn {
    flex: none;
    padding: 9px 16px;
    font-size: 12px;
    border-radius: 999px;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--line);
    box-shadow: none;
  }
  .menu-cat-nav .menu-cat-btn:hover,
  .menu-cat-nav .menu-cat-btn:active {
    background: var(--navy);
    color: #fff;
  }
}

.menu-cat { margin-bottom: 44px; }
.menu-cat h2 {
  text-align: center;
  font-size: 28px;
  color: var(--forest);
  position: relative;
}
.menu-note {
  text-align: center;
  color: var(--ink-dim);
  font-size: 13px;
  max-width: 60ch;
  margin: 6px auto 26px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
}
.menu-item-main { display: flex; align-items: center; gap: 14px; min-width: 0; }
.menu-item-photo { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; flex: none; border: 1px solid var(--line); }
.menu-item .name { font-weight: 600; font-size: 16px; }
.menu-item .desc { color: var(--ink-dim); font-size: 12.5px; display: block; font-weight: 400; margin-top: 3px; }
.menu-item .price { font-weight: 700; color: var(--forest); white-space: nowrap; font-family: 'Playfair Display', serif; }

.pizza-item { padding: 12px 0; border-bottom: 1px dotted var(--line); }
.pizza-item .row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.pizza-item .name-wrap { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pizza-item .name { font-weight: 600; font-size: 16px; }
.pizza-item .sizes { display: flex; gap: 18px; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--forest); }
.pizza-item .sizes small { display: block; font-family: 'Jost', sans-serif; font-weight: 400; color: var(--ink-dim); font-size: 10px; text-align: center; }
.pizza-item .desc { color: var(--ink-dim); font-size: 12.5px; margin-top: 3px; }

/* ---------- info panels ---------- */

.info-panel {
  background: var(--navy);
  color: #e9e3d2;
  border-radius: 6px;
  padding: 26px;
}
.info-panel h3 { color: var(--gold-bright); font-size: 18px; margin-bottom: 10px; }
.info-panel .kv { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }

.gap-note {
  border: 1px dashed var(--coral);
  background: #fff3f2;
  color: #a13a3a;
  padding: 10px 14px;
  border-radius: 3px;
  font-size: 12.5px;
  margin-top: 10px;
}

table.hours { width: 100%; border-collapse: collapse; font-size: 14px; }
table.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); }
table.hours td:last-child { text-align: right; font-weight: 600; }

/* ---------- footer ---------- */

footer.site-footer {
  background: var(--navy-deep);
  color: #a79c86;
  padding: 34px 0 26px;
  margin-top: 20px;
}
footer.site-footer .shell:not(.legal) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
footer.site-footer .fcol h4 {
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
footer.site-footer a { color: #a79c86; text-decoration: none; font-size: 13px; display: block; padding: 3px 0; }
footer.site-footer a:hover { color: var(--teal); }
footer.site-footer .legal {
  text-align: center;
  font-size: 11.5px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #262a44;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #262a44;
}
.social-links a {
  display: flex;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.social-links a:hover { transform: translateY(-3px); filter: brightness(1.15); }
.social-links img {
  width: calc(32px * var(--icon-scale, 1));
  height: calc(32px * var(--icon-scale, 1));
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.social-links svg { color: #a79c86; }
.social-links a:hover svg { color: var(--teal); }
.social-links + .legal { margin-top: 14px; padding-top: 0; border-top: none; }

/* ---------- utility ---------- */

.build-note {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  background: #fff3f2;
  border: 1px dashed var(--coral);
  color: #a13a3a;
  padding: 8px 14px;
  border-radius: 3px;
}

.form-msg {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13.5px;
}
.form-msg.success {
  background: rgba(43, 184, 189, 0.12);
  border: 1px solid var(--teal);
  color: var(--forest);
}
.form-msg.error {
  background: rgba(229, 73, 90, 0.1);
  border: 1px solid var(--coral);
  color: #a13a3a;
}

/* Honeypot — off-screen (not display:none) so form-filling bots still find & fill it,
   while real visitors and keyboard/screen-reader users never encounter it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- now showing: poster carousel + movie cards ---------- */

.poster-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: -56px 0;
  padding: 22px 16px;
}

.carousel-trailer-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 28, 0.96);
}
.carousel-trailer-overlay[hidden] { display: none; }

.trailer-frame-wrap {
  width: min(900px, 88%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.trailer-frame-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135%;
  height: 135%;
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
  pointer-events: none;
}

.trailer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.trailer-close:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.poster-carousel-track {
  --slide-w: clamp(280px, 78vw, 860px);
  display: flex;
  gap: 14px;
  width: var(--slide-w);
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.poster-carousel-track::-webkit-scrollbar { display: none; }

.poster-slide {
  position: relative;
  flex: none;
  scroll-snap-align: start;
  width: var(--slide-w);
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
  background: #000;
}
.poster-slide:hover { transform: translateY(-4px); }
.poster-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-slide img.is-poster-fallback { object-fit: contain; }
.no-poster-slide {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--forest); color: var(--gold-bright); font-family: 'Playfair Display', serif;
  text-align: center; padding: 10px; font-size: 13px;
}
.poster-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 14px 12px;
  background: linear-gradient(180deg, rgba(12,14,28,0) 0%, rgba(12,14,28,0.92) 100%);
}
.poster-slide-caption {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}
.poster-slide-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}
.poster-slide-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(244, 197, 61, 0.55);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-bright);
  white-space: nowrap;
}
.poster-slide-actions .btn {
  padding: 9px 16px;
  font-size: 11.5px;
}

@media (max-width: 560px) {
  .poster-slide-overlay {
    padding: 14px 10px 10px;
    gap: 6px;
  }
  .poster-slide-caption {
    font-size: 12px;
    flex-basis: 100%;
  }
  .poster-slide-actions {
    gap: 6px;
  }
  .poster-slide-pill {
    padding: 4px 9px;
    font-size: 10px;
  }
  .poster-slide-actions .btn {
    padding: 5px 10px;
    font-size: 10px;
  }
}

.carousel-arrow {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 197, 61, 0.4);
}
.carousel-arrow:active { transform: translateY(0); }

@media (max-width: 760px) {
  .carousel-arrow { display: none; }
}

.movie-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.movie-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  flex: none;
}
.movie-card .no-poster {
  width: 100%; aspect-ratio: 2/3; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); font-family: 'Playfair Display', serif; text-align: center; padding: 16px;
  font-size: 15px; flex: none;
}
.movie-card .body { padding: 16px; flex: 1; min-width: 0; display: flex; flex-direction: column; }
.movie-card h3 { font-size: 17px; line-height: 1.25; }
.movie-card .meta { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 5px; color: var(--ink-dim); }
.movie-card .dates { font-size: 13px; margin-top: 5px; }
.movie-card .showtimes { margin-top: 12px; }
.movie-card .showtime-day {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest);
  margin-bottom: 7px;
}
.movie-card .showtime-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.movie-card .showtime-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--cream-panel);
  border: 1px solid var(--line);
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}
.movie-card .body .btn { margin-top: auto; justify-content: center; }

/* ---------- gallery: CSS multi-column masonry, grayscale-to-color hover cards ---------- */

.gallery-masonry {
  columns: 3 220px;
  column-gap: 22px;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  background: var(--cream-panel);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 3px 10px rgba(34, 31, 28, 0.12);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.gallery-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(43, 184, 189, 0.28);
  transform: translateY(-3px);
}

.gallery-card img {
  width: 100%;
  border-radius: 5px;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}
.gallery-card:hover img { filter: grayscale(0%); }

.gallery-card figcaption {
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-dim);
  text-align: center;
  margin: 8px 2px 2px;
}

@media (max-width: 700px) { .gallery-masonry { columns: 1 100%; } }

.previewbar {
  background: var(--navy-deep);
  color: #cfc6ac;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }

  .site-header .shell { gap: 10px; }

  .brand { min-width: 0; flex: 1 1 auto; }
  .brand img { height: 40px; }
  .brand span { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .nav-toggle { display: flex; flex: 0 0 auto; }

  nav.main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    order: 3;
  }
  .site-header.nav-open nav.main-nav { display: flex; }

  nav.main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(233, 227, 210, 0.12);
  }
  nav.main-nav a.cta {
    margin-top: 10px;
    justify-content: center;
    border-bottom: 2px solid transparent;
  }
}
