:root {
  --bg-cream: #f4efe8;
  --text-ink: #1c1b19;
  --engine-red: #b62025;
  --engine-red-dark: #84171b;
  --hydrant-gold: #f3a303;
  --smoke-gray: #3c3f45;
  --panel: #fff9f2;
  --line: #d8cdbf;
  --shadow: 0 14px 34px rgba(28, 27, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  color: var(--text-ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 163, 3, 0.2), transparent 35%),
    radial-gradient(
      circle at 88% 90%,
      rgba(182, 32, 37, 0.16),
      transparent 32%
    ),
    var(--bg-cream);
  line-height: 1.5;
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 239, 232, 0.9);
  border-bottom: 1px solid rgba(28, 27, 25, 0.08);
}

.top-announcement {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.16) 0,
      rgba(0, 0, 0, 0.16) 12px,
      rgba(0, 0, 0, 0) 12px,
      rgba(0, 0, 0, 0) 24px
    ),
    linear-gradient(120deg, #ca2328, #8a151a);
  color: #fff;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #000;
  box-shadow: 0 8px 20px rgba(132, 23, 27, 0.38);
}

.top-announcement-inner {
  padding: 0.9rem 0;
  text-align: center;
}

.announcement-title {
  margin: 0 auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  color: #1c1b19;
  background: linear-gradient(180deg, #ffd457, #f3a303);
  border: 2px solid rgba(0, 0, 0, 0.36);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.announcement-text {
  margin: 0.42rem 0 0;
  font-weight: 800;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(28, 27, 25, 0.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--smoke-gray);
}

.hero {
  padding: clamp(1.6rem, 2.5vw, 3rem) 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.hero-copy {
  animation: riseFade 560ms ease-out both;
}

.hero-media {
  animation: riseFade 700ms ease-out both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(182, 32, 37, 0.12);
  color: var(--engine-red-dark);
  font-weight: 700;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.1rem, 6.4vw, 4.4rem);
  letter-spacing: 0.02em;
  max-width: 14ch;
}

.hero-text {
  margin: 0.95rem 0 1.2rem;
  max-width: 52ch;
  color: #2b2a27;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.primary-btn,
.ghost-btn,
.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.primary-btn,
.order-btn {
  background: linear-gradient(
    135deg,
    var(--engine-red),
    var(--engine-red-dark)
  );
  color: #fff;
  box-shadow: 0 8px 16px rgba(132, 23, 27, 0.25);
}

.ghost-btn {
  border: 2px solid rgba(28, 27, 25, 0.2);
  color: var(--text-ink);
  background: rgba(255, 255, 255, 0.45);
}

.primary-btn:hover,
.ghost-btn:hover,
.order-btn:hover {
  transform: translateY(-1px);
}

.location-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.location-hours-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 860px;
}

.location-hours-wrap .location-card {
  max-width: none;
}

.hours-card .hours-list {
  margin-top: 0.45rem;
}

.location-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
}

.location-card p {
  margin: 0.45rem 0;
}

.location-card a,
.text-link,
.site-footer a {
  color: var(--engine-red-dark);
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 0.8rem;
}

.logo-showcase {
  display: inline-flex;
  align-self: start;
  justify-self: center;
}

.hero-logo-large {
  width: min(100%, 300px);
  height: auto;
  display: block;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.media-frame {
  display: grid;
  place-items: center;
  border: 2px solid #000;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff7eb, #f5e8d8);
  color: #5a5349;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.main-frame {
  min-height: 300px;
  overflow: hidden;
}

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

.small-frame {
  min-height: 128px;
}

.content-section {
  padding: 1rem 0 2.5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  animation: riseFade 620ms ease-out both;
}

.panel:nth-of-type(2) {
  animation-delay: 120ms;
}

.panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(28, 27, 25, 0.2);
}

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

.social-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
}

.social-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(28, 27, 25, 0.2);
}

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

.social-list a {
  color: var(--engine-red-dark);
  font-weight: 700;
}

.action-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.action-list .primary-btn {
  width: 100%;
}

.panel-note {
  margin: 0.9rem 0 0;
  color: var(--smoke-gray);
}

.site-footer {
  border-top: 1px solid rgba(28, 27, 25, 0.14);
  background: linear-gradient(
    180deg,
    rgba(243, 163, 3, 0.12),
    rgba(28, 27, 25, 0.03)
  );
  padding: 1.4rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.footer-grid h2,
.footer-grid h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.footer-grid p {
  margin: 0.2rem 0;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(28, 27, 25, 0.14);
  text-align: center;
}

.footer-bottom a {
  color: var(--engine-red-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .location-hours-wrap {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .main-frame {
    min-height: 250px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .nav-wrap {
    min-height: 70px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .hero {
    padding-top: 1rem;
  }

  .top-announcement-inner {
    padding: 0.65rem 0;
  }

  .announcement-text {
    line-height: 1.35;
  }

  .brand {
    justify-content: center;
  }

  .brand-text {
    min-width: 0;
  }

  .order-btn,
  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-logo-large {
    width: min(100%, 240px);
  }

  .main-frame {
    min-height: 220px;
  }

  .hours-list li,
  .social-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
