:root {
  --color-bg: #fff3df;
  --color-bg-soft: #fff8ec;
  --color-surface: #ffffff;

  --color-text: #261811;
  --color-muted: #765f51;

  --color-primary: #d83445;
  --color-primary-dark: #a92231;
  --color-secondary: #ffc73c;
  --color-pink: #f45ca5;
  --color-success: #1fa866;
  --color-brown: #56301e;

  --color-border: rgba(38, 24, 17, 0.12);

  --shadow-sm: 0 10px 30px rgba(38, 24, 17, 0.08);
  --shadow-md: 0 20px 55px rgba(38, 24, 17, 0.13);
  --shadow-lg: 0 28px 80px rgba(38, 24, 17, 0.16);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --container-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(255, 199, 60, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(244, 92, 165, 0.18), transparent 30rem),
    var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.container {
  width: min(var(--container-width), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 243, 223, 0.86);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.header-status {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-success);
  background: rgba(31, 168, 102, 0.1);
  border: 1px solid rgba(31, 168, 102, 0.18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.header-status__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 168, 102, 0.12);
}

.header-status strong {
  font-weight: 950;
}

.header-status--closed {
  color: var(--color-primary);
  background: rgba(216, 52, 69, 0.1);
  border-color: rgba(216, 52, 69, 0.18);
}

.header-status--closed .header-status__dot {
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(216, 52, 69, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
}

/* Hero */

.hero {
  padding: 78px 0 92px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.hero__text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 19px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(216, 52, 69, 0.25);
}

.button--primary:hover {
  background: var(--color-primary-dark);
}

.button--secondary {
  color: var(--color-brown);
  background: var(--color-secondary);
  box-shadow: 0 14px 30px rgba(255, 199, 60, 0.3);
}

.button--ghost {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--color-border);
}

/* Status */

.status-card {
  max-width: 520px;
  margin-bottom: 30px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.96));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.status-card__main {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.status-indicator {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(31, 168, 102, 0.14);
}

.status-card__label {
  margin-bottom: 2px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.status-card__state {
  margin: 0;
  color: var(--color-success);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.status-card__today {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 800;
}

.status-card__details {
  display: grid;
  gap: 12px;
}

.status-note {
  padding: 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.status-note__label {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.status-note strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.status-note p {
  margin: 0;
  font-weight: 850;
  line-height: 1.45;
}

.status-note--important {
  background:
    radial-gradient(circle at top right, rgba(255, 199, 60, 0.36), transparent 80%),
    #fff8ec;
}

.status-card--closed .status-indicator {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(216, 52, 69, 0.14);
}

.status-card--closed .status-card__state {
  color: var(--color-primary);
}

/* Hero media */

.hero__media {
  position: relative;
}

.hero-photo {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* Sections */

.section {
  padding: 82px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(255, 248, 236, 0.96));
  border-top: 1px solid rgba(38, 24, 17, 0.06);
  border-bottom: 1px solid rgba(38, 24, 17, 0.06);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.contact-intro p {
  color: var(--color-muted);
  font-size: 18px;
}

/* Menu */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 52, 69, 0.25);
  box-shadow: var(--shadow-md);
}

.menu-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 24px;
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.menu-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.menu-card__image-link img {
  transition: transform 0.25s ease;
}

.menu-card__image-link:hover img,
.menu-card__image-link:focus-visible img {
  transform: scale(1.04);
}

.menu-card__image-link:focus-visible {
  outline: 3px solid rgba(216, 52, 69, 0.28);
  outline-offset: 4px;
  border-radius: 24px;
}

.menu-card__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, rgba(216, 52, 69, 0.18), rgba(255, 199, 60, 0.48));
}

.menu-card__placeholder--fries {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffe28a, #d83445);
}

.menu-card__placeholder--chebureki {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #f6b15d, #8f4a25);
}

.menu-card__placeholder--pancakes {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffd89c, #f45ca5);
}

.menu-card__placeholder--waffles {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffc73c, #b8323a);
}

.menu-card__placeholder--hotdogs {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffd66b, #a92231);
}

.menu-card__placeholder--icecream {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #f9c7df, #f45ca5);
}

.menu-card__placeholder--coffee {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #b77a4d, #56301e);
}

.menu-card__placeholder--drinks {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffc73c, #f45ca5);
}

.menu-card h3 {
  margin-bottom: 8px;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.menu-card__price {
  display: block;
  margin-top: 12px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.menu-card__allergens {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-preview {
  margin-top: 28px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.menu-preview__content p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--color-muted);
}

.menu-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.menu-preview__link {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 52, 69, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(38, 24, 17, 0.05);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.menu-preview__link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(216, 52, 69, 0.3);
  box-shadow: 0 6px 14px rgba(38, 24, 17, 0.07);
}

.menu-preview__link:focus-visible {
  outline: 3px solid rgba(216, 52, 69, 0.18);
  outline-offset: 4px;
}

/* Info */

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.info-card,
.contact-card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.info-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 199, 60, 0.4), transparent 38%),
    radial-gradient(circle at bottom left, rgba(244, 92, 165, 0.12), transparent 34%),
    var(--color-surface);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: var(--color-muted);
}

.hours-list strong {
  text-align: right;
}

.compact-status {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(31, 168, 102, 0.1);
  border-radius: var(--radius-pill);
  color: var(--color-success);
}

.compact-status--closed {
  background: rgba(216, 52, 69, 0.1);
  color: var(--color-primary);
}

.compact-status--closed .status-indicator {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(216, 52, 69, 0.14);
}

/* Contacts */

.contact-intro {
  max-width: 520px;
}

.contact-item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 850;
}

.contact-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.contact-item:last-of-type {
  border-bottom: 0;
}

/* Footer */

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-brown);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

/* Responsive */

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    max-width: 720px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 420px;
    height: 420px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__brand {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 340px;
    height: 340px;
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .info-card,
  .contact-card,
  .status-card,
  .menu-preview {
    padding: 24px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .menu-preview {
    grid-template-columns: 1fr;
  }

  .menu-preview__actions {
    justify-content: stretch;
  }

  .menu-preview__link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .header-status {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero__text {
    font-size: 17px;
  }
  .hero__actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-list strong {
    text-align: left;
  }
}
