@font-face {
  font-family: "Belleza";
  src: url("assets/fonts/Belleza-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;
  --ivory: #fbf5f0;
  --rose-deep: #8f5260;
  --plum: #3e3037;
  --text: #604d55;
  --line: rgba(91, 68, 77, 0.2);
  --display: "Belleza", "Optima", "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ivory);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--plum);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 12rem, rgba(255, 255, 255, 0) 36rem),
    radial-gradient(ellipse at 8% 3%, rgba(229, 185, 192, 0.22), rgba(229, 185, 192, 0) 36%),
    radial-gradient(ellipse at 95% 95%, rgba(211, 221, 204, 0.18), rgba(211, 221, 204, 0) 34%),
    linear-gradient(145deg, #fffaf6 0%, var(--ivory) 52%, #f9efed 100%);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: clamp(0.65rem, 1.3vw, 1.25rem);
  border: 1px solid rgba(143, 82, 96, 0.14);
  border-radius: 0.25rem;
  pointer-events: none;
}

.hero {
  width: 100%;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 4vw, 4rem);
}

.hero__content {
  width: min(100%, 78rem);
  margin-inline: auto;
  text-align: center;
  animation: reveal 1.1s cubic-bezier(0.2, 0.75, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 clamp(0.3rem, 1vh, 0.8rem);
  color: var(--rose-deep);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 650;
  letter-spacing: 0.28em;
  line-height: 1.6;
  text-transform: uppercase;
}

.brand-lockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.4vh, 0.9rem);
  width: 100%;
  margin-top: clamp(0.45rem, 1.2vh, 0.8rem);
  margin-inline: auto;
}

.logo-mark {
  display: block;
  width: clamp(7.5rem, 13vw, 10.5rem);
  height: auto;
  object-fit: contain;
  opacity: 0.86;
  pointer-events: none;
  animation: botanical-drift 14s ease-in-out infinite alternate;
}

h1 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  margin: 0;
  color: var(--plum);
  font-family: var(--display);
  font-size: clamp(3.35rem, 5.8vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
  white-space: nowrap;
}

h1 span {
  display: inline-block;
}

.introduction {
  width: min(100%, 36rem);
  margin: clamp(0.55rem, 1.5vh, 1rem) auto 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  line-height: 1.65;
  text-wrap: balance;
}

.coming-soon {
  margin: clamp(1.35rem, 3vh, 2.1rem) 0 0;
  color: var(--rose-deep);
  font-size: clamp(0.64rem, 1vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.3em;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes botanical-drift {
  from { transform: translateY(-2px) rotate(-0.35deg); }
  to { transform: translateY(3px) rotate(0.35deg); }
}

@media (max-width: 700px) {
  .hero {
    padding: 3.5rem 1rem 3rem;
  }

  .eyebrow {
    width: min(100%, 19rem);
    margin: 0 auto 0.35rem;
    letter-spacing: 0.21em;
  }

  .brand-lockup {
    gap: 0.45rem;
    margin-top: 0.45rem;
  }

  .logo-mark {
    width: clamp(6.5rem, 27vw, 8rem);
    opacity: 0.8;
  }

  h1 {
    gap: 0.22em;
    font-size: clamp(2.15rem, 9.2vw, 3.2rem);
  }

  .introduction {
    width: min(100%, 28rem);
    margin-top: 0.5rem;
    padding-inline: 0.5rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .coming-soon {
    margin-top: 1.4rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: clamp(2rem, 8.9vw, 2.3rem);
  }
}

@media (max-height: 690px) {
  .hero {
    padding-top: 2.6rem;
    padding-bottom: 2rem;
  }

  .logo-mark {
    width: 6.5rem;
  }

  .introduction {
    margin-top: 0.35rem;
  }

  .coming-soon {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
