/* Norveil — cream plaster + soft shadow (Josh moodboard) */
:root {
  --cream: #f3eee6;
  --cream-2: #ebe4d8;
  --ink: #1c1a18;
  --ink-soft: rgba(28, 26, 24, 0.72);
  --ink-mute: rgba(28, 26, 24, 0.48);
  --ink-faint: rgba(28, 26, 24, 0.28);
  --copper: #8c5a3c;
  --gold: #a8845a;
  --line: rgba(28, 26, 24, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  color: var(--ink);
}

.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;
}

.bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(243, 238, 230, 0.35) 0%, rgba(243, 238, 230, 0.55) 55%, rgba(243, 238, 230, 0.75) 100%),
    url("assets/bg-cream.jpg") center / cover no-repeat;
}

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

.page {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 5.5rem) clamp(1.35rem, 5vw, 2rem) 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2.75rem, 6vh, 3.75rem);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: 100%;
}

.sign {
  width: min(100%, 34rem);
  margin: 0 auto;
  /* preserve warm halo glow on transparent PNG */
  filter: drop-shadow(0 0 14px rgba(255, 250, 242, 0.55));
}

.status {
  margin: 0.15rem 0 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}

.story {
  margin: 0;
  max-width: 28rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
  font-style: italic;
}

.circuit {
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .bullets {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }
  .bullet-rule {
    width: 1.5rem;
    height: 1px;
    background: var(--line);
    align-self: center;
  }
}

.bullets > li:not(.bullet-rule) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 7.5rem;
}

.bullet-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

.bullet-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.note {
  margin: 1.65rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.eyebrow {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.contact-lead {
  margin: 0 0 0.5rem;
  max-width: 22rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}

.email-plain {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.email-plain a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.email-plain a:hover {
  color: var(--copper);
  border-bottom-color: rgba(140, 90, 60, 0.45);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.5rem;
  width: 100%;
}

.footer-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footer-sub,
.footer-domains,
.footer-legal {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.footer-legal {
  margin-top: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
