@font-face {
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/alegreya-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/alegreya-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/instrumentsans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/instrumentsans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #F4EDE1;
  --paper-2: #EBE1D0;
  --paper-3: #E2D4BD;
  --ink: #2A1A0C;
  --ink-2: #6B5541;
  --ink-3: #7D664B;
  --bean: #523018;
  --bean-dark: #3C2210;
  --wine: #7A2B37;
  --line: #D6C4A9;
  --line-soft: #E4D8C2;
  --wrap: 1180px;
  --serif: 'Alegreya', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 50;
}
.skip:focus { left: 8px; top: 8px; }

.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 237, 225, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.bar-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  flex: none;
}
.wordmark-bean { grid-row: 1 / 3; width: 30px; height: 30px; }
.wordmark-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--bean);
}
.wordmark-dash { color: var(--ink-3); }
.wordmark-sub {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

.burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 2px solid var(--ink);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .18s, opacity .18s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
}
.nav a {
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { border-bottom-color: var(--bean); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 18px;
  border: 2px solid var(--ink);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-solid {
  background: var(--bean);
  border-color: var(--bean);
  color: #fff;
}
.btn-solid:hover { background: var(--bean-dark); border-color: var(--bean-dark); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-wide { width: 100%; margin-top: 22px; }

.btn-tel {
  flex: none;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 7px 16px;
  line-height: 1.15;
}
.btn-tel:hover { background: var(--bean); border-color: var(--bean); }
.btn-tel-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .7;
}
.btn-tel-num { font-size: 15px; font-weight: 700; }

.status {
  border-top: 1px solid var(--line-soft);
  background: var(--paper-2);
  font-size: 13.5px;
  font-weight: 500;
}
.status > * { vertical-align: middle; }
.status {
  padding: 7px 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
  flex: none;
}
.status.is-open .status-dot { background: var(--bean); box-shadow: 0 0 0 3px rgba(82, 48, 24, .16); }

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bean-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 13, 5, .94) 0%, rgba(30, 16, 6, .78) 38%, rgba(38, 21, 9, .42) 68%, rgba(42, 24, 10, .3) 100%),
    linear-gradient(to right, rgba(26, 13, 5, .72) 0%, rgba(26, 13, 5, .1) 62%);
}
.hero-in {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 62px;
  color: var(--paper);
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero-in .eyebrow { color: #E3B7A6; }

.hero h1 {
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(20, 10, 4, .55);
}

.lede {
  font-size: 18.5px;
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 0 26px;
}
.hero-in .lede {
  color: rgba(244, 237, 225, .9);
  text-shadow: 0 1px 18px rgba(20, 10, 4, .6);
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-onphoto {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 237, 225, .75);
}
.btn-onphoto:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.week {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.week-list {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.week-list li {
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  color: var(--ink-3);
}
.week-list li:last-child { border-right: 0; }
.week-d {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
}
.week-s {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}
.week-list li.is-on { color: var(--ink); }
.week-list li.is-on .week-s { color: var(--bean); }
.week-list li.is-today {
  background: var(--ink);
  color: var(--paper);
}
.week-list li.is-today .week-s { color: var(--paper); opacity: .75; }

.facts {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
}
.facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 44px;
}
.facts li { display: flex; flex-direction: column; gap: 2px; }
.facts-k {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.facts-v { font-family: var(--serif); font-weight: 700; font-size: 19px; }

.sec {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px 24px;
}

.sec-head { margin-bottom: 38px; max-width: 60ch; }
.sec h2 { font-size: clamp(34px, 4.2vw, 52px); font-weight: 900; }
.sec-note {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 16px;
}

.pizza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 10px;
  padding: 9px 0;
}
.menu-list li + li { border-top: 1px solid var(--line-soft); }
.menu-n {
  grid-column: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
}
.menu-list li::after {
  content: "";
  grid-column: 2;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu-p {
  grid-column: 3;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
}

.pizza-photo { margin: 0; position: sticky; top: 118px; }
.pizza-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pizza-photo figcaption {
  font-size: 13.5px;
  color: var(--ink-3);
  padding: 10px 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 10px;
}

.sec-cukrarna { border-top: 1px solid var(--line); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card figure { margin: 0 0 16px; }
.card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.card-img-low { object-position: 50% 68%; }
.card h3 { font-size: 25px; margin-bottom: 7px; }
.card p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

.sec-kavarna {
  border-top: 1px solid var(--line);
}
.kav-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.kav-photo { margin: 0; position: relative; }
.kav-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.kav-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
}
.kav-type h2 { margin-bottom: 20px; }
.kav-type p { color: var(--ink-2); font-size: 17.5px; max-width: 52ch; margin: 0 0 16px; }
.kav-detail {
  font-family: var(--serif);
  font-size: 22px !important;
  color: var(--wine) !important;
  font-weight: 700;
  padding-left: 15px;
  border-left: 3px solid var(--bean);
}
.kav-interier { margin: 30px 0 0; position: relative; }
.kav-interier img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.kav-interier figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
}

.sec-kontakt { border-top: 1px solid var(--line); }
.kon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.kon-block h2 { margin-bottom: 20px; }
address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 22px;
}
.kon-links { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 14px; }
.link-arrow {
  font-weight: 600;
  font-size: 15px;
  color: var(--wine);
  text-underline-offset: 4px;
}

.hours-h {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
  font-size: 16px;
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours td.is-off { color: var(--ink-3); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--bean); font-weight: 700; }
.hours-note { margin: 14px 0 0; font-size: 14px; color: var(--ink-3); }

.foot {
  background: var(--ink);
  color: var(--paper);
  margin-top: 20px;
}
.foot-in { max-width: var(--wrap); margin: 0 auto; padding: 54px 24px 30px; }
.foot-sign {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  margin: 0 0 40px;
  color: var(--paper);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(244, 237, 225, .18);
}
.foot-cols p { margin: 0; font-size: 15px; color: rgba(244, 237, 225, .78); }
.foot-k {
  font-size: 10.5px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A08A6E !important;
  margin-bottom: 7px !important;
}
.foot-cols a { text-decoration: none; }
.foot-cols a:hover { color: var(--bean); }
.foot-credit { margin: 22px 0 0; font-size: 13px; }
.foot-credit a { color: rgba(244, 237, 225, .6); text-decoration: none; }
.foot-credit a:hover { color: var(--bean); }

@media (max-width: 900px) {
  .hero { min-height: 74vh; }
  .hero-in { padding-bottom: 44px; }
  .pizza-grid, .kav-grid, .kon-grid { grid-template-columns: 1fr; gap: 34px; }
  .pizza-photo { position: static; order: -1; }
  .cards { grid-template-columns: 1fr; gap: 34px; }
  .foot-cols { grid-template-columns: 1fr; gap: 22px; }
  .sec { padding: 52px 24px; }

  .burger { display: flex; order: 2; }
  .btn-tel { order: 3; margin-left: 0; }
  .bar-in { flex-wrap: wrap; gap: 12px; }
  .wordmark { order: 1; margin-right: auto; }
  .nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 6px;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 12px 2px;
    font-size: 17px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover { border-bottom-color: var(--line-soft); color: var(--bean); }
}

@media (max-width: 560px) {
  .bar-in { padding: 10px 18px; gap: 12px; }
  .btn-tel { margin-left: auto; }
  .week-list { grid-template-columns: repeat(7, 1fr); padding: 0 8px; }
  .week-list li { padding: 12px 2px; }
  .week-d { font-size: 16px; }
  .week-s { display: none; }
  .week-list li.is-today .week-s { display: block; font-size: 8px; letter-spacing: .04em; }
  .facts ul { gap: 14px 26px; }
  .facts-v { font-size: 16px; }
  .sec, .facts { padding-left: 18px; padding-right: 18px; }
  .hero-in { padding-left: 18px; padding-right: 18px; }
  .foot-in { padding-left: 18px; padding-right: 18px; }
}
