/* NCL Brand Reference — page styles. Tokens come from assets/brand.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ncl-white);
  color: var(--ncl-navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
sup { font-size: 0.55em; vertical-align: super; line-height: 0; }

/* ---------- Page shell ---------- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
section.band {
  padding: 120px 0;
  border-top: 1px solid var(--ncl-blue-f2);
}
section.band--navy {
  background: var(--ncl-navy);
  color: var(--ncl-white);
  border-top: 0;
}
section.band--pink {
  background: var(--ncl-pink-f7);
  border-top: 0;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ncl-pink);
  margin: 0 0 24px;
}
.band--navy .eyebrow { color: var(--ncl-pink-d9); }
.band--pink .eyebrow { color: var(--ncl-navy); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--ncl-pink);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  display: inline-block;
  transform: translateY(0.05em);
}
.band--navy .section-script { color: var(--ncl-pink-d9); }
.section-lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 0 56px;
  color: inherit;
  opacity: 0.85;
  text-wrap: pretty;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ncl-navy);
  color: var(--ncl-white);
  padding: 96px 64px 88px;
  position: relative;
  overflow: hidden;
}
.hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero__rule {
  width: 64px;
  height: 1px;
  background: var(--ncl-pink-d9);
  margin-bottom: 32px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 56px;
  color: var(--ncl-pink-d9);
}
.hero__title {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  color: var(--ncl-pink-d9);
  margin-left: -8px;
}
.hero__display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.hero__meta {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  opacity: 0.78;
  margin: 0 0 64px;
}
.hero__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
}
.hero__nav a {
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.hero__nav a:hover {
  border-bottom-color: var(--ncl-pink-d9);
  color: var(--ncl-pink-d9);
}

/* ---------- Hero monogram ornament ---------- */
.hero__mono {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  color: var(--ncl-blue-40);
  opacity: 0.55;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ncl-navy);
  color: var(--ncl-white);
  padding: 80px 64px;
  text-align: center;
}
.foot__mark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
  color: var(--ncl-white);
}
.foot__note {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ncl-pink-d9);
  margin: 0;
  line-height: 1.7;
}
