/* =====================================================================
   LIGHTHOUSE ASSOCIATION SERVICES — Site Stylesheet
   Dark-navy editorial aesthetic, matched to the brand's coming-soon page.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink:           #0E1F38;
  --ink-deep:      #081627;
  --ink-darker:    #050E1B;
  --ink-soft:      #1A2F4F;
  --ink-lighter:   #142A48;
  --paper:         #F4EDE0;
  --paper-warm:    #EDE3D0;
  --paper-dim:     rgba(244, 237, 224, 0.85);
  --paper-quiet:   rgba(244, 237, 224, 0.65);
  --paper-faint:   rgba(244, 237, 224, 0.4);
  --brass:         #C9A961;
  --brass-bright:  #E0BC6B;
  --brass-deep:    #9C8344;
  --brass-soft:    rgba(201, 169, 97, 0.4);
  --brass-faint:   rgba(201, 169, 97, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #050E1B 0%, var(--ink-deep) 40%, var(--ink) 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.015em;
  line-height: 1.08;
  font-variation-settings: 'opsz' 144;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 1.9vw, 1.7rem); font-weight: 500; line-height: 1.2; }
h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

em, .ital {
  font-style: italic;
  color: var(--brass-bright);
  font-variation-settings: 'opsz' 144;
}

a { color: var(--paper); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--brass-bright); }

p { margin-bottom: 1.1em; color: var(--paper-dim); }

p.lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--paper);
  font-weight: 300;
  max-width: 38em;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.4em;
  display: inline-block;
}

/* ---------- Layout ---------- */

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 40px; position: relative; }

@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
}

/* ---------- Lighthouse Mark (consistent across pages) ----------
   The animation lives inside the SVG file itself (the brand-bundle SVGs
   carry their own pulse + glow keyframes). We just size the container. */

.lh-mark {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  line-height: 0;
}

.lh-mark img,
.lh-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Sizes — full mark (with halo + rays) needs more breathing room
   because the halo extends well beyond the lighthouse silhouette */
.lh-mark.size-nav   { width: 24px; }    /* compact silhouette only */
.lh-mark.size-foot  { width: 28px; }    /* compact silhouette only */
.lh-mark.size-page  { width: 140px; }   /* full mark with halo */
.lh-mark.size-hero  { width: 180px; }   /* full mark with halo */

@media (max-width: 720px) {
  .lh-mark.size-page  { width: 110px; }
  .lh-mark.size-hero  { width: 130px; }
}

/* The lighthouse mark SVGs carry their own pulse + glow animations internally,
   so no keyframes need to live here. They respect prefers-reduced-motion automatically
   when wrapped in mark-static-* variants. */

/* ---------- Atmospheric backgrounds (stars + glow) ---------- */

.atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmos-glow {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.09) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

.stars { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--paper);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .atmos-glow, .star { animation: none; }
}

/* ---------- Navigation ---------- */

nav.top {
  padding: 26px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 22, 39, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}

nav.top .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav.top .brand .name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
  line-height: 1;
}

nav.top .brand .name .small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
}

nav.top .links {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav.top .links a {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-dim);
  font-weight: 500;
}

nav.top .links a.current { color: var(--brass-bright); }
nav.top .links a:hover  { color: var(--brass-bright); }

nav.top .links .phone {
  color: var(--paper);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border-left: 1px solid var(--brass-faint);
  padding-left: 32px;
  text-transform: none;
}

@media (max-width: 820px) {
  nav.top { padding: 18px 24px; flex-wrap: wrap; gap: 12px; }
  nav.top .links { gap: 22px; flex-wrap: wrap; }
  nav.top .links .phone { padding-left: 0; border-left: none; }
}

/* ---------- Hero (home + page-header on inner pages) ---------- */

.hero, .page-header {
  position: relative;
  /* Background inherits the body gradient; atmospheric stars + glow overlay supply the texture */
  overflow: hidden;
}

.hero { padding: 120px 0 100px; }
.page-header { padding: 110px 0 90px; border-bottom: 1px solid var(--brass-faint); }

.hero-grid, .page-header-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero h1 { margin-bottom: 28px; }

.hero .sub {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--paper-dim);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 22em;
}

.hero .body {
  max-width: 32em;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--paper-dim);
}

.hero .right, .page-header .right {
  border-left: 1px solid var(--brass-faint);
  padding-left: 40px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero .right .lh-mark, .page-header .right .lh-mark { margin-bottom: 32px; }

.hero .right .quote, .page-header .right .quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 300;
  margin-bottom: 14px;
}

.hero .right .quote-attr, .page-header .right .quote-attr {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.page-header h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 400;
  max-width: 14em;
  margin-bottom: 24px;
}

.page-header .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--paper);
  font-weight: 300;
  max-width: 28em;
}

@media (max-width: 920px) {
  .hero, .page-header { padding: 80px 0 70px; }
  .hero-grid, .page-header-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero .right, .page-header .right {
    border-left: none;
    border-top: 1px solid var(--brass-faint);
    padding-left: 0;
    padding-top: 36px;
  }
}

/* ---------- Section base ---------- */

section { padding: 100px 0; position: relative; }
section.tight  { padding: 60px 0; }
section.deep   { padding: 130px 0; }
/* Section backgrounds intentionally inherit the body navy for a continuous,
   uniform feel — visual rhythm comes from cards, borders, and brass accents. */

@media (max-width: 720px) {
  section { padding: 70px 0; }
  section.deep { padding: 90px 0; }
}

/* ---------- Article block (drop cap intro) ---------- */

.problem-block { max-width: 720px; margin: 0 auto; }

.problem-block .lede {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 350;
  margin-bottom: 32px;
  font-style: italic;
}

.problem-block p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--paper-dim);
}

.drop-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4.6em;
  float: left;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--brass);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}

/* ---------- Quadrants ---------- */

.quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.quad {
  background: rgba(20, 42, 72, 0.5);
  padding: 44px 38px 38px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass-faint);
  border-right: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
  position: relative;
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
}

.quad:hover {
  transform: translateY(-3px);
  background: rgba(20, 42, 72, 0.85);
  border-color: var(--brass-soft);
  border-top-color: var(--brass);
}

.quad .num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.quad h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.35;
}

.quad p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--paper-dim);
  margin: 0;
}

@media (max-width: 720px) {
  .quad-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .quad { padding: 32px 28px 28px; }
}

/* ---------- Onboarding strip (home page, below network preview) ---------- */

.onboarding-strip {
  margin-top: 60px;
  padding: 48px 40px;
  border-top: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
  text-align: center;
}

.onboarding-strip .eyebrow {
  margin-bottom: 24px;
}

.onboarding-strip .trades-list {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--brass-bright);
  font-weight: 300;
  max-width: 60em;
  margin: 0 auto 24px;
}

.onboarding-strip .trades-note {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--paper-quiet);
  max-width: 36em;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .onboarding-strip {
    padding: 36px 20px;
    margin-top: 40px;
  }
  .onboarding-strip .trades-list {
    font-size: 1rem;
  }
}

/* ---------- Network page: Trades In Onboarding section ---------- */

.onboarding-section {
  padding: 100px 0;
  border-top: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
}

.onboarding-intro {
  max-width: 720px;
  margin: 0 auto 60px;
}

.onboarding-intro h2 {
  margin-bottom: 24px;
}

.onboarding-intro .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--paper);
  font-weight: 300;
  max-width: 32em;
}

.onboarding-trades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.onboarding-trade {
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--brass-faint);
  transition: border-color 280ms ease;
}

.onboarding-trade:hover {
  border-left-color: var(--brass);
}

.onboarding-trade h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.25;
}

.onboarding-trade p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0;
}

.onboarding-closing {
  max-width: 36em;
  margin: 64px auto 0;
  text-align: center;
  color: var(--paper-quiet);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .onboarding-trades { grid-template-columns: 1fr; gap: 28px 0; }
  .onboarding-section { padding: 70px 0; }
  .onboarding-intro { margin-bottom: 40px; }
}

/* ---------- Origin block (Our Background) ---------- */

.origin {
  max-width: 720px;
  margin: 0 auto;
}

.origin h2 {
  margin-bottom: 32px;
}

.origin p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--paper-dim);
  margin-bottom: 1.4em;
}

.origin .pull {
  border-left: 2px solid var(--brass);
  padding: 8px 0 8px 24px;
  margin: 40px 0 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 300;
  max-width: 30em;
}

/* ---------- Network preview cards ---------- */

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.net-card {
  background: rgba(20, 42, 72, 0.5);
  padding: 36px 30px 32px;
  border: 1px solid var(--brass-faint);
  transition: border-color 280ms ease, transform 280ms ease, background 280ms ease;
}

.net-card:hover {
  border-color: var(--brass);
  background: rgba(20, 42, 72, 0.85);
  transform: translateY(-3px);
}

.net-card .label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
  display: block;
}

.net-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.15;
}

.net-card .lic {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--paper-quiet);
  margin-bottom: 18px;
  font-weight: 500;
}

.net-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0;
}

@media (max-width: 920px) {
  .network-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}

/* ---------- Disclosure block (centerpiece) ---------- */

.disclosure {
  position: relative;
  padding: 110px 64px;
  /* Background inherits body navy; brass border below provides visual structure */
  overflow: hidden;
}

.disclosure::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid var(--brass-soft);
  pointer-events: none;
}

.disclosure .inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.disclosure h2 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 144;
}

.disclosure p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--paper-dim);
  margin-bottom: 1.2em;
}

.disclosure .strong { color: var(--paper); font-weight: 600; }

.disclosure .gold-mark {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .disclosure { padding: 80px 32px; }
  .disclosure::before { inset: 14px; }
}

/* ---------- Tease (closing CTA section) ---------- */

.tease {
  text-align: center;
  padding: 110px 24px;
  border-top: 1px solid var(--brass-faint);
  position: relative;
}

.tease h2 {
  max-width: 18em;
  margin: 0 auto 24px;
}

.tease p {
  max-width: 36em;
  margin: 0 auto 40px;
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

.tease-divider {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 36px;
}

.tease-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.tease-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tease-contact a svg { width: 18px; height: 18px; opacity: 0.6; transition: opacity 200ms ease; }
.tease-contact a:hover svg { opacity: 1; }

.tease-contact .sep {
  width: 1px;
  height: 22px;
  background: var(--brass-faint);
  display: inline-block;
}

@media (max-width: 600px) {
  .tease-contact { flex-direction: column; gap: 18px; }
  .tease-contact .sep { display: none; }
}

/* ---------- Buttons ---------- */

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border: 1px solid var(--brass);
  color: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 220ms ease;
  background: transparent;
}

.btn-link:hover { background: var(--brass); color: var(--ink-deep); }

.btn-link .arrow {
  width: 18px; height: 1px; background: currentColor; position: relative; display: inline-block;
}

.btn-link .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ---------- How It Works step list ---------- */

.steps {
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 40px 0;
  border-bottom: 1px solid var(--brass-faint);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step .step-num {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--brass);
  line-height: 0.9;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--paper);
  line-height: 1.15;
}

.step p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--paper-dim);
  max-width: 36em;
  margin: 0;
}

@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .step .step-num { font-size: 2.6rem; }
}

/* ---------- "Does Not" list ---------- */

.does-not {
  padding: 80px 56px;
  border-left: 3px solid var(--brass);
  border-top: 1px solid var(--brass-faint);
  border-right: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
  max-width: 820px;
  margin: 80px auto 0;
}

.does-not h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--paper);
}

.does-not h3 em { font-style: italic; color: var(--brass-bright); }

.does-not ul { list-style: none; padding: 0; }

.does-not li {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--paper);
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--brass-faint);
  position: relative;
}

.does-not li:last-child { border-bottom: none; }

.does-not li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 500;
}

@media (max-width: 720px) { .does-not { padding: 48px 28px; } }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--brass-faint);
  padding: 32px 0;
}

.faq-item:first-child { border-top: 1px solid var(--brass-faint); }

.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.faq-a {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--paper-dim);
  max-width: 38em;
}

/* ---------- Network page profiles ---------- */

.profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  padding: 90px 0;
  border-bottom: 1px solid var(--brass-faint);
  align-items: start;
}

.profile:last-of-type { border-bottom: none; }

.profile .meta { position: sticky; top: 130px; }

.profile .meta .seq {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
  font-style: italic;
}

.profile .meta h2 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.profile .meta .lic {
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-top: 14px;
  display: block;
}

.profile .body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--paper-dim);
}

.profile .body p.first {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--paper);
  font-weight: 400;
  font-family: 'Fraunces', serif;
  font-style: italic;
  margin-bottom: 28px;
}

.profile .capabilities {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--brass-faint);
}

.profile .capabilities h4 { margin-bottom: 16px; }

.profile .capabilities ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.profile .capabilities li {
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--paper);
  padding-left: 18px;
  position: relative;
}

.profile .capabilities li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--brass);
  font-size: 1.4em;
  line-height: 1;
  top: 0.05em;
}

@media (max-width: 920px) {
  .profile { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; }
  .profile .meta { position: static; }
  .profile .capabilities ul { grid-template-columns: 1fr; }
}

/* ---------- Vetting block ---------- */

.vetting { max-width: 820px; margin: 0 auto; }

.vetting .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 32em;
}

.criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 56px;
}

.criterion {
  padding-left: 24px;
  border-left: 1px solid var(--brass-faint);
}

.criterion h4 { color: var(--brass); margin-bottom: 12px; }

.criterion h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--paper);
}

.criterion p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--paper-dim);
  margin: 0;
}

@media (max-width: 720px) { .criteria { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Footer ---------- */

footer {
  color: var(--paper);
  padding: 80px 40px 40px;
  border-top: 1px solid var(--brass-faint);
}

footer .foot-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--brass-faint);
}

footer .col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 16px;
}

footer .col p, footer .col a {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--paper-dim);
  display: block;
}

footer .col a:hover { color: var(--brass-bright); }

footer .brand-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

footer .brand-foot .text-block { display: flex; flex-direction: column; }

footer .brand-foot .name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

footer .brand-foot .small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-top: 6px;
}

footer .disclosure-line {
  max-width: 1240px;
  margin: 30px auto 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--paper-quiet);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 300;
}

footer .copyright {
  max-width: 1240px;
  margin: 22px auto 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-faint);
  font-weight: 500;
}

@media (max-width: 820px) {
  footer { padding: 60px 24px 30px; }
  footer .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Reveal animation ---------- */

@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.reveal { animation: reveal 900ms ease-out both; }
.reveal.delay-1 { animation-delay: 100ms; }
.reveal.delay-2 { animation-delay: 220ms; }
.reveal.delay-3 { animation-delay: 340ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
}
