:root {
  --ink: #080406;
  --cream: #F4E9E6;
  --cream-bright: #FBF3F1;
  --cherry: #C4213E;
  --cherry-deep: #6E0B1B;
  --cherry-dark: #340309;
  --rose: #E8B3B9;
  --rose-pale: #EFCDD1;

  --shell-max: 1240px;
  --gutter: 20px;

  --font-display: 'Prata', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--rose);
  text-decoration: none;
}

a:hover { color: #ffffff; }

/* Ambient cherry light, fixed behind the content */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(52, 3, 9, .9) 0%, rgba(8, 4, 6, 0) 70%),
    var(--ink);
}

/* Cherry blobs floating on closed loops, each at its own tempo */
.blob {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.blob--1 {
  width: 78vmax;
  height: 78vmax;
  margin: -39vmax 0 0 -39vmax;
  background: radial-gradient(circle, rgba(196, 33, 62, .34) 0%, rgba(196, 33, 62, .1) 40%, rgba(196, 33, 62, 0) 66%);
  animation: loop1 17s ease-in-out infinite;
}

.blob--2 {
  width: 92vmax;
  height: 92vmax;
  margin: -46vmax 0 0 -46vmax;
  background: radial-gradient(circle, rgba(110, 11, 27, .46) 0%, rgba(110, 11, 27, .13) 44%, rgba(110, 11, 27, 0) 68%);
  animation: loop2 23s ease-in-out infinite;
}

.blob--3 {
  width: 64vmax;
  height: 64vmax;
  margin: -32vmax 0 0 -32vmax;
  background: radial-gradient(circle, rgba(160, 20, 42, .26) 0%, rgba(160, 20, 42, .08) 44%, rgba(160, 20, 42, 0) 68%);
  animation: loop3 19s ease-in-out infinite;
}

.blob--4 {
  width: 52vmax;
  height: 52vmax;
  margin: -26vmax 0 0 -26vmax;
  background: radial-gradient(circle, rgba(232, 179, 185, .1) 0%, rgba(232, 179, 185, .03) 46%, rgba(232, 179, 185, 0) 70%);
  animation: loop4 29s ease-in-out infinite;
}

/* Vignette over the blobs — keeps the ink depth and text contrast */
.glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 80% at 50% 42%, rgba(8, 4, 6, 0) 0%, rgba(8, 4, 6, .5) 68%, rgba(8, 4, 6, .88) 100%),
    linear-gradient(180deg, rgba(8, 4, 6, .35) 0%, rgba(8, 4, 6, 0) 22%, rgba(8, 4, 6, 0) 74%, rgba(8, 4, 6, .5) 100%);
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────── */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--cherry) 0%, var(--cherry-deep) 55%, var(--cherry-dark) 100%);
  box-shadow: 0 0 22px rgba(160, 20, 42, .7);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream);
}

.topbar__city {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 233, 230, .45);
  white-space: nowrap;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  flex: 1;
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(56px, 14vh, 120px) var(--gutter) clamp(48px, 9vh, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__inner {
  animation: riseIn .9s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(196, 33, 62, .45);
  border-radius: 999px;
  background: rgba(110, 11, 27, .22);
}

.badge__dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: 0 0 10px var(--cherry);
}

.badge__label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-pale);
}

.hero__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 11vw, 86px);
  line-height: 1.02;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--cream-bright);
}

.hero__lead {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244, 233, 230, .62);
  text-wrap: pretty;
}

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(36px, 7vh, 72px) var(--gutter) 40px;
  border-top: 1px solid rgba(244, 233, 230, .12);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px 24px;
}

.footer__domain {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer__copy {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(244, 233, 230, .42);
}

/* ── Motion ─────────────────────────────────────────────── */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes loop1 {
  0%,
  100% { transform: translate3d(26vw, -28vh, 0) scale(1);    opacity: .9; }
  25%  { transform: translate3d(38vw, 10vh, 0)  scale(1.18); opacity: 1; }
  50%  { transform: translate3d(4vw, 26vh, 0)   scale(.92);  opacity: .75; }
  75%  { transform: translate3d(-18vw, -8vh, 0) scale(1.1);  opacity: .95; }
}

@keyframes loop2 {
  0%,
  100% { transform: translate3d(-34vw, 28vh, 0) scale(1.05); opacity: .85; }
  30%  { transform: translate3d(-8vw, 2vh, 0)   scale(.88);  opacity: 1; }
  60%  { transform: translate3d(26vw, 24vh, 0)  scale(1.22); opacity: .78; }
}

@keyframes loop3 {
  0%,
  100% { transform: translate3d(12vw, 32vh, 0)  scale(1);    opacity: .8; }
  33%  { transform: translate3d(-32vw, 8vh, 0)  scale(1.22); opacity: 1; }
  66%  { transform: translate3d(20vw, -24vh, 0) scale(.9);   opacity: .7; }
}

@keyframes loop4 {
  0%,
  100% { transform: translate3d(-36vw, -20vh, 0) scale(1);   opacity: .8; }
  25%  { transform: translate3d(12vw, -32vh, 0)  scale(1.2); opacity: 1; }
  50%  { transform: translate3d(34vw, 16vh, 0)   scale(.9);  opacity: .65; }
  75%  { transform: translate3d(-10vw, 30vh, 0)  scale(1.1); opacity: .9; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner,
  .blob { animation: none; }
}
