/* =========================================================
   Riva Monte — style.css
   Style: elegant / free composition / grotesque / B&W + accent / airy
   ========================================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --bg:          #f6f4ef;
  --bg-alt:      #eceadf;
  --dark:        #16130f;
  --dark-alt:    #211c17;
  --ink:         #16130f;
  --ink-soft:    #55504733;
  --muted:       #6b655a;
  --line:        #dcd6c8;
  --line-dark:   #ffffff1a;
  --card:        #ffffff;
  --accent:      #0e6d72;
  --accent-hov:  #0b565a;
  --accent-soft: #0e6d7214;
  --on-accent:   #ffffff;

  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 1240px;
  --gap: clamp(1rem, 3vw, 2rem);
  --pad-x: clamp(1.15rem, 5vw, 3rem);
  --sec-y: clamp(3.5rem, 9vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -30px rgba(20,17,15,.4);
  --trans: .35s cubic-bezier(.2,.7,.2,1);
}

/* === BASE === */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { max-width: 68ch; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); }
.section-dark { background: var(--dark); color: #efe9df; }
.section-alt { background: var(--bg-alt); }

.kicker {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.section-dark .kicker { color: #d9b98a; }
.section-dark .kicker::before { background: #d9b98a; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); }
.section-dark .lead { color: #c8c0b2; }
.center { text-align: center; }
.center .kicker { justify-content: center; }
.center p { margin-inline: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  letter-spacing: .01em; padding: .92em 1.7em; border-radius: 40px;
  transition: var(--trans); min-height: 44px; white-space: nowrap;
}
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--accent-hov); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.section-dark .btn-outline { color: #efe9df; box-shadow: inset 0 0 0 1.5px #ffffff40; }
.section-dark .btn-outline:hover { box-shadow: inset 0 0 0 1.5px #fff; }
.btn-ghost { color: var(--muted); text-decoration: underline; text-underline-offset: 4px; padding: .6em .4em; }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.05rem; }

/* === SKIP LINK === */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .8rem 1.2rem; z-index: 200; }
.skip-link:focus { left: 0; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,244,239,.86);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin-inline: auto; padding: .85rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--dark); color: #f6f4ef; border-radius: 50%;
}
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; letter-spacing: .01em; }

.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.8rem; }
.nav-menu > li > a {
  font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--ink);
  padding: .3rem 0; position: relative; transition: color var(--trans);
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--accent); transition: width var(--trans);
}
.nav-menu > li > a:hover { color: var(--accent); }
.nav-menu > li > a.nav-active { color: var(--accent); }
.nav-menu > li > a.nav-active::after { width: 100%; }
.nav-cta-mobile { display: none; }
.header-cta { }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: var(--trans); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-badge {
  font-size: .74rem; letter-spacing: .04em; color: var(--muted);
  text-align: center; padding: .4rem var(--pad-x); border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

/* === HERO (editorial / asymmetric) === */
.hero { position: relative; min-height: min(96vh, 940px); display: flex; flex-direction: column; color: #f4efe6; overflow: hidden; }
.hero-media { position: absolute; inset: -14% 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(107deg, rgba(15,12,10,.82) 0%, rgba(15,12,10,.5) 42%, rgba(15,12,10,.12) 72%, rgba(15,12,10,.35) 100%),
    linear-gradient(0deg, rgba(15,12,10,.75) 0%, rgba(15,12,10,0) 40%);
}
/* top rail */
.hero-top {
  max-width: var(--max); width: 100%; margin-inline: auto; padding: clamp(1.6rem,4vw,3rem) var(--pad-x) 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.hero-index { font-family: var(--font-head); font-weight: 500; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: #d9b98a; }
.hero-top .kicker { color: #e9dcc6; }
.hero-top .kicker::before { background: #d9b98a; }
/* main content — sits lower-left, breaks free of centre */
.hero-inner { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(2.4rem, 5vw, 4rem); max-width: 60rem; }
.hero h1 {
  margin: 0 0 1.3rem; text-wrap: balance;
  font-size: clamp(3rem, 8.5vw, 6.6rem); line-height: .94; font-weight: 700; letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; color: #e7c9a2; }
.hero-sub { font-size: clamp(1.08rem, 1.9vw, 1.4rem); color: #e7ddcd; max-width: 42ch; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
/* meta as a full-width editorial strip with dividers */
.hero-meta {
  max-width: var(--max); width: 100%; margin-inline: auto; padding: 1.5rem var(--pad-x) clamp(1.8rem,4vw,2.6rem);
  display: flex; flex-wrap: wrap; gap: 1rem 0; border-top: 1px solid #ffffff2b;
}
.hero-meta div { flex: 1 1 160px; padding-left: 1.6rem; border-left: 1px solid #ffffff24; }
.hero-meta div:first-child { padding-left: 0; border-left: none; }
.hero-meta .n { font-family: var(--font-head); font-size: clamp(1.5rem,2.6vw,2.1rem); font-weight: 600; display: block; line-height: 1; }
.hero-meta .l { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #bdb09b; margin-top: .5rem; display: block; }
/* vertical side label */
.hero-side {
  position: absolute; right: clamp(.4rem,1.5vw,1.1rem); top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--font-head); font-weight: 500;
  font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: #ffffff8c; z-index: 1;
}
@media (max-width: 760px){ .hero-side { display: none; } }

/* === SECTION HEADER === */
.sec-head { position: relative; max-width: 48rem; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin: .8rem 0 .9rem; text-wrap: balance; }
/* oversized ghost index numeral — editorial free composition */
.sec-index {
  position: absolute; top: -.55em; right: -.1em; z-index: -1;
  font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(5rem, 13vw, 11rem); letter-spacing: -.04em;
  color: var(--ink); opacity: .05; pointer-events: none; user-select: none;
}
.section-dark .sec-index { color: #fff; opacity: .07; }
.sec-head.center .sec-index { right: 50%; transform: translateX(50%); }

/* === SPLIT (free composition) === */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split.reverse { grid-template-columns: .9fr 1.1fr; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media::before {
  content: ""; position: absolute; inset: -14px -14px 24px 24px; z-index: -1;
  border: 1px solid var(--accent); border-radius: var(--radius-lg); opacity: .5;
}
.split.reverse .split-media::before { inset: -14px 24px 24px -14px; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.split-media .tag {
  position: absolute; bottom: -18px; left: -18px; background: var(--accent); color: #fff;
  font-family: var(--font-head); padding: 1rem 1.3rem; border-radius: 8px; box-shadow: var(--shadow);
}
.split-media .tag .n { font-size: 1.7rem; font-weight: 600; display: block; line-height: 1; }
.split-media .tag .l { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.split-body h2 { margin: .8rem 0 1.1rem; }
.split-body p + p { margin-top: 1rem; }
.split-body .btn { margin-top: 1.8rem; }

/* === FEATURES GRID (numbered editorial) === */
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0; }
.feature {
  position: relative; background: transparent; border-top: 1px solid var(--line);
  padding: 2.2rem 1.9rem 2.4rem; transition: var(--trans); overflow: hidden;
}
.feature + .feature { border-left: 1px solid var(--line); }
.feature::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--accent); transition: width .45s cubic-bezier(.2,.7,.2,1);
}
.feature:hover { background: var(--card); }
.feature:hover::before { width: 100%; }
.feature .fnum {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--line); letter-spacing: -.03em; display: block; transition: color var(--trans);
}
.feature:hover .fnum { color: var(--accent); }
.feature h3 { margin: 1.1rem 0 .6rem; }
.feature p { color: var(--muted); font-size: .97rem; }
.section-dark .feature { border-color: var(--line-dark); }
.section-dark .feature + .feature { border-left-color: var(--line-dark); }
.section-dark .feature:hover { background: #ffffff08; }
.section-dark .feature .fnum { color: #ffffff2e; }
@media (max-width: 720px){
  .feature + .feature { border-left: none; }
}

/* === MENU HIGHLIGHTS / DISH LIST === */
.dish-list { display: grid; gap: 0; }
.dish {
  display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.4rem; align-items: baseline;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line);
}
.dish:first-child { border-top: 1px solid var(--line); }
.dish-name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; }
.dish-tags { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-left: .7rem; }
.dish-price { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; white-space: nowrap; }
.dish-desc { grid-column: 1 / -1; color: var(--muted); font-size: .96rem; margin-top: .1rem; }
.section-dark .dish, .section-dark .dish:first-child { border-color: var(--line-dark); }

.menu-cat { margin-top: clamp(2.4rem, 5vw, 4rem); }
.menu-cat:first-of-type { margin-top: 0; }
.menu-cat > h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .4rem; }
.menu-cat > .cat-note { color: var(--muted); margin-bottom: 1rem; }

/* === STATS === */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; text-align: center; }
.stat .n { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: var(--ink); line-height: 1; }
.section-dark .stat .n { color: #ecd9b8; }
.stat .l { display: block; margin-top: .7rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.section-dark .stat .l { color: #b4aa98; }

/* === TESTIMONIALS === */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; }
.quote p { font-size: 1.06rem; }
.quote .stars { color: var(--accent); letter-spacing: .15em; margin-bottom: .9rem; }
.quote .who { margin-top: 1.2rem; font-family: var(--font-head); font-weight: 600; }
.quote .who span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .88rem; }

/* === ENTERTAINMENT / CTA BAND === */
.band { text-align: center; }
.band h2 { margin: 1rem auto 1.1rem; max-width: 22ch; }
.band .btn { margin-top: 1.6rem; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery-grid figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--trans); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(15,12,10,.8)); color: #fff;
  font-size: .85rem; opacity: 0; transform: translateY(8px); transition: var(--trans);
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }
.g-wide { grid-column: span 8; aspect-ratio: 16/9; }
.g-tall { grid-column: span 4; aspect-ratio: 3/4; }
.g-sq   { grid-column: span 4; aspect-ratio: 1; }
.g-half { grid-column: span 6; aspect-ratio: 4/3; }

/* === PAGE HEADER === */
.page-head { position: relative; color: #f4efe6; padding: clamp(5rem,10vw,8rem) 0 clamp(3rem,6vw,4.5rem); overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--dark); }
.page-head.has-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,12,10,.55), rgba(15,12,10,.82)); }
.breadcrumb { font-size: .82rem; color: #cdbfab; letter-spacing: .04em; margin-bottom: 1rem; }
.breadcrumb a:hover { color: #fff; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-head p { color: #e0d6c6; margin-top: 1rem; }

/* === FORM === */
.form-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.rm-form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 6px;
  background: var(--card); color: var(--ink); transition: border-color var(--trans); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--accent); flex: none; }
.form-error { color: #b0331f; font-size: .82rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b0331f; }
.form-aside { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 2rem 1.8rem; }
.form-aside h3 { margin-bottom: 1rem; }
.form-aside ul { display: grid; gap: .9rem; }
.form-aside li { display: grid; gap: .1rem; }
.form-aside .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* === FOOTER === */
.site-footer { background: var(--dark); color: #c7bfb0; padding-top: clamp(3rem,6vw,5rem); }
.footer-grid { max-width: var(--max); margin-inline: auto; padding: 0 var(--pad-x) clamp(2.5rem,5vw,4rem);
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 2.5rem; }
.footer-brandline .brand-mark { background: #f6f4ef; color: var(--dark); }
.footer-brandline .brand-name { color: #f6f4ef; }
.footer-tagline { margin: 1.1rem 0; color: #b3ab9c; }
.footer-legal-note { font-size: .82rem; color: #8f887a; line-height: 1.6; }
.footer-h { font-family: var(--font-head); color: #f6f4ef; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-h-sm { margin-top: 1.8rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: .7rem; line-height: 1.5; }
.footer-hours { display: grid; gap: .45rem; font-size: .9rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed #ffffff1a; padding-bottom: .35rem; }
.footer-help { margin-top: 1.4rem; font-size: .82rem; color: #8f887a; line-height: 1.6; }
.footer-help strong { color: #d9b98a; }
.nowrap { white-space: nowrap; }
.footer-bar { border-top: 1px solid #ffffff14; padding: 1.4rem var(--pad-x); text-align: center; font-size: .8rem; color: #837c6f; }
.footer-bar p { max-width: none; }   /* override global p{max-width:68ch} so centering is true, not left-shifted */
.footer-bar p + p { margin-top: .3rem; }

/* === COOKIE BANNER === */
.rm-cookie {
  position: fixed; left: 50%; transform: translateX(-50%) translateY(140%);
  bottom: 18px; width: min(920px, calc(100% - 24px)); z-index: 150;
  background: var(--dark); color: #e7ddcd; border-radius: 12px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.rm-cookie.show { transform: translateX(-50%) translateY(0); }
.rm-cookie-body { padding: 1.5rem 1.7rem; }
.rm-cookie-body p { font-size: .92rem; max-width: none; margin-bottom: 1.1rem; color: #cdc4b4; }
.rm-cookie-body strong { color: #fff; }
.rm-cookie-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.rm-cookie .btn-ghost { color: #d8cfbe; }
.rm-cookie .btn-outline { color: #f4efe6; box-shadow: inset 0 0 0 1.5px #ffffff55; }
.rm-cookie .btn-outline:hover { box-shadow: inset 0 0 0 1.5px #fff; background: #ffffff12; }

/* === MODALS === */
.rm-modal { position: fixed; inset: 0; z-index: 160; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.rm-modal[hidden] { display: none; }
.rm-modal-backdrop { position: absolute; inset: 0; background: rgba(15,12,10,.6); backdrop-filter: blur(3px); animation: fade .3s; }
.rm-modal-panel {
  position: relative; background: var(--bg); color: var(--ink); border-radius: 14px;
  width: min(560px, 100%); max-height: 88vh; overflow-y: auto; padding: 2.4rem clamp(1.4rem,4vw,2.4rem);
  box-shadow: var(--shadow); animation: pop .35s cubic-bezier(.2,.7,.2,1);
}
.rm-legal-panel { width: min(720px, 100%); }
.rm-modal-x { position: absolute; top: .8rem; right: 1rem; font-size: 1.8rem; line-height: 1; color: var(--muted); width: 40px; height: 40px; }
.rm-modal-x:hover { color: var(--ink); }
.rm-modal h2 { margin-bottom: .8rem; }
.rm-modal-lead { color: var(--muted); margin-bottom: 1.4rem; }
.rm-toggle-row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.rm-toggle-row h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.rm-toggle-row p { font-size: .88rem; color: var(--muted); }
.rm-modal-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* switch */
.rm-switch { position: relative; width: 48px; height: 27px; flex: none; align-self: center; }
.rm-switch input { opacity: 0; width: 0; height: 0; }
.rm-slider { position: absolute; inset: 0; background: var(--line); border-radius: 40px; transition: var(--trans); }
.rm-slider::before { content: ""; position: absolute; width: 21px; height: 21px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--trans); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.rm-switch input:checked + .rm-slider { background: var(--accent); }
.rm-switch input:checked + .rm-slider::before { transform: translateX(21px); }
.rm-switch-locked .rm-slider { opacity: .55; }

/* legal content */
.rm-legal-content h2 { margin-bottom: 1rem; }
.rm-legal-content h3 { margin: 1.4rem 0 .5rem; font-size: 1.12rem; }
.rm-legal-content p, .rm-legal-content li { color: var(--ink); font-size: .95rem; margin-bottom: .5rem; }
.rm-legal-content ul { list-style: disc; padding-left: 1.2rem; margin-bottom: .5rem; }
.rm-legal-content a { color: var(--accent); text-decoration: underline; }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px); } }

/* === SCROLL ANIMATION (hidden states gated on .js — content always shows if JS fails) === */
.reveal { transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.reveal-l { transform: translateX(-44px); }
.js .reveal.reveal-r { transform: translateX(44px); }
.js .reveal.in { opacity: 1; transform: none; }
/* staggered groups */
[data-stagger] > * { transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js [data-stagger] > * { opacity: 0; transform: translateY(30px); }
.js [data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){ transition-delay: .04s; }
[data-stagger].in > *:nth-child(2){ transition-delay: .10s; }
[data-stagger].in > *:nth-child(3){ transition-delay: .16s; }
[data-stagger].in > *:nth-child(4){ transition-delay: .22s; }
[data-stagger].in > *:nth-child(5){ transition-delay: .28s; }
[data-stagger].in > *:nth-child(6){ transition-delay: .34s; }
[data-stagger].in > *:nth-child(7){ transition-delay: .40s; }
[data-stagger].in > *:nth-child(8){ transition-delay: .46s; }
/* clip-path wipe for images — opens from itself OR its revealed parent */
.clip-reveal { transition: clip-path 1.1s cubic-bezier(.66,0,.2,1); }
.js .clip-reveal { clip-path: inset(0 0 100% 0); }
.js .clip-reveal.in,
.js .reveal.in .clip-reveal { clip-path: inset(0 0 0 0); }

/* === THANK YOU === */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.thanks .tick { width: 84px; height: 84px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 2.4rem; margin: 0 auto 1.6rem; }
.thanks .btn { margin-top: 1.8rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.6rem; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/10; }
  .split-media::before, .split.reverse .split-media::before { inset: -10px -10px 18px 18px; }
  .form-wrap { grid-template-columns: 1fr; }
  .g-wide, .g-tall, .g-sq, .g-half { grid-column: span 6; aspect-ratio: 4/3; }
}
@media (max-width: 760px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: var(--bg);
    flex-direction: column; align-items: flex-start; gap: 1.4rem; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform var(--trans); box-shadow: var(--shadow); z-index: 90;
  }
  .nav-menu.open { transform: none; }
  .nav-menu > li { width: 100%; }
  .nav-cta-mobile { display: block; margin-top: .6rem; }
  .nav-cta-mobile .btn { width: 100%; }
  .header-badge { font-size: .68rem; }
}
@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall, .g-sq, .g-half { grid-column: span 12; }
  .rm-cookie-actions .btn { flex: 1 1 auto; }
}

/* focus */
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* =========================================================
   MOTION & BOLD LAYOUT
   ========================================================= */

/* --- hero intro: ken-burns --- */
.hero-media img { transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1.06); } 100% { transform: scale(1.16); } }

/* --- hero intro: line mask reveal --- */
.hero-title { margin: 0 0 1.3rem; }
.hero-title .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.js .hero-title .ln > span { display: block; transform: translateY(115%); animation: lnUp 1.05s cubic-bezier(.19,1,.22,1) forwards; }
.hero-title .ln:nth-child(1) > span { animation-delay: .22s; }
.hero-title .ln:nth-child(2) > span { animation-delay: .36s; }
@keyframes lnUp { to { transform: none; } }

/* --- hero intro: fade-up elements --- */
.js [data-in] { opacity: 0; transform: translateY(24px); animation: inUp 1s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--d, 0s); }
@keyframes inUp { to { opacity: 1; transform: none; } }
.js .hero-side[data-in] { transform: translateY(-50%) rotate(180deg); animation-name: inFade; }
@keyframes inFade { from { opacity: 0; } to { opacity: 1; } }

/* --- marquee band --- */
.marquee { overflow: hidden; background: var(--dark); color: #f4efe6; border-block: 1px solid #ffffff14; }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marq 30s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; padding: 1.05rem 0;
  font-family: var(--font-head); font-weight: 500; font-size: clamp(.95rem, 1.7vw, 1.2rem);
  letter-spacing: .16em; text-transform: uppercase; }
.marquee .dot { color: var(--accent); margin: 0 1.6rem; font-size: .7em; }
@keyframes marq { to { transform: translateX(-50%); } }

/* --- media hover zoom --- */
.media-zoom { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-zoom img { width: 100%; display: block; transition: transform 1s cubic-bezier(.2,.7,.2,1); box-shadow: none; border-radius: 0; }
.split-media:hover .media-zoom img,
.menu-feature-media:hover .media-zoom img { transform: scale(1.06); }
.split-media .media-zoom img { aspect-ratio: 4/5; object-fit: cover; }

/* --- MENU FEATURE layout --- */
.menu-feature { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.menu-feature-media { position: relative; }
.menu-feature-media .media-zoom img { aspect-ratio: 4/5; object-fit: cover; }
.menu-feature-badge {
  position: absolute; top: 1rem; left: 1rem; background: var(--bg); color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .55rem .95rem; border-radius: 40px; box-shadow: var(--shadow);
}
.menu-feature-body .sec-head { margin-bottom: 1.6rem; }

/* --- STATEMENT / pull quote --- */
.statement { position: relative; overflow: hidden; color: #f4efe6; padding-block: clamp(4.5rem, 10vw, 9rem); }
.statement-bg { position: absolute; inset: -18% 0; z-index: -2; will-change: transform; }
.statement-bg img { width: 100%; height: 100%; object-fit: cover; }
.statement::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(15,12,10,.9), rgba(15,12,10,.66)); }
.statement-mark { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(4rem, 9vw, 7rem); line-height: .4; color: var(--accent); height: .42em; }
.statement-text { font-family: var(--font-head); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); line-height: 1.15; max-width: 18ch; text-wrap: balance;
  margin: 1.4rem 0 1.6rem; }
.statement-by { font-family: var(--font-head); font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; font-size: .82rem; color: #e2c39a; }
/* word reveal */
.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .w > span { display: inline-block; transform: translateY(112%); transition: transform .8s cubic-bezier(.19,1,.22,1); }
.reveal-words.in .w > span { transform: none; }

/* --- TESTIMONIALS horizontal scroll --- */
.quotes-scroll { display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem var(--pad-x) 1.4rem; margin-inline: calc(-1 * 0px);
  scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.quotes-scroll::-webkit-scrollbar { display: none; }
.quotes-scroll > .quote { scroll-snap-align: start; flex: 0 0 min(84vw, 400px); }
.wrap + .quotes-scroll { max-width: var(--max); margin-inline: auto; }

/* --- CTA finale --- */
.cta-band { background: var(--dark); color: #f4efe6; }
.cta-band .kicker { color: #e2c39a; }
.cta-band .kicker::before { background: #e2c39a; }
.cta-band .lead { color: #c8c0b2; }
.cta-band h2 { font-size: clamp(2.3rem, 6vw, 4.4rem); margin: 1rem auto 1.2rem; }

/* --- button fill sweep --- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn-accent::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent-hov); transform: translateY(101%); transition: transform .45s cubic-bezier(.4,0,.2,1); }
.btn-accent:hover::before { transform: translateY(0); }
.btn-outline::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); transform: translateY(101%); transition: transform .45s cubic-bezier(.4,0,.2,1); }
.btn-outline:hover { color: var(--bg); }
.btn-outline:hover::before { transform: translateY(0); }
.section-dark .btn-outline:hover, .cta-band .btn-outline:hover { color: var(--ink); }
.section-dark .btn-outline::before, .cta-band .btn-outline::before { background: #f4efe6; }

@media (max-width: 860px) {
  .menu-feature { grid-template-columns: 1fr; gap: 2.4rem; }
  .menu-feature-media .media-zoom img, .split-media .media-zoom img { aspect-ratio: 16/11; }
}

/* =========================================================
   RESERVE PAGE (dedicated layout)
   ========================================================= */
.reserve-hero { display: grid; grid-template-columns: 1fr 1.05fr; min-height: min(64vh, 620px); }
.reserve-hero-media { position: relative; overflow: hidden; }
.reserve-hero-media .media-zoom { height: 100%; border-radius: 0; box-shadow: none; }
.reserve-hero-media .media-zoom img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
.reserve-hero-media:hover .media-zoom img { transform: scale(1.05); }
.reserve-hero-body {
  background: var(--dark); color: #f4efe6; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.4rem, 5vw, 4.5rem);
}
.reserve-hero-body .breadcrumb { color: #b6ac9a; margin-bottom: 1.2rem; }
.reserve-hero-body .breadcrumb a:hover { color: #fff; }
.reserve-hero-body .kicker { color: #e2c39a; }
.reserve-hero-body .kicker::before { background: #e2c39a; }
.reserve-hero-body h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); margin: 1rem 0 1.2rem; line-height: .98; }
.reserve-hero-body .lead { color: #cfc7b8; max-width: 42ch; }
.reserve-quick { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid #ffffff24; }
.reserve-phone { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: #fff; display: inline-block; letter-spacing: -.01em; transition: color var(--trans); }
.reserve-phone:hover { color: #e2c39a; }
.reserve-quick-note { display: block; margin-top: .5rem; font-size: .84rem; letter-spacing: .04em; color: #9d9585; }

.reserve-main .form-heading { margin-bottom: 1.6rem; }
.reserve-main .form-heading h2 { margin-top: .7rem; }
.form-note { font-size: .82rem; color: var(--muted); }

.reserve-aside { display: grid; gap: 1.1rem; align-content: start; }
.info-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.6rem; display: flex; flex-direction: column; }
.info-card .k { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .35rem; }
.info-card a:hover { color: var(--accent); }
.info-card .info-lg { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; }
.info-addr { font-size: 1.05rem; line-height: 1.4; }
.info-addr-note { font-size: .86rem; color: var(--muted); margin-top: .7rem; }
.maps-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; align-self: flex-start;
  font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--accent);
  border-bottom: 1.5px solid transparent; transition: border-color var(--trans); }
.maps-link:hover { border-color: var(--accent); }
.info-card-map { background: linear-gradient(135deg, var(--accent-soft), var(--bg-alt)); }
.hours-list { display: grid; gap: .5rem; margin-top: .4rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .45rem;
  border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours-list li span:last-child { font-family: var(--font-head); font-weight: 500; font-variant-numeric: tabular-nums; }

@media (max-width: 860px) {
  .reserve-hero { grid-template-columns: 1fr; }
  .reserve-hero-media { min-height: 40vh; order: -1; }
}

/* =========================================================
   POKER PAGE & BLOCK
   ========================================================= */

/* --- suits strip (decorative marquee with card symbols) --- */
.suits-strip {
  overflow: hidden; background: var(--dark); border-block: 1px solid #ffffff14;
  padding: .6rem 0; user-select: none;
}
.suits-track {
  display: inline-flex; white-space: nowrap;
  animation: marq 20s linear infinite; will-change: transform;
}
.suits-strip:hover .suits-track { animation-play-state: paused; }
.suits-track span {
  font-size: clamp(1.1rem, 2vw, 1.5rem); padding: 0 clamp(.8rem, 2vw, 1.6rem);
  color: #ffffff3a; transition: color .3s;
}
.suits-track span:nth-child(4n+2),
.suits-track span:nth-child(4n+4) { color: #b0331f44; }

/* --- poker homepage block --- */
.poker-home .kicker { color: #e2c39a; }
.poker-home .kicker::before { background: #e2c39a; }

/* --- poker timeline --- */
.poker-timeline {
  max-width: 680px; margin-inline: auto;
  position: relative; padding-left: 3.2rem;
}
.poker-timeline::before {
  content: ""; position: absolute; left: .9rem; top: .5rem; bottom: .5rem;
  width: 2px; background: var(--line);
}
.tl-item {
  position: relative; padding-bottom: 2.4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.3rem; top: .35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-alt);
  z-index: 1;
}
.tl-time {
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  color: var(--accent); letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  min-width: 4.5rem;
}
.tl-body h3 { margin-bottom: .3rem; }
.tl-body p { color: var(--muted); font-size: .96rem; }

/* --- poker formats (reusing grid-features with suit symbols) --- */
.page-poker .feature .fnum {
  font-size: 2.2rem; color: var(--accent); opacity: 1;
  font-family: inherit; font-weight: 400; letter-spacing: 0;
}
.page-poker .feature:hover .fnum { color: var(--accent-hov); }

/* --- equipment grid --- */
.equip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .8rem; max-width: 820px; margin-inline: auto;
}
.equip-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.3rem; border: 1px solid var(--line-dark);
  border-radius: 8px; transition: var(--trans);
}
.equip-item:hover { background: #ffffff08; border-color: #ffffff30; }
.equip-icon {
  font-size: 1.3rem; color: #d9b98a; flex: none; width: 2rem; text-align: center;
}
.equip-item span:last-child {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
}

/* --- poker schedule table --- */
.poker-schedule-wrap { overflow-x: auto; max-width: 820px; margin-inline: auto; }
.poker-schedule {
  width: 100%; border-collapse: collapse; font-size: .96rem;
}
.poker-schedule th {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  text-align: left; padding: .8rem 1rem; border-bottom: 2px solid var(--line);
}
.poker-schedule td {
  padding: 1rem; border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.poker-schedule tbody tr:hover { background: var(--bg-alt); }

/* --- FAQ accordion --- */
.poker-faq { max-width: 720px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 0;
}
.faq-item summary {
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  padding: 1.3rem 2.2rem 1.3rem 0; cursor: pointer;
  position: relative; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head); font-weight: 300; font-size: 1.6rem;
  color: var(--accent); transition: transform .3s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 0 1.3rem; color: var(--muted); font-size: .96rem; line-height: 1.7;
}
.faq-item a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* === MOTION SAFETY (last — overrides all animation) === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > *, [data-in], .hero-title .ln > span { opacity: 1 !important; transform: none !important; }
  .clip-reveal { clip-path: none !important; }
  .reveal-words .w > span { transform: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.02) !important; }
}
