:root {
  --china-red: #b42318;
  --ink: #1d1410;
  --paper: #fff8ed;
  --gold: #f5bc48;
  --jade: #1f7a5f;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background: var(--ink);
}

.splash {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(29, 20, 16, 0.88) 0%, rgba(65, 18, 13, 0.78) 50%, rgba(29, 20, 16, 0.9) 100%),
    url("assets/china-cook-hero.jpg") center / cover no-repeat;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 188, 72, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(29, 20, 16, 0.28) 100%);
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0;
}

.brand-logo {
  display: block;
  width: min(260px, 62vw);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

h1 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 800;
}

.headline-small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.48em;
  line-height: 1.1;
}

.headline-main {
  display: block;
}

.lead-copy {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 248, 237, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.order-button {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-color: #24140c;
  --bs-btn-hover-bg: #ffd66f;
  --bs-btn-hover-border-color: #ffd66f;
  --bs-btn-hover-color: #24140c;
  --bs-btn-active-bg: #e9a92a;
  --bs-btn-active-border-color: #e9a92a;
  margin-top: 26px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.order-button:hover,
.order-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.info-panel {
  margin-top: 44px;
  margin-right: auto;
  margin-left: auto;
  padding: 24px 0;
  max-width: 820px;
  border-top: 1px solid rgba(255, 248, 237, 0.22);
  border-bottom: 1px solid rgba(255, 248, 237, 0.22);
  background: rgba(29, 20, 16, 0.36);
  backdrop-filter: blur(10px);
}

.section-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-text,
.phone-link,
.hours-list {
  color: rgba(255, 248, 237, 0.92);
  font-size: 1rem;
}

.address-block {
  margin: 0;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus {
  color: #fff;
  text-decoration: underline;
}

.hours-list {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.12);
}

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

.day {
  font-weight: 700;
}

.time {
  text-align: center;
  white-space: nowrap;
}

.is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.button-pulse {
  animation: pulse 620ms ease;
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(-2px) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

@media (max-width: 767.98px) {
  .splash {
    align-items: center;
    background-position: center;
  }

  .splash-content {
    padding: 38px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .info-panel {
    margin-top: 34px;
  }

  .hours-list li {
    align-items: center;
  }
}
