/* The Rooftop Bar & Bistro, demo site for House424
   Palette pulled from the room itself: near-black walls, cream swan, amber
   beer, and the dusty rose their printed menu uses for headers. */

@font-face { font-family: 'Bebas'; font-weight: 400; font-display: swap; src: url('fonts/BebasNeue-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 100 900; font-display: swap; src: url('fonts/Inter-400.woff2') format('woff2'); }

:root {
  --ink: #0B0A0A;
  --ink-2: #131011;
  --ink-3: #1B1617;
  --cream: #F4EDE1;
  --muted: #A29689;
  --amber: #E8A33D;
  --rose: #D2718D;
  --line: rgba(244, 237, 225, 0.13);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* clears the fixed action bar */
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--wrap), calc(100% - 44px)); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: 'Bebas', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.92;
  text-transform: uppercase;
}

.kicker {
  font-family: 'Bebas', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 10, 10, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-txt { font-family: 'Bebas', sans-serif; font-size: 1.32rem; letter-spacing: 0.09em; line-height: 1; }
.brand-txt span { display: block; font-size: 0.62rem; letter-spacing: 0.34em; color: var(--muted); margin-top: 3px; }
.navlinks { display: flex; align-items: center; gap: 28px; }
.navlinks a {
  font-family: 'Bebas', sans-serif; font-size: 1.06rem; letter-spacing: 0.15em;
  color: var(--cream); opacity: 0.82; transition: opacity 0.2s, color 0.2s;
}
.navlinks a:hover { opacity: 1; color: var(--amber); }
.btn {
  display: inline-block; font-family: 'Bebas', sans-serif; font-size: 1.06rem;
  letter-spacing: 0.15em; padding: 9px 20px 7px; border-radius: 999px;
  background: var(--amber); color: #16110A; transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 0 rgba(232, 163, 61, 0);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232, 163, 61, 0.36); }
.btn.ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--amber); color: var(--amber); box-shadow: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 20% 100%, rgba(232, 163, 61, 0.16), transparent 60%),
    linear-gradient(to top, rgba(11, 10, 10, 0.97) 2%, rgba(11, 10, 10, 0.92) 22%, rgba(11, 10, 10, 0.62) 46%, rgba(11, 10, 10, 0.24) 74%, rgba(11, 10, 10, 0.62) 100%);
}
.hero-in { position: relative; z-index: 2; padding: 0 0 66px; }
.hero .kicker { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9); }
.hero h1 { font-size: clamp(3.3rem, 9.2vw, 7.4rem); max-width: 15ch; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p.sub { margin-top: 20px; font-size: clamp(1.02rem, 1.7vw, 1.24rem); max-width: 56ch; color: #E9E0D2; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--amber); color: #16110A; overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee span {
  font-family: 'Bebas', sans-serif; font-size: 1.16rem; letter-spacing: 0.2em;
  padding: 10px 0; white-space: nowrap;
}
.marquee span i { font-style: normal; opacity: 0.45; padding: 0 22px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- facts strip ---------- */
.facts { background: var(--ink-2); border-bottom: 1px solid var(--line); }
.facts-in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.fact { padding: 22px 26px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact .lab { font-family: 'Bebas', sans-serif; letter-spacing: 0.22em; font-size: 0.8rem; color: var(--muted); }
.fact .val { font-family: 'Bebas', sans-serif; font-size: 1.62rem; letter-spacing: 0.03em; margin-top: 5px; }
.fact .val a:hover { color: var(--amber); }
.fact .note { font-size: 0.86rem; color: var(--muted); margin-top: 2px; }

/* ---------- generic section ---------- */
section { padding: 92px 0; }
.sec-head { max-width: 62ch; }
.sec-head h2 { font-size: clamp(2.5rem, 5.4vw, 4rem); margin-top: 10px; }
.sec-head p { margin-top: 16px; color: #D8CCBC; }

/* ---------- the three rooms ---------- */
.rooms { display: grid; gap: 26px; margin-top: 52px; }
.room {
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 0;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.room:nth-child(even) .room-img { order: 2; }
/* The image fills whatever height the text column sets, so a portrait crop and a
   landscape crop still produce rows of the same height. */
.room-img { position: relative; min-height: 380px; }
.room-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-txt { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
.room-txt h3 { font-size: 2.35rem; margin: 8px 0 14px; }
.room-txt p { color: #D6CABA; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-family: 'Bebas', sans-serif; font-size: 0.88rem; letter-spacing: 0.14em;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px 3px; color: var(--muted);
}

/* ---------- food ---------- */
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.dish {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.dish:hover { transform: translateY(-5px); border-color: rgba(232, 163, 61, 0.4); }
.dish-img { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-txt { padding: 20px 22px 24px; }
.dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.dish h3 { font-size: 1.52rem; }
.dish .price { font-family: 'Bebas', sans-serif; font-size: 1.42rem; color: var(--amber); white-space: nowrap; }
.dish p { font-size: 0.94rem; color: var(--muted); margin-top: 7px; line-height: 1.55; }
.dish .say { font-size: 0.9rem; color: var(--rose); margin-top: 10px; font-style: italic; }

/* Feature card: where a photo would go, the review goes instead. Reads as a
   deliberate treatment rather than a missing image. */
.dish.feature { border-color: rgba(232, 163, 61, 0.34); }
.dish .dish-quote {
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; justify-content: center;
  padding: 24px 26px; border-bottom: 1px solid var(--line);
  background: radial-gradient(130% 100% at 50% 0%, rgba(232, 163, 61, 0.17), transparent 66%), var(--ink-3);
}
/* Specificity has to beat `.dish p`, which would otherwise shrink these to body size. */
.dish .dq-line {
  font-family: 'Bebas', sans-serif; text-transform: uppercase; letter-spacing: 0.015em;
  font-size: clamp(1.55rem, 2.4vw, 2rem); line-height: 1.02; color: var(--cream); margin-top: 0;
}
.dish .dq-line b { color: var(--amber); font-weight: 400; }
.dish .dq-by { font-size: 0.82rem; color: var(--muted); margin-top: 14px; letter-spacing: 0.04em; }
.dish .flag {
  display: inline-block; font-family: 'Bebas', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.16em; color: var(--amber); border: 1px solid rgba(232, 163, 61, 0.4);
  border-radius: 999px; padding: 3px 11px 1px; margin-bottom: 9px;
}

/* ---------- reviews ---------- */
.reviews { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pull {
  max-width: 30ch; font-family: 'Bebas', sans-serif; font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  line-height: 1.02; margin-top: 14px;
}
.pull .hi { color: var(--amber); }
.pull-by { font-family: 'Inter', sans-serif; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--muted); text-transform: none; margin-top: 16px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.q { background: var(--ink-3); border: 1px solid var(--line); border-left: 3px solid var(--rose); border-radius: 12px; padding: 24px 26px; }
.q p { font-size: 0.98rem; color: #DDD2C4; }
.q .who { font-size: 0.86rem; color: var(--muted); margin-top: 14px; }
.stars { color: var(--amber); letter-spacing: 0.1em; font-size: 0.9rem; }

/* ---------- kids ---------- */
.kids { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.kids-img img { border-radius: 16px; border: 1px solid var(--line); }
.bitty { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 20px; }
.bitty ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.bitty li {
  font-family: 'Bebas', sans-serif; letter-spacing: 0.1em; font-size: 0.95rem;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 8px; padding: 6px 13px 4px;
}

/* ---------- visit ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.hours { width: 100%; border-collapse: collapse; margin-top: 22px; }
.hours td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-family: 'Bebas', sans-serif; font-size: 1.24rem; letter-spacing: 0.04em; }
.hours tr.closed td { color: var(--muted); }
.addr { font-family: 'Bebas', sans-serif; font-size: 2rem; line-height: 1.12; margin-top: 8px; }
.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- signature band (their own wall sign) ---------- */
.signature { padding: 78px 0; text-align: center; border-top: 1px solid var(--line); }
.sig-line {
  font-family: 'Bebas', sans-serif; text-transform: uppercase;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem); line-height: 0.98; letter-spacing: 0.02em;
}
.sig-line span { color: var(--amber); }
.sig-note { font-size: 0.9rem; color: var(--muted); margin-top: 16px; letter-spacing: 0.04em; }

/* ---------- footer ---------- */
footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 48px 0 40px; }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-in img { width: 62px; height: 62px; border-radius: 50%; }
.foot-note { font-size: 0.85rem; color: var(--muted); }

/* ---------- fixed action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(11, 10, 10, 0.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.actionbar a {
  padding: 19px 8px 16px; text-align: center;
  font-family: 'Bebas', sans-serif; font-size: 1.06rem; letter-spacing: 0.16em;
  transition: background 0.18s, color 0.18s;
}
.actionbar a + a { border-left: 1px solid var(--line); }
.actionbar a:hover { background: var(--amber); color: #16110A; }

/* ---------- menu page ---------- */
.menu-hero { padding: 74px 0 54px; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.menu-hero h1 { font-size: clamp(3rem, 8vw, 5.6rem); margin-top: 10px; }
.menu-hero p { margin-top: 14px; color: var(--muted); max-width: 60ch; }
.menu-cols { columns: 2; column-gap: 54px; }
.mgroup { break-inside: avoid; margin-bottom: 44px; }
.mgroup h2 { font-size: 2.1rem; color: var(--amber); padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mgroup .note { font-size: 0.88rem; color: var(--muted); font-style: italic; margin-top: 10px; }
.mitem { margin-top: 20px; }
.mitem .row { display: flex; align-items: baseline; gap: 12px; }
.mitem .nm { font-family: 'Bebas', sans-serif; font-size: 1.34rem; letter-spacing: 0.03em; }
.mitem .dots { flex: 1; border-bottom: 1px dotted rgba(244, 237, 225, 0.24); transform: translateY(-4px); }
.mitem .pr { font-family: 'Bebas', sans-serif; font-size: 1.28rem; color: var(--amber); }
.mitem .de { font-size: 0.92rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.sauces { font-size: 0.92rem; color: #D6CABA; margin-top: 14px; }
.sauces b { color: var(--cream); }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .navlinks a:not(.btn) { display: none; }
  .room, .kids, .visit { grid-template-columns: 1fr; }
  .room:nth-child(even) .room-img { order: 0; }
  .room-img { min-height: 260px; }
  .room-txt { padding: 32px 28px; }
  .food-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .facts-in { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .menu-cols { columns: 1; }
  section { padding: 68px 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .food-grid, .quotes { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-in { padding-bottom: 44px; }
  .brand-txt { font-size: 1.12rem; }
  .kids { gap: 32px; }
}
