/* =====================================================================
   Prestoria Lounge — style.css
   Design brief (style_gen.py, mood: ЭЛЕГАНТНЫЙ):
   Swiss modular grid · antiqua/serif display · muted-pastel palette ·
   generous whitespace · elegant/luxury character · geometric accents
   ===================================================================== */

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

/* === VARIABLES === */
:root {
  --bg:          #f7f2ea;
  --bg-alt:      #efe5d8;
  --blush:       #f1e6e2;
  --surface:     #fffdf9;
  --ink:         #2a2521;
  --ink-soft:    #4a433c;
  --muted:       #766b5f;
  --line:        #e2d8c8;
  --line-soft:   #ece3d5;
  --accent:      #9a5a53;   /* muted rosewood */
  --accent-deep: #5d4147;   /* deep plum */
  --gold:        #a98a56;   /* brass hairline, used sparingly */
  --sage:        #566257;   /* muted balance tone */

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap:  1200px;
  --wrap-narrow: 860px;
  --gap:   32px;
  --radius: 3px;      /* sharp, architectural corners */
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px -30px rgba(52,40,32,.35);
}

/* === BASE === */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: .2px; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { max-width: 68ch; }

.kicker {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.kicker--center { justify-content: center; }

.lead { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.muted { color: var(--muted); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .3s var(--ease); background: none; text-align: center;
}
.btn--primary { background: var(--accent); color: #fff8f4; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn--light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: 10px 18px; font-size: .74rem; }
.btn--block { width: 100%; }

.link-more {
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid transparent; padding-bottom: 3px; transition: gap .3s var(--ease), border-color .3s;
}
.link-more::after { content: "→"; transition: transform .3s var(--ease); }
.link-more:hover { border-color: var(--accent); }

.link-inline-accent { color: var(--accent); text-decoration: underline; background: none; border: none; cursor: pointer; font: inherit; padding: 0; }
.link-inline-accent:hover { color: var(--accent-deep); }
.link-more:hover::after { transform: translateX(5px); }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg); }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(52,40,32,.4); }

.header-strip { background: var(--ink); color: #e9e0d3; font-size: .76rem; letter-spacing: .04em; }
.header-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 9px 0; }
.header-strip__badge { color: #cbbfa8; text-align: center; flex: 1; font-size: .72rem; }
.header-strip a:hover { color: #fff; }

.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 46px; height: 46px; border: 1px solid var(--gold); color: var(--accent);
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600; letter-spacing: 1px;
}
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name-main { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.brand__name-sub { font-family: var(--font-body); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.brand--footer { margin-bottom: 22px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; align-items: center; gap: clamp(16px, 1.7vw, 26px); }
.main-nav a {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 6px 0;
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: var(--accent); }
.main-nav a.is-active::after, .main-nav a:hover::after { width: 100%; }
.nav-cta, .nav-close { display: none; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* === HERO === */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,22,18,.35) 0%, rgba(28,22,18,.35) 40%, rgba(24,18,14,.82) 100%);
}
.hero__inner { padding: 0 0 90px; width: 100%; }
.hero__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); align-items: end; }
.hero__content { grid-column: 1 / 9; }
.hero .kicker { color: #e9c9b6; }
.hero .kicker::before { background: #e9c9b6; }
.hero h1 { color: #fff; margin: 22px 0 24px; max-width: 15ch; }
.hero__sub { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300; color: #f2e9dd; max-width: 46ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta { grid-column: 10 / 13; border-left: 1px solid rgba(255,255,255,.28); padding-left: 22px; align-self: end; }
.hero__meta dt { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #d9c3ac; margin-bottom: 3px; }
.hero__meta dd { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 18px; }
.hero__meta dd:last-child { margin-bottom: 0; }

/* Page hero (inner pages) */
.page-hero { position: relative; padding: 90px 0 64px; background: var(--bg-alt); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border: 1px solid var(--line); border-radius: 50%; opacity: .6;
}
.page-hero::after {
  content: ""; position: absolute; right: 40px; bottom: -120px; width: 200px; height: 200px;
  background: var(--blush); border-radius: 50%; opacity: .7; z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { margin: 20px 0 18px; }
.breadcrumb { font-size: .78rem; color: var(--muted); letter-spacing: .04em; margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* === SECTION SCAFFOLD === */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: #ece2d4; }
.section--ink h2, .section--ink h3 { color: #fbf6ee; }
.section--blush { background: var(--blush); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 18px 0 18px; }
.section-head .lead { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* === ABOUT / SPLIT === */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media { grid-column: span 6; position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.split__media--frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); z-index: -1;
}
.split__body { grid-column: span 6; }
.split__body h2 { margin: 18px 0 22px; }
.split--reverse .split__media { order: 2; }
.stat-inline { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat-inline > div { border-top: 1px solid var(--line); padding-top: 12px; }
.stat-inline b { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; display: block; line-height: 1; }
.stat-inline span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* === MENU HIGHLIGHTS / DISH LIST === */
.dish-list { display: grid; gap: 4px; }
.dish {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line-soft);
}
.dish__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.dish__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.dish__tag { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); border: 1px solid var(--line); padding: 2px 8px; }
.dish__desc { color: var(--muted); font-size: .95rem; margin-top: 5px; }
.dish__price { font-family: var(--font-display); font-size: 1.35rem; color: var(--accent); white-space: nowrap; }
.dish__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }

.menu-cat { margin-bottom: 64px; }
.menu-cat__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--ink); padding-bottom: 14px; margin-bottom: 8px; }
.menu-cat__head h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.menu-cat__note { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* === FEATURE CARDS === */
.grid-cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.feature {
  grid-column: span 4; background: var(--surface); padding: 40px 34px 44px;
  display: flex; flex-direction: column; min-height: 260px; transition: background .35s var(--ease), transform .35s var(--ease);
}
.feature:hover { background: var(--bg); }
.feature__num { font-family: var(--font-display); font-size: 1rem; color: var(--gold); letter-spacing: .1em; }
.feature h3 { margin: 22px 0 12px; }
.feature p { color: var(--muted); font-size: .95rem; }
.feature__foot { margin-top: auto; padding-top: 22px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }

/* generic 3-col / 2-col card grids */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 3/2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card__tag { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.card__body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card__body p { color: var(--muted); font-size: .93rem; }
.card__foot { margin-top: auto; padding-top: 20px; }

/* === STATS BAND === */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.08); }
.stats .stat { padding: 44px 24px; text-align: center; background: var(--ink); }
.stat b { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; display: block; color: #fbf6ee; line-height: 1; }
.stat span { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #b6a894; margin-top: 12px; display: block; }

/* === TESTIMONIALS === */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { background: var(--surface); border: 1px solid var(--line-soft); padding: 36px 32px; border-radius: var(--radius); }
.quote__mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--gold); }
.quote p { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.45; margin: 8px 0 22px; color: var(--ink); }
.quote__who { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.quote__who b { color: var(--accent); font-weight: 600; }

/* === CTA BAND === */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(24,18,14,.86), rgba(24,18,14,.55)); }
.cta-band__inner { padding: clamp(64px, 9vw, 120px) 0; max-width: 640px; }
.cta-band h2 { color: #fff; margin: 18px 0 20px; }
.cta-band p { color: #eaddcd; margin-bottom: 30px; }
.cta-band .kicker { color: #e9c9b6; }
.cta-band .kicker::before { background: #e9c9b6; }

/* === ENTERTAINMENT NOTE === */
.ent-teaser { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px,4vw,56px); align-items: center; }
.ent-teaser__media { grid-column: span 5; }
.ent-teaser__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); }
.ent-teaser__body { grid-column: span 7; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.chip { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: 8px 14px; color: var(--ink-soft); }
.age-note { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--muted); margin-top: 8px; }
.age-badge { border: 1px solid var(--accent); color: var(--accent); font-weight: 600; padding: 3px 9px; font-size: .72rem; letter-spacing: .08em; }

/* === INFO / STEPS === */
.steps { counter-reset: step; display: grid; gap: 2px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.step__num { counter-increment: step; font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.info-grid > div { background: var(--surface); padding: 30px 28px; }
.info-grid h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.info-grid p { font-size: .96rem; color: var(--ink-soft); }

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

/* === TEAM === */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team__member { }
.team__photo { aspect-ratio: 3/4; background: var(--blush); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 18px; overflow: hidden; }
.team__initials { font-family: var(--font-display); font-size: 3rem; color: var(--accent); }
.team__member h3 { font-size: 1.35rem; margin-bottom: 4px; }
.team__role { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.team__member p { font-size: .92rem; color: var(--muted); }

/* === TIMELINE === */
.timeline { display: grid; gap: 2px; max-width: 780px; }
.tl { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.tl__year { font-family: var(--font-display); font-size: 1.8rem; color: var(--accent); }
.tl h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tl p { color: var(--muted); font-size: .95rem; }

/* === FORM === */
.form-layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line-soft); padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; font-size: 1rem; transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #a23b34; font-size: .8rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #a23b34; }
.field.has-error .err { display: block; }

.check { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-bottom: 16px; font-size: .9rem; color: var(--ink-soft); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.check a, .check button { color: var(--accent); text-decoration: underline; background: none; border: none; cursor: pointer; font: inherit; padding: 0; }
.check.has-error { color: #a23b34; }

.form-aside { }
.form-aside .info-block { border-top: 1px solid var(--line); padding: 22px 0; }
.form-aside h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.form-aside p, .form-aside a { color: var(--ink-soft); font-size: .96rem; }
.form-aside a:hover { color: var(--accent); }

.form-success { display: none; padding: 24px; background: var(--blush); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 24px; }
.form-success.is-visible { display: block; }

/* === INFO TABLE (poker hand rankings itd.) === */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.info-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
.info-table th, .info-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.info-table thead th { background: var(--ink); color: #f3ead9; font-family: var(--font-body); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover { background: var(--bg); }
.info-table .rank { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); width: 56px; }
.info-table .hand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.info-table .hand-sub { display: block; font-family: var(--font-body); font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.info-table .hand-desc { color: var(--muted); font-size: .92rem; }
.info-table .hand-example { font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; letter-spacing: 2px; }
.suit-red { color: #9a2c2c; }

.suit-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 8px 0 44px; color: var(--gold); font-size: 1.1rem; letter-spacing: 6px; }
.suit-divider::before, .suit-divider::after { content: ""; height: 1px; width: 60px; background: var(--line); }

/* === FAQ === */
.faq { display: grid; gap: 2px; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--muted); font-size: .96rem; }

/* === FOOTER === */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 72px 0 56px; }
.footer-about { color: var(--muted); font-size: .95rem; margin-bottom: 20px; max-width: 40ch; }
.footer-badge { font-size: .78rem; color: var(--accent); font-weight: 500; }
.footer-title { font-family: var(--font-body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 20px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .94rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--accent); }
.footer-hours li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; color: var(--ink-soft); padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.footer-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.footer-contact p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 10px; }
.footer-contact a:hover { color: var(--accent); }
.footer-cookie-link { background: none; border: none; color: var(--accent); text-decoration: underline; cursor: pointer; font: inherit; font-size: .9rem; margin-top: 8px; padding: 0; }

.footer-legal { border-top: 1px solid var(--line); }
.footer-legal__inner { padding: 32px 0 40px; }
.footer-disclaimer { font-size: .82rem; color: var(--muted); line-height: 1.7; max-width: 100%; margin-bottom: 18px; }
.footer-disclaimer strong { color: var(--ink-soft); }
.footer-legal__links { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 16px; }
.footer-legal__links button { background: none; border: none; cursor: pointer; font: inherit; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); padding: 0; }
.footer-legal__links button:hover { color: var(--accent); }
.footer-copy { font-size: .8rem; color: var(--muted); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; background: var(--ink); color: #ece2d4;
  box-shadow: 0 -10px 40px -20px rgba(0,0,0,.6); transform: translateY(110%); transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: none; }
.cookie-banner__inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 22px 0; }
.cookie-banner__text p { font-size: .9rem; color: #d7cbb9; max-width: 70ch; }
.cookie-banner__text .link-inline { color: #e9c9b6; text-decoration: underline; background: none; border: none; cursor: pointer; font: inherit; padding: 0; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn--ghost { border-color: rgba(255,255,255,.4); color: #ece2d4; }
.cookie-banner .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* === MODAL === */
.modal { position: fixed; inset: 0; z-index: 160; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(26,20,15,.55); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative; background: var(--bg); border-radius: var(--radius); max-width: 560px; width: 100%;
  max-height: 88vh; overflow-y: auto; padding: 44px 40px; box-shadow: var(--shadow);
  animation: pop .4s var(--ease);
}
.modal__panel--wide { max-width: 720px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--muted); cursor: pointer; }
.modal__close:hover { color: var(--accent); }
.modal__title { margin-bottom: 16px; }
.modal__intro { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.modal__actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; margin-top: 28px; }

.consent-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.consent-row h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.consent-row p { font-size: .86rem; color: var(--muted); }
.switch { position: relative; width: 48px; height: 26px; display: inline-block; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: .3s; cursor: pointer; }
.switch span::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .3s; }
.switch input:checked + span { background: var(--accent); }
.switch input:checked + span::before { transform: translateX(22px); }
.switch--locked span { background: var(--sage); cursor: not-allowed; }

/* === LEGAL DOC === */
.legal-doc h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 22px 0 8px; }
.legal-doc p, .legal-doc li { font-size: .93rem; color: var(--ink-soft); line-height: 1.7; max-width: 100%; }
.legal-doc ul { list-style: disc; padding-left: 22px; margin: 8px 0; }
.legal-doc li { margin-bottom: 6px; }

body.no-scroll { overflow: hidden; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__content { grid-column: 1 / 10; }
  .hero__meta { grid-column: 1 / 13; border-left: none; border-top: 1px solid rgba(255,255,255,.28); padding: 22px 0 0; margin-top: 30px; display: flex; gap: 40px; }
  .hero__meta dd { margin-bottom: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .form-layout { grid-template-columns: 1fr; }
  .feature { grid-column: span 6; }
  .quotes { grid-template-columns: 1fr; }
  .quote { max-width: 640px; }
}

@media (max-width: 860px) {
  .header-strip__badge { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); background: var(--bg);
    flex-direction: column; align-items: stretch; gap: 0; padding: 90px 34px 40px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow); z-index: 130;
  }
  .main-nav.is-open { transform: none; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line-soft); }
  .main-nav a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav-cta { display: inline-flex; margin-top: 26px; }
  .nav-close { display: block; position: absolute; top: 22px; right: 26px; background: none; border: none; font-size: 2rem; color: var(--ink); cursor: pointer; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(26,20,15,.5); z-index: 120; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .split__media, .split__body,
  .ent-teaser__media, .ent-teaser__body,
  .hero__content { grid-column: 1 / -1; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/10; }

  .grid-cards { grid-template-columns: 1fr; }
  .feature { grid-column: span 1; min-height: auto; }
  .info-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-banner__actions .btn { flex: 1; }

  .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 6; aspect-ratio: 4/3; }
  .team { grid-template-columns: 1fr; max-width: 340px; }
  .tl { grid-template-columns: 80px 1fr; gap: 18px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .header-strip__inner { justify-content: center; }
  .header-strip__inner span:first-child { display: none; }
  .brand__name-main { font-size: 1.4rem; }
  .hero { min-height: 84vh; }
  .hero__inner { padding-bottom: 60px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-inline { gap: 26px; }
  .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 12; }
  .modal__panel { padding: 36px 24px; }
  .dish { grid-template-columns: 1fr; }
  .dish__price { margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
