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

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --line: rgba(255,255,255,0.08);
  --text: #f0ece3;
  --muted: rgba(240,236,227,0.45);
  --accent: #c8a96e;
  --accent-dim: rgba(200,169,110,0.12);
  --radius: 6px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Geist', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* glow behind domain */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 100vw);
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 9px 22px;
  border-radius: 999px;
  margin-top: 1.75rem;
  margin-bottom: 0;
  background: var(--accent-dim);
}

/* ── DOMAIN ── */
.domain {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

@media (max-width: 480px) {
  .domain {
    white-space: normal;
    word-break: break-all;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }
}

.domain__name {
  color: var(--text);
}

.domain__ext {
  color: var(--accent);
}

/* ── TAGLINE ── */
.tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ── CONTACT ── */
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

.contact-email {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--text);
}

/* ── FOOTER ── */
.footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(240,236,227,0.2);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .hero__inner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
