:root {
  --red-950: #2c2929;
  --red-800: #5f5656;
  --red-100: #d7d1cc;
  --red-50: #cbc5bf;
  --ink: #292727;
  --muted: #625e5b;
  --paper: #bdb8b2;
  --line: #8f8983;
  --warning: #e3bc25;
  --warning-dark: #171512;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #d5d0ca 0, transparent 34rem),
    linear-gradient(180deg, rgba(36, 33, 33, 0.08), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.75;
  padding-bottom: 48px;
}

main {
  width: min(100% - 36px, 900px);
  margin: 0 auto;
}

.hero {
  padding: 105px 0 56px;
  text-align: center;
}

.eyebrow,
.label {
  color: var(--red-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 18px auto;
  color: var(--red-950);
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.experience {
  background: rgba(214, 210, 204, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(20, 18, 18, 0.2);
}

.experience {
  position: relative;
  margin-top: 190px;
  padding: 226px clamp(24px, 7vw, 72px) 56px;
}

.avatar {
  position: absolute;
  top: -190px;
  left: 50%;
  width: 380px;
  height: 380px;
  overflow: hidden;
  border: 8px solid #d9d4cf;
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(20, 18, 18, 0.38);
  transform: translateX(-50%);
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.label {
  margin-bottom: 12px;
  text-align: center;
}

h2 {
  margin: 0 0 28px;
  color: var(--red-950);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.experience h2 {
  text-align: center;
}

.experience p {
  margin: 0 0 22px;
  font-size: 1.08rem;
}

.notice {
  margin-top: 32px;
  padding: 20px 22px;
  color: var(--red-950);
  background: rgba(183, 177, 170, 0.72);
  border-left: 4px solid var(--red-800);
  border-radius: 10px;
}

.caution-strip {
  display: flex;
  position: fixed;
  z-index: 20;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  min-height: 38px;
  overflow: hidden;
  color: var(--warning-dark);
  background:
    repeating-linear-gradient(
      -45deg,
      var(--warning),
      var(--warning) 18px,
      #171512 18px,
      #171512 26px
    );
  border-block: 2px solid #171512;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.caution-strip span {
  padding: 1px 9px;
  background: var(--warning);
}

.caution-strip--top {
  top: 0;
}

.caution-strip--bottom {
  bottom: 0;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 88px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

  .experience {
    margin-top: 145px;
    padding-top: 178px;
  }

  .avatar {
    top: -145px;
    width: min(290px, calc(100vw - 58px));
    height: min(290px, calc(100vw - 58px));
  }

}
