:root {
  --bg: #0a0c10;
  --ink: #f4efe6;
  --muted: #9a9388;
  --line: rgba(244, 239, 230, 0.12);
  --gold: #d4b483;
  --gold-soft: rgba(212, 180, 131, 0.16);
  --card: rgba(255, 255, 255, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
  overflow-x: hidden;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  width: 42vw;
  height: 42vw;
  top: -12vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(212, 180, 131, 0.22), transparent 70%);
}

.orb-b {
  width: 36vw;
  height: 36vw;
  bottom: -10vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(88, 110, 160, 0.2), transparent 70%);
}

.nav,
main,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 28px 0;
}

.mark {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 28px 72px;
}

h1 {
  margin-top: 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.05;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: var(--gold);
  color: #1a140c;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.ghost:hover,
.btn.primary:hover {
  transform: translateY(-1px);
}

.products {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 28px 80px;
}

.section-head {
  margin-bottom: 28px;
}

h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
}

.product {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.product:hover {
  border-color: rgba(212, 180, 131, 0.45);
  background: var(--gold-soft);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a140c;
  font-size: 12px;
  font-weight: 600;
}

.domain {
  color: var(--muted);
  font-size: 13px;
}

.product h3 {
  margin-top: 36px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}

.go {
  margin-top: auto;
  padding-top: 28px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 28px 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

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

.fine {
  margin-top: 8px;
  max-width: 280px;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  footer {
    display: grid;
  }

  .hero {
    padding-top: 56px;
  }
}
