:root {
  --bg: #fff5f1;
  --bg-card: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #2c2c2c;
  --ink-3: #6b6b6b;
  --red: #e63946;
  --red-soft: #ffd9d2;
  --rule: rgba(10, 10, 10, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

.display {
  font-family: 'Bowlby One', 'Sigmar', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'Space Mono', ui-monospace, 'SF Mono', monospace;
}

.uc {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 12%, rgba(255, 136, 122, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(230, 57, 70, 0.35), transparent 65%),
    radial-gradient(ellipse 50% 50% at 95% 90%, rgba(255, 182, 170, 0.45), transparent 70%),
    linear-gradient(170deg, #fff5f1 0%, #ffe2da 40%, #ffc4b8 100%);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 56px;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--bg) 65%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.kb-glyph {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Hiragino Sans', 'Noto Sans JP', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: rotate(-4deg);
}

.nav-mark:hover .kb-glyph {
  transform: rotate(0deg) scale(1.05);
}

.wordmark {
  font-family: 'Bowlby One', sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-mid,
.nav-end {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-size: 11px;
}

.nav-mid {
  justify-content: center;
}

.nav-end {
  justify-content: flex-end;
}

.pip,
.live-dot {
  border-radius: 50%;
  background: var(--red);
}

.pip {
  width: 4px;
  height: 4px;
  background: var(--ink-3);
}

.live-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 20%, transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 128px 56px 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 32px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-3);
  font-size: 11px;
}

h1 {
  max-width: 11ch;
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.95;
  text-transform: uppercase;
}

h1 .red {
  color: var(--red);
}

.hero-copy {
  max-width: 34ch;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 500;
}

.card {
  margin-inline: 4px;
  padding: clamp(24px, 5vw, 44px);
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: color-mix(in srgb, var(--bg-card) 88%, var(--red-soft));
  box-shadow: 6px 6px 0 0 var(--ink);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label,
.section-label {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  box-shadow: 4px 4px 0 0 var(--red);
  transform: translate(-2px, -2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  padding: 18px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-family: 'Bowlby One', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.button:hover {
  background: var(--ink);
  transform: translate(-2px, -2px);
}

.content {
  display: grid;
  gap: 24px;
}

.content h2 {
  margin-top: 14px;
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.content p,
.content li {
  max-width: 72ch;
  color: var(--ink-2);
  font-size: 16px;
}

.content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.updated {
  color: var(--ink-3);
  font-size: 12px;
}

.foot {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 90px auto 0;
  padding: 36px 56px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 18px;
  border-top: 2px solid var(--ink);
  color: var(--ink-2);
  font-size: 11px;
}

.foot .links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.foot .end {
  text-align: right;
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto;
    padding: 14px 22px;
  }

  .nav-mid {
    display: none;
  }

  .page-shell {
    padding: 104px 22px 0;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }

  .foot {
    grid-template-columns: 1fr;
    padding: 36px 22px 28px;
    text-align: left;
  }

  .foot .links {
    justify-content: flex-start;
  }

  .foot .end {
    text-align: left;
  }
}
