:root {
  --background: #f2eee4;
  --surface: #fffaf0;
  --surface-2: #e4ece4;
  --text: #173b43;
  --muted: #56686b;
  --border: #b7c3ba;
  --border-soft: #d7ddd5;
  --accent: #ad3f2d;
  --accent-hover: #c94831;
  --cta: #f06f4f;
  --cta-text: #102f36;
  --focus: #b83928;
  --success: #236c55;
  --error: #a33332;
  --header: rgba(255, 250, 240, .94);
  --footer: #102f36;
  --form: #fffdf7;
  --danube: #2d6870;
  --sage: #a9bba9;
  --parchment: #f8d268;
  --ink: #102f36;
  --coral: #f06f4f;
  --sun: #f8d268;
  --lake: #2d6870;
  --cream: #fffaf0;
  --font-display: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --font-body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --page: 1320px;
  --gutter: clamp(1.1rem, 4vw, 4.5rem);
  --section: clamp(5rem, 10vw, 9.5rem);
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 38px;
  --shadow: 0 24px 70px rgba(17, 47, 54, .13);
}

* { box-sizing: border-box; }
html { background: var(--background); color: var(--text); scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--background); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; }
body, button, input, select, textarea { font-family: var(--font-body); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
::selection { background: var(--sun); color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.035em; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.05rem, 4.5vw, 4.3rem); line-height: .96; }
h2 { font-size: clamp(1.3rem, 2.8vw, 2.625rem); line-height: 1.05; }
h3 { font-size: clamp(.775rem, 1.25vw, 1.175rem); line-height: 1.15; }
p { max-width: 70ch; }
address { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.page-shell { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.section-pad { padding-block: var(--section); }
.eyebrow, .location-line { display: inline-flex; align-items: center; gap: .65rem; width: fit-content; margin-bottom: 1.25rem; color: var(--accent); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before, .location-line::before { width: 9px; height: 9px; border-radius: 50%; background: currentColor; content: ""; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.36rem); line-height: 1.55; }

.skip-link { position: fixed; top: -6rem; left: 1rem; z-index: 1000; padding: .8rem 1.1rem; border-radius: 999px; background: var(--sun); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 100; padding: 14px clamp(.75rem, 2vw, 1.5rem); background: linear-gradient(var(--background) 0 45%, transparent); }
.header-inner { display: grid; grid-template-columns: minmax(205px, .92fr) auto minmax(155px, .92fr); align-items: center; gap: 1.5rem; height: 72px; max-width: 1420px; margin-inline: auto; padding: 8px 10px 8px 20px; border: 1px solid rgba(23, 59, 67, .12); border-radius: 999px; background: var(--header); box-shadow: 0 12px 35px rgba(17, 47, 54, .1); backdrop-filter: blur(18px); }
.brand { display: inline-flex; justify-self: start; }
.brand img { width: 232px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.8rem); }
.main-nav a { position: relative; padding: .45rem .1rem; color: var(--muted); font-size: .82rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; border-radius: 999px; background: var(--coral); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.nav-phone { display: none; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px 8px; border: 0; border-radius: 50%; background: var(--surface-2); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px auto; border-radius: 5px; background: var(--text); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .85rem 1.4rem; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 800; line-height: 1.1; text-decoration: none; cursor: pointer; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--cta); background: var(--cta); color: var(--cta-text); box-shadow: 0 9px 24px rgba(228, 95, 67, .22); }
.button-primary:hover { border-color: var(--sun); background: var(--sun); }
.button-outline { border-color: currentColor; background: transparent; color: var(--text); }
.button-outline:hover { background: var(--text); color: var(--cream); }
.button-text { min-height: auto; padding-inline: .2rem; border-radius: 0; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.text-link { font-weight: 800; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.action-row { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-top: 2rem; }

.home-hero { position: relative; display: grid; min-height: calc(100svh - 100px); margin: 0 clamp(.75rem, 2vw, 1.5rem) 2rem; overflow: hidden; border-radius: var(--radius-l); background: var(--ink); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.home-hero::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 34, 40, .88) 0%, rgba(9, 34, 40, .56) 48%, rgba(9, 34, 40, .06) 82%); content: ""; }
.hero-copy { align-self: end; width: min(760px, calc(100% - 3rem)); margin: clamp(1.25rem, 4vw, 4rem); padding: clamp(1.7rem, 4vw, 3.6rem); border: 1px solid rgba(255, 255, 255, .2); border-radius: 32px; background: rgba(16, 47, 54, .86); color: var(--cream); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.location-line { margin-bottom: 1.7rem; padding: .55rem .8rem; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; color: var(--sun); background: rgba(255, 255, 255, .05); }
.hero-copy h1 { max-width: 750px; margin-bottom: 1.5rem; font-size: clamp(2.05rem, 4.25vw, 4rem); }
.hero-lead { max-width: 590px; color: rgba(255, 250, 240, .82); font-size: clamp(1rem, 1.6vw, 1.25rem); }
.hero-copy .button-outline { border-color: rgba(255,255,255,.7); color: var(--cream); }
.hero-copy .button-outline:hover { background: var(--cream); color: var(--ink); }
.hero-price-link { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .25rem 1rem; max-width: 430px; margin-top: 2.4rem; padding: 1rem 1.15rem; border-radius: var(--radius-s); background: var(--cream); color: var(--ink); text-decoration: none; }
.hero-price-link small { grid-row: 1; color: var(--muted); }
.hero-price-link strong { grid-row: 2; font-family: var(--font-display); font-size: 1.34rem; }
.hero-price-link span { grid-column: 2; grid-row: 1 / span 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--sun); font-size: 1.2rem; }

.intro-band { display: grid; grid-template-columns: 64px minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.75rem, 3.5vw, 4rem); align-items: start; margin-top: var(--section); margin-bottom: var(--section); padding-block: clamp(3rem, 6vw, 5rem); border-radius: var(--radius-l); background: var(--surface-2); }
.intro-band > *, .page-hero-grid > *, .split-heading > *, .prose-section > *, .two-column-section > *, .detail-columns > *, .contact-grid > *, .booking-layout > * { min-width: 0; }
.section-number { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--sun); color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.prose p + p { margin-top: 1.35rem; }
.food-feature, .poker-highlight { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); gap: 12px; padding: 12px; border-radius: var(--radius-l); background: var(--ink); color: var(--cream); box-shadow: var(--shadow); }
.food-feature-media, .poker-media { min-height: 650px; overflow: hidden; border-radius: 28px; }
.food-feature-media picture, .food-feature-media img, .poker-media picture, .poker-media img { width: 100%; height: 100%; }
.food-feature-media img, .poker-media img { object-fit: cover; transition: transform .7s ease; }
.food-feature:hover img, .poker-highlight:hover img { transform: scale(1.025); }
.food-feature-copy, .poker-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.2rem, 5vw, 5rem); }
.food-feature .eyebrow, .poker-highlight .eyebrow { color: var(--sun); }
.mini-prices { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.5rem; }
.mini-prices span { display: flex; flex-direction: column; padding: .9rem; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-s); color: rgba(255,255,255,.75); }
.mini-prices strong { color: var(--cream); }
.food-feature .button-primary, .poker-highlight .button-primary { color: var(--ink); }
.food-feature .button-text, .poker-highlight .button-text { color: var(--cream); }
.price-band { position: relative; margin-top: var(--section); overflow: hidden; background: var(--coral); color: var(--ink); }
.price-band::after { position: absolute; right: -9vw; bottom: -18vw; width: 42vw; height: 42vw; border: 1px solid rgba(23,59,67,.3); border-radius: 50%; box-shadow: 0 0 0 5vw rgba(248,210,104,.2), 0 0 0 10vw rgba(255,250,240,.14); content: ""; }
.price-band .eyebrow { color: var(--ink); }
.price-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); }
.price-list-home { margin: 0; padding: clamp(1rem, 3vw, 2rem); border-radius: var(--radius-m); background: rgba(255,250,240,.84); backdrop-filter: blur(8px); }
.price-list-home div { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; padding: 1rem 0; border-bottom: 1px solid rgba(23,59,67,.25); }
.price-list-home div:last-child { border-bottom: 0; }
.price-list-home dd { margin: 0; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; text-align: right; }
.service-benefits { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); }
.service-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.service-benefit-grid article { display: flex; flex-direction: column; min-height: 330px; padding: clamp(1.5rem, 2.8vw, 2.4rem); border: 1px solid var(--border-soft); border-radius: var(--radius-m); background: var(--surface); }
.service-benefit-grid article:nth-child(2) { background: var(--surface-2); }
.service-benefit-grid article:nth-child(3) { background: var(--sun); }
.service-benefit-grid article:nth-child(4) { background: var(--ink); color: var(--cream); }
.service-benefit-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 2rem; border-radius: 50%; background: var(--coral); color: var(--ink); font-weight: 800; }
.service-benefit-grid article:nth-child(3) > span { background: var(--cream); }
.service-benefit-grid article:nth-child(4) > span { background: var(--sun); }
.service-benefit-grid h3 { font-size: clamp(.825rem, 1.1vw, 1.1rem); }
.service-benefit-grid p { color: var(--muted); }
.service-benefit-grid article:nth-child(4) p { color: rgba(255,250,240,.82); }
.service-benefit-grid .text-link { margin-top: auto; padding-top: 1.5rem; }
.guest-promise { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 8vw, 8rem); padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-l); background: var(--lake); color: white; }
.guest-promise .eyebrow { color: var(--sun); }
.guest-promise ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.guest-promise li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.guest-promise li:last-child { border-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-bottom: 3.5rem; }
.section-heading { margin-bottom: 3rem; }
.event-list { display: grid; gap: .8rem; }
.event-list article { display: grid; grid-template-columns: 165px 1fr auto; gap: 2rem; align-items: center; padding: 1.5rem 1.7rem; border: 1px solid var(--border-soft); border-radius: var(--radius-m); background: var(--surface); transition: transform 180ms ease, border-color 180ms ease; }
.event-list article:hover { border-color: var(--coral); transform: translateX(7px); }
.event-list article > span { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.event-list h3 { margin-bottom: .4rem; font-size: clamp(.75rem, 1.1vw, 1rem); }
.event-list p { margin-bottom: 0; color: var(--muted); }
.poker-highlight { margin-top: var(--section); background: var(--sun); color: var(--ink); }
.poker-highlight .eyebrow, .poker-highlight .button-text { color: var(--ink); }
.rule-list { padding: 0; list-style: none; }
.rule-list li { position: relative; padding: .7rem .8rem .7rem 2rem; border-bottom: 1px solid rgba(23,59,67,.2); }
.rule-list li::before { position: absolute; left: .35rem; content: "●"; color: var(--coral); font-size: .65rem; }
.visit-section { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 8vw, 8rem); }
.visit-main { padding: clamp(2rem, 4vw, 4rem); border-radius: var(--radius-l); background: var(--surface-2); }
.visit-section > div:last-child { align-self: start; padding: clamp(2rem, 4vw, 4rem); border-radius: var(--radius-l); background: var(--ink); color: var(--cream); }
.visit-section address { margin: 2rem 0; font-size: 1.04rem; }
.hours { margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 2rem; padding: .65rem 0; border-bottom: 1px solid var(--border-soft); }
.hours dd { margin: 0; font-weight: 800; }
.visit-section > div:last-child .hours div { border-color: rgba(255,255,255,.18); }

.page-hero { position: relative; margin: 0 clamp(.75rem, 2vw, 1.5rem); padding: clamp(4.2rem, 8vw, 8rem) 0 clamp(3.8rem, 7vw, 7rem); overflow: hidden; border-radius: var(--radius-l); background: var(--ink); color: var(--cream); }
.page-hero::before { position: absolute; top: -18rem; right: -8rem; width: 40rem; height: 40rem; border: 1px solid rgba(248,210,104,.35); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(45,104,112,.22), 0 0 0 10rem rgba(240,111,79,.08); content: ""; }
.page-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; }
.page-hero h1 { max-width: 950px; margin-bottom: 1.5rem; font-size: clamp(2.1rem, 4vw, 4rem); }
.page-hero .lead { color: rgba(255,250,240,.72); }
.breadcrumbs { position: relative; display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 3rem; color: rgba(255,250,240,.62); font-size: .78rem; font-weight: 700; }
.breadcrumbs a { text-underline-offset: .25rem; }
.hero-facts { padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-m); background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }
.hero-facts > *:last-child { margin-bottom: 0; }
.hero-facts a:not(.button) { display: block; margin: .5rem 0; }
.hero-facts dl, .hero-facts dl div { margin: 0; }
.hero-facts dl div { display: flex; justify-content: space-between; gap: 2rem; padding: .7rem 0; border-bottom: 1px solid var(--border-soft); }
.hero-facts dl div:last-child { border-bottom: 0; }
.hero-facts dd { margin: 0; text-align: right; font-weight: 800; }
.large-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; }
.image-chapter { margin-top: var(--section); padding-inline: var(--gutter); }
.image-chapter picture, .image-chapter img { width: 100%; }
.image-chapter img { max-height: 760px; border-radius: var(--radius-l); object-fit: cover; box-shadow: var(--shadow); }
.image-caption { display: grid; grid-template-columns: minmax(160px, 230px) minmax(0, 1fr); gap: 2rem; margin: 1rem 0 0; padding: 1.25rem 1.5rem; border-radius: var(--radius-s); background: var(--surface); color: var(--muted); font-size: .88rem; box-shadow: 0 14px 32px rgba(17,47,54,.09); }
.image-caption p { margin-bottom: 0; }
.image-caption span { color: var(--accent); font-weight: 800; text-transform: uppercase; }
.prose-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 9rem); }
.prose-section > div:first-child { position: sticky; top: 120px; align-self: start; }
.two-column-section, .detail-columns, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); }
.two-column-section > div, .detail-columns > div, .contact-grid > div { padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius-m); background: var(--surface); }
.two-column-section > div:nth-child(even), .detail-columns > div:nth-child(even), .contact-grid > div:nth-child(even) { background: var(--surface-2); }
.two-column-section ul, .detail-columns ul { padding: 0; list-style: none; }
.two-column-section li, .detail-columns li { padding: .72rem 0; border-bottom: 1px solid var(--border-soft); }
.narrative-band { position: relative; overflow: hidden; padding-block: var(--section); background: var(--lake); color: white; }
.narrative-band::after { position: absolute; right: 4vw; bottom: -8rem; width: 23rem; height: 23rem; border-radius: 50%; background: var(--coral); content: ""; opacity: .9; }
.narrative-band .page-shell { position: relative; z-index: 1; }
.narrative-band .eyebrow { color: var(--sun); }
.narrative-band p { font-size: 1.1rem; }
.narrative-band .button-outline { border-color: white; color: white; }
.narrative-band .button-outline:hover { background: white; color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.values-grid article { padding: clamp(1.7rem, 3vw, 2.5rem); border-radius: var(--radius-m); background: var(--surface); }
.values-grid article:nth-child(2) { background: var(--sun); }
.values-grid article:nth-child(3) { background: var(--surface-2); }
.values-grid span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 2rem; border-radius: 50%; background: var(--coral); color: var(--ink); font-weight: 800; }

.category-nav { position: sticky; top: 95px; z-index: 40; margin-top: 1.2rem; background: transparent; }
.category-nav .page-shell { display: flex; gap: .6rem; overflow-x: auto; padding-block: .7rem; }
.category-nav a { flex: 0 0 auto; padding: .58rem .9rem; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); font-size: .78rem; font-weight: 800; text-decoration: none; box-shadow: 0 6px 18px rgba(17,47,54,.06); }
.category-nav a:hover { border-color: var(--coral); background: var(--coral); }
.menu-catalogue { padding-block: var(--section); }
.menu-category { display: grid; grid-template-columns: .67fr 1.33fr; gap: clamp(3rem, 8vw, 8rem); margin-bottom: 1rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-l); background: var(--surface); scroll-margin-top: 160px; }
.menu-category:nth-child(even) { background: var(--surface-2); }
.menu-category header { display: flex; gap: 1.4rem; align-items: flex-start; }
.menu-category header > span { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--sun); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.menu-line { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.15rem 0; border-bottom: 1px solid var(--border-soft); }
.menu-line:last-child { border-bottom: 0; }
.menu-line h3 { margin-bottom: .3rem; font-family: var(--font-body); font-size: .5rem; font-weight: 800; letter-spacing: 0; }
.menu-line p { margin: 0; color: var(--muted); font-size: .88rem; }
.menu-line strong { font-family: var(--font-display); font-size: 1.2rem; white-space: nowrap; }
.menu-tag { display: inline-block; margin-top: .55rem; padding: .2rem .58rem; border: 0; border-radius: 999px; background: var(--sun); color: var(--ink); font-size: .68rem; font-weight: 800; }
.notice-band { padding-block: clamp(3.8rem, 7vw, 6.5rem); background: var(--sun); }
.notice-band .page-shell { padding-block: clamp(2rem, 4vw, 3.5rem); border-left: 8px solid var(--coral); }

.pricing-table { display: grid; gap: 1rem; }
.pricing-table section { padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius-m); background: var(--surface); }
.pricing-table section:nth-child(even) { background: var(--surface-2); }
.pricing-table section > h3 { padding-bottom: 1rem; border-bottom: 3px solid var(--coral); }
.pricing-table section > div { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1rem 0; border-bottom: 1px solid var(--border-soft); }
.pricing-table span { display: flex; flex-direction: column; }
.pricing-table small { color: var(--muted); }
.pricing-table b { font-family: var(--font-display); font-size: 1.2rem; }
.service-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.service-price-grid article { display: flex; flex-direction: column; min-height: 200px; padding: 1.5rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-m); background: rgba(255,255,255,.06); }
.service-price-grid strong { margin: auto 0 1rem; font-family: var(--font-display); font-size: 1.25rem; }
.service-directory { display: grid; gap: .8rem; }
.service-directory article { display: grid; grid-template-columns: 1fr 240px; gap: 3rem; padding: 1.7rem; border-radius: var(--radius-m); background: var(--surface); }
.service-directory article:nth-child(even) { background: var(--surface-2); }
.service-directory span { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-directory article > div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; }
.process-section, .booking-block { background: var(--surface-2); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; margin: 3rem 0 0; padding: 0; list-style: none; }
.timeline > * { min-height: 190px; padding: 1.35rem; border-radius: var(--radius-m); background: var(--surface); }
.timeline > *:nth-child(even) { background: var(--sun); }
.timeline strong { display: block; margin-bottom: 1rem; color: var(--accent); }
.process-note { margin-top: 2rem; color: var(--muted); }
.poker-note { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; margin-block: var(--section); padding: 2rem; border-radius: var(--radius-m); background: var(--sun); }
.rule-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); margin-top: var(--section); padding: clamp(2.5rem, 5vw, 4.5rem); border-radius: var(--radius-l); background: var(--coral); }
.rule-panel ul { margin: 0; padding: 0; list-style: none; }
.rule-panel li { padding: .75rem 0; border-bottom: 1px solid rgba(23,59,67,.25); font-weight: 800; }

.faq-section { max-width: 1120px; }
.faq-list { display: grid; gap: .7rem; }
.faq-list details { padding: 0 1.35rem; border-radius: var(--radius-s); background: var(--surface); }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1rem; right: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--sun); content: "+"; font-family: var(--font-body); font-size: 1.2rem; }
.faq-list details[open] { background: var(--sun); }
.faq-list details[open] summary::after { background: var(--cream); content: "–"; }
.faq-list details p { padding: 0 0 1.4rem; color: var(--muted); }

.booking-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.booking-layout > div:first-child { position: sticky; top: 125px; }
.booking-form { padding: clamp(1.4rem, 4vw, 3.2rem); border: 0; border-radius: var(--radius-l); background: var(--form); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form label { display: flex; flex-direction: column; gap: .45rem; font-size: .82rem; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-s); background: white; color: var(--text); transition: border-color 160ms ease, box-shadow 160ms ease; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(240,111,79,.14); outline: 0; }
.booking-form input, .booking-form select { min-height: 50px; padding: .72rem .85rem; }
.booking-form textarea { min-height: 150px; padding: .85rem; resize: vertical; }
.form-message { margin-top: 1rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-consents { display: grid; gap: 1rem; margin-top: 1.3rem; }
.booking-form .check-row { display: grid; grid-template-columns: 22px 1fr; gap: .8rem; align-items: start; font-weight: 500; line-height: 1.5; }
.booking-form .check-row input { width: 20px; min-height: 20px; margin-top: .2rem; accent-color: var(--coral); }
.poker-confirmation { padding: 1rem; border-radius: var(--radius-s); background: var(--sun); }
.form-submit-row { margin-top: 1.7rem; }
.form-status { margin: 1rem 0 0; color: var(--error); font-weight: 800; }
.form-status.is-success { color: var(--success); }

.contact-grid address { display: grid; gap: .4rem; margin-top: 2rem; }
.contact-grid address strong { margin-top: .7rem; color: var(--accent); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.legal-content { max-width: 1080px; }
.legal-local-nav { position: sticky; top: 100px; z-index: 30; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 4rem; padding: .7rem; border-radius: var(--radius-m); background: rgba(255,250,240,.94); box-shadow: 0 10px 30px rgba(17,47,54,.08); backdrop-filter: blur(12px); }
.legal-local-nav a { padding: .45rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 800; text-decoration: none; }
.legal-local-nav a:hover { background: var(--sun); }
.legal-content section { margin-bottom: .8rem; padding: clamp(1.6rem, 3vw, 2.5rem); border-radius: var(--radius-m); background: var(--surface); }
.legal-content section:nth-child(even) { background: var(--surface-2); }
.legal-content h2 { font-size: clamp(1rem, 1.75vw, 1.625rem); }
.legal-content p { max-width: 76ch; }
.status-page { min-height: 70svh; padding-block: clamp(5rem, 12vw, 11rem); }
.status-page h1 { max-width: 900px; }

.site-footer { position: relative; padding-top: clamp(4rem, 8vw, 7rem); overflow: hidden; background: var(--footer); color: var(--cream); }
.site-footer::before { position: absolute; top: -9rem; left: 42%; width: 25rem; height: 25rem; border-radius: 50%; background: var(--lake); content: ""; opacity: .35; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.3fr .9fr 1fr .9fr; gap: clamp(2rem, 5vw, 5rem); }
.footer-brand img { width: 260px; margin-bottom: 1.4rem; padding: .6rem .8rem; border-radius: 18px; background: var(--cream); }
.site-footer h2 { font-family: var(--font-body); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.site-footer a { color: inherit; text-underline-offset: .3rem; }
.site-footer address { line-height: 1.8; }
.site-footer nav { display: flex; flex-direction: column; gap: .55rem; }
.compact-hours div { border-color: rgba(255,255,255,.16); }
.link-button { align-self: flex-start; padding: 0; border: 0; background: transparent; color: inherit; text-decoration: underline; text-underline-offset: .3rem; cursor: pointer; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; margin-top: 4rem; padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.65); font-size: .78rem; }
.mobile-booking-bar { display: none; }

.consent-banner { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 500; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; max-width: 1240px; margin: auto; padding: 1.35rem; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-m); background: var(--ink); color: var(--cream); box-shadow: var(--shadow); }
.consent-banner[hidden], .modal-backdrop[hidden] { display: none; }
.consent-banner h2 { margin-bottom: .4rem; font-family: var(--font-body); font-size: 1rem; font-weight: 800; }
.consent-banner p { margin: 0; color: rgba(255,255,255,.74); font-size: .82rem; }
.consent-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.consent-actions button { min-height: 44px; padding: .65rem .9rem; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: transparent; color: var(--cream); font-size: .78rem; font-weight: 800; cursor: pointer; }
.consent-actions button:first-child, .consent-actions button:hover { border-color: var(--coral); background: var(--coral); color: var(--ink); }
.modal-backdrop { position: fixed; inset: 0; z-index: 600; display: grid; place-items: center; padding: 1rem; background: rgba(7,27,32,.72); }
.consent-modal { position: relative; width: min(700px, 100%); max-height: calc(100svh - 2rem); overflow: auto; padding: clamp(1.4rem, 4vw, 3rem); border-radius: var(--radius-l); background: var(--surface); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--sun); font-size: 1.5rem; cursor: pointer; }
.consent-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--border-soft); }
.consent-row h3, .consent-row p { margin-bottom: 0; }
.consent-row strong { display: block; }
.consent-row small { display: block; color: var(--muted); }
.always-on { color: var(--success); font-weight: 800; }
.consent-toggle input { width: 24px; height: 24px; accent-color: var(--coral); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .main-nav { position: fixed; top: 96px; right: 1rem; left: 1rem; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: .8rem 1.2rem 1.3rem; border: 1px solid var(--border-soft); border-radius: var(--radius-m); background: var(--surface); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--border-soft); font-size: .95rem; }
  .main-nav a::after { display: none; }
  .nav-phone { display: block; }
  .menu-toggle { display: block; grid-column: 2; }
  .header-cta { grid-column: 3; }
  .intro-band { grid-template-columns: 60px 1fr; }
  .intro-band .prose { grid-column: 2; }
  .food-feature, .poker-highlight { grid-template-columns: 1fr; }
  .food-feature-media, .poker-media { min-height: 55vw; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .service-price-grid { grid-template-columns: repeat(2, 1fr); }
  .service-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-facts { max-width: 620px; }
}

@media (max-width: 780px) {
  body { padding-bottom: 74px; font-size: 15.5px; }
  h1 { font-size: clamp(1.75rem, 9vw, 2.9rem); }
  h2 { font-size: clamp(1.225rem, 6vw, 2rem); }
  .section-pad { padding-block: clamp(4rem, 17vw, 6rem); }
  .site-header { padding: 9px .65rem; }
  .header-inner { height: 64px; gap: .45rem; padding: 7px 8px 7px 14px; }
  .brand img { width: 176px; }
  .main-nav { top: 81px; max-height: calc(100svh - 92px); overflow: auto; }
  .header-cta { display: none; }
  .home-hero { min-height: calc(100svh - 88px); margin: 0 .65rem 1rem; border-radius: 28px; }
  .home-hero::after { background: linear-gradient(0deg, rgba(9,34,40,.94) 0%, rgba(9,34,40,.58) 58%, rgba(9,34,40,.1) 100%); }
  .hero-copy { width: auto; margin: .7rem; padding: 1.35rem; border-radius: 24px; }
  .hero-copy h1 { font-size: clamp(1.8rem, 9vw, 2.7rem); }
  .hero-lead { font-size: .96rem; }
  .hero-copy .action-row { gap: .55rem; }
  .hero-copy .button { width: 100%; }
  .hero-price-link { margin-top: 1.2rem; }
  .intro-band, .page-hero-grid, .prose-section, .two-column-section, .detail-columns, .contact-grid, .visit-section, .price-grid, .booking-layout, .rule-panel, .guest-promise { grid-template-columns: 1fr; }
  .intro-band { gap: 1rem; margin-top: 4rem; margin-bottom: 4rem; padding-block: 2rem; border-radius: 28px; }
  .intro-band .prose { grid-column: auto; }
  .section-number { width: 46px; height: 46px; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .food-feature, .poker-highlight { gap: 7px; padding: 7px; border-radius: 28px; }
  .food-feature-media, .poker-media { min-height: 72vw; border-radius: 23px; }
  .food-feature-copy, .poker-copy { padding: 2rem 1.25rem; }
  .mini-prices { grid-template-columns: 1fr; }
  .price-band::after { display: none; }
  .event-list article { grid-template-columns: 1fr; gap: .6rem; padding: 1.25rem; }
  .event-list article:hover { transform: none; }
  .page-hero { margin: 0 .65rem; padding-top: 3.8rem; border-radius: 28px; }
  .page-hero::before { top: -8rem; right: -10rem; width: 24rem; height: 24rem; }
  .breadcrumbs { margin-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 8.5vw, 2.8rem); }
  .image-chapter { padding-inline: .65rem; }
  .image-chapter img { min-height: 58vw; border-radius: 28px; object-fit: cover; }
  .image-caption { grid-template-columns: 1fr; gap: .25rem; margin: .75rem 0 0; }
  .prose-section > div:first-child { position: static; }
  .two-column-section, .detail-columns, .contact-grid { gap: .7rem; }
  .values-grid { grid-template-columns: 1fr; }
  .category-nav { top: 80px; }
  .category-nav .page-shell { padding-inline: .65rem; }
  .menu-category { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.4rem; border-radius: 26px; }
  .menu-line { gap: 1rem; }
  .notice-band .page-shell { border-left-width: 5px; }
  .service-directory article { grid-template-columns: 1fr; gap: 1rem; padding: 1.3rem; }
  .service-directory article > div:last-child { gap: 1rem; }
  .service-price-grid { grid-template-columns: 1fr; }
  .service-benefit-grid { grid-template-columns: 1fr; }
  .service-benefit-grid article { min-height: auto; }
  .timeline { grid-template-columns: 1fr; }
  .timeline > * { min-height: auto; }
  .poker-note { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-layout > div:first-child { position: static; }
  .booking-form { border-radius: 28px; }
  .legal-local-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .mobile-booking-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 150; display: block; padding: .65rem 1rem; border-top: 1px solid var(--border); background: rgba(255,250,240,.95); backdrop-filter: blur(12px); }
  .mobile-booking-bar .button { width: 100%; }
  .consent-banner { grid-template-columns: 1fr; gap: 1rem; max-height: calc(100svh - 2rem); overflow: auto; }
  .consent-actions { grid-template-columns: 1fr; }
  .modal-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
