/* ==========================================================================
   BRASA THEME — Restaurant & Fine Dining
   Design language: candle-lit charcoal, antique gold, classic serif
   (Cormorant Garamond) with airy Jost body text and script signatures.
   Light variants (bistro / café) use warm cream tokens.
   ========================================================================== */
:root {
  --bg: #f6f0e6; --bg-2: #efe5d5; --surface: #fffaf2; --surface-2: #f1e7d6;
  --text: #221a12; --muted: #6f6254; --line: rgba(34, 26, 18, .14);
  --primary: #a8783e; --primary-2: #c9a36b; --accent: #c9a36b; --on-primary: #fff;
  --font-head: "Cormorant Garamond", Georgia, serif; --font-body: "Jost", sans-serif;
  --font-logo: "Pinyon Script", cursive; --logo-weight: 400; --logo-size: 2.1rem; --logo-tracking: 0;
  --head-weight: 600; --head-tracking: -0.01em;
  --radius-sm: 4px; --radius: 6px; --radius-lg: 10px; --radius-btn: 2px;
  --gradient: linear-gradient(135deg, #c9a36b, #8a6a3d);
}
[data-theme="dark"] {
  --bg: #0f0d0b; --bg-2: #16130f; --surface: #1a1611; --surface-2: #221d16;
  --text: #efe6d6; --muted: #a89c8a; --line: rgba(201, 163, 107, .2);
  --primary: #c9a36b; --on-primary: #0f0d0b;
}
body { font-weight: 300; letter-spacing: .01em; }
body.cafe { --primary: #b5562f; --accent: #e7a86c; --bg: #fbf5ec; --bg-2: #f4e8d6; }
.logo__mark { display: none; }
.logo { line-height: .8; }
.hero__title em, .h2 em, .page-header h1 em { font-style: italic; color: var(--primary); font-weight: 500; }
.eyebrow { font-family: var(--font-body); font-weight: 400; letter-spacing: .3em; color: var(--primary); }
.eyebrow::before { display: none; }
.section-head--center .eyebrow::after, .section-head--center .eyebrow::before { content: ""; display: block; width: 30px; height: 1px; background: currentColor; }
.btn { text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 500; }
.btn::after { background: rgba(255,255,255,.18); }
.btn--ghost { border-color: var(--primary); --btn-fg: var(--text); }
.btn--light { --btn-bg: var(--primary-2); --btn-fg: #0f0d0b; }
.nav__link { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.icon-box { border-radius: 50%; background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.card { background: var(--surface); }
.card:hover { transform: none; }
.stat__num { font-weight: 500; color: var(--primary); }
.cta-box { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.cta-box::before, .cta-box::after { border: 1px solid var(--line); background: transparent; }
.cta-box .btn--light { --btn-bg: var(--primary); --btn-fg: var(--on-primary); }
.cta-box .btn--ghost { --btn-fg: var(--text) !important; border-color: var(--primary) !important; }
.site-footer { background: #0b0a08; color: #efe6d6; --text: #efe6d6; --muted: #a89c8a; --line: rgba(201,163,107,.2); --primary: #c9a36b; --on-primary: #0f0d0b; --surface: #1a1611; }
.footer-mega { opacity: .1; font-weight: 400; letter-spacing: 0; color: #c9a36b; }
.text-band { border-color: var(--line); }
.text-band .marquee__track span { font-style: italic; font-weight: 500; }
.text-band .marquee__track .ti { color: var(--primary); }
.member__img img, .media img { filter: saturate(.9); }
.stars { color: var(--primary-2); }

/* Fine dining hero ------------------------------------------------------ */
.b-hero { align-items: center; }
.b-hero .hero__title { max-width: 12ch; margin-inline: auto; font-size: clamp(3rem, 9vw, 8.4rem); font-weight: 500; line-height: .95; }
.b-hero .hero__title em { color: var(--primary-2); }
.b-hero .btn:not(.btn--ghost) { --btn-bg: #c9a36b; --btn-fg: #0f0d0b; }
.b-hero .btn--ghost { border-color: rgba(255,255,255,.5); }
.b-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; letter-spacing: .28em; text-transform: uppercase; color: var(--primary-2); margin-bottom: 18px; }
.b-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 1024px) { .b-feats { grid-template-columns: repeat(4, 1fr); } .b-feats > div + div { border-left: 1px solid var(--line); } }
.b-feats h3 { font-size: 1.5rem; margin: 14px 0 4px; }
.b-feats p { color: var(--muted); margin: 0; font-size: .92rem; }
.b-ic { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--primary); color: var(--primary); font-size: 1.6rem; }
.b-arch img { width: 100%; aspect-ratio: 9/11; border-radius: 400px 400px var(--radius) var(--radius); }
.b-sign { font-family: var(--font-logo); font-size: 3rem; color: var(--primary); margin: 24px 0 0; line-height: 1; }

/* Menu ------------------------------------------------------------------ */
.b-tabs { justify-content: center; }
.tabs__btn { border-radius: 2px; text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; border-color: var(--line); }
.tabs__btn.is-active, .tabs__btn:hover { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.menu-list { display: grid; gap: 8px; }
.tabs__panel .menu-list { grid-template-columns: 1fr; column-gap: 56px; }
@media (min-width: 1024px) { .tabs__panel .menu-list { grid-template-columns: 1fr 1fr; } }
.dish { display: flex; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.dish__img { flex: none; width: 76px; height: 76px; border-radius: 50%; }
.dish__body { flex: 1; min-width: 0; }
.dish__row { display: flex; align-items: baseline; gap: 12px; }
.dish h3 { margin: 0; font-size: 1.45rem; }
.dish__dots { flex: 1; border-bottom: 1px dotted var(--muted); opacity: .5; transform: translateY(-5px); }
.dish b { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); }
.dish p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; }
.menu-blocks { display: grid; gap: clamp(64px, 8vw, 110px); }
.menu-block .h2 { margin-bottom: 32px; }

/* Gallery strip & masonry ---------------------------------------------- */
.b-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: center; }
.b-gallery img { width: 100%; border-radius: var(--radius); }
.b-gallery img:nth-child(odd) { aspect-ratio: 6/7.6; } .b-gallery img:nth-child(even) { aspect-ratio: 6/5.2; }
.b-gallery img:nth-child(5) { display: none; }
@media (min-width: 1024px) { .b-gallery { grid-template-columns: repeat(5, 1fr); } .b-gallery img:nth-child(5) { display: block; } }
.masonry { columns: 2 220px; column-gap: 16px; }
@media (min-width: 1024px) { .masonry { columns: 3; } }
.masonry img { width: 100%; margin-bottom: 16px; border-radius: var(--radius); break-inside: avoid; }

/* Hours & booking ------------------------------------------------------- */
.hours { border-top: 1px solid var(--line); }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.hours b { font-weight: 500; color: var(--primary); }
.booking .input, .booking .select, .booking .textarea { border-radius: 2px; background: transparent; }
.b-note { display: flex; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); }
.b-note .ti { color: var(--primary); font-size: 1.3rem; }
.b-map { display: grid; place-items: center; align-content: center; gap: 8px; color: var(--muted); }
.b-map .ti { font-size: 2.4rem; color: var(--primary); }

/* Bistro ---------------------------------------------------------------- */
.b-bistro .hero__title { font-size: clamp(2.8rem, 6.4vw, 6rem); }
.b-plate img { border-radius: 50% !important; aspect-ratio: 1 !important; box-shadow: 0 40px 80px -30px rgba(34,26,18,.5); }
.b-rate { left: 0; bottom: 8%; }
.special { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.special img { width: 100%; aspect-ratio: 7/5.2; }
.special div { padding: 22px; display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; }
.special h3 { margin: 0; font-size: 1.5rem; }
.special p { margin: 0; color: var(--muted); grid-row: 2; }
.special b { grid-row: 1 / span 2; grid-column: 2; font-family: var(--font-head); font-size: 1.6rem; color: var(--primary); }

/* Steakhouse ------------------------------------------------------------ */
.b-steak .hero__title { font-size: clamp(3rem, 9vw, 8.6rem); font-weight: 700; text-transform: uppercase; line-height: .9; letter-spacing: -0.02em; }
.b-steak .hero__title em { display: block; }
.b-steak .hero__row { align-items: center; }
.b-steak .stats { margin-top: 36px; grid-template-columns: repeat(2, 1fr); }
.b-steak .media img { aspect-ratio: 11/7; }
.cut { position: relative; overflow: hidden; border-radius: var(--radius); }
.cut img { width: 100%; aspect-ratio: 1; transition: transform 1.2s var(--ease); }
.cut:hover img { transform: scale(1.08); }
.cut__body { position: absolute; inset: auto 0 0; padding: 60px 20px 18px; background: linear-gradient(transparent, rgba(0,0,0,.85)); color: #efe6d6; display: grid; grid-template-columns: 1fr auto; gap: 0 12px; }
.cut h3 { margin: 0; font-size: 1.45rem; }
.cut p { margin: 0; font-size: .85rem; opacity: .75; grid-row: 2; }
.cut b { grid-row: 1 / span 2; grid-column: 2; align-self: center; font-family: var(--font-head); font-size: 1.6rem; color: #c9a36b; }

/* Café ------------------------------------------------------------------ */
.b-cafe .hero__title { font-size: clamp(2.8rem, 7vw, 6.4rem); max-width: 15ch; }
.b-cafe .b-kicker { color: var(--primary); }
.b-circles { display: flex; justify-content: center; align-items: center; gap: clamp(12px, 3vw, 40px); margin-top: clamp(48px, 7vw, 90px); }
.b-circles img { border-radius: 50%; width: 26%; aspect-ratio: 1; box-shadow: 0 30px 60px -30px rgba(34,26,18,.5); }
.b-circles img:nth-child(2) { width: 36%; }
.cafe .card { border-radius: 24px; }
.cafe .icon-box { border-color: var(--primary); }
.b-hero::before { background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10,8,6,.78), rgba(10,8,6,.5) 70%, rgba(10,8,6,.75)); }
:root { --logo-size: 2.4rem; }
