:root {
  --bg: #f4ead7;
  --bg-deep: #dfc39b;
  --ink: #1b1713;
  --accent: #8a5a30;
  --accent-soft: #c58d57;
  --paper: rgba(255, 248, 236, 0.74);
  --shadow: rgba(45, 28, 12, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 35%),
    radial-gradient(circle at bottom left, rgba(138, 90, 48, 0.2), transparent 30%),
    linear-gradient(145deg, var(--bg), var(--bg-deep));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 23, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 23, 19, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

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

.hero-card {
  width: min(100%, 760px);
  padding: 32px 28px 28px;
  border: 1px solid rgba(27, 23, 19, 0.08);
  border-radius: 32px;
  text-align: center;
  background: var(--paper);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px var(--shadow);
}

.eyebrow,
.stay-tuned {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
}

.eyebrow {
  opacity: 0.72;
}

h1 {
  margin: 14px 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  font-weight: 700;
}

.intro {
  width: min(100%, 34rem);
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.6;
}

.face-mark {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1.1;
  margin: 36px auto 28px;
}

.head-shape {
  position: absolute;
  inset: 1% 10% 0;
  display: block;
  border-radius: 44% 44% 58% 58% / 36% 36% 64% 64%;
  border: none;
  background: none;
  box-shadow: none;
  z-index: 1;
}


.feature {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 2;
}

.face-detail {
  position: absolute;
  display: block;
  z-index: 2;
}

.nose-bridge {
  left: 50%;
  top: 41%;
  width: 18px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 240, 226, 0.7), rgba(168, 113, 78, 0.18));
  opacity: 0.55;
}

.smoke {
  position: absolute;
  right: 28%;
  top: 39%;
  width: 58px;
  height: 154px;
  border-radius: 999px;
  border: 3px solid rgba(244, 242, 236, 0.88);
  border-color: rgba(244, 242, 236, 0.88) transparent transparent transparent;
  opacity: 0;
  filter: blur(1.2px);
  transform-origin: bottom center;
  animation: drift 4s ease-in-out infinite;
  z-index: 3;
}

.smoke-one {
  margin-right: 0;
}

.smoke-two {
  right: 25%;
  top: 36%;
  width: 42px;
  height: 132px;
  animation-delay: 0.8s;
}

.smoke-three {
  right: 31%;
  top: 34%;
  width: 34px;
  height: 116px;
  animation-delay: 1.6s;
}

.ear {
  top: 23%;
  width: 72px;
  height: auto;
  filter: brightness(1.01) drop-shadow(0 5px 7px rgba(58, 34, 18, 0.04));
  opacity: 0.93;
  z-index: 0;
}

.ear-left {
  left: -3%;
  transform: rotate(-2deg);
}

.ear-right {
  right: -3%;
  transform: rotate(2deg);
}

.eye {
  top: 34%;
  width: 122px;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(58, 34, 18, 0.14));
}

.eye-left {
  left: 15%;
}

.eye-right {
  right: 15%;
}

.cigar-nose {
  left: 56%;
  top: 50%;
  width: 154px;
  height: auto;
  transform: translateX(-50%) rotate(63deg);
  filter: drop-shadow(0 12px 16px rgba(27, 23, 19, 0.16));
}

.stay-tuned {
  margin-top: 6px;
  opacity: 0.8;
}

@keyframes drift {
  0% {
    opacity: 0;
    transform: translate(0, 18px) scale(0.78) rotate(10deg);
  }

  18% {
    opacity: 0.78;
  }

  55% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translate(24px, -64px) scale(1.38) rotate(-18deg);
  }
}

@media (max-width: 640px) {
  .hero-card {
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .face-mark {
    margin: 28px auto 22px;
  }

  .head-shape {
    inset: 3% 9% 0;
  }

  .nose-bridge {
    top: 43%;
    width: 14px;
    height: 72px;
  }

  .ear {
    width: 50px;
    top: 24%;
  }

  .ear-left {
    left: -2%;
  }

  .ear-right {
    right: -2%;
  }

  .eye {
    width: 92px;
    top: 36%;
  }

  .cigar-nose {
    width: 116px;
    left: 55%;
    top: 52%;
  }

  .smoke {
    right: 28%;
    top: 42%;
    width: 42px;
    height: 118px;
  }

  .smoke-two {
    right: 25%;
    top: 39%;
    width: 28px;
    height: 96px;
  }

  .smoke-three {
    right: 31%;
    top: 37%;
    width: 24px;
    height: 84px;
  }

  .stay-tuned,
  .eyebrow {
    letter-spacing: 0.18em;
  }
}
