/* ── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --surface: #111113;
  --ink: #f0eeeb;
  --muted: #8a8a8d;
  --accent: #FD266E;
  --accent-soft: rgba(253, 38, 110, 0.12);
  --accent-glow: rgba(253, 38, 110, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient glow blobs ──────────────────────────── */
.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  will-change: transform;
}

.glow--1 {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -120px;
  background: var(--accent-glow);
  opacity: 0.45;
  animation: drift-a 18s ease-in-out infinite alternate;
}

.glow--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: rgba(120, 80, 220, 0.2);
  opacity: 0.5;
  animation: drift-b 22s ease-in-out infinite alternate;
}

.glow--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(253, 38, 110, 0.08);
  opacity: 0.6;
}

@keyframes drift-a {
  to {
    transform: translate(60px, 40px) scale(1.08);
  }
}

@keyframes drift-b {
  to {
    transform: translate(-50px, -30px) scale(1.12);
  }
}

/* ── Film grain overlay ──────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Page layout ─────────────────────────────────── */
.page {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Logo ─────────────────────────────────────────── */
.logo-wrap {
  margin-bottom: 48px;
  animation: fade-in-up 0.8s ease both;
}

.logo {
  width: 64px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 30px var(--accent-glow));
  transition: filter 0.4s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 50px var(--accent-glow));
}

/* ── Kicker ───────────────────────────────────────── */
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 18px;
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  background: var(--accent-soft);
  animation: fade-in-up 0.8s 0.1s ease both;
}

/* ── Headline ─────────────────────────────────────── */
.headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fade-in-up 0.8s 0.2s ease both;
}

.headline__accent {
  color: var(--accent);
  font-style: italic;
}

/* ── Tagline / motto ──────────────────────────────── */
.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  animation: fade-in-up 0.8s 0.3s ease both;
}

/* ── Body text ────────────────────────────────────── */
.body-text {
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  animation: fade-in-up 0.8s 0.4s ease both;
}

.body-text strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── Divider ──────────────────────────────────────── */
.divider {
  width: 48px;
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
  animation: fade-in-up 0.8s 0.5s ease both;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fade-in-up 0.8s 0.6s ease both;
}

.contact__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.contact__link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.contact__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.contact__link:hover {
  color: var(--accent);
}

.contact__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Socials ──────────────────────────────────────── */
.socials {
  margin-top: 8px;
}

.socials__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials__pill:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.socials__icon {
  width: 16px;
  height: 16px;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding-top: 60px;
  animation: fade-in-up 0.8s 0.7s ease both;
}

.footer p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

/* ── Animations ───────────────────────────────────── */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 480px) {
  .page {
    padding: 48px 22px 32px;
  }

  .logo {
    width: 52px;
  }

  .logo-wrap {
    margin-bottom: 36px;
  }

  .glow--1 {
    width: 300px;
    height: 300px;
  }

  .glow--2 {
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 768px) {
  .page {
    padding: 100px 28px 48px;
    justify-content: center;
  }

  .footer {
    padding-top: 80px;
  }
}
