:root {
  --paper: #f6efe4;
  --paper-strong: #fff8ef;
  --ink: #21181b;
  --ink-soft: #61545a;
  --berry: #9f3452;
  --berry-dark: #661a2e;
  --leaf: #2a5b46;
  --gold: #c98a2c;
  --line: rgba(33, 24, 27, 0.12);
  --shadow: 0 28px 60px rgba(33, 24, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 12% 15%, rgba(201, 138, 44, 0.24), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(159, 52, 82, 0.22), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(42, 91, 70, 0.18), transparent 38%),
    linear-gradient(160deg, #f7f0e5 0%, #fbf4ea 42%, #f4ece5 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(33, 24, 27, 0.04) 0,
    rgba(33, 24, 27, 0.04) 1px,
    transparent 1px,
    transparent 6px
  );
}

.orb {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-one {
  width: 18rem;
  height: 18rem;
  top: 8%;
  left: -4rem;
  background: rgba(159, 52, 82, 0.24);
}

.orb-two {
  width: 16rem;
  height: 16rem;
  top: 52%;
  right: -5rem;
  background: rgba(201, 138, 44, 0.2);
  animation-duration: 20s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -26px, 0) scale(1.08);
  }
}

.splash-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 2rem));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.splash-card {
  width: 100%;
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.2vw, 2rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  overflow: hidden;
  animation: riseIn 420ms ease both;
}

.splash-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(159, 52, 82, 0.06), transparent 34%),
    linear-gradient(230deg, rgba(201, 138, 44, 0.08), transparent 30%);
}

@keyframes riseIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.splash-art {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 380px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  justify-self: center;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(33, 24, 27, 0.1);
  background: #eadfce;
}

.splash-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  animation: floatImage 12s ease-in-out infinite alternate;
}

@keyframes floatImage {
  from {
    transform: scale(1.01) translateY(0);
  }
  to {
    transform: scale(1.04) translateY(-10px);
  }
}

.splash-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(0.5rem, 1vw, 0.85rem);
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--berry);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--berry-dark);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.splash-lede {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 700;
  color: var(--ink);
}

.splash-body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 38ch;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 10.5rem;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  background: var(--berry);
  color: #fffaf4;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(159, 52, 82, 0.26);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.instagram-button:hover {
  transform: translateY(-2px);
  background: #7b213e;
  box-shadow: 0 18px 30px rgba(159, 52, 82, 0.32);
}

.instagram-button:focus-visible {
  outline: 3px solid rgba(201, 138, 44, 0.5);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .splash-shell {
    width: min(100vw - 1.2rem, 1160px);
  }

  .splash-art {
    width: min(100%, 340px);
  }
}

@media (max-width: 620px) {
  .splash-shell {
    width: min(100vw - 1rem, 1160px);
    padding: 0.75rem 0;
  }

  .splash-card {
    border-radius: 24px;
    gap: 0.85rem;
  }

  .splash-copy {
    gap: 0.85rem;
  }

  .splash-art {
    width: min(100%, 300px);
    border-radius: 18px;
  }

  .instagram-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
