:root {
  --ink: #171717;
  --muted: #5f5c56;
  --line: #e7dfd1;
  --paper: #fbf5ea;
  --cream: #fffdf8;
  --charcoal: #1f2326;
  --red: #c7352b;
  --red-dark: #92251f;
  --gold: #e7a82f;
  --shadow: 0 24px 90px rgba(42, 34, 24, .18);
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 53, 43, .16), transparent 26rem),
    radial-gradient(circle at bottom right, rgba(231, 168, 47, .22), transparent 28rem),
    linear-gradient(135deg, #fff9ef 0%, var(--paper) 48%, #efe3d1 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.35;
}

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

.landing-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: .4rem;
}

.landing-card {
  width: min(100%, 900px);
  position: relative;
  overflow: hidden;
  padding: .75rem 1.1rem .9rem;
  border: 1px solid rgba(31, 35, 38, .1);
  border-radius: clamp(20px, 3vw, 32px);
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow);
  text-align: center;
}

.landing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.landing-logo-wrap {
  width: clamp(42px, 5vw, 54px);
  aspect-ratio: 1;
  margin: 0 auto .3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #050505;
  border: 2px solid rgba(231, 168, 47, .45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.landing-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 .45rem;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(1.85rem, 4.4vw, 3.2rem);
  line-height: .9;
  letter-spacing: -.065em;
}

.lead {
  max-width: 720px;
  margin: .45rem auto 0;
  color: #4b4945;
  font-size: clamp(.9rem, 1.2vw, 1rem);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: .55rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: .48rem .8rem;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 32px rgba(199, 53, 43, .28);
}

.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  margin-top: .45rem;
  text-align: left;
}

.contact-grid article {
  min-height: 64px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.contact-grid span {
  display: block;
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-grid a {
  color: var(--red-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-grid p {
  margin: 0;
  font-weight: 750;
}

.landing-note {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .landing-card { text-align: left; }
  .landing-logo-wrap { margin-left: 0; }
  h1 { margin-left: 0; }
  .lead { margin-left: 0; }
  .landing-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
}
