/* Buoy Bar starter template */
/* Locked rules:
   - Section titles: Raleway 900, 61px, -0.096em
   - Hero text: Open Sans
   - Continuous aerial hero video; only text changes
   - No boxed cards
   - Vertical separators only between related columns
*/

:root {
  --navy: #0b2f4a;
  --deep: #061d2f;
  --night: #03111e;
  --white: #fff;
  --gold: #c79a43;
  --ink: #18232b;
  --muted: #66727d;
  --line: rgba(11,47,74,.2);
  --max: 1080px;
  --gutter: clamp(16px, 3vw, 32px);
  --gap: 18px;
  --ease: cubic-bezier(.19,1,.22,1);
}
html {
  overflow-y: scroll;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}
.wrap.wide { width: min(1240px, calc(100% - (var(--gutter) * 2))); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6,29,47,.52);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { background: rgba(6,29,47,.94); }

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.brand {
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.1;
  font-weight: 700;
}
.brand span { display: block; font-size: 18px; }
.brand small { display: block; margin-top: 4px; font-size: 9px; color: rgba(255,255,255,.72); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a {
  color: var(--white);
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}

.main-nav a.is-active {
  color: var(--white);
}

/* Fluid desktop/intermediate nav.
   Prevents stepping/drift between full desktop and mobile dropdown. */
@media (min-width: 941px) {
  .header-inner {
    gap: clamp(14px, 2vw, 24px);
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(9px, 1.25vw, 18px);
    font-size: clamp(9.5px, .78vw, 12px);
    letter-spacing: clamp(.045em, .45vw, .08em);
    white-space: nowrap;
  }
}

.menu-toggle { display: none; }

.kicker, .hero-kicker {
  margin: 0 0 10px;
  color: #fab736;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker::before, .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.button.gold { background: var(--gold); color: var(--night); border: 1px solid var(--gold); }
.button.navy { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.button.outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.45); }

/* Shared section header */
.section-header { text-align: center; margin: 0 auto 42px; }
.section-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 61px;
  line-height: .86;
  letter-spacing: -0.096em;
  font-weight: 900;
  text-transform: uppercase;
}
.title-rule {
  width: 86px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto;
}
.section-header p {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-weight: 400;
}
.section-header.left { text-align: left; }
.section-header.left .title-rule { margin-left: 0; }

/* Hero: Open Sans only */
.hero {
  position: relative;
  min-height: 94vh;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}
/* Desktop homepage hero: fuller cinematic opening */
@media (min-width: 941px) {
  body.home .hero,
  body.home .hero-copy {
    min-height: 100vh;
  }

  body.home .hero-copy {
    padding-top: 120px;
    padding-bottom: 96px;
  }
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video { z-index: 2; }
.hero-media img { z-index: 1; }
/* Lighter hero overlay */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: transparent;
  pointer-events: none;
}
.hero-state h1 {
  text-shadow:
    0 4px 18px rgba(0, 0, 0, .58),
    0 2px 4px rgba(0, 0, 0, .62);
}

.hero-state > p:not(.hero-kicker),
.hero-kicker {
  text-shadow:
    0 3px 12px rgba(0, 0, 0, .52),
    0 1px 3px rgba(0, 0, 0, .58);
}
.hero-copy {
  position: relative;
  z-index: 4;
  min-height: 94vh;
  display: grid;
  align-content: end;
  justify-items: start;
  text-align: left;
  padding: 110px 0 84px;
}
.hero-state {
  grid-area: 1 / 1;
  width: min(620px, 100%);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.hero-state.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-state h1 {
  margin: 0;
  color: var(--white);
  font-family: "Raleway", Open Sans, sans-serif;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.hero-state > p:not(.hero-kicker) {
  margin: 16px 0 0;
  color: rgba(255,255,255,.86);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.42;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-controls button {
  cursor: pointer;
  color: var(--white);
  background: rgba(3,17,30,.38);
  border: 1px solid rgba(255,255,255,.35);
}
.hero-controls > button { width: 34px; height: 34px; border-radius: 999px; }
/* Hero controls / dots */
.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.42);
}

.hero-dots button.is-active {
  background: var(--gold);
}

@media (max-width: 600px) {
  body.home .hero {
    height: 100vh !important;
    height: 100lvh !important;
    min-height: 100vh !important;
    min-height: 100lvh !important;
    overflow: hidden !important;
  }

  body.home .hero-copy {
    position: relative !important;
    display: block !important;
    height: 100vh !important;
    height: 100lvh !important;
    min-height: 100vh !important;
    min-height: 100lvh !important;
    text-align: left;
    padding: 0 18px !important;
  }

  body.home .hero-state {
    position: absolute !important;
    left: 18px;
    right: 18px;
    bottom: 86px;
    width: auto !important;
    max-width: 430px;
    grid-area: auto !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 18px, 0);

    transition:
      opacity 900ms cubic-bezier(.19,1,.22,1),
      transform 900ms cubic-bezier(.19,1,.22,1),
      visibility 0s linear 900ms;
  }

  body.home .hero-state.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);

    transition:
      opacity 900ms cubic-bezier(.19,1,.22,1),
      transform 900ms cubic-bezier(.19,1,.22,1),
      visibility 0s linear 0s;
  }

  body.home .hero-state h1 {
    font-size: clamp(34px, 10.4vw, 48px) !important;
    line-height: .98 !important;
    letter-spacing: -0.045em !important;
  }

  body.home .hero-state > p:not(.hero-kicker) {
    max-width: 94%;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  body.home .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  body.home .hero-actions .button {
    min-width: 148px;
  }

  body.home .hero-shade {
    background:
      linear-gradient(180deg, rgba(3,17,30,.05) 0%, rgba(3,17,30,.15) 42%, rgba(3,17,30,.54) 100%);
  }
}

/* =========================================================
   Restaurant image rotator
   Replaces the four-image strip under the hero.
   Cinematic-image section remains separate and unchanged.
========================================================= */

.restaurant-strip.restaurant-rotator {
  position: relative;
  padding: 0 !important;
  background: var(--night);
  width: 100%;
  aspect-ratio: 2048 / 764;
  min-height: 390px;
  overflow: hidden;
}

.restaurant-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition:
    opacity 950ms cubic-bezier(.19,1,.22,1),
    transform 1500ms cubic-bezier(.19,1,.22,1);
}

.restaurant-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.restaurant-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

}

.restaurant-slide figcaption {
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  bottom: clamp(34px, 5vw, 68px);
  z-index: 2;
  max-width: 700px;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 850ms cubic-bezier(.19,1,.22,1),
    transform 850ms cubic-bezier(.19,1,.22,1);
  transition-delay: 220ms;
}

.restaurant-slide.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.restaurant-slide figcaption span {
  display: block;
  color: var(--gold);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.restaurant-slide figcaption strong {
  display: block;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 36px);
  line-height: .98;
  letter-spacing: -0.048em;
  font-weight: 500;
}

/* Arrows */
.restaurant-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(3,17,30,.34);
  color: #fff;
  cursor: pointer;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.restaurant-arrow:hover {
  background: rgba(3,17,30,.62);
  border-color: rgba(255,255,255,.72);
}

.restaurant-arrow i {
  font-size: 28px;
  line-height: 1;
}

.restaurant-arrow-prev {
  left: clamp(16px, 2.6vw, 38px);
}

.restaurant-arrow-next {
  right: clamp(16px, 2.6vw, 38px);
}

.restaurant-arrow-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.restaurant-arrow-next:hover {
  transform: translateY(-50%) translateX(2px);
}

/* Dots */
.restaurant-rotator-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.restaurant-rotator-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
}

.restaurant-rotator-dots button.is-active {
  background: var(--gold);
}

/* Tablet */
@media (max-width: 940px) {
  .restaurant-strip.restaurant-rotator {
    aspect-ratio: 16 / 8.4;
    min-height: 370px;
  }

  .restaurant-slide figcaption {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 54px;
    max-width: 620px;
  }

  .restaurant-slide figcaption strong {
    font-size: clamp(30px, 6vw, 44px);
  }

  .restaurant-arrow {
    width: 40px;
    height: 40px;
  }

  .restaurant-arrow i {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .restaurant-strip.restaurant-rotator {
    aspect-ratio: 4 / 3;
    min-height: 400px;
  }

  .restaurant-slide figcaption {
    left: 22px;
    right: 22px;
    bottom: 58px;
  }

  .restaurant-slide figcaption strong {
    font-size: clamp(26px, 8.6vw, 36px);
    line-height: 1.02;
  }

  .restaurant-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
    width: 38px;
    height: 38px;
  }

  .restaurant-arrow-prev {
    left: 22px;
  }

  .restaurant-arrow-next {
    right: 22px;
  }

  .restaurant-arrow-prev:hover,
  .restaurant-arrow-next:hover {
    transform: none;
  }

  .restaurant-rotator-dots {
    bottom: 32px;
  }

  .restaurant-rotator-dots button {
    width: 24px;
  }
}

/* Description */
.description-section { padding: 76px 0 66px; }
.section-statement {
  margin: 56px auto 58px;
  color: var(--navy);
  text-align: center;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(32px, 4.8vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-weight: 800;
  text-transform: uppercase;
}
.description-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; }
.description-quote { padding-right: 58px; text-align: center; }
.description-quote p {
  margin: 0; color: var(--navy); font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 38px); line-height: 1.03;
  letter-spacing: -0.022em; font-weight: 400;
}
.description-copy { border-left: 1px solid var(--line); padding-left: 58px; }
.description-copy p { margin: 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 22px); line-height: 1.62; }
.description-copy p + p { margin-top: 18px; }

/* Day */
.day-section { padding: 58px 0; border-top: 1px solid var(--line); }
.day-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.day-grid article { padding: 0 24px; border-right: 1px solid var(--line); }
.day-grid article:first-child { padding-left: 0; }
.day-grid article:last-child { border-right: 0; padding-right: 0; }
.day-grid h3 {
  margin: 0; color: var(--navy); font-family: "Raleway", Arial, sans-serif;
  font-size: 21px; font-weight: 700;
}
.day-grid p:not(.kicker) { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Cinematic */
.cinematic-image {
  padding: 0;
  background: var(--night);
}

.cinematic-image figure {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 2048 / 764;
  min-height: auto !important;
  overflow: hidden;
  background: var(--night);
}

.cinematic-image img {
  width: 100%;
  height: 100%;
  min-height: auto !important;
  object-fit: cover;
}

/* Lighter overlay so the sunset image stays visible */


.cinematic-image figcaption {
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  bottom: clamp(24px, 3vw, 42px);
  z-index: 2;
  max-width: 560px;
}

.cinematic-image span {
  display: block;
  color: var(--gold);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cinematic-image strong {
  display: block;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}

/* Split / Doheny */
.split-section, .doheny-section { padding: 58px 0; }
.split-layout, .doheny-layout { display: grid; grid-template-columns: 1fr 1fr; }
.split-layout > div { padding: 0 32px; }
.split-layout > div:first-child { padding-left: 0; border-right: 1px solid var(--line); }
.split-layout > div:last-child { padding-right: 0; }
.split-layout h3 { margin: 0; color: var(--navy); font-family: "Raleway", Arial, sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 700; }
.split-layout p:not(.kicker), .doheny-copy p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.66; }

.doheny-section { border-top: 1px solid var(--line); }
.doheny-media { padding-right: calc(var(--gap) * 2.5); }
.video-popup-inline { position: relative; display: block; overflow: hidden; background: var(--night); }
.video-popup-inline img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .9s var(--ease); }
.video-popup-inline:hover img { transform: scale(1.035); }
.video-popup-inline::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,17,30,.42), rgba(3,17,30,.08)); }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; width: 72px; height: 72px; transform: translate(-50%, -50%); border-radius: 50%; border: 2px solid rgba(255,255,255,.82); background: rgba(3,17,30,.42); }
.play-button::before { content: ""; position: absolute; left: 29px; top: 22px; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 20px solid var(--white); }
.inline-video-popup { max-width: 1080px; margin: 40px auto; background: #000; }
.inline-video-popup video { width: 100%; height: auto; }
.doheny-copy { border-left: 1px solid var(--line); padding-left: calc(var(--gap) * 2.5); }

/* Visit/Footer */
.visit-section { background: var(--deep); color: var(--white); padding: 34px 0; }
.visit-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); align-items: center; }
.visit-section h2 { margin: 0; color: var(--white); font-family: "Raleway", Arial, sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 700; }
.visit-section p:not(.kicker) { margin-top: 8px; color: rgba(255,255,255,.76); }
.visit-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.site-footer { background: var(--night); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: var(--gap); }
.footer-inner p { margin: 0; color: rgba(255,255,255,.70); font-size: 13px; }
.footer-inner a { color: var(--gold); }
.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.footer-sitemap-link {
  display: block;
  color: rgba(255,255,255,.42) !important;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
}

.footer-sitemap-link:hover {
  color: var(--gold) !important;
}

/* Reveal / lazy load */
[data-scroll-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--delay, 0ms); }
[data-scroll-reveal].is-visible { opacity: 1; transform: translateY(0); }
img[loading="lazy"] { opacity: 0; transition: opacity .7s var(--ease); }
img[loading="lazy"].is-loaded { opacity: 1; }

/* Mobile */
@media (max-width: 940px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10001;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    background: var(--white);
    border-radius: 2px;
  }

  .main-nav {
    position: fixed;
    inset: auto;
    top: 76px;
    right: var(--gutter);
    left: auto;
    bottom: auto;

    z-index: 10000;
    width: min(320px, calc(100vw - (var(--gutter) * 2)));
    height: auto;
    min-height: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;

    padding: 8px 0;
    margin: 0;
    color: var(--white);
    background: rgba(6,29,47,.97);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);

    transition:
      opacity .28s var(--ease),
      transform .28s var(--ease),
      visibility .28s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin: 0;
    color: rgba(255,255,255,.88);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.is-active,
  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--gold);
    background: rgba(255,255,255,.06);
  }
  .image-row, .day-grid { grid-template-columns: repeat(2, 1fr); }
  .description-layout, .split-layout, .doheny-layout, .visit-layout { grid-template-columns: 1fr; }
  .description-quote, .doheny-media { padding-right: 0; }
  .description-copy, .doheny-copy { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; margin-top: 28px; }
  .split-layout > div { padding: 0; }
  .split-layout > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 28px; }
  .visit-actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .section-header h2,
  .section-header.compact h2 {
    font-size: clamp(42px, 13vw, 61px);
  }

  body:not(.home) .hero,
  body:not(.home) .hero-copy {
    min-height: 650px;
  }

  body:not(.home) .hero-copy {
    padding-bottom: 92px;
  }

  .hero-state h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .image-row,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .day-grid article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-grid article:last-child {
    border-bottom: 0;
  }

  .description-section {
    padding: 48px 0 42px;
  }

  .section-statement {
    margin: 38px auto;
    font-size: clamp(28px, 8vw, 42px);
  }

  .description-quote p {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cinematic-image figure,
  .cinematic-image img {
    min-height: 430px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner p + p {
    margin-top: 8px;
  }
}


/* =========================================================
   Retained-content build-off additions
   Existing page content is preserved and reformatted into the new theme.
   These classes support event flyers, social sections, retained directions,
   photo grids, sitemap lists, and legacy page content.
========================================================= */

.page-lead {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.page-lead p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.retained-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.retained-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  align-items: start;
}

.retained-grid > .retained-copy:first-child {
  padding-right: calc(var(--gap) * 2.5);
}

.retained-grid > .retained-copy + .retained-copy,
.retained-grid > .retained-media + .retained-copy {
  border-left: 1px solid var(--line);
  padding-left: calc(var(--gap) * 2.5);
}

.retained-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}

.retained-copy p,
.retained-copy li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.retained-copy p + p,
.retained-copy ul + p,
.retained-copy p + ul {
  margin-top: 14px;
}

.retained-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.notice-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-row article {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.notice-row article:last-child {
  border-right: 0;
}

.notice-row h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.notice-row p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Social/event material belongs in the page body, not only the footer */
.social-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.social-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  align-items: center;
}

.social-copy {
  padding-right: calc(var(--gap) * 2.5);
}

.social-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}

.social-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-feed-panel {
  border-left: 1px solid var(--line);
  padding-left: calc(var(--gap) * 2.5);
}

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.social-feed-grid a {
  display: block;
  overflow: hidden;
  background: var(--night);
}

.social-feed-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.social-feed-grid a:hover img {
  transform: scale(1.035);
}

/* Events flyers retained from existing page */
.event-flyer-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.event-flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.event-flyer {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.event-flyer img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .9s var(--ease), opacity .7s var(--ease);
}

.event-flyer:hover img {
  transform: scale(1.035);
}

.event-flyer span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.event-flyer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3,17,30,.48), transparent 48%);
}
/* =========================================================
   HOME — THIS WEEK PORTRAIT FLYER PREVIEWS
   Shows full portrait flyer art instead of square cropping.
   ========================================================= */

.home-activity-section .social-feed-grid {
  align-items: start;
}

.home-activity-section .social-feed-grid a {
  background: var(--night);
  overflow: visible;
}

.home-activity-section .social-feed-grid img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 8.5 / 11 !important;
  object-fit: contain !important;
  object-position: center center !important;
}
/* Directions retained text */
.directions-list {
  display: grid;
  gap: 28px;
}

.direction-block {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.direction-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.direction-block h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.direction-block p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

/* Photos retained as archive */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.photo-gallery a {
  display: block;
  overflow: hidden;
  background: var(--night);
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.photo-gallery a:hover img {
  transform: scale(1.035);
}

/* Sitemap retained */
.site-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.site-map-grid a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 700;
}

.site-map-grid a:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.site-map-grid a:nth-child(even) {
  padding-left: 24px;
}

@media (max-width: 940px) {
  .retained-grid,
  .social-layout {
    grid-template-columns: 1fr;
  }

  .retained-grid > .retained-copy:first-child,
  .social-copy {
    padding-right: 0;
  }

  .retained-grid > .retained-copy + .retained-copy,
  .retained-grid > .retained-media + .retained-copy,
  .social-feed-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
    margin-top: 28px;
  }

  .notice-row,
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .notice-row article:nth-child(2) {
    border-right: 0;
  }

  .notice-row article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .notice-row,
  .event-flyer-grid,
  .social-feed-grid,
  .photo-gallery,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .notice-row article {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .notice-row article:first-child {
    border-top: 0;
  }

  .site-map-grid a:nth-child(odd),
  .site-map-grid a:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================================
   Motion / reveal layer
   Added after retained-content build.
   This is intentionally additive: it does not change page structure,
   typography rules, hero copy, or retained content.

   Motion principles:
   - delayed hero entrance
   - restrained section fades
   - image clip/fade reveals
   - staggered grids for flyers/photos
   - lazy-load fade
   - no flashy motion
========================================================= */

html.motion-ready [data-motion-ready="false"] {
  visibility: hidden;
}

/* Hero: staged entry without moving layout */
.hero .hero-state .hero-kicker,
.hero .hero-state h1,
.hero .hero-state > p:not(.hero-kicker),
.hero .hero-state .hero-actions {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 950ms cubic-bezier(.19,1,.22,1),
    transform 950ms cubic-bezier(.19,1,.22,1);
}

.hero .hero-state.is-active .hero-kicker {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 120ms;
}

.hero .hero-state.is-active h1 {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 260ms;
}

.hero .hero-state.is-active > p:not(.hero-kicker) {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 420ms;
}

.hero .hero-state.is-active .hero-actions {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 560ms;
}

/* Stable hero media: prevents desktop load snap */
.hero-media video,
.hero-media img {
  transform: none !important;
  transition: opacity 900ms cubic-bezier(.19,1,.22,1);
}

body.is-loaded .hero-media video,
body.is-loaded .hero-media img {
  transform: none !important;
}

/* General reveal: subtle and editorial */
[data-scroll-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 950ms cubic-bezier(.19,1,.22,1),
    transform 950ms cubic-bezier(.19,1,.22,1),
    clip-path 1100ms cubic-bezier(.19,1,.22,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Directional support if attributes are later expanded */
[data-scroll-reveal*="left"] {
  transform: translate3d(-22px, 0, 0);
}

[data-scroll-reveal*="right"] {
  transform: translate3d(22px, 0, 0);
}

[data-scroll-reveal*="fade"] {
  transform: none;
}

/* Image reveals: clip opens, then image settles */
figure[data-scroll-reveal],
.event-flyer[data-scroll-reveal],
.photo-gallery a[data-scroll-reveal],
.social-feed-grid a[data-scroll-reveal],
.image-row figure[data-scroll-reveal] {
  clip-path: inset(5% 0 5% 0);
}

figure[data-scroll-reveal].is-visible,
.event-flyer[data-scroll-reveal].is-visible,
.photo-gallery a[data-scroll-reveal].is-visible,
.social-feed-grid a[data-scroll-reveal].is-visible,
.image-row figure[data-scroll-reveal].is-visible {
  clip-path: inset(0 0 0 0);
}

figure[data-scroll-reveal] img,
.event-flyer[data-scroll-reveal] img,
.photo-gallery a[data-scroll-reveal] img,
.social-feed-grid a[data-scroll-reveal] img,
.image-row figure[data-scroll-reveal] img {
  transform: scale(1.025);
  transition:
    transform 1200ms cubic-bezier(.19,1,.22,1),
    opacity 700ms cubic-bezier(.19,1,.22,1);
}

figure[data-scroll-reveal].is-visible img,
.event-flyer[data-scroll-reveal].is-visible img,
.photo-gallery a[data-scroll-reveal].is-visible img,
.social-feed-grid a[data-scroll-reveal].is-visible img,
.image-row figure[data-scroll-reveal].is-visible img {
  transform: scale(1);
}

/* Section headers reveal as a single quiet composition */
.section-header[data-scroll-reveal] h2,
.section-header[data-scroll-reveal] .title-rule,
.section-header[data-scroll-reveal] p {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 850ms cubic-bezier(.19,1,.22,1),
    transform 850ms cubic-bezier(.19,1,.22,1);
}

.section-header[data-scroll-reveal].is-visible h2 {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 0ms;
}

.section-header[data-scroll-reveal].is-visible .title-rule {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 130ms;
}

.section-header[data-scroll-reveal].is-visible p {
  opacity: 1;
  transform: translate3d(0,0,0);
  transition-delay: 240ms;
}


/* Kicker/text columns feel like editorial panels, not cards */
.retained-copy[data-scroll-reveal],
.description-copy[data-scroll-reveal],
.description-quote[data-scroll-reveal],
.social-copy[data-scroll-reveal],
.doheny-copy[data-scroll-reveal] {
  transition-duration: 1000ms;
}

/* Lazy image fade: supports cached images and loaded images */
img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].is-loaded {
  opacity: 1;
}

/* Popup fade polish */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: opacity 300ms ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .88;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(.985);
  transition:
    opacity 300ms cubic-bezier(.19,1,.22,1),
    transform 300ms cubic-bezier(.19,1,.22,1);
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(.985);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-state .hero-kicker,
  .hero .hero-state h1,
  .hero .hero-state > p:not(.hero-kicker),
  .hero .hero-state .hero-actions,
  [data-scroll-reveal],
  figure[data-scroll-reveal] img,
  .event-flyer[data-scroll-reveal] img,
  .photo-gallery a[data-scroll-reveal] img,
  .social-feed-grid a[data-scroll-reveal] img,
  .image-row figure[data-scroll-reveal] img,
  .hero-media video,
  .hero-media img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
  }
}


/* =========================================================
   Balanced density pass
   Correction after review:
   - not overly compact
   - elements scaled down
   - sections separated by dividers
   - information rows prefer 4–5 items when possible
   - no boxes
   - full navigation restored in HTML
========================================================= */

:root {
  --gap: 14px;
}

/* Give sections some air back, but use dividers so space has purpose */
.description-section,
.retained-section,
.social-section,
.event-flyer-section,
.split-section,
.doheny-section,
.day-section {
  padding-top: 44px !important;
  padding-bottom: 46px !important;
  border-top: 1px solid var(--line);
}

/* First major section after hero/images should not feel jammed */
.restaurant-strip + .description-section,
main > .description-section:first-child {
  border-top: 0;
}

/* Section headers: same rule but visually less oversized */
.section-header {
  margin-bottom: 28px !important;
}

.section-header h2 {
  font-size: 52px !important;
  line-height: .88 !important;
  letter-spacing: -0.088em !important;
}

.title-rule {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
  width: 72px !important;
  height: 3px !important;
}

.section-header p {
  font-size: clamp(17px, 1.8vw, 23px) !important;
  line-height: 1.12 !important;
}

/* Secondary statement should support, not dominate */
.section-statement {
  margin-top: 34px !important;
  margin-bottom: 36px !important;
  font-size: clamp(26px, 3.2vw, 36px) !important;
  line-height: 1.05 !important;
}

/* Hero text also slightly scaled, but keep Open Sans rule */
.hero-state h1 {
  font-size: clamp(31px, 4.4vw, 42px) !important;
  line-height: 1.04 !important;
  font-weight: 600 !important;
}

.hero-state > p:not(.hero-kicker) {
  font-size: clamp(14px, 1.35vw, 16px) !important;
  line-height: 1.45 !important;
}

/* Navigation sizing is handled by the fluid desktop/intermediate nav rule near the top. */
/* Body copy: small enough for information density, readable enough for restaurant utility */
.description-copy p,
.retained-copy p,
.direction-block p,
.social-copy p,
.split-layout p:not(.kicker),
.doheny-copy p,
.notice-row p,
.day-grid p:not(.kicker) {
  font-size: 14px !important;
  line-height: 1.58 !important;
}

/* Column gutters balanced: not crushed, not sterile */
.description-quote {
  padding-right: 44px !important;
}

.description-copy {
  padding-left: 44px !important;
}

.retained-grid > .retained-copy:first-child,
.social-copy,
.doheny-media {
  padding-right: 38px !important;
}

.retained-grid > .retained-copy + .retained-copy,
.retained-grid > .retained-media + .retained-copy,
.social-feed-panel,
.doheny-copy {
  padding-left: 38px !important;
}

/* Quote reduced */
.description-quote p {
  font-size: clamp(27px, 3.2vw, 32px) !important;
  line-height: 1.06 !important;
}
.description-badge-logo {
  display: block;
  width: min(200px, 50%);
  height: auto;
  margin: 0 auto 15px;
}
/* =========================================================
   HOME — THE DAY HEADER ICONS
   Hat over first column, lifebuoy over fourth column.
   Icons are decorative and do not affect layout.
   ========================================================= */

.day-header-with-icons {
  position: relative;
  display: block !important;
  text-align: center;
  margin-bottom: 42px;
  padding: 0;
  overflow: visible;
}

.day-header-title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.day-header-icon {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* Desktop: align accents with the outer day-grid columns */
.day-header-hat {
  width: 135px;
  max-width: none;
  left: 4%;
  top: -5px;
}

.day-header-lifebuoy {
  width: 140px;
  max-width: none;
  right: 4.5%;
  top: -10px;
}

.day-header-with-icons h2 {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 940px) {
  .day-header-hat {
    width: 105px;
    left: 5%;
    top: -4px;
  }

  .day-header-lifebuoy {
    width: 78px;
    right: 5%;
    top: 14px;
  }
}

/* Mobile: stack icons above title so both are contained */
@media (max-width: 600px) {
  .day-header-with-icons {
    text-align: center;
  }

  .day-header-icon {
    position: static;
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }

  .day-header-hat {
    max-width: 105px;
    margin: 0 18px 18px 0;
  }

  .day-header-lifebuoy {
    max-width: 86px;
    margin: 16px 0 18px 18px !important;
  }
}

.description-quote {
  text-align: center;
}

.description-quote p {
  margin-top: 0;
}
/* Rows should hold more information: 4–5 when appropriate */
.notice-row {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-top: 26px !important;
  margin-bottom: 24px !important;
}

.notice-row article {
  padding: 0 18px !important;
}

.notice-row h3,
.day-grid h3 {
  font-size: 18px !important;
}

/* Day grid remains 4 columns, scaled down */
.day-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.day-grid article {
  padding-left: 18px !important;
  padding-right: 18px !important;
}
/* Events/social: show activity with 3+ columns, but elements smaller */
.event-flyer-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

.social-feed-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

/* Photos can be denser: 4 columns desktop */
.photo-gallery {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
}

/* Restaurant image strip: 4 columns, smaller gutter */
.image-row {
  gap: 10px !important;
}

/* More compact image captions */
.image-row figcaption,
.event-flyer span {
  font-size: 10px !important;
  letter-spacing: .075em !important;
}

/* Split layout: two columns, not oversized */
.split-layout > div {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.split-layout h3,
.retained-copy h3,
.social-copy h3 {
  font-size: clamp(22px, 2.5vw, 30px) !important;
}

/* Direction blocks: useful and separated */
.directions-list {
  gap: 22px !important;
}

.direction-block {
  padding-top: 18px !important;
}

.direction-block h3 {
  font-size: 20px !important;
}

/* Cinematic sections: still a pause, not a billboard */
.cinematic-image figure,
.cinematic-image img {
  min-height: 58vh !important;
}

.cinematic-image strong {
  font-size: clamp(23px, 3vw, 34px) !important;
}

/* Footer/visit: smaller but not crushed */
.visit-section {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.visit-section h2 {
  font-size: clamp(21px, 2.4vw, 28px) !important;
}

/* Five-item utility row support for future homepage/event use */
.info-row-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.info-row-5 > * {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.info-row-5 > *:first-child {
  padding-left: 0;
}

.info-row-5 > *:last-child {
  padding-right: 0;
  border-right: 0;
}

/* Mobile: keep sections separated, not boxed */
/* Removed stepped 1100px nav shrink; fluid nav handles this range. */
@media (max-width: 940px) {
.description-section,
  .retained-section,
  .social-section,
  .event-flyer-section,
  .split-section,
  .doheny-section,
  .day-section {
    padding-top: 38px !important;
    padding-bottom: 40px !important;
  }

  .notice-row,
  .day-grid,
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .event-flyer-grid,
  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .info-row-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-row-5 > * {
    padding: 14px 18px !important;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .info-row-5 > *:nth-child(2n) {
    border-right: 0;
  }

  .description-copy,
  .doheny-copy,
  .social-feed-panel,
  .retained-grid > .retained-copy + .retained-copy,
  .retained-grid > .retained-media + .retained-copy {
    padding-top: 26px !important;
    margin-top: 26px !important;
  }

  .description-quote,
  .doheny-media,
  .social-copy,
  .retained-grid > .retained-copy:first-child {
    padding-right: 0 !important;
  }

  .description-copy,
  .doheny-copy,
  .social-feed-panel,
  .retained-grid > .retained-copy + .retained-copy,
  .retained-grid > .retained-media + .retained-copy {
    padding-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .section-header h2 {
    font-size: clamp(38px, 11vw, 52px) !important;
  }

  .section-header {
    margin-bottom: 22px !important;
  }

  .section-statement {
    margin-top: 26px !important;
    margin-bottom: 28px !important;
  }

  .notice-row,
  .day-grid,
  .event-flyer-grid,
  .social-feed-grid,
  .photo-gallery,
  .info-row-5 {
    grid-template-columns: 1fr !important;
  }

  .notice-row article,
  .day-grid article,
  .info-row-5 > * {
    padding: 14px 0 !important;
    border-right: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .notice-row article:first-child,
  .day-grid article:first-child,
  .info-row-5 > *:first-child {
    border-top: 0 !important;
    padding-top: 0 !important;
  }

  .cinematic-image figure,
  .cinematic-image img {
    min-height: 400px !important;
  }
}


/* =========================================================
   Subpage hero / header breathing pass
   - Subpages get undersized visual heroes for reference
   - Headers breathe more without becoming sterile
   - Event flyers use 8.5 x 11 proportions
   - Menu/contact receive more complete working structures
========================================================= */

/* Small visual hero for subpages: reference, not billboard */
.subpage-hero {
  position: relative;
  min-height: clamp(240px, 32vh, 360px);
  background: var(--night);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.subpage-hero img,
.subpage-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-hero > img {
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 900ms cubic-bezier(.19,1,.22,1),
    transform 1400ms cubic-bezier(.19,1,.22,1);
}

.subpage-hero > img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,17,30,.25), rgba(3,17,30,.15), rgba(3,17,30,.04)),
    linear-gradient(0deg, rgba(3,17,30,.10), rgba(3,17,30,.01));
}

.subpage-hero-copy {
  position: relative;
  z-index: 2;
  min-height: clamp(240px, 32vh, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 0 34px;
  max-width: 720px;
}

.subpage-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 700;
}

.subpage-hero-copy p:not(.kicker) {
  margin-top: 10px;
  color: rgba(255,255,255,.84);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.48;
  max-width: 600px;
}

/* Let headers breathe more than the tight pass */
.section-header {
  margin-bottom: 24px !important;
}

.title-rule {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.section-header p {
  line-height: 1.16 !important;
}

.section-statement {
  margin-top: 40px !important;
  margin-bottom: 42px !important;
}

/* Keep sections useful but not cramped */
.description-section,
.retained-section,
.social-section,
.event-flyer-section,
.split-section,
.doheny-section,
.day-section {
  padding-top: 50px !important;
  padding-bottom: 52px !important;
}

/* Flyer graphics are 8.5 x 11, not square/social crop */
.event-flyer img {
  aspect-ratio: 8.5 / 11 !important;
  object-fit: cover;
}

/* Menu-specific working structure */
.menu-current-layout,
.contact-current-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  align-items: start;
}

.menu-current-copy,
.contact-current-copy {
  padding-right: 38px;
}

.menu-current-media,
.contact-current-info {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}

.menu-current-copy h3,
.contact-current-copy h3,
.contact-current-info h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
  font-weight: 700;
}

.menu-current-copy p,
.contact-current-copy p,
.contact-current-info p,
.menu-category-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.menu-category-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-category-row article {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.menu-category-row article:first-child {
  padding-left: 0;
}

.menu-category-row article:last-child {
  padding-right: 0;
  border-right: 0;
}

.menu-category-row h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.menu-category-row p {
  margin-top: 8px;
}

.menu-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.menu-media-grid a,
.menu-media-grid figure {
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.menu-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-facts {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-fact {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-fact:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-fact strong {
  display: block;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Contact map/media reference */
.contact-map-reference {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-map-reference figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.contact-map-reference img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Subpage content begins closer to the hero */
.subpage-hero + .description-section {
  border-top: 0 !important;
  padding-top: 42px !important;
}

/* Responsive */
@media (max-width: 940px) {
  .subpage-hero,
  .subpage-hero-copy {
    min-height: 300px;
  }

  .menu-current-layout,
  .contact-current-layout {
    grid-template-columns: 1fr;
  }

  .menu-current-copy,
  .contact-current-copy {
    padding-right: 0;
  }

  .menu-current-media,
  .contact-current-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 26px;
    margin-top: 26px;
  }

  .menu-category-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-category-row article {
    padding: 14px 18px;
    border-top: 1px solid var(--line);
  }

  .menu-category-row article:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .menu-category-row article:nth-child(2n + 1) {
    padding-left: 0;
  }

  .description-section,
  .retained-section,
  .social-section,
  .event-flyer-section,
  .split-section,
  .doheny-section,
  .day-section {
    padding-top: 42px !important;
    padding-bottom: 44px !important;
  }
}

@media (max-width: 600px) {
  .subpage-hero,
  .subpage-hero-copy {
    min-height: 280px;
  }

  .subpage-hero-copy {
    padding-bottom: 28px;
  }

  .section-header {
    margin-bottom: 28px !important;
  }

  .title-rule {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .section-statement {
    margin-top: 32px !important;
    margin-bottom: 34px !important;
  }

  .menu-category-row,
  .menu-media-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-row article,
  .menu-category-row article:nth-child(2n),
  .menu-category-row article:nth-child(2n + 1) {
    padding: 14px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .menu-category-row article:first-child {
    border-top: 0;
    padding-top: 0;
  }
}


/* =========================================================
   Subpage hero height correction
   The prior subpage heroes were too shallow and got visually lost
   under the fixed navigation.
========================================================= */

.subpage-hero {
  min-height: clamp(340px, 42vh, 470px) !important;
}

.subpage-hero-copy {
  min-height: clamp(340px, 42vh, 470px) !important;
  padding-top: 128px !important;
  padding-bottom: 46px !important;
}

.subpage-hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 52px) !important;
}

.subpage-hero-copy p:not(.kicker) {
  font-size: clamp(15px, 1.45vw, 18px) !important;
  max-width: 640px !important;
}

/* Keep the first content section close enough to feel connected */
.subpage-hero + .description-section {
  padding-top: 46px !important;
}

@media (max-width: 940px) {
  .subpage-hero,
  .subpage-hero-copy {
    min-height: 380px !important;
  }

  .subpage-hero-copy {
    padding-top: 118px !important;
    padding-bottom: 42px !important;
  }
}

@media (max-width: 600px) {
  .subpage-hero,
  .subpage-hero-copy {
    min-height: 340px !important;
  }

  .subpage-hero-copy {
    padding-top: 108px !important;
    padding-bottom: 36px !important;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }
}


/* =========================================================
   Subpage hero text fade-down animation
   Text enters gently downward over the image.
========================================================= */

.subpage-hero-copy .kicker,
.subpage-hero-copy h1,
.subpage-hero-copy p:not(.kicker) {
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition:
    opacity 950ms cubic-bezier(.19,1,.22,1),
    transform 950ms cubic-bezier(.19,1,.22,1);
}

.subpage-hero-copy.is-visible .kicker {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 100ms;
}

.subpage-hero-copy.is-visible h1 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 240ms;
}

.subpage-hero-copy.is-visible p:not(.kicker) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 390ms;
}

/* The hero wrapper itself should not double-move when visible */
.subpage-hero-copy[data-scroll-reveal] {
  transform: none !important;
}

.subpage-hero-copy[data-scroll-reveal].is-visible {
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .subpage-hero-copy .kicker,
  .subpage-hero-copy h1,
  .subpage-hero-copy p:not(.kicker) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* =========================================================
   Sitewide side-padding correction
   Pages need more breathing room at the left and right edges.
   This increases the global gutters without changing layout logic.
========================================================= */

:root {
  --gutter: clamp(24px, 4vw, 52px) !important;
}

/* Ensure every standard wrapper respects the wider gutter */
.wrap,
.wrap.wide {
  width: min(var(--max), calc(100% - (var(--gutter) * 2))) !important;
}

/* Wide editorial sections can still be wider, but not edge-tight */
.wrap.wide {
  width: min(1240px, calc(100% - (var(--gutter) * 2))) !important;
}

/* Give full-width image captions the same side discipline */
.cinematic-image figcaption {
  left: max(var(--gutter), calc((100vw - var(--max)) / 2)) !important;
}

/* Subpage heroes should also respect the same inset */
.subpage-hero-copy {
  width: min(var(--max), calc(100% - (var(--gutter) * 2))) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Prevent narrow-screen edge crowding */
@media (max-width: 940px) {
  :root {
    --gutter: clamp(22px, 5vw, 42px) !important;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 22px !important;
  }

  .wrap,
  .wrap.wide,
  .subpage-hero-copy {
    width: calc(100% - 44px) !important;
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 18px !important;
  }

  .wrap,
  .wrap.wide,
  .subpage-hero-copy {
    width: calc(100% - 36px) !important;
  }
}


/* =========================================================
   Subpage-only spacing correction
   Index/homepage remains prime real estate and is not altered.
   Subpages get:
   - much larger side padding
   - taller heroes, about +200px from prior pass
   - better spacing between hero, header, and page content
========================================================= */

/* Larger visual reference on subpages */
body:not(.home) .subpage-hero {
  min-height: clamp(520px, 58vh, 670px) !important;
}

body:not(.home) .subpage-hero-copy {
  min-height: clamp(520px, 58vh, 670px) !important;
  padding-top: 150px !important;
  padding-bottom: 68px !important;
}

/* More appropriate subpage inset. Do not affect index unless it uses subpage classes. */
body:not(.home) main > .description-section .wrap,
body:not(.home) main > .description-section .wrap.wide,
body:not(.home) main .retained-section .wrap,
body:not(.home) main .social-section .wrap,
body:not(.home) main .event-flyer-section .wrap,
body:not(.home) main .doheny-section .wrap,
body:not(.home) main .visit-section .wrap,
body:not(.home) .subpage-hero-copy {
  width: min(1080px, calc(100% - 160px)) !important;
}

/* Keep slightly wider content only where media grids need it */
body:not(.home) .event-flyer-section .wrap,
body:not(.home) .photo-gallery,
body:not(.home) .social-section .wrap {
  width: min(1180px, calc(100% - 160px)) !important;
}

/* Subpage content starts with more deliberate spacing after hero */
body:not(.home) .subpage-hero + .description-section {
  padding-top: 64px !important;
}

/* Header sections should breathe more on subpages */
body:not(.home) .section-header {
  margin-bottom: 44px !important;
}

body:not(.home) .section-header h2 {
  margin-bottom: 0 !important;
}

body:not(.home) .title-rule {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

body:not(.home) .section-header p {
  margin-top: 0 !important;
  line-height: 1.18 !important;
}

/* Create better separation between page intro/header and first content system */
body:not(.home) .page-lead {
  max-width: 820px !important;
  margin-top: -12px !important;
  margin-bottom: 42px !important;
}

body:not(.home) .retained-grid,
body:not(.home) .menu-current-layout,
body:not(.home) .contact-current-layout,
body:not(.home) .split-layout,
body:not(.home) .notice-row {
  margin-top: 8px !important;
}

/* Subpage sections can breathe vertically while staying information-forward */
body:not(.home) .description-section,
body:not(.home) .retained-section,
body:not(.home) .social-section,
body:not(.home) .event-flyer-section,
body:not(.home) .split-section,
body:not(.home) .doheny-section {
  padding-top: 55px !important;
  padding-bottom: 35px !important;
}

/* But the first subpage content block after hero should not feel detached */
body:not(.home) .subpage-hero + .description-section {
  padding-top: 64px !important;
}

/* Hero text should register more strongly against taller image */
body:not(.home) .subpage-hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 58px) !important;
}

body:not(.home) .subpage-hero-copy p:not(.kicker) {
  font-size: clamp(16px, 1.55vw, 20px) !important;
  max-width: 680px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  body:not(.home) main > .description-section .wrap,
  body:not(.home) main > .description-section .wrap.wide,
  body:not(.home) main .retained-section .wrap,
  body:not(.home) main .social-section .wrap,
  body:not(.home) main .event-flyer-section .wrap,
  body:not(.home) main .doheny-section .wrap,
  body:not(.home) main .visit-section .wrap,
  body:not(.home) .subpage-hero-copy {
    width: calc(100% - 110px) !important;
  }

  body:not(.home) .event-flyer-section .wrap,
  body:not(.home) .social-section .wrap {
    width: calc(100% - 110px) !important;
  }
}

@media (max-width: 940px) {
  body:not(.home) .subpage-hero,
  body:not(.home) .subpage-hero-copy {
    min-height: 520px !important;
  }

  body:not(.home) .subpage-hero-copy {
    padding-top: 132px !important;
    padding-bottom: 58px !important;
  }

  body:not(.home) main > .description-section .wrap,
  body:not(.home) main > .description-section .wrap.wide,
  body:not(.home) main .retained-section .wrap,
  body:not(.home) main .social-section .wrap,
  body:not(.home) main .event-flyer-section .wrap,
  body:not(.home) main .doheny-section .wrap,
  body:not(.home) main .visit-section .wrap,
  body:not(.home) .subpage-hero-copy {
    width: calc(100% - 72px) !important;
  }

  body:not(.home) .section-header {
    margin-bottom: 36px !important;
  }
}

@media (max-width: 600px) {
  body:not(.home) .subpage-hero,
  body:not(.home) .subpage-hero-copy {
    min-height: 460px !important;
  }

  body:not(.home) .subpage-hero-copy {
    padding-top: 118px !important;
    padding-bottom: 48px !important;
  }

  body:not(.home) main > .description-section .wrap,
  body:not(.home) main > .description-section .wrap.wide,
  body:not(.home) main .retained-section .wrap,
  body:not(.home) main .social-section .wrap,
  body:not(.home) main .event-flyer-section .wrap,
  body:not(.home) main .doheny-section .wrap,
  body:not(.home) main .visit-section .wrap,
  body:not(.home) .subpage-hero-copy {
    width: calc(100% - 44px) !important;
  }

  body:not(.home) .subpage-hero + .description-section {
    padding-top: 48px !important;
  }

  body:not(.home) .section-header {
    margin-bottom: 30px !important;
  }
}


/* =========================================================
   Functional media/social pass
   - more side padding on index
   - contained horizontal dividers
   - centered photo grid
   - menu 3-column layout with clickable PDF panel
   - Google map iframe
   - inline contact form iframe with styled header
   - colored social icons on homepage and subpages
========================================================= */

/* Homepage: more side padding without changing subpage rules */
body.home {
  --gutter: clamp(32px, 5vw, 76px) !important;
}

body.home .wrap,
body.home .wrap.wide {
  width: min(var(--max), calc(100% - (var(--gutter) * 2))) !important;
}

body.home .wrap.wide {
  width: min(1240px, calc(100% - (var(--gutter) * 2))) !important;
}

/* Contain horizontal dividers so they observe padding */
.description-section,
.retained-section,
.social-section,
.event-flyer-section,
.split-section,
.doheny-section,
.day-section,
.visit-section {
  border-top: 0 !important;
  position: relative;
}

.description-section::before,
.retained-section::before,
.social-section::before,
.event-flyer-section::before,
.split-section::before,
.doheny-section::before,
.day-section::before,
.visit-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  right: max(var(--gutter), calc((100vw - var(--max)) / 2));
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

body.home .restaurant-strip + .description-section::before,
main > .description-section:first-child::before,
.subpage-hero + .description-section::before {
  display: none;
}

/* Section header social row: colored social icons under headers/kickers */
.social-icon-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
}

.section-header.left .social-icon-row,
.subpage-hero-copy .social-icon-row,
.retained-copy .social-icon-row,
.contact-current-copy .social-icon-row,
.menu-current-copy .social-icon-row,
.social-copy .social-icon-row {
  justify-content: flex-start;
  margin-left: 0;
}

.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: transform .25s cubic-bezier(.19,1,.22,1), opacity .25s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  opacity: .88;
}

.social-icon.instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 16%, #fd5949 42%, #d6249f 68%, #285AEB 100%);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.tiktok {
  background: #000;
  box-shadow: inset 3px 0 0 #25f4ee, inset -3px 0 0 #fe2c55;
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.email {
  background: var(--gold);
  color: var(--night);
}

/* Center point-lookout photo grid and make it feel intentional */
.photo-gallery {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
  align-items: start !important;
}

/* Menu page: 3 columns, right column launches PDF */
.menu-three-layout {
  display: grid;
  grid-template-columns: .9fr .95fr .78fr;
  gap: 0;
  align-items: stretch;
}

.menu-three-layout > * {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.menu-three-layout > *:first-child {
  padding-left: 0;
}

.menu-three-layout > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.menu-three-layout h3,
.menu-pdf-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.08;
  font-weight: 700;
}

.menu-three-layout p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.menu-pdf-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.menu-pdf-launch {
  display: block;
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  background: var(--night);
}

.menu-pdf-launch img {
  width: 100%;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.19,1,.22,1);
}

.menu-pdf-launch:hover img {
  transform: scale(1.035);
}

.menu-pdf-launch::after {
  content: "View Menu PDF";
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Google map iframe */
.map-embed {
  position: relative;
  overflow: hidden;
  background: var(--night);
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(.95) contrast(.95);
}

/* Contact iframe/form block */
.contact-form-shell {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.contact-form-header {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  align-items: end;
  margin-bottom: 20px;
}

.contact-form-header > div:first-child {
  padding-right: 28px;
}

.contact-form-header > div:last-child {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.contact-form-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
  font-weight: 700;
}

.contact-form-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.contact-form-iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  display: block;
  background: #f5f7f8;
}

/* Keep current buttons and social actions slightly tighter */
.social-actions {
  gap: 9px !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .menu-three-layout {
    grid-template-columns: 1fr 1fr;
  }

  .menu-three-layout > *:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .menu-three-layout > *:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 26px;
    margin-top: 26px;
    padding-left: 0;
  }

  .menu-pdf-launch {
    max-width: 360px;
  }
}

@media (max-width: 940px) {
  body.home {
    --gutter: clamp(26px, 5vw, 52px) !important;
  }

  .contact-form-header {
    grid-template-columns: 1fr;
  }

  .contact-form-header > div:first-child {
    padding-right: 0;
  }

  .contact-form-header > div:last-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 700px) {
  .menu-three-layout {
    grid-template-columns: 1fr;
  }

  .menu-three-layout > * {
    padding: 18px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .menu-three-layout > *:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .menu-three-layout > *:last-child {
    margin-top: 0;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
    height: 360px;
  }

  .contact-form-iframe {
    min-height: 700px;
  }
}

@media (max-width: 600px) {
  body.home {
    --gutter: 24px !important;
  }

  .social-icon-row {
    gap: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}


/* =========================================================
   Corrections: footer-only social icons, 3-column pages, full-width map
========================================================= */

/* Hide/remove colored social icon rules from body; footer uses grey only */
.social-icon-row {
  display: none !important;
}

/* Footer social icons only */
.footer-inner {
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.footer-social-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.72);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: background .25s ease, color .25s ease, transform .25s cubic-bezier(.19,1,.22,1);
}

.footer-social-icon:hover {
  background: rgba(255,255,255,.26);
  color: #fff;
  transform: translateY(-1px);
}

/* Full-width map directly under directions hero */
.map-below-hero {
  width: 100%;
  background: var(--night);
  border-bottom: 1px solid var(--line);
}

.map-below-hero iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vh, 500px);
  border: 0;
  filter: saturate(.95) contrast(.96);
}

/* True 3-column text systems */
.menu-three-text-layout,
.contact-three-layout,
.scottys-three-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

.menu-three-text-layout > *,
.contact-three-layout > *,
.scottys-three-layout > * {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.menu-three-text-layout > *:first-child,
.contact-three-layout > *:first-child,
.scottys-three-layout > *:first-child {
  padding-left: 0;
}

.menu-three-text-layout > *:last-child,
.contact-three-layout > *:last-child,
.scottys-three-layout > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.menu-three-text-layout h3,
.contact-three-layout h3,
.scottys-three-layout h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(21px, 2.35vw, 28px);
  line-height: 1.08;
  font-weight: 700;
}

.menu-three-text-layout p,
.contact-three-layout p,
.scottys-three-layout p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.menu-mini-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.menu-mini-media a {
  display: block;
  overflow: hidden;
  background: var(--night);
}

.menu-mini-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-pdf-card {
  display: block;
}

.menu-pdf-launch {
  margin-top: 18px;
}

/* Existing two-column contact/menu classes are no longer primary on these pages */
.menu-current-layout,
.contact-current-layout {
  display: block;
}

/* Form header stays styled, no icons inside */
.contact-form-shell {
  margin-top: 42px;
}

/* Responsive */
@media (max-width: 940px) {
  .menu-three-text-layout,
  .contact-three-layout,
  .scottys-three-layout {
    grid-template-columns: 1fr;
  }

  .menu-three-text-layout > *,
  .contact-three-layout > *,
  .scottys-three-layout > * {
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .menu-three-text-layout > *:first-child,
  .contact-three-layout > *:first-child,
  .scottys-three-layout > *:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
}


/* =========================================================
   Social icon placement correction
   Colored icons: once, centered under first page/content header.
   Grey icons: footer only.
   No colored icons in heroes.
========================================================= */

/* Restore colored social rows after earlier hiding rule */
.social-icon-row.top-social-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin: -8px auto 34px !important;
}

/* Colored icons for the top content header only */
.top-social-row .social-icon {
  display: inline-flex !important;
  width: 34px !important;
  height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  transition: transform .25s cubic-bezier(.19,1,.22,1), opacity .25s ease !important;
}

.top-social-row .social-icon:hover {
  transform: translateY(-1px) !important;
  opacity: .88 !important;
}

.top-social-row .social-icon.instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 16%, #fd5949 42%, #d6249f 68%, #285AEB 100%) !important;
}

.top-social-row .social-icon.facebook {
  background: #1877f2 !important;
}

.top-social-row .social-icon.tiktok {
  background: #000 !important;
  box-shadow: inset 3px 0 0 #25f4ee, inset -3px 0 0 #fe2c55 !important;
}

/* Footer icons remain grey and visually secondary */
.footer-social {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
}

.footer-social-icon {
  display: inline-flex !important;
  width: 28px !important;
  height: 28px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.72) !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

@media (max-width: 600px) {
  .social-icon-row.top-social-row {
    margin-top: -10px !important;
    margin-bottom: 28px !important;
  }

  .top-social-row .social-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
}


/* =========================================================
   Definitive visible row fix
   menu.html:
   - visible row is 3 columns
   - third column is a clickable PDF panel, not a text column
   scottys-on-the-bay.html:
   - visible row is 3 true text columns
========================================================= */

.menu-visible-row,
.scottys-visible-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.menu-visible-row > article,
.scottys-visible-row > article {
  padding: 0 30px !important;
  border-right: 1px solid var(--line) !important;
  background: transparent !important;
}

.menu-visible-row > article:first-child,
.scottys-visible-row > article:first-child {
  padding-left: 0 !important;
}

.menu-visible-row > article:last-child,
.scottys-visible-row > article:last-child {
  padding-right: 0 !important;
  border-right: 0 !important;
}

.menu-visible-row h3,
.scottys-visible-row h3 {
  margin: 0 !important;
  color: var(--navy) !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: clamp(21px, 2.25vw, 28px) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.menu-visible-row p,
.scottys-visible-row p {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
}

.menu-mini-media {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.menu-mini-media a {
  display: block !important;
  overflow: hidden !important;
  background: var(--night) !important;
}

.menu-mini-media img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
}

/* Menu third column: clickable PDF launch panel */
.menu-pdf-column {
  display: flex !important;
}

.menu-pdf-panel {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  background: var(--night) !important;
}

.menu-pdf-panel img {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  aspect-ratio: 8.5 / 11 !important;
  object-fit: cover !important;
  transition: transform .9s cubic-bezier(.19,1,.22,1) !important;
}

.menu-pdf-panel::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  /*background: linear-gradient(0deg, rgba(3,17,30,.72), rgba(3,17,30,.10) 58%) !important;*/
  z-index: 1 !important;
}

.menu-pdf-panel span {
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 2 !important;
  color: #fff !important;
}

.menu-pdf-panel small {
  display: block !important;
  color: var(--gold) !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

.menu-pdf-panel strong {
  display: block !important;
  color: #fff !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
}

.menu-pdf-panel:hover img {
  transform: scale(1.035) !important;
}

@media (max-width: 940px) {
  .menu-visible-row,
  .scottys-visible-row {
    grid-template-columns: 1fr !important;
  }

  .menu-visible-row > article,
  .scottys-visible-row > article {
    padding: 22px 0 !important;
    border-right: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .menu-visible-row > article:first-child,
  .scottys-visible-row > article:first-child {
    border-top: 0 !important;
    padding-top: 0 !important;
  }

  .menu-pdf-panel img {
    min-height: 420px !important;
  }
}


/* =========================================================
   Contact third-column form + map below hero correction
========================================================= */

/* Full-width map must sit below Directions hero, not inside it */
.map-below-hero {
  width: 100% !important;
  background: var(--night) !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  position: relative !important;
  z-index: 1 !important;
}

.map-below-hero iframe {
  display: block !important;
  width: 100% !important;
  height: clamp(340px, 42vh, 520px) !important;
  border: 0 !important;
  filter: saturate(.95) contrast(.96) !important;
}

/* Contact page visible row: third column is inline form */
.contact-visible-row {
  display: grid !important;
  grid-template-columns: .82fr .82fr 1.22fr !important;
  gap: 0 !important;
  align-items: start !important;
}

.contact-visible-row > article {
  padding: 0 30px !important;
  border-right: 1px solid var(--line) !important;
  background: transparent !important;
  min-width: 0 !important;
}

.contact-visible-row > article:first-child {
  padding-left: 0 !important;
}

.contact-visible-row > article:last-child {
  padding-right: 0 !important;
  border-right: 0 !important;
}

.contact-visible-row h3,
.inline-contact-form-header h3 {
  margin: 0 !important;
  color: var(--navy) !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: clamp(21px, 2.25vw, 28px) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.contact-visible-row p,
.inline-contact-form-header p {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
}

.contact-visible-row p + p {
  margin-top: 10px !important;
}

.contact-form-column {
  min-width: 0 !important;
}

.inline-contact-form-header {
  margin-bottom: 16px !important;
}

.inline-contact-form-iframe {
  display: block !important;
  width: 100% !important;
  min-height: 470px !important;
  border: 0 !important;
  background: #f4f6f7 !important;
}

/* Kill any older standalone form/map behavior */
.contact-form-shell {
  display: none !important;
}

.contact-map-reference iframe[title="Google Map to The Buoy Bar"] {
  display: none !important;
}

@media (max-width: 1100px) {
  .contact-visible-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .contact-visible-row > article:nth-child(2) {
    border-right: 0 !important;
    padding-right: 0 !important;
  }

  .contact-visible-row > article:nth-child(3) {
    grid-column: 1 / -1 !important;
    border-top: 1px solid var(--line) !important;
    border-right: 0 !important;
    padding: 28px 0 0 !important;
    margin-top: 28px !important;
  }
}

@media (max-width: 700px) {
  .contact-visible-row {
    grid-template-columns: 1fr !important;
  }

  .contact-visible-row > article,
  .contact-visible-row > article:nth-child(2),
  .contact-visible-row > article:nth-child(3) {
    grid-column: auto !important;
    padding: 22px 0 !important;
    margin-top: 0 !important;
    border-right: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .contact-visible-row > article:first-child {
    border-top: 0 !important;
    padding-top: 0 !important;
  }

  .inline-contact-form-iframe {
    min-height: 620px !important;
  }

  .map-below-hero iframe {
    height: 360px !important;
  }
}
/* Poster-first hero transition */
/* Poster-first hero transition: prevents black flash before video paints */
.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  background: var(--night);
  transition:
    opacity 900ms cubic-bezier(.19,1,.22,1),
    visibility 0s linear 900ms;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video stays behind poster until it is ready */
.hero-media video {
  z-index: 2;
  background: url("../img/zampella/buoy-bar-long-island.webp") center center / cover no-repeat;
}

/* Make sure the video sits behind the poster */

/* =========================================================
   HERO STACKING / POSTER / MOBILE NAV FINAL
   ========================================================= */

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: transparent;
  pointer-events: none;
}

.hero-copy {
  z-index: 5;
}

.hero-controls {
  z-index: 6;
}

@media screen and (max-width: 940px) {
  body .site-header {
    overflow: visible !important;
  }

  body .site-header .wrap.header-inner {
    position: relative !important;
  }

  body .site-header .menu-toggle[data-menu-toggle] {
    display: flex !important;
    position: relative !important;
    z-index: 10001 !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin-left: auto !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.42) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.08) !important;
    cursor: pointer !important;
  }

  body .site-header .menu-toggle[data-menu-toggle] span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 2px !important;
  }

  body .site-header nav.main-nav[data-nav] {
    position: fixed !important;
    inset: auto !important;
    top: 76px !important;
    right: var(--gutter) !important;
    left: auto !important;
    bottom: auto !important;

    z-index: 10000 !important;
    width: min(320px, calc(100vw - (var(--gutter) * 2))) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 92px) !important;
    overflow-y: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    padding: 8px 0 !important;
    margin: 0 !important;
    color: #fff !important;
    background: rgba(6,29,47,.97) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.34) !important;
    backdrop-filter: blur(14px) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;

    transition:
      opacity .28s cubic-bezier(.19,1,.22,1),
      transform .28s cubic-bezier(.19,1,.22,1),
      visibility .28s ease !important;
  }

  body .site-header nav.main-nav[data-nav].is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  body .site-header nav.main-nav[data-nav] a {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    margin: 0 !important;
    color: rgba(255,255,255,.88) !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
    font-family: "Raleway", Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: .09em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  body .site-header nav.main-nav[data-nav] a:last-child {
    border-bottom: 0 !important;
  }

  body .site-header nav.main-nav[data-nav] a:hover,
  body .site-header nav.main-nav[data-nav] a.is-active {
    color: var(--gold) !important;
    background: rgba(255,255,255,.06) !important;
  }
}

@media screen and (max-width: 600px) {
  body .site-header nav.main-nav[data-nav] {
    top: 72px !important;
    right: 14px !important;
    width: calc(100vw - 28px) !important;
  }
}

/* =========================================================
     Design profile section with logos
     ========================================================= */
    
    .design-profile-section {
        padding: 58px 0;
        border-top: 1px solid var(--line);
        background: #fff;
    }
    
    .design-profile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .design-profile-column {
        padding: 0 52px;
    }
    
    .design-profile-column:first-child {
        padding-left: 0;
        border-right: 1px solid var(--line);
    }
    
    .design-profile-column:last-child {
        padding-right: 0;
    }
    
    .profile-logo-wrap {
        min-height: 92px;
        display: flex;
        align-items: center;
        margin-bottom: 18px;
    }
    
    .profile-logo {
        display: block;
        width: auto;
        height: auto;
        max-width: 180px;
    }
    
    .trans-logo {
        max-width: 74px;
        
    }
    
    .idylease-logo {
        max-width: 160px;
    }
    body.subpage .description-section .retained-copy .profile-logo-wrap img.idylease-logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        object-position: left center !important;
    }
    
    .design-profile-column h3 {
        margin: 0 0 20px;
        color: var(--navy);
        font-family: "Raleway", Arial, sans-serif;
        font-size: clamp(30px, 3vw, 40px);
        line-height: 1.06;
        letter-spacing: -0.035em;
        font-weight: 800;
    }
    
    .design-profile-column p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.62;
    }
    
    .design-profile-column p + p {
        margin-top: 18px;
    }
    
    .design-profile-column .button {
        margin-top: 28px;
    }
    
    /* Mobile */
    @media (max-width: 940px) {
        .design-profile-grid {
            grid-template-columns: 1fr;
        }
        
        .design-profile-column {
            padding: 0;
        }
        
        .design-profile-column:first-child {
            border-right: 0;
            border-bottom: 1px solid var(--line);
            padding-bottom: 38px;
            margin-bottom: 38px;
        }
        
        .profile-logo-wrap {
            justify-content: center;
            min-height: auto;
            margin-bottom: 22px;
        }
        
        .design-profile-column .kicker,
        .design-profile-column h3 {
            text-align: left;
        }
    }
/* =========================================================
   RICHARD PAGE — PROFILE BUTTONS
   ========================================================= */

.profile-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.profile-button-row .button {
  flex: 0 1 auto;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .profile-button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .profile-button-row .button {
    width: min(100%, 320px);
    justify-content: center;
    white-space: nowrap;
  }
}

    /* =========================================================
     Richard Zampella page logo hard containment
     ========================================================= */
    
    .retained-copy .profile-logo-wrap {
        width: 100% !important;
        height: 90px !important;
        max-height: 90px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 0 18px 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .retained-copy .profile-logo-wrap img {
        display: block !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .retained-copy .profile-logo-wrap img.trans-logo {
        width: 74px !important;
        max-width: 74px !important;
        height: auto !important;
        max-height: 74px !important;
    }
    
    .retained-copy .profile-logo-wrap img.idylease-logo {
        width: 175px !important;
        max-width: 175px !important;
        height: auto !important;
        max-height: 74px !important;
    }
    /* =========================================================
     Scotty's photo grid — two columns / four images
     ========================================================= */
    
    .scottys-photo-section {
        padding: 42px 0 0;
        background: transparent;
    }
    
    .scottys-photo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .scottys-photo-grid figure {
        position: relative;
        margin: 0;
        overflow: hidden;
        background: var(--night);
    }
    
    .scottys-photo-grid img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
    }
    
    .scottys-photo-grid figcaption {
        position: absolute;
        left: 14px;
        bottom: 12px;
        z-index: 2;
        color: #fff;
        font-family: "Raleway", Arial, sans-serif;
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .scottys-photo-grid figure::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(3,17,30,.42), rgba(3,17,30,0) 52%);
        pointer-events: none;
    }
    
    @media (max-width: 700px) {
        .scottys-photo-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
    }
    /* Contact left column — intro paragraph over four icon notes */
    
    .contact-intro {
        margin-top: 22px;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.68;
        max-width: 640px;
    }
    
    .contact-detail-grid-two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 34px;
        margin-top: 38px;
    }
    
    .contact-detail-item {
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 14px;
        align-items: start;
    }
    
    .contact-detail-icon {
        display: flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 24px;
        line-height: 1;
    }
    
    .contact-detail-item strong {
        display: block;
        color: var(--navy);
        font-family: "Raleway", Arial, sans-serif;
        font-size: 12px;
        letter-spacing: .095em;
        text-transform: uppercase;
        font-weight: 800;
    }
    
    .contact-detail-item p {
        margin: 7px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.55;
    }
    
    .contact-detail-item a {
        color: var(--navy);
        font-weight: 700;
    }
    
    @media (max-width: 700px) {
        .contact-detail-grid-two {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }


/* =========================================================
   FINAL EVENTS / POPUP BUNDLE FIX
   Keep this block at the absolute bottom of buoybar.css.
   Preserves the dark nightlife band, stops flyer crop/rollover,
   and prevents the modal launch from shifting the flyer grid.
========================================================= */

/* The nightlife band is already a direct child of main.
   Do not use 100vw + calc margins here; that is what shifts
   when the popup changes scrollbar state. */
body.subpage main > section.event-flyer-section.nightlife-flyers {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 72px 0 80px !important;
  color: #fff !important;
  background:
    radial-gradient(circle at top center, rgba(199,154,67,.18), transparent 42%),
    linear-gradient(180deg, #061d2f 0%, #03111e 100%) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .wrap.wide {
  width: min(1240px, calc(100% - (var(--gutter) * 2))) !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .section-header,
body.subpage main > section.event-flyer-section.nightlife-flyers .section-header.compact,
body.subpage main > section.event-flyer-section.nightlife-flyers .nightlife-header {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .section-header h2,
body.subpage main > section.event-flyer-section.nightlife-flyers .nightlife-header h2 {
  color: #fff !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .section-header > p,
body.subpage main > section.event-flyer-section.nightlife-flyers .nightlife-header > p {
  color: rgba(255,255,255,.78) !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .title-rule {
  background: var(--gold) !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: start !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:link,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:visited {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  clip-path: none !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer::before,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer img,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer[data-scroll-reveal] img,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer.is-visible img,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:hover img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  clip-path: none !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:hover,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:focus,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer:active {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer span,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer figcaption,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer .caption,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer .overlay,
body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer .meta {
  display: none !important;
}
@media (max-width: 940px) {
  body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  body.subpage main > section.event-flyer-section.nightlife-flyers {
    padding: 52px 0 58px !important;
  }

  body.subpage main > section.event-flyer-section.nightlife-flyers .event-flyer-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   CUSTOM EVENT FLYER LIGHTBOX
   Replaces Magnific for image flyers only.
   No body lock. No scrollbar change. No page shift.
   ========================================================= */

.flyer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(3, 17, 30, .92);
}

.flyer-lightbox.is-open {
  display: flex;
}

.flyer-lightbox-figure {
  position: relative;
  margin: 0;
  max-width: min(92vw, 900px);
  max-height: 90vh;
}

.flyer-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #000;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.flyer-lightbox-caption {
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.flyer-lightbox-close,
.flyer-lightbox-arrow {
  position: fixed;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(3,17,30,.48);
  border: 1px solid rgba(255,255,255,.34);
  cursor: pointer;
}

.flyer-lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.flyer-lightbox-arrow {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 42px;
  line-height: 1;
}

.flyer-lightbox-prev {
  left: 18px;
}

.flyer-lightbox-next {
  right: 18px;
}

.flyer-lightbox-close:hover,
.flyer-lightbox-arrow:hover {
  background: rgba(199,154,67,.78);
}

@media (max-width: 600px) {
  .flyer-lightbox {
    padding: 18px;
  }

  .flyer-lightbox-image {
    max-height: 82vh;
  }

  .flyer-lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 36px;
  }

  .flyer-lightbox-prev {
    left: 18px;
  }

  .flyer-lightbox-next {
    right: 70px;
  }
}
/* =========================================================
   CUSTOM FLYER LIGHTBOX — ARROW GLYPHS
   Adds visible arrows inside empty prev/next buttons.
   ========================================================= */

.flyer-lightbox-arrow {
  position: fixed;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;

  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);

  padding: 0;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
}

.flyer-lightbox-arrow::before {
  display: block;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.flyer-lightbox-prev {
  left: 18px;
}

.flyer-lightbox-next {
  right: 18px;
}

.flyer-lightbox-prev::before {
  content: "‹";
  transform: translate(-2px, -3px);
}

.flyer-lightbox-next::before {
  content: "›";
  transform: translate(2px, -3px);
}
/* =========================================================
   HOME — THE DAY SECTION BREATHING ROOM
   Restores space after density pass.
   ========================================================= */

.home .day-section {
  padding-top: 64px !important;
  padding-bottom: 44px !important;
}

.home .day-header-with-icons {
  margin-bottom: 54px !important;
}

.home .day-grid article {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

.home .day-grid h3 {
  margin-top: 0;
}

.home .day-grid p:not(.kicker) {
  max-width: 260px;
}
/* =========================================================
   MOBILE ONLY — SUBPAGE HERO IMAGE POSITIONING
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 600px) {
  body.page-richard .subpage-hero > img {
    object-fit: cover !important;
    object-position: 68% 60% !important;
  }

  body.page-events .subpage-hero > img {
    object-fit: cover !important;
    object-position: 63% 60% !important;
  }
}
