:root {
  --brand-red: #e42027;
  --brand-ink: #1c1c14;
  --brand-white: #ffffff;
  --bg-soft: #fff8f5;
  --bg-line: rgba(228, 32, 39, 0.08);
  --text-muted: rgba(28, 28, 20, 0.72);
  --card-border: rgba(28, 28, 20, 0.08);
  --card-shadow: 0 24px 60px rgba(28, 28, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(228, 32, 39, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(28, 28, 20, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--bg-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--bg-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 82%);
  pointer-events: none;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 20px;
}

.hero-card {
  width: min(100%, 920px);
  position: relative;
  overflow: hidden;
  padding: 28px 32px 30px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero-card::before {
  width: 240px;
  height: 240px;
  top: -72px;
  right: -56px;
  background: radial-gradient(circle, rgba(228, 32, 39, 0.18), transparent 70%);
}

.hero-card::after {
  width: 180px;
  height: 180px;
  bottom: -76px;
  left: -50px;
  background: radial-gradient(circle, rgba(28, 28, 20, 0.1), transparent 72%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(100%, 460px);
  height: auto;
  display: block;
  margin: -72px auto -92px;
  filter: drop-shadow(0 16px 28px rgba(28, 28, 20, 0.08));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.lead {
  width: min(100%, 620px);
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  line-height: 1.75;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 620px);
  margin: 28px auto 0;
}

.contact-panel {
  width: min(100%, 620px);
  margin: 20px auto 0;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 28, 20, 0.98) 0%, rgba(44, 44, 34, 0.96) 100%);
  color: var(--brand-white);
  text-align: left;
  box-shadow: 0 18px 40px rgba(28, 28, 20, 0.16);
}

.contact-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-link {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(228, 32, 39, 0.16);
  border-color: rgba(228, 32, 39, 0.4);
  outline: none;
}

.contact-type,
.contact-text {
  display: block;
}

.contact-type {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-text {
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}

.info-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fff4f2 100%);
  border: 1px solid rgba(228, 32, 39, 0.12);
  text-align: left;
}

.info-label,
.info-value {
  display: block;
}

.info-label {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 600;
}

@media (min-width: 1100px) {
  .page-shell {
    padding: 32px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px 32px;
    align-items: center;
    padding: 34px 36px 36px;
    text-align: left;
  }

  .hero-logo {
    grid-column: 1;
    grid-row: 1 / 4;
    width: min(100%, 500px);
    margin: -64px 0 -98px;
  }

  .eyebrow,
  h1,
  .lead {
    grid-column: 2;
  }

  h1 {
    font-size: clamp(3.25rem, 4.45vw, 4.45rem);
    line-height: 1.02;
    max-width: 7.4ch;
  }

  .eyebrow {
    margin-bottom: 4px;
  }

  .lead {
    margin: 10px 0 0;
    width: 100%;
    max-width: 34rem;
  }

  .info-strip,
  .contact-panel {
    width: 100%;
    margin: 0;
  }

  .info-strip {
    grid-column: 1;
    align-self: start;
  }

  .contact-panel {
    grid-column: 2;
    align-self: stretch;
  }

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

@media (max-width: 700px) {
  .page-shell {
    padding: 16px 14px;
  }

  .hero-card {
    padding: 22px 18px 24px;
    border-radius: 22px;
  }

  .hero-logo {
    width: min(100%, 400px);
    margin: -48px auto -62px;
  }

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

  .contact-panel {
    padding: 18px;
    text-align: center;
  }

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

  .info-item {
    text-align: center;
  }
}
