/* =============================================================================
   nordic-mono — типографический минимализм, без иллюстраций.
   Один файл, без зависимостей. Все шрифты системные.
   ============================================================================= */

:root {
  --bg:        #fafaf9;
  --bg-alt:   #f4f4f1;
  --text:     #18181b;
  --muted:    #71717a;
  --line:     #e7e5e4;
  --accent:   #c2410c;
  --accent-soft: #fed7aa;

  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
           Roboto, "Helvetica Neue", Arial, sans-serif;

  --w-page: 980px;
  --w-narrow: 680px;
}

* { box-sizing: border-box; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--text); text-decoration-color: var(--line); text-underline-offset: 3px; }
a:hover { color: var(--accent); text-decoration-color: var(--accent); }

.skip {
  position: absolute; left: -1000px; top: -1000px;
  background: var(--text); color: var(--bg); padding: 12px 16px;
}
.skip:focus { left: 12px; top: 12px; z-index: 100; }

.wrap   { max-width: var(--w-page);   margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--w-narrow); margin: 0 auto; }

/* === Header ============================================================== */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { color: var(--accent); font-size: 22px; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 19px; letter-spacing: 0.01em; }
.nav { display: flex; gap: 22px; }
.nav a { font-size: 15px; text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); }

@media (max-width: 600px) {
  .site-header .wrap { flex-direction: column; gap: 14px; align-items: flex-start; }
  .nav { gap: 18px; }
}

/* === Hero ================================================================ */

.hero { padding: 96px 0 72px; border-bottom: 1px solid var(--line); }
.hero .kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; }
.hero .title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 64px); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 28px; max-width: 760px; }
.hero .lead { font-size: 19px; color: var(--text); max-width: 620px; margin: 0 0 32px; }
.hero-meta { color: var(--muted); font-size: 14px; margin: 0 0 36px; }
.hero-meta .dot { padding: 0 10px; color: var(--line); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Buttons ============================================================= */

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-size: 15px; text-decoration: none; transition: all 120ms ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--bg); }
.btn-ghost { color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

/* === Sections ============================================================ */

.section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }

.eyebrow { color: var(--muted); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 14px; }
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -0.005em; margin: 0; }
.h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; margin: 36px 0 14px; }
.mb-l { margin-bottom: 36px; }

.two-col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }

.prose p { margin: 0 0 16px; max-width: 60ch; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 0 0 16px 1.2em; padding: 0; max-width: 60ch; }
.prose ul li { margin-bottom: 6px; }

.link-arrow { color: var(--accent); text-decoration: none; }
.link-arrow:hover { color: var(--text); text-decoration: underline; }

/* === Cards (featured menu) =============================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
}
.card-eyebrow { color: var(--muted); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 12px; }
.card-title { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.2; margin: 0 0 6px; }
.card-sub { color: var(--text); font-size: 14px; margin: 0 0 14px; }
.card-note { color: var(--muted); font-size: 14px; margin: 0 0 20px; min-height: 40px; }
.card-price { color: var(--accent); font-family: var(--serif); font-size: 19px; margin: 0; }

.more { margin-top: 36px; }

/* === Notes (blog teasers) ================================================ */

.notes { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; }
.notes li { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.notes li:last-child { border-bottom: 0; }
.note-date { color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 8px; }
.note-title { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.25; margin: 0 0 10px; }
.note-lead { color: var(--text); font-size: 16px; max-width: 60ch; margin: 0; }

/* === Article (menu/about/contact) ======================================== */

.article { padding: 72px 0 96px; }
.article .kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 16px; }
.article .title  { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 52px); line-height: 1.1; margin: 0 0 24px; }
.article .lead   { font-size: 19px; color: var(--text); max-width: 60ch; margin: 0 0 48px; }

/* === Menu (full) ========================================================= */

.menu-section { margin-bottom: 56px; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.menu-list li:last-child { border-bottom: 0; }
.m-name { font-family: var(--serif); font-size: 17px; }
.m-sub { color: var(--muted); font-size: 14px; }
.m-price { color: var(--accent); font-family: var(--serif); font-size: 17px; text-align: right; white-space: nowrap; }

@media (max-width: 600px) {
  .menu-list li { grid-template-columns: 1fr auto; }
  .m-sub { grid-column: 1 / -1; padding-top: 4px; }
}

/* === Contact ============================================================= */

.contact-block { padding: 36px 0; border-bottom: 1px solid var(--line); }
.contact-block:last-of-type { border-bottom: 0; }
.contact-block .big { font-family: var(--serif); font-size: 22px; line-height: 1.3; margin: 0 0 8px; }
.link-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.link-list a { color: var(--accent); text-decoration: none; }
.link-list a:hover { text-decoration: underline; }

.faq { margin: 0; }
.faq dt { font-family: var(--serif); font-size: 18px; margin: 24px 0 6px; }
.faq dt:first-of-type { margin-top: 0; }
.faq dd { color: var(--muted); margin: 0 0 0 0; max-width: 60ch; }

/* === Misc ================================================================ */

.muted { color: var(--muted); }
.small { font-size: 13px; }

/* === Footer ============================================================== */

.site-footer { background: var(--text); color: var(--bg); padding: 48px 0; margin-top: 0; }
.site-footer .wrap > * { color: var(--bg); }
.site-footer .muted { color: rgba(250, 250, 249, 0.6); }
.brand-foot { font-family: var(--serif); font-size: 22px; margin: 0 0 6px; }
