:root {
  --brand-red: #E31B23;
  --brand-charcoal: #1F3138;
  --brand-slate: #3D4C59;
  --brand-light: #F5F5F5;
  --brand-white: #FFFFFF;
  --text-soft: #5B6A78;
  --shadow: 0 16px 45px rgba(31, 49, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--brand-charcoal);
  background: radial-gradient(circle at top left, rgba(227, 27, 35, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 18px rgba(31, 49, 56, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
}

.brand img {
  height: 54px;
}

.hero {
  flex: 1;
  padding: 80px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
  color: var(--brand-charcoal);
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand-red);
  color: var(--brand-white);
  box-shadow: 0 14px 30px rgba(227, 27, 35, 0.14);
}

.button-secondary {
  background: rgba(31, 49, 56, 0.06);
  color: var(--brand-charcoal);
}

.construction-card {
  background: var(--brand-white);
  border-radius: 32px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 49, 56, 0.05);
}

.construction-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(227, 27, 35, 0.12);
  font-size: 2rem;
  margin-bottom: 24px;
}

.construction-card h2 {
  margin: 0;
  font-size: 1.85rem;
  color: var(--brand-charcoal);
}

.small-copy {
  margin: 18px 0 24px;
  color: var(--text-soft);
  line-height: 1.75;
}

.progress-meter {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: rgba(31, 49, 56, 0.08);
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  width: 35%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), #ff5b5b);
  transition: width 1.2s ease;
}

.progress-text {
  margin: 0;
  font-weight: 700;
  color: var(--brand-charcoal);
}

.info-block {
  padding: 64px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-block h2 {
  margin-top: 0;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  color: var(--brand-charcoal);
}

.info-block ul {
  padding-left: 1.2rem;
  margin: 20px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.info-block li {
  margin-bottom: 14px;
}

.brand-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.brand-swatches span {
  border-radius: 18px;
  height: 78px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.brand-swatches span:nth-child(3) {
  color: var(--brand-charcoal);
  text-shadow: none;
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 860px) {
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 48px 0 36px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .button {
    width: 100%;
  }

  .brand-swatches {
    grid-template-columns: 1fr;
  }
}
