/* ALYSSIUN — reset, typography, layout primitives. See docs/brand-system.md. */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1100px 560px at 50% -12%, var(--bg-wash-1), transparent 60%),
    radial-gradient(820px 460px at 108% 112%, var(--bg-wash-2), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Thin luxury serif for the wordmark and headlines. */
.serif {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman",
    serif;
  font-weight: 300;
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section {
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text);
}

.section-head p {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
