/* Launch page: the site is one printed menu. Mobile first. Palette from CLAUDE.md. */
:root {
  --bg: #FAFAF7;
  --ink: #1B1815;
  --muted: #66625C;
  --rule: #E6E3DD;
  --orange: #DC8A3C;
  --orange-text: #9A5518;
  --serif: Newsreader, Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.5 var(--sans); -webkit-font-smoothing: antialiased; }
h1, h2, h3, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; }
em { font-style: italic; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
::selection { background: #F2C98E; }

/* The sheet: a narrow centred page with a thin double frame, like a printed card */
.sheet { width: min(760px, 100% - var(--gutter) * 2); margin: 20px auto; padding: 48px 20px 32px; border: 1px solid var(--ink); outline: 1px solid var(--ink); outline-offset: 4px; text-align: center; }

/* Masthead */
.logo { display: inline-flex; align-items: center; gap: .36em; font: 500 clamp(44px, 12vw, 72px)/1 var(--serif); letter-spacing: -.02em; }
.logo svg { width: 1.02em; height: .68em; transform: translateY(-.09em); fill: currentColor; }
.tagline { margin-top: 20px; font: 500 clamp(22px, 5.4vw, 30px)/1.25 var(--serif); text-wrap: balance; }
.sub { margin-top: 10px; color: var(--muted); font-size: 16px; }

/* Courses: a short amber rule, the course name, then the dishes */
.course { margin-top: 56px; }
.course h2, .signup-wrap h2 { font: italic 500 clamp(32px, 8vw, 44px)/1.1 var(--serif); }
.course h2::before, .signup-wrap h2::before { content: ""; display: block; width: 40px; height: 2px; margin: 0 auto 20px; background: var(--orange); }
.group { margin: 28px 0 4px; font-size: 14px; font-weight: 600; color: var(--orange-text); }
.dishes { text-align: left; }
.dishes li { padding-block: 16px; }
.dishes li + li { border-top: 1px solid var(--rule); }
.dish { display: flex; align-items: baseline; gap: 10px; width: 100%; padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.name { font: 500 21px/1.25 var(--serif); transition: color .2s; }
.dots { flex: 1; min-width: 16px; border-bottom: 2px dotted color-mix(in srgb, var(--ink) 28%, transparent); transform: translateY(-5px); }
.soon { flex: none; font-size: 14px; font-weight: 600; color: var(--muted); }
.desc { margin-top: 6px; max-width: 520px; color: var(--muted); font: italic 400 17px/1.45 var(--serif); }
.dish:hover .name { color: var(--orange-text); }
.dish:hover .soon { color: var(--ink); }

/* Names we are holding back: a solid ink bar */
.redact { display: inline-block; width: 4.2em; height: .74em; vertical-align: -.04em; overflow: hidden; color: transparent; user-select: none; background: var(--ink); border-radius: 1px; }

/* Signup */
.signup-wrap { margin-top: 64px; padding-top: 8px; }
.signup { display: grid; gap: 10px; margin-top: 24px; text-align: left; }
.signup input[type=email], .signup select { width: 100%; min-width: 0; height: 52px; padding: 0 16px; border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent); border-radius: 2px; background: #fff; color: var(--ink); font: 16px var(--sans); }
.signup select { appearance: none; padding-right: 40px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2366625C' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat right 16px center; }
.signup input:focus, .signup select:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
.btn { min-height: 52px; padding: 0 24px; border: 0; border-radius: 2px; background: var(--ink); color: var(--bg); font-weight: 600; font-size: 15px; cursor: pointer; transition: background-color .2s; }
.btn:hover { background: #3A342E; }
.btn:disabled { opacity: .6; cursor: default; }
.hp { position: absolute; left: -9999px; }
.form-msg { min-height: 24px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--muted); }
.form-msg.ok { color: var(--ink); }
.form-msg.err { color: var(--orange-text); }

/* The small print, where a menu keeps its notes */
.fine { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--rule); }
.fine p { max-width: 620px; margin-inline: auto; color: var(--muted); font-size: 14px; line-height: 1.6; }
.fine p + p { margin-top: 14px; font-weight: 600; }
.fine a { text-decoration-color: var(--rule); text-underline-offset: 4px; }
.fine a:hover { text-decoration-color: var(--orange); }

@media (min-width: 640px) {
  .sheet { margin-block: 48px; padding: 72px 56px 40px; outline-offset: 6px; }
  .course { margin-top: 72px; }
  .name { font-size: 24px; }
  .signup { display: flex; flex-wrap: wrap; }
  .signup input[type=email] { flex: 1 1 240px; width: auto; }
  .signup select { flex: 0 1 230px; width: auto; }
}
