@font-face { font-family: 'Bodoni Moda'; font-weight: 500; font-style: normal; font-display: swap; src: url(fonts/bodoni-moda-latin-500-normal.woff2) format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-weight: 500; font-style: italic; font-display: swap; src: url(fonts/bodoni-moda-latin-500-italic.woff2) format('woff2'); }
@font-face { font-family: 'Jost'; font-weight: 400; font-display: swap; src: url(fonts/jost-latin-400-normal.woff2) format('woff2'); }
@font-face { font-family: 'Jost'; font-weight: 500; font-display: swap; src: url(fonts/jost-latin-500-normal.woff2) format('woff2'); }

:root {
  --red: #DC3731;
  --red-text: #C32B26;
  --red-deep: #8F1D18;
  --white: #FBF9F6;
  --paper: #FFFFFF;
  --blush: #F3D9D6;
  --ink: #1A1213;
  --muted: #5F5254;
  --gutter: clamp(20px, 6.5vw, 96px);
  --display: 'Bodoni Moda', Didot, Georgia, serif;
  --body: 'Jost', 'Gill Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
h2 { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 4.6vw, 64px); line-height: 1.05; }
h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 2.3vw, 32px); line-height: 1.1; }
section[id], div[id] { scroll-margin-top: 90px; }

.label { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.eyebrow { color: var(--red-text); margin-bottom: 12px; }
.muted { color: var(--muted); }
.wrap { padding: clamp(56px, 7vw, 96px) var(--gutter); }
.head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(28px, 3.5vw, 48px); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid var(--red); background: var(--red); color: #fff; font: 500 13px var(--body); letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn.line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.line:hover { background: var(--ink); color: var(--white); }
.btn.white { background: #fff; color: var(--red-deep); border-color: #fff; }
.btn.white:hover { background: var(--blush); border-color: var(--blush); }
.btn.wline { background: transparent; color: #fff; border-color: #fff; }
.btn.wline:hover { background: #fff; color: var(--red-deep); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 36px; height: 80px; padding: 0 var(--gutter); background: var(--white); border-bottom: 1px solid var(--red); }
.nav .logo { margin-right: auto; }
.nav .logo img { height: 44px; width: auto; }
.nav a.link { color: var(--ink); text-decoration: none; }
.nav a.link:hover { color: var(--red-text); }

/* hero */
.slides { position: relative; display: grid; height: clamp(420px, 68vh, 760px); overflow: hidden; background: var(--ink); }
.slide { grid-area: 1 / 1; min-height: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.on { opacity: 1; }
.slide picture { display: block; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-ui { position: absolute; right: var(--gutter); bottom: 20px; z-index: 2; display: flex; gap: 8px; }
.s-btn, .r-btn { width: 48px; height: 48px; border: 1px solid #fff; background: rgba(26, 18, 19, 0.45); color: #fff; font: 400 22px/1 var(--body); cursor: pointer; }
.s-btn:hover { background: var(--red); border-color: var(--red); }
#s-pause { font-size: 12px; }
.dots { position: absolute; left: var(--gutter); bottom: 20px; z-index: 2; display: flex; align-items: center; height: 48px; }
.dot { width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; position: relative; }
.dot::after { content: ""; position: absolute; left: 6px; right: 6px; top: 21px; height: 2px; background: rgba(255, 255, 255, 0.55); }
.dot.on::after { background: #fff; height: 4px; top: 20px; }
.hero-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; padding: 22px var(--gutter); }
.hero-bar h1 { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
.strip { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px; padding: 22px var(--gutter); background: var(--red); color: #fff; }
.strip a { color: inherit; text-decoration: none; }

/* flyers */
.flyers { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); margin: 0 calc(var(--gutter) * -1); padding: 4px var(--gutter) 18px; scrollbar-width: thin; scrollbar-color: var(--red) transparent; -webkit-overflow-scrolling: touch; }
.flyers::-webkit-scrollbar { height: 6px; }
.flyers::-webkit-scrollbar-thumb { background: var(--red); }
.flyers > .flyer { flex: 0 0 clamp(240px, 23vw, 340px); scroll-snap-align: start; }
.flyers > p { padding: 0; }
.rowbtns { display: flex; gap: 8px; }
.r-btn { border-color: var(--ink); background: transparent; color: var(--ink); }
.r-btn:hover:not(:disabled) { background: var(--ink); color: var(--white); }
.r-btn:disabled { opacity: .3; cursor: default; }
.flyer { position: relative; display: grid; grid-template-rows: minmax(0, 1fr); grid-template-columns: minmax(0, 1fr); aspect-ratio: 4 / 5; overflow: hidden; background: var(--red-deep); color: #fff; text-decoration: none; }
.flyer > * { grid-area: 1 / 1; min-height: 0; }
.flyer .ph { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: transform .4s; }
.flyer:hover .ph { transform: scale(1.04); }
.flyer .wash { background: var(--red); mix-blend-mode: multiply; }
.flyer .shade { position: relative; background: rgba(74, 12, 9, 0.28); }
.flyer .frame { position: relative; z-index: 1; margin: clamp(8px, 1vw, 14px); padding: clamp(10px, 1.6vw, 22px); border: 1px solid #fff; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.flyer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.flyer .top img { height: clamp(22px, 2vw, 30px); width: auto; }
.flyer .date { font-family: var(--display); font-size: clamp(40px, 4vw, 58px); line-height: 0.95; }
.flyer .title { font-family: var(--display); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.1; margin-top: clamp(6px, .8vw, 12px); }
.flyer .foot { display: flex; justify-content: space-between; gap: 8px; margin-top: clamp(6px, .8vw, 12px); padding-top: clamp(6px, .8vw, 12px); border-top: 1px solid #fff; }
.flyer .label { font-size: clamp(10px, .85vw, 12px); }
.after { margin-top: 32px; }

/* floors */
.floors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.floor img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; margin-bottom: 16px; }
.floor h3 { margin: 6px 0 8px; }
.floor p { font-size: 15px; }
.paper { background: var(--paper); }

/* red band */
.band { background: var(--red); color: #fff; }
.split { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.band .eyebrow { color: #fff; }
.band p { margin-bottom: 20px; }

/* private */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 28px 0; }
.stat { border-top: 1px solid var(--red); padding-top: 12px; font-size: 13px; color: var(--muted); }
.stat b { display: block; font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3vw, 44px); line-height: 1; color: var(--red); margin-bottom: 4px; }
.private { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); align-items: stretch; }
.private > img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

/* spotted */
.spotted { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.spotted img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* forms */
.blush { background: var(--blush); }
form.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
form .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; min-height: 48px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 0; background: #fff; color: var(--ink); font: 400 16px var(--body); }
textarea { min-height: 110px; resize: vertical; }
.inline { display: flex; gap: 8px; }
.inline input { flex: 1; min-width: 0; }
.hp { position: absolute; left: -9999px; }

/* footer */
footer { background: var(--red-deep); color: #fff; padding: clamp(40px, 5vw, 64px) var(--gutter) 28px; }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px 48px; }
.fgrid img { height: 110px; width: auto; }
.fgrid .label { margin-bottom: 8px; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.legal { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.6); font-size: 12px; }

@media (max-width: 900px) {
  .nav { height: 64px; gap: 12px; }
  .nav a.link { display: none; }
  .nav .logo img { height: 34px; }
  .nav .btn { min-height: 44px; padding: 0 16px; font-size: 12px; letter-spacing: 0.14em; }
  .flyers { gap: 12px; }
  .flyers > .flyer { flex-basis: 68vw; }
  .rowbtns { display: none; }
  .slide-ui { bottom: 12px; gap: 6px; } .dots { bottom: 12px; }
  .s-btn { width: 44px; height: 44px; }
  .dot { width: 28px; } .dot::after { left: 4px; right: 4px; }
  .floors, .split, .private, .fgrid { grid-template-columns: minmax(0, 1fr); }
  .spotted { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .spotted img:nth-child(n+5) { display: none; }
  .strip { flex-direction: column; }
  form.grid { grid-template-columns: minmax(0, 1fr); }
  .fgrid img { height: 84px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .flyer .ph { transition: none; } }

/* mobile menu */
.menu { display: none; position: relative; }
.menu summary { list-style: none; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; cursor: pointer; color: var(--ink); }
.menu summary::-webkit-details-marker { display: none; }
.menu nav { position: absolute; right: calc(var(--gutter) * -1); top: 54px; width: 100vw; padding: 8px var(--gutter) 20px; background: var(--white); border-bottom: 1px solid var(--red); display: flex; flex-direction: column; }
.menu nav a { padding: 14px 0; color: var(--ink); text-decoration: none; border-top: 1px solid var(--blush); }
@media (max-width: 900px) { .menu { display: block; } }

/* pages */
h1 { font-family: var(--display); font-weight: 500; }
.pagehead h1, .about h1 { font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; }
.pagehead { padding-bottom: clamp(24px, 3vw, 40px); }
.jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.lead { max-width: 62ch; margin-top: 14px; }
h3 a, .floor a { color: inherit; text-decoration: none; }
h3 a:hover { color: var(--red-text); }

/* gallery */
.masonry { column-count: 3; column-gap: 16px; }
.shot { display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; background: var(--blush); cursor: zoom-in; break-inside: avoid; overflow: hidden; }
.shot img { width: 100%; height: auto; transition: transform .4s, opacity .2s; }
.shot:hover img { transform: scale(1.03); }
.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(26, 18, 19, 0.96); color: #fff; }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox::backdrop { background: rgba(26, 18, 19, 0.96); }
.lightbox figure { margin: 0; max-width: calc(100vw - 140px); text-align: center; }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 110px); margin: 0 auto; object-fit: contain; }
.lightbox figcaption { margin-top: 14px; }
.lightbox button { position: absolute; width: 52px; height: 52px; border: 1px solid #fff; background: transparent; color: #fff; font: 400 28px/1 var(--body); cursor: pointer; }
.lightbox button:hover { background: var(--red); border-color: var(--red); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox :focus-visible { outline-color: #fff; }

/* about */
.abouthero img { width: 100%; height: clamp(320px, 56vh, 620px); object-fit: cover; object-position: center 60%; }
.about { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
.prose p { margin-bottom: 18px; font-size: 17px; }
.prose .btns { margin-top: 28px; }

@media (max-width: 900px) {
  .masonry { column-count: 2; column-gap: 8px; }
  .shot { margin-bottom: 8px; }
  .about { grid-template-columns: minmax(0, 1fr); }
  .lightbox figure { max-width: 100vw; }
  .lightbox figure img { max-height: calc(100vh - 190px); }
  .lb-prev, .lb-next { top: auto; bottom: 16px; transform: none; }
}

/* private events: type cards */
.ptypes { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.ptype { display: flex; flex-direction: column; gap: 12px; padding: 24px 20px; border: 1px solid var(--red); background: var(--white); color: var(--ink); text-decoration: none; transition: background .15s, color .15s; }
.ptype h3 { font-size: clamp(22px, 1.8vw, 26px); }
.ptype p { font-size: 15px; flex-grow: 1; }
.ptype .label { color: var(--red-text); }
.ptype:hover, .ptype.on { background: var(--red); color: #fff; }
.ptype:hover p, .ptype.on p, .ptype:hover .label, .ptype.on .label { color: #fff; }
.request { align-items: start; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.request-intro { position: sticky; top: 110px; }
.request-intro a { color: var(--red-text); }
.picked { margin-top: 24px; padding: 12px 14px; border: 1px solid var(--red); color: var(--red-text); display: inline-block; }
.picked[hidden] { display: none; }

/* Tripleseat lead form, restyled to match the site */
.tsform { background: #fff; border: 1px solid var(--red); padding: clamp(20px, 3vw, 40px); }
.tsform form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; margin: 0; font-family: var(--body) !important; color: var(--ink) !important; }
.tsform form > * { min-width: 0; margin: 0 !important; }
.tsform .tripleseat-dlf-heading-h1, .tsform .tripleseat-dlf-text { display: none !important; }
.tsform .tripleseat-dlf-heading { grid-column: 1 / -1; margin: 10px 0 0 !important; padding: 0 0 10px !important; border-bottom: 1px solid var(--red); font: 500 24px/1.1 var(--display) !important; color: var(--ink) !important; }
.tsform form > .tripleseat-dlf-heading:first-of-type { margin-top: 0 !important; }
.tsform .tripleseat-dlf-field-group:has(.tripleseat-dlf-name-fields),
.tsform .tripleseat-dlf-field-group:has(textarea),
.tsform .tripleseat-dlf-field-group:has(.tripleseat-dlf-checkbox-wrapper),
.tsform .tripleseat-dlf-field-group:has(.tripleseat-dlf-captcha-container),
.tsform .tripleseat-dlf-field-group:has(.tripleseat-dlf-submit),
.tsform .tripleseat-dlf-field-group[data-component-type="event-style"] { grid-column: 1 / -1; }
.tsform .tripleseat-dlf-name-fields { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.tsform .tripleseat-dlf-label, .tsform label { display: block; margin: 0 0 6px !important; font: 500 12px/1.4 var(--body) !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink) !important; }
.tsform .tripleseat-dlf-input, .tsform input[type=text], .tsform input[type=email], .tsform input[type=tel], .tsform input[type=number], .tsform input[type=date], .tsform select, .tsform textarea {
  width: 100% !important; max-width: none !important; min-height: 48px; box-sizing: border-box !important; padding: 10px 14px !important; border: 1px solid var(--ink) !important; border-radius: 0 !important; background: #fff !important; box-shadow: none !important; color: var(--ink) !important; font: 400 16px/1.4 var(--body) !important; }
.tsform textarea { min-height: 120px; }
.tsform .tripleseat-dlf-input:focus, .tsform select:focus, .tsform textarea:focus { outline: 3px solid var(--ink) !important; outline-offset: 2px; border-color: var(--red) !important; }
.tsform ::placeholder { color: #8A7E80 !important; }
.tsform .tripleseat-dlf-phone-container { display: grid !important; grid-template-columns: minmax(0, 1fr) 84px; gap: 8px; }
.tsform .tripleseat-dlf-time-wrapper, .tsform .tripleseat-dlf-date-wrapper { position: relative; display: block !important; }
.tsform .tripleseat-dlf-time-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--red-text); pointer-events: none; }
.tsform .tripleseat-dlf-help-text { margin-top: 4px !important; font: 400 12px/1.4 var(--body) !important; color: var(--muted) !important; }
.tsform .tripleseat-dlf-error { margin-top: 6px !important; font: 500 13px/1.4 var(--body) !important; color: var(--red-text) !important; }
.tsform input.error, .tsform .tripleseat-dlf-input.error { background: #fff !important; border-color: var(--red) !important; }
.tsform .tripleseat-dlf-checkbox-wrapper { display: flex !important; align-items: flex-start; gap: 10px; }
.tsform .tripleseat-dlf-checkbox, .tsform input[type=checkbox] { width: 20px !important; height: 20px !important; min-height: 0 !important; margin: 2px 0 0 !important; accent-color: var(--red); flex: none; }
.tsform .tripleseat-dlf-checkbox-label { margin: 0 !important; font: 400 15px/1.45 var(--body) !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--ink) !important; }
.tsform .tripleseat-dlf-submit, .tsform button[type=submit] { min-height: 52px; padding: 0 36px !important; border: 1px solid var(--red) !important; border-radius: 0 !important; background: var(--red) !important; color: #fff !important; font: 500 13px var(--body) !important; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }
.tsform .tripleseat-dlf-submit:hover { background: var(--red-deep) !important; border-color: var(--red-deep) !important; }
.tsform .sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
#tripleseat_link { display: block; margin-top: 18px; font-size: 11px; color: var(--muted); text-decoration: none; }
.tsform .fallback { margin-top: 10px; font-size: 14px; }
.tsform .fallback a { color: var(--red-text); }

@media (max-width: 1100px) { .ptypes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .request { grid-template-columns: minmax(0, 1fr); }
  .request-intro { position: static; }
  .tsform form { grid-template-columns: minmax(0, 1fr); }
  .tsform .tripleseat-dlf-name-fields { grid-template-columns: minmax(0, 1fr); }
}

/* Halloween feature: "Do Not Disturb" (plum / navy / cream / brass, from the event artwork) */
.hw { --hw-bg: #120C12; --hw-plum: #3B1A33; --hw-navy: #1B2550; --hw-cream: #EDE5D6; --hw-brass: #C2A063; background: var(--hw-bg); color: var(--hw-cream); padding: clamp(56px, 7vw, 96px) var(--gutter); }
.hw[hidden], .hw-only[hidden] { display: none; }
.hw-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(28px, 3.5vw, 48px); }
.hw-eyebrow { color: var(--hw-brass); margin-bottom: 14px; }
.hw h2 { font-size: clamp(48px, 8vw, 128px); line-height: 0.92; text-transform: uppercase; letter-spacing: 0.01em; }
.hw-tag { margin-top: 18px; font: italic 500 clamp(19px, 1.8vw, 26px)/1.3 var(--display); color: var(--hw-cream); }
.hw-hanger { position: relative; flex: none; width: 120px; height: 250px; transform: rotate(7deg); transform-origin: 50% 18%; margin: 0 24px -8px 0; filter: drop-shadow(0 18px 22px rgba(0,0,0,.55)); animation: hw-sway 6s ease-in-out infinite; }
.hw-hanger-text { position: absolute; left: 0; right: 0; top: 98px; display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--hw-plum); text-align: center; }
.hw-hanger-text span { font: 500 21px/1.05 var(--display); text-transform: uppercase; letter-spacing: 0.04em; }
.hw-hanger-text i { width: 36px; height: 1px; background: var(--hw-plum); margin: 12px 0 10px; }
.hw-hanger-text b { font: 500 10px var(--body); letter-spacing: 0.22em; text-transform: uppercase; }
@keyframes hw-sway { 0%, 100% { transform: rotate(7deg); } 50% { transform: rotate(3deg); } }
.hw-banner { display: block; padding: clamp(6px, .8vw, 10px); border: 1px solid var(--hw-brass); }
.hw-banner img { width: 100%; height: auto; }
.hw-nights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 24px; }
.hw-night { display: grid; grid-template-columns: minmax(0, 200px) minmax(0, 1fr); gap: clamp(16px, 2vw, 28px); align-items: start; padding: clamp(16px, 2vw, 28px); border: 1px solid rgba(237, 229, 214, 0.28); }
.hw-night.fri { background: var(--hw-plum); }
.hw-night.sat { background: var(--hw-navy); }
.hw-night img { width: 100%; height: auto; border: 1px solid rgba(237, 229, 214, 0.4); }
.hw-when { color: var(--hw-brass); margin-bottom: 10px; }
.hw-night h3 { font-size: clamp(26px, 2.6vw, 38px); margin-bottom: 12px; }
.hw-night p { font-size: 15.5px; line-height: 1.55; margin-bottom: 14px; }
.hw-lineup .label { display: block; color: var(--hw-brass); margin-bottom: 4px; font-size: 11px; }
.hw-night .btns { margin-top: 18px; }
.hw-btn { background: var(--hw-cream); border-color: var(--hw-cream); color: var(--hw-bg); }
.hw-btn:hover { background: var(--hw-brass); border-color: var(--hw-brass); color: var(--hw-bg); }
.hw-line { background: transparent; border-color: var(--hw-cream); color: var(--hw-cream); }
.hw-line:hover { background: var(--hw-cream); border-color: var(--hw-cream); color: var(--hw-bg); }
.hw :focus-visible { outline-color: var(--hw-cream); }
.hw-foot { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 28px; color: var(--hw-brass); }
.hw-foot span:empty { display: none; }
@media (max-width: 1000px) { .hw-nights { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 700px) { .hw-hanger { display: none; } .hw-night { grid-template-columns: minmax(0, 1fr); } .hw-night img { max-width: 150px; } .hw-night .btn { flex: 1 1 auto; } }
@media (prefers-reduced-motion: reduce) { .hw-hanger { animation: none; } }

/* menus */
.drinks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 40px; }
.drink { padding: 24px 0; border-top: 1px solid var(--red); }
.drink h3 { font-size: clamp(22px, 2vw, 28px); margin-bottom: 8px; }
.drink.frozen { grid-column: span 2; }
.mfine { margin-top: 28px; font-size: 14px; color: var(--muted, #6B5C5D); max-width: 900px; }
.mcols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 5vw, 80px); }
.msec { margin-bottom: 36px; }
.mhd, .mrow { display: grid; grid-template-columns: minmax(0, 1fr) 72px 72px; align-items: end; }
.mhd { border-bottom: 1px solid var(--red); padding-bottom: 8px; }
.mhd h3 { font-size: clamp(22px, 2vw, 28px); color: var(--red-text); }
.mhd span { text-align: right; font: 500 11px var(--sans, 'Jost', sans-serif); letter-spacing: .16em; text-transform: uppercase; color: var(--red-text); }
.mrow { padding: 11px 0; border-bottom: 1px solid var(--blush); font-size: 15px; }
.mrow b { font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 14px; }
.mrow span { text-align: right; }
.addons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--red); text-align: center; }
.addons > div { padding: 24px 16px; }
.addons > div + div { border-left: 1px solid var(--red); }
.addons h3 { font-size: 24px; margin: 8px 0 4px; }
.addons b { color: var(--red-text); font-weight: 500; }
.opkgs { display: grid; gap: 16px; }
.opkg { background: var(--white); border: 1px solid var(--red); padding: clamp(20px, 2.5vw, 32px); }
.otop { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; }
.otop h3 { font-size: clamp(24px, 2.2vw, 32px); margin-bottom: 8px; }
.oprice { text-align: right; }
.oprice b { display: block; font: 500 clamp(36px, 3.4vw, 48px)/1 var(--serif, 'Bodoni Moda', serif); color: var(--red-text); }
.oprice span { display: block; font-size: 14px; color: var(--muted, #6B5C5D); }
.obrands { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--blush); font-size: 15px; }
.obrands .label { display: block; margin-bottom: 4px; }
@media (max-width: 800px) {
  .drinks, .mcols { grid-template-columns: minmax(0, 1fr); }
  .drink.frozen { grid-column: auto; }
  .obrands { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oprice { text-align: left; }
  .mhd, .mrow { grid-template-columns: minmax(0, 1fr) 60px 64px; }
}
.nav a.link, .nav .btn { white-space: nowrap; }
@media (max-width: 1240px) { .nav { gap: 22px; } }
@media (max-width: 1080px) { .nav a.link { display: none; } .menu { display: block; } }

/* tour */
.tour { position: relative; aspect-ratio: 16 / 9; background: var(--ink); border: 1px solid var(--red); overflow: hidden; }
.tour img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .72; }
.tour .btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 10px; }
.tour iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .tour { aspect-ratio: 4 / 5; } }

/* submenu */
.has-sub { position: relative; display: flex; align-items: center; height: 100%; }
.has-sub > a svg { margin-left: 4px; vertical-align: 1px; }
.sub { position: absolute; top: 100%; left: -20px; min-width: 240px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--red); border-top: 0; padding: 6px 0; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s, transform .15s, visibility .15s; z-index: 20; }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { padding: 13px 20px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.sub a:hover, .sub a:focus-visible { background: var(--blush); color: var(--red-text); }
.menu nav a.subl { padding-left: 18px; font-size: 11px; color: var(--muted); }
@media (max-width: 1080px) { .has-sub { display: none; } }
@media (prefers-reduced-motion: reduce) { .sub { transition: none; } }

/* mobile photo framing: keep landscape photos close to their shape instead of tall crops */
@media (max-width: 700px) {
  .slides { height: auto; aspect-ratio: 1 / 1; }
  .abouthero img { height: auto; aspect-ratio: 4 / 3; object-position: center; }
  .tour { aspect-ratio: 1 / 1; }
  .floor img { aspect-ratio: 3 / 2; }
  .private img, .split.private img { width: 100%; height: auto; }
}
@media (max-width: 700px) {
  .slide img[src*="outside-1"], .slide img[data-src*="outside-1"], .abouthero img[src*="outside-1"] { object-position: 78% center; }
  .slide img[src*="bonbonniere-2"], .slide img[data-src*="bonbonniere-2"] { object-position: 60% center; }
}

/* wide screens: cap content at 1360px and centre it; backgrounds still run edge to edge */
@media (min-width: 1560px) {
  :root { --gutter: calc((100vw - 1360px) / 2); }
  .slides { height: clamp(560px, max(68vh, 38vw), 1040px); }
  .abouthero img { height: clamp(420px, max(56vh, 32vw), 900px); }
}

/* wide screens: the hero photo stops growing sideways and sits centred, so it never becomes a thin strip */
@media (min-width: 1560px) {
  .hero { background: var(--white); }
  .slides { width: min(1760px, 100vw - 2 * 48px); margin: 24px auto 0; height: auto; aspect-ratio: 16 / 9; max-height: 80vh; }
  .abouthero { padding-top: 24px; }
  .abouthero img { display: block; width: min(1760px, 100vw - 2 * 48px); margin: 0 auto; height: auto; aspect-ratio: 16 / 8; max-height: 72vh; }
  .slide-ui { right: 24px; } .dots { left: 24px; }
}

/* one column for everything: on desktop the hero, top photos and the events row line up with the text column */
@media (min-width: 901px) {
  .hero { background: var(--white); }
  .slides { width: calc(100% - 2 * var(--gutter)); margin: 24px auto 0; height: auto; aspect-ratio: 16 / 9; max-height: 78vh; }
  .slide-ui { right: 20px; } .dots { left: 20px; }
  .abouthero { padding: 24px var(--gutter) 0; }
  .abouthero img { display: block; width: 100%; margin: 0; height: auto; aspect-ratio: 16 / 8; max-height: 70vh; }
  .flyers { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; scroll-padding-left: 0; }
}

/* phones: every button the same size — full width, 52px tall, stacked */
@media (max-width: 700px) {
  .btns, .jump, .head .btns { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; width: 100%; }
  main .btn, .hw .btn { width: 100%; min-height: 52px; padding: 0 16px; font-size: 13px; letter-spacing: 0.18em; text-align: center; }
  .head > .btn, .head > a.btn { width: 100%; }
  .head { align-items: stretch; }
  .tour .btn { width: auto; min-width: 230px; }
  .inline .btn { width: auto; min-width: 96px; }
  .hero-bar { flex-direction: column; align-items: stretch; }
}
