:root {
  --color-primary: #d9281f;
  --color-secondary: #0f58a8;
  --color-accent: #ffc93c;
  --color-dark: #1c2431;
  --color-muted: #5c677a;
  --color-line: #e7eaf0;
  --color-surface: #ffffff;
  --color-soft: #fff8ec;
  --shadow: 0 18px 48px rgba(28, 36, 49, 0.12);
  --radius: 16px;
  --container: 1120px;
  --section-space: 80px;
  --section-space-mobile: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", Arial, sans-serif;
  color: var(--color-dark);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf4 100%);
  line-height: 1.6;
}

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

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

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(231, 234, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(15, 88, 168, 0.12);
  mix-blend-mode: multiply;
}

.brand__copy {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.brand__eyebrow,
.eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__name {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero {
  padding: 40px 0 36px;
}

.hero__grid {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.hero__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content h1,
.section__content h2,
.menu-callout h2 {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero__content h1 {
  max-width: none;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.hero__content h1 span {
  display: block;
  white-space: nowrap;
}

.section__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero__text,
.section__content p {
  margin: 0;
  max-width: 620px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.contact-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.hero-logo-wrap {
  width: min(100%, 420px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card__logo {
  width: min(100%, 340px);
  margin: 0 auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.section {
  padding: var(--section-space) 0;
}

.section--accent {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(15, 88, 168, 0.96), rgba(217, 40, 31, 0.92));
}

.section--soft {
  background: var(--color-soft);
}

.section__content {
  max-width: 760px;
}

.eyebrow--light {
  color: #ffe7a0;
}

.menu-callout {
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
}

.menu-callout h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-dark);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.contact-panel {
  padding: 28px;
}

.contact-address {
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  color: var(--color-muted);
}

.contact-list strong {
  color: var(--color-dark);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 88, 168, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-dark);
  box-shadow: 0 10px 24px rgba(28, 36, 49, 0.08);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link__fill {
  fill: currentColor;
  stroke: none;
}

.footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(231, 234, 240, 0.9);
  background: #ffffff;
}

.footer__content {
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero__grid {
    gap: 36px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  .site-header {
    padding: 16px 0;
  }

  .brand {
    gap: 12px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .brand__copy {
    min-height: 50px;
  }

  .hero {
    padding: 28px 0 24px;
  }

  .section {
    padding: var(--section-space-mobile) 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-panel {
    padding: 22px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__content h1 {
    max-width: none;
  }

  .hero__visual {
    order: 2;
  }

  .contact-list {
    gap: 12px;
  }
}
