@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #b9b2a4;
  --accent: #e6b96a;
  --line: rgba(247, 242, 232, 0.16);
  --night: #111b25;
  --deep: #0b1118;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 23%, rgba(62, 104, 135, 0.28), transparent 32rem),
    radial-gradient(circle at 15% 90%, rgba(125, 78, 54, 0.17), transparent 28rem),
    linear-gradient(135deg, var(--deep), var(--night));
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.shell {
  display: flex;
  min-height: 100vh;
  max-width: 1220px;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 5vw, 5rem) 2.2rem;
  flex-direction: column;
}

.nav, .footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); font-size: 0.98rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; }

.brand-mark { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid rgba(230, 185, 106, 0.65); border-radius: 50%; color: var(--accent); font-size: 0.9rem; }

.status { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.status-dot { display: inline-block; width: 0.45rem; height: 0.45rem; margin-right: 0.45rem; border-radius: 50%; background: #8fd3a7; box-shadow: 0 0 0 4px rgba(143, 211, 167, 0.12); }

.hero { display: flex; max-width: 760px; margin: auto 0; padding: clamp(5rem, 15vh, 10rem) 0; flex-direction: column; align-items: flex-start; }

.eyebrow { margin: 0 0 1.4rem; color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

h1 { max-width: 11ch; margin: 0; font-size: clamp(3.8rem, 9vw, 7.6rem); font-weight: 500; letter-spacing: -0.07em; line-height: 0.94; }

h1 em { color: var(--accent); font-family: 'Playfair Display', Georgia, serif; font-weight: 600; letter-spacing: -0.05em; }

.intro { max-width: 31rem; margin: 2rem 0 2.2rem; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.65; }

.button { display: inline-flex; align-items: center; gap: 1.4rem; padding: 0.95rem 1.2rem 0.95rem 1.35rem; border: 1px solid var(--accent); color: var(--deep); background: var(--accent); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: transform 180ms ease, background 180ms ease; }

.button:hover, .button:focus-visible { background: #f2ce8d; transform: translateY(-2px); }

.button span { font-size: 1.1rem; }

.footer { padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 620px) {
  .status { font-size: 0; }
  .status-dot { margin-right: 0; }
  .footer { align-items: flex-start; flex-direction: column; }
}
