:root {
  --ink: #232024;
  --muted: #716a72;
  --line: #e7e0e5;
  --paper: #fffafa;
  --soft: #f8f4f7;
  --kairel: #b40083;
  --criquet: #ed1c24;
  --criquet-dark: #2d2a2a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 0, 131, 0.11), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(237, 28, 36, 0.10), transparent 30%),
    linear-gradient(115deg, #ffffff 0%, #fff9fb 48%, #fff4f4 100%),
    var(--paper);
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(1120px, 100%);
  min-height: min(690px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  overflow: hidden;
  border: 1px solid rgba(35, 32, 36, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 90px rgba(35, 32, 36, 0.13);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 86px);
}

.logo-kairel {
  width: min(310px, 70vw);
  height: auto;
  margin-bottom: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--kairel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(34px, 5vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(237, 28, 36, 0.96), rgba(186, 0, 34, 0.98)),
    var(--criquet);
}

.criquet-brand {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.criquet-brand span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.criquet-brand img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  padding: 14px 18px;
  background: #ffffff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.contact-item {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.10);
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.17);
  outline: none;
  transform: translateX(3px);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.28;
}

.kairel-mail {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.kairel-mail a {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 880px) {
  .site {
    display: block;
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 56vh;
    padding: 42px 28px 48px;
  }

  .logo-kairel {
    width: min(250px, 78vw);
    margin-bottom: 48px;
  }

  h1 {
    max-width: 620px;
  }

  .contact-panel {
    padding: 34px 24px;
  }
}

@media (max-width: 480px) {
  .site {
    padding: 12px;
  }

  .hero-copy {
    min-height: 58vh;
    padding: 34px 22px 38px;
  }

  h1 {
    font-size: 39px;
  }

  .intro {
    font-size: 17px;
  }

  .criquet-brand img {
    padding: 12px 14px;
  }
}
