/* Carl's Townhouse demo site · House424 · Aug 2026
   Palette pulled from their own window decal and building signage:
   navy blue, white, chrome. Checkerboard floor + red vinyl stools show up
   as real photos and small accent touches, never as the whole background. */
:root {
  --navy: #1c3a63;
  --navy-deep: #122744;
  --navy-soft: #3f628f;
  --paper: #fafaf8;
  --ink: #1a1a1a;
  --charcoal: #3d3d3d;
  --muted: #6b6f76;
  --chrome: #c9ced4;
  --chrome-line: #dde1e5;
  --red: #ad2f28;
  --red-deep: #8c231d;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ---- A thin checkerboard strip: the diner-floor nod, used sparingly ---- */
.checker-strip {
  height: 16px;
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%, var(--ink)),
    linear-gradient(45deg, var(--ink) 25%, #fff 25%, #fff 75%, var(--ink) 75%, var(--ink));
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
}

/* ---- Nav ---- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--chrome-line);
}
.navbar { display: flex; align-items: center; gap: 26px; padding: 12px 0; }
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo .script { font-family: 'Pacifico', cursive; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.logo .block { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; color: var(--ink); text-transform: uppercase; }
.navlinks { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.navlinks a { color: var(--charcoal); font-weight: 500; font-size: 0.95rem; }
.navlinks a:hover { color: var(--navy); }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  background: var(--red); color: #fff; transition: transform 0.12s ease, filter 0.12s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn.ghost { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn.small { padding: 9px 18px; font-size: 0.9rem; }
@media (max-width: 720px) { .navlinks a:not(.btn) { display: none; } }

/* ---- Hero ---- */
.hero {
  background: var(--navy-deep);
  padding: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.hero-copy { padding: 84px 44px 64px; color: var(--paper); }
.hero-art { position: relative; overflow: hidden; min-height: 340px; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 24px 40px; }
  .hero-art { min-height: 260px; }
}
.kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #9fc0e8; margin-bottom: 14px;
}
h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.01em;
  max-width: 13ch;
  color: #fff;
}
h1 em { font-style: normal; color: #9fc0e8; }
.hero p.lede { margin: 20px 0 28px; max-width: 46ch; color: #cdd9ea; font-size: 1.08rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.stars-band { margin-top: 30px; display: flex; align-items: center; gap: 12px; color: #cdd9ea; font-size: 0.96rem; }
.stars { color: #e8b84b; letter-spacing: 2px; font-size: 1.05rem; }
.stars-band strong { color: #fff; }

/* ---- Sections ---- */
section { padding: 68px 0; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 800; letter-spacing: -0.01em; margin: 6px 0 14px; color: var(--ink); }
.sub { color: var(--muted); max-width: 60ch; }
.kicker.dark { color: var(--red-deep); }

/* Featured items */
.dishes { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 36px; }
.dish {
  background: #fff; border: 1px solid var(--chrome-line); border-radius: var(--radius);
  padding: 0 0 20px; display: flex; flex-direction: column; gap: 8px; overflow: hidden;
}
.dish .checker-strip { height: 8px; }
.dish-body { padding: 18px 22px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.dish h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.dish p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.dish .price { color: var(--red); font-weight: 800; font-size: 1.1rem; }

/* Story */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; }
.split .photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--chrome-line); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.story-quote {
  margin-top: 18px; padding-left: 16px; border-left: 3px solid var(--red);
  color: var(--ink); font-size: 1.05rem; font-style: italic;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.timeline { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.timeline .row { display: flex; gap: 14px; font-size: 0.95rem; }
.timeline .yr { flex: none; width: 66px; font-weight: 800; color: var(--navy); }
.timeline .ev { color: var(--charcoal); }

/* Hours & location */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 36px; }
.info-card { background: #fff; border: 1px solid var(--chrome-line); border-top: 3px solid var(--navy); border-radius: var(--radius); padding: 24px; }
.info-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--chrome-line); color: var(--muted); }
.hours td:last-child { text-align: right; color: var(--ink); }
.hours tr:last-child td { border-bottom: none; }
.info-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; }
.info-card a.line { display: block; color: var(--ink); font-weight: 600; margin-bottom: 8px; }
.info-card a.line:hover { color: var(--navy); }

/* Closing band */
.order-band {
  background: var(--navy); color: #fff;
  border-radius: var(--radius);
  padding: 44px 40px; text-align: center;
}
.order-band h2 { margin-bottom: 10px; color: #fff; }
.order-band p { color: #cdd9ea; margin-bottom: 24px; }

/* ---- Menu page ---- */
.menu-header { padding: 56px 0 6px; background: var(--navy-deep); }
.menu-header .wrap { padding-bottom: 30px; }
.menu-header .kicker { color: #9fc0e8; }
.menu-header h1 { color: #fff; max-width: none; font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
.menu-note { color: #cdd9ea; font-size: 0.98rem; max-width: 62ch; margin-top: 10px; }
.menu-section { padding: 34px 0 6px; scroll-margin-top: 64px; }
.menu-section h2 { color: var(--navy); font-size: 1.4rem; }
.menu-section h3.subhead { color: var(--ink); font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; margin: 26px 0 0; }
.menu-jump { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 22px; overflow-x: auto; padding-bottom: 6px; }
.menu-jump a {
  display: inline-block; padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #cdd9ea; font-weight: 600; font-size: 0.8rem; white-space: nowrap;
}
.menu-jump a:hover { color: #fff; border-color: #fff; }
.menu-section .served { color: var(--red); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; margin-top: 16px; }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } }
.item { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; border-bottom: 1px dashed var(--chrome-line); }
.item .name { font-weight: 600; color: var(--ink); }
.item .dots { flex: 1; border-bottom: 2px dotted var(--chrome); transform: translateY(-4px); }
.item .price { color: var(--red); font-weight: 700; white-space: nowrap; }
.item-wrap .item { border-bottom: none; }
.item-wrap .desc { color: var(--muted); font-size: 0.87rem; padding: 0 0 8px; margin-top: -4px; }
.disclaimer { color: var(--muted); font-size: 0.85rem; margin: 40px 0 0; max-width: 70ch; }
.specials-card {
  margin-top: 18px; background: var(--navy-deep); color: #fff; border-radius: var(--radius);
  padding: 22px 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px 30px;
}
.specials-card .row { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 8px; }
.specials-card .day { font-weight: 700; color: #9fc0e8; }
.specials-card .what { color: #e8ecf3; text-align: right; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--chrome-line); padding: 0 0 0; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.92rem; padding: 30px 0 40px; }
.foot .credit { font-size: 0.82rem; opacity: 0.8; }
.foot .credit a { color: var(--muted); text-decoration: underline; }
