/* =====================================================
   Global Fashion Network Council — style.css
   Brand: deep navy + gold, editorial luxury
   ===================================================== */

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

:root {
  /* Brand palette — derived from the gold-on-navy logo */
  --navy:        #0c1626;
  --navy-mid:    #122138;
  --navy-soft:   #1b2d49;
  --gold:        #c9a24b;
  --gold-light:  #e6c878;
  --gold-deep:   #a37e2c;

  /* Neutrals */
  --bg:          #fbf8f1;
  --surface:     #ffffff;
  --surface-2:   #f4efe3;
  --border:      #e7dec9;
  --text:        #1a2030;
  --text-soft:   #4b5468;
  --text-muted:  #8a8f9c;
  --on-dark:     #f3ecdd;
  --on-dark-soft:#bcc3d1;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: clamp(64px, 9vw, 130px);
  --container:   1180px;
  --radius:      14px;
  --radius-lg:   26px;
  --shadow:      0 18px 50px -22px rgba(12, 22, 38, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(12, 22, 38, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { font-size: clamp(0.98rem, 1.4vw, 1.08rem); }
em { font-style: italic; color: var(--gold-deep); }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--navy); padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--navy); box-shadow: 0 10px 28px -12px rgba(201, 162, 75, 0.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(201, 162, 75, 0.85); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--on-dark); }
.btn--ghost:hover { background: rgba(243, 236, 221, 0.1); transform: translateY(-3px); }
.btn--block { display: flex; width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

/* ---------- Navigation ---------- */
/* Scope to body > header only — section <header> elements must NOT be fixed */
body > header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
body > header.scrolled {
  background: rgba(10, 19, 32, 0.97);
  box-shadow: var(--shadow-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin-inline: auto;
  padding: 0.9rem clamp(1rem, 5vw, 2rem);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(201,162,75,0.5); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--on-dark); max-width: 13ch; }
.nav__brand-sub { display: none; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav__links a { color: var(--on-dark); font-size: 0.82rem; letter-spacing: 0.5px; }
.nav__links a:hover { color: var(--gold-light); }
.nav__cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 500;
  text-decoration: none !important;
}
.nav__cta:hover { background: var(--gold-light); text-decoration: none !important; }
.nav__cta::after { display: none !important; }

.nav__checkbox, .nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--on-dark); overflow: hidden; padding-top: 6rem; padding-bottom: clamp(5rem, 9vw, 8rem);
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(8,15,26,0.95) 0%, rgba(9,17,29,0.8) 32%, rgba(9,17,29,0.42) 58%, rgba(9,17,29,0.64) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(201,162,75,0.16), transparent 55%),
    url('images/hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center 28%;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(201,162,75,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 75%);
          mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 75%);
}
.hero__glow {
  position: absolute; width: 70vmax; height: 70vmax; right: -20vmax; top: -25vmax;
  background: radial-gradient(circle at 50% 50%, rgba(230,200,120,0.13) 0%, rgba(201,162,75,0.07) 35%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }

/* Hero entrance — CSS animation, no IntersectionObserver (above the fold) */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow {
  font-size: clamp(0.7rem, 1.4vw, 0.85rem); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.4rem;
  animation: heroIn 0.7s ease both; animation-delay: 0.05s;
}
.hero__title {
  color: var(--on-dark); margin-bottom: 1rem;
  animation: heroIn 0.7s ease both; animation-delay: 0.2s;
}
.hero__title em { color: var(--gold-light); }
.hero__slogan {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold-light); margin-bottom: 1.6rem;
  animation: heroIn 0.7s ease both; animation-delay: 0.35s;
}
.hero__lead {
  max-width: 620px; color: var(--on-dark-soft); margin-bottom: 2.4rem;
  animation: heroIn 0.7s ease both; animation-delay: 0.5s;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: heroIn 0.7s ease both; animation-delay: 0.65s;
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__slogan, .hero__lead, .hero__actions {
    animation: none;
  }
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-pad); position: relative; }
.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem; position: relative; padding-left: 2.6rem;
}
.section__tag::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 2rem; height: 1px; background: var(--gold);
}
.section__tag--light { color: var(--gold-light); }
.section__tag--light::before { background: var(--gold-light); }
.section__intro { color: var(--text-soft); margin-top: 1.2rem; }

/* ---------- About ---------- */
.about__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
.about__text p + p { margin-top: 1.1rem; }
.about__cards { display: grid; gap: 1.4rem; }
.vm-card {
  background: var(--navy); color: var(--on-dark); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.vm-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(201,162,75,0.22), transparent 55%);
}
.vm-card > * { position: relative; }
.vm-card h3 { color: var(--gold-light); margin-bottom: 0.8rem; }
.vm-card p, .vm-card li { color: var(--on-dark-soft); }
.vm-card ul { list-style: none; display: grid; gap: 0.5rem; }
.vm-card li { padding-left: 1.4rem; position: relative; font-size: 0.97rem; }
.vm-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }

.whatwedo { margin-top: clamp(3rem, 6vw, 5rem); }
.whatwedo__title { text-align: center; margin-bottom: 2.5rem; }

.cards-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.service-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.1rem;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--gold-deep);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h4 { margin-bottom: 0.5rem; }
.service-card p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Who we unite ---------- */
.unite { background: var(--surface-2); }
.unite__grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.unite-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; border-top: 3px solid var(--gold);
}
.unite-card h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.unite-card ul { list-style: none; display: grid; gap: 0.45rem; }
.unite-card li { color: var(--text-soft); font-size: 0.95rem; padding-left: 1.2rem; position: relative; }
.unite-card li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Members (prominent feature) ---------- */
.members__grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
.member-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.member-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.member-card__photo {
  aspect-ratio: 4 / 5; background: linear-gradient(160deg, var(--navy-soft), var(--navy));
  position: relative; overflow: hidden;
}
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.member-card__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3.5rem; color: var(--gold-light);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(201,162,75,0.25), transparent 55%),
    linear-gradient(160deg, var(--navy-soft), var(--navy));
}
.member-card__body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.member-card__name { font-size: 1.5rem; margin-bottom: 0.2rem; }
.member-card__role { color: var(--gold-deep); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.3rem; }
.member-card__country { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.35rem; hyphens: none; word-break: keep-all; white-space: nowrap; }
.member-card__bio { color: var(--text-soft); font-size: 0.95rem; flex: 1; }
.member-card__social { display: flex; gap: 0.8rem; margin-top: 1.1rem; }
.member-card__social a { color: var(--navy); opacity: 0.7; transition: opacity 0.2s ease, color 0.2s ease; }
.member-card__social a:hover { opacity: 1; color: var(--gold-deep); }
.members__empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 2rem; }

/* ---------- Vision & Values ---------- */
.values { background: var(--navy); color: var(--on-dark); overflow: hidden; }
.values .section__head h2 { color: var(--on-dark); }
.values__bg {
  position: absolute; inset: 0; opacity: 0.6;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(201,162,75,0.15), transparent 55%),
    radial-gradient(70% 60% at 0% 100%, rgba(27,45,73,0.8), transparent 60%);
}
.values .container { position: relative; z-index: 1; }
.values__columns { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
.values__col h3 { color: var(--gold-light); margin-bottom: 1.4rem; }
.values__list { list-style: none; display: grid; gap: 1rem; }
.values__list li { color: var(--on-dark-soft); padding-left: 1.8rem; position: relative; font-size: 0.98rem; }
.values__list li::before { content: "✦"; position: absolute; left: 0; top: 0.1em; color: var(--gold); }
.values__list strong { color: var(--on-dark); font-weight: 500; }

/* ---------- Membership ---------- */
.membership__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
.membership__benefits h3 { margin-bottom: 1.4rem; }
.ticklist { list-style: none; display: grid; gap: 0.9rem; }
.ticklist li { padding-left: 2.2rem; position: relative; color: var(--text-soft); }
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 600;
}
.pricing-card {
  background: var(--navy); color: var(--on-dark); border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem); text-align: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden; border: 1px solid rgba(201,162,75,0.35);
}
.pricing-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 50% 0%, rgba(201,162,75,0.2), transparent 60%);
}
.pricing-card > * { position: relative; }
.pricing-card__ribbon {
  display: inline-block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(201,162,75,0.5); padding: 0.4rem 1rem;
  border-radius: 999px; margin-bottom: 1.2rem;
}
.pricing-card__name { color: var(--on-dark); margin-bottom: 0.6rem; }
.pricing-card__price { margin-bottom: 1rem; }
.pricing-card__amount { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold-light); font-weight: 600; }
.pricing-card__per { color: var(--on-dark-soft); font-size: 0.95rem; }
.pricing-card__note { color: var(--on-dark-soft); font-size: 0.9rem; margin-bottom: 1.6rem; }
.pricing-card .btn { margin-bottom: 0.8rem; }
.pricing-card .btn--ghost { color: var(--on-dark); }

/* ---------- Register / steps ---------- */
.register { background: var(--surface-2); }
.steps { list-style: none; display: grid; gap: 1.4rem; grid-template-columns: 1fr; counter-reset: step; margin-bottom: clamp(3rem, 6vw, 5rem); }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  background: var(--navy); color: var(--gold-light);
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Payment ---------- */
.payment {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-soft); max-width: 760px; margin-inline: auto;
}
.payment__title { text-align: center; margin-bottom: 1.6rem; }
.payment__tabs { display: flex; gap: 0.5rem; background: var(--surface-2); padding: 0.4rem; border-radius: 999px; margin-bottom: 1.8rem; }
.payment__tab {
  flex: 1; border: none; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.85rem 1rem; border-radius: 999px; color: var(--text-soft); transition: all 0.25s ease;
}
.payment__tab.is-active { background: var(--navy); color: var(--gold-light); }
.payment__tab:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; }
.payment__panel { display: none; }
.payment__panel.is-active { display: block; animation: fadeIn 0.35s ease; }
.payment__amount { font-size: 1.1rem; margin-bottom: 1rem; }
.payment__amount strong { color: var(--gold-deep); font-family: var(--font-display); font-size: 1.6rem; }
.payment__instructions { padding-left: 1.3rem; display: grid; gap: 0.7rem; margin-bottom: 1.4rem; }
.payment__instructions li { color: var(--text-soft); }
.payment__instructions a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; }
.contact__form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.form__success { color: var(--gold-deep); font-weight: 500; text-align: center; }
.form__error { color: #b3402e; font-weight: 500; text-align: center; }
.form__error a { color: #b3402e; text-decoration: underline; }

.contact__details h3 { margin-bottom: 1.2rem; }
.contact__list { list-style: none; display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact__list li { display: grid; gap: 0.15rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); }
.contact__label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.contact__list a { color: var(--text); font-size: 1.05rem; }
.contact__list a:hover { color: var(--gold-deep); }
.contact__social { display: flex; flex-direction: column; gap: 0.8rem; }
.contact__social a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-soft); }
.contact__social a:hover { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--on-dark-soft); }
.footer__inner {
  display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 0.8rem; box-shadow: 0 0 0 1px rgba(201,162,75,0.5); }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--gold-light); font-size: 1.2rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.55rem; align-content: start; }
.footer__nav a { color: var(--on-dark-soft); font-size: 0.9rem; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact { font-style: normal; line-height: 2; font-size: 0.92rem; }
.footer__contact strong { color: var(--on-dark); }
.footer__contact a:hover { color: var(--gold-light); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1rem, 5vw, 2rem); display: flex; flex-wrap: wrap;
  gap: 0.6rem; justify-content: space-between; align-items: center;
  max-width: var(--container); margin-inline: auto; font-size: 0.82rem;
}
.footer__credit a { color: var(--gold-light); }
.footer__credit a:hover { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; pointer-events: auto; will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (min-width: 700px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .unite__grid { grid-template-columns: repeat(2, 1fr); }
  .members__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.2fr 1fr 1.2fr; }
}

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1.15fr 0.85fr; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .unite__grid { grid-template-columns: repeat(4, 1fr); }
  .members__grid { grid-template-columns: repeat(4, 1fr); }
  .values__columns { grid-template-columns: repeat(2, 1fr); }
  .membership__grid { grid-template-columns: 1.1fr 0.9fr; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* =====================================================
   Multipage components
   ===================================================== */

/* Active nav link */
.nav__links a[aria-current="page"] { color: var(--gold-light); }
.nav__links a[aria-current="page"]:not(.nav__cta)::after {
  content: ""; display: block; height: 1px; background: var(--gold-light); margin-top: 2px;
}

/* ---------- Inner-page hero ---------- */
.page-hero {
  position: relative; background: var(--navy); color: var(--on-dark); overflow: hidden;
  padding: clamp(130px, 20vh, 210px) 0 clamp(54px, 9vh, 96px);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 90% at 85% 0%, rgba(201,162,75,0.2), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(27,45,73,0.85), transparent 60%),
    linear-gradient(160deg, #0a1320, #122138 60%, #0c1626);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.9rem; }
.page-hero__title { color: var(--on-dark); }
.page-hero__title em { color: var(--gold-light); }
.page-hero__lead { max-width: 640px; color: var(--on-dark-soft); margin-top: 1.1rem; }

/* ---------- Home teaser tweaks ---------- */
.home-teaser__foot { margin-top: 2.4rem; text-align: center; }
.btn--dark { background: var(--navy); color: var(--on-dark); }
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-3px); }

/* CTA band */
.cta-band { background: var(--navy); color: var(--on-dark); text-align: center; overflow: hidden; position: relative; }
.cta-band__bg { position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% 0%, rgba(201,162,75,0.22), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; max-width: 760px; }
.cta-band h2 { color: var(--on-dark); }
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: var(--on-dark-soft); margin: 1rem auto 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .section__tag { padding-left: 0; }
.cta-band .section__tag::before { display: none; }

/* ---------- Chapters ---------- */
.chapters__grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.chapter-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; border-top: 3px solid var(--gold); box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chapter-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.chapter-card__region { font-size: 1.6rem; margin-bottom: 0.25rem; }
.chapter-card__location { color: var(--gold-deep); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.chapter-card__desc { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 1.2rem; }
.chapter-card__contacts { list-style: none; display: grid; gap: 0.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.chapter-card__contacts li { display: grid; gap: 0.1rem; }
.chapter-card__clabel { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.chapter-card__contacts a { color: var(--text); font-size: 0.98rem; }
.chapter-card__contacts a:hover { color: var(--gold-deep); }

/* ---------- Contact regional strip ---------- */
.regions { background: var(--surface-2); }
.regions__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.region-mini {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.region-mini h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.region-mini__loc { color: var(--gold-deep); font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.7rem; }
.region-mini a { display: block; color: var(--text-soft); font-size: 0.95rem; }
.region-mini a:hover { color: var(--gold-deep); }

/* ---------- Generic intro band ---------- */
.lead-band p { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-soft); max-width: 820px; font-family: var(--font-display); font-style: italic; line-height: 1.5; }

@media (min-width: 700px) {
  .chapters__grid { grid-template-columns: repeat(2, 1fr); }
  .regions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .chapters__grid { grid-template-columns: repeat(3, 1fr); }
  .regions__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Pricing Tiers ---------- */
.tiers { background: var(--surface-2); }
.tiers__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-bottom: 2.8rem; }
.tier-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.6rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.tier-card--featured {
  background: var(--navy); color: var(--on-dark);
  border-color: rgba(201,162,75,0.45); box-shadow: var(--shadow);
}
.tier-card--featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 70% at 50% 0%, rgba(201,162,75,0.18), transparent 60%);
}
.tier-card--honorary {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  border-color: rgba(201,162,75,0.25); color: var(--on-dark);
}
.tier-card__label {
  display: inline-block; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.7rem;
  background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border);
}
.tier-card--featured .tier-card__label { background: rgba(201,162,75,0.18); color: var(--gold-light); border-color: rgba(201,162,75,0.3); }
.tier-card--honorary .tier-card__label { background: rgba(201,162,75,0.12); color: var(--gold-light); border-color: rgba(201,162,75,0.22); }
.tier-card__name { font-size: clamp(1.15rem, 2.2vw, 1.45rem); margin-bottom: 1.2rem; }
.tier-card--featured .tier-card__name, .tier-card--honorary .tier-card__name { color: var(--on-dark); }
.tier-card__pricing { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.35rem; }
.tier-card__price { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 600; color: var(--gold-deep); line-height: 1; }
.tier-card--featured .tier-card__price, .tier-card--honorary .tier-card__price { color: var(--gold-light); }
.tier-card__per { font-size: 0.82rem; color: var(--text-muted); }
.tier-card--featured .tier-card__per, .tier-card--honorary .tier-card__per { color: var(--on-dark-soft); }
.tier-card__renew { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.tier-card--featured .tier-card__renew, .tier-card--honorary .tier-card__renew { color: var(--on-dark-soft); }
.tier-card__renew strong { color: var(--gold-deep); }
.tier-card--featured .tier-card__renew strong, .tier-card--honorary .tier-card__renew strong { color: var(--gold-light); }
.tier-card__features { list-style: none; display: grid; gap: 0.5rem; flex: 1; margin-bottom: 1.6rem; }
.tier-card__features li { color: var(--text-soft); font-size: 0.9rem; padding-left: 1.3rem; position: relative; }
.tier-card--featured .tier-card__features li, .tier-card--honorary .tier-card__features li { color: var(--on-dark-soft); }
.tier-card__features li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tier-card__btn { margin-top: auto; }
.tier-card .btn--ghost { color: var(--navy); border-color: var(--navy); }
.tier-card .btn--ghost:hover { background: var(--navy); color: var(--on-dark); }
.tier-card--featured .btn--ghost, .tier-card--honorary .btn--ghost { color: var(--on-dark); border-color: var(--on-dark); }
.tier-card--featured .btn--ghost:hover, .tier-card--honorary .btn--ghost:hover { background: rgba(243,236,221,0.1); }
.tier-card__note { font-size: 0.82rem; color: var(--on-dark-soft); font-style: italic; line-height: 1.6; margin-top: 1rem; }
.tiers__apply { text-align: center; }
.tiers__apply p { color: var(--text-soft); margin-bottom: 1.2rem; }

@media (min-width: 580px) { .tiers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tiers__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .tiers__grid { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Payment tier selector ---------- */
.payment__tier-select { margin-bottom: 1.4rem; }
.payment__tier-label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); display: block; margin-bottom: 0.5rem; }
.payment__tier-dropdown {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.payment__tier-dropdown:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }

/* ---------- Membership Application Form ---------- */
.apply-form { background: var(--surface-2); }
.apply__intro { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.apply__intro p + p { margin-top: 0.8rem; }
.form-section {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem); margin-bottom: 1.6rem;
}
.form-section__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.form-section__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  background: var(--navy); color: var(--gold-light);
}
.form-section__title { font-family: var(--font-display); font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-weight: 600; line-height: 1.1; }
.form-grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.form-grid-3 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.form-full { grid-column: 1 / -1; }
.checkbox-group { display: grid; gap: 0.65rem; }
.checkbox-group-label { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.5rem; display: block; font-weight: 500; }
.checkbox-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text-soft); cursor: pointer; line-height: 1.4; }
.checkbox-item input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.1rem; accent-color: var(--gold-deep); cursor: pointer; }
.qual-table { width: 100%; border-collapse: collapse; }
.qual-table th { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); padding: 0.5rem 0.5rem 0.8rem; border-bottom: 1px solid var(--border); text-align: left; }
.qual-table td { padding: 0.4rem 0.3rem; vertical-align: top; }
.qual-table input { width: 100%; }
.field--compact input, .field--compact textarea { padding: 0.65rem 0.75rem; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; font-style: italic; }
.declaration-list { display: grid; gap: 1rem; }
.apply-submit { text-align: center; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.apply-submit p { color: var(--text-soft); margin-bottom: 1.4rem; max-width: 540px; margin-inline: auto; }
.apply-submit .btn { min-width: 220px; }
.apply-alt { background: var(--navy-soft); border-radius: var(--radius); padding: 1.6rem 2rem; margin-top: 2rem; }
.apply-alt h4 { color: var(--gold-light); margin-bottom: 0.8rem; }
.apply-alt p { color: var(--on-dark-soft); font-size: 0.95rem; }
.apply-alt a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 600px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.member-card__profile { margin-top: 1rem; }
.member-card__profile-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  color: var(--gold); border-bottom: 1px solid rgba(201,162,75,0.4);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.member-card__profile-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.member-card__profile-link::after { content: ' \2192'; }

/* ---------- Member profile page ---------- */
.member-profile-hero {
  min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy); position: relative;
}
.member-profile-hero__photo {
  position: relative; overflow: hidden;
  background: var(--navy-mid);
}
.member-profile-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.member-profile-hero__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy-mid) 100%);
}
.member-profile-hero__initials {
  font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem);
  color: var(--gold); opacity: 0.4; font-weight: 600; letter-spacing: 4px;
}
.member-profile-hero__info {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  position: relative;
}
.member-profile-hero__info::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,22,38,0.6) 0%, transparent 100%);
  pointer-events: none;
}
.member-profile-hero__back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  margin-bottom: 2.5rem; transition: opacity 0.2s;
  position: relative; z-index: 1;
}
.member-profile-hero__back:hover { opacity: 0.7; }
.member-profile-hero__role {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.member-profile-hero__name {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600; color: var(--on-dark); line-height: 1.08;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.member-profile-hero__country {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--on-dark-soft);
  margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem;
  position: relative; z-index: 1;
}
.member-profile-hero__rule {
  width: 48px; height: 1px; background: var(--gold); margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}
.member-profile-hero__summary {
  font-family: var(--font-body); font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: var(--on-dark-soft); line-height: 1.75; max-width: 480px;
  position: relative; z-index: 1;
}
.member-profile-hero__social {
  display: flex; gap: 1rem; margin-top: 2rem; position: relative; z-index: 1;
}
.member-profile-hero__social a {
  color: var(--gold); opacity: 0.75; transition: opacity 0.2s;
}
.member-profile-hero__social a:hover { opacity: 1; }
.member-bio-section {
  background: var(--bg); padding-block: clamp(3.5rem, 7vw, 6rem);
}
.member-bio-section .container {
  max-width: 780px; margin-inline: auto;
}
.member-bio-section h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy); margin-bottom: 2rem; font-weight: 600;
}
.member-bio-section p {
  color: var(--text-soft); line-height: 1.85; margin-bottom: 1.4rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}
.member-expertise-section {
  background: var(--navy); padding-block: clamp(3rem, 6vw, 5rem);
}
.member-expertise-section h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold-light); margin-bottom: 2rem; font-weight: 500;
}
.member-expertise-tags {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.member-expertise-tag {
  display: inline-block; background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.3); border-radius: 100px;
  color: var(--on-dark); font-family: var(--font-body); font-size: 0.83rem;
  padding: 0.45rem 1.1rem; letter-spacing: 0.3px;
}
.member-highlights-section {
  background: var(--surface-2); padding-block: clamp(3rem, 6vw, 5rem);
}
.member-highlights-section h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy); margin-bottom: 2rem; font-weight: 600;
}
.member-highlights-list {
  list-style: none; display: grid; gap: 0.9rem;
}
.member-highlights-list li {
  display: flex; align-items: baseline; gap: 0.9rem;
  font-family: var(--font-body); font-size: 0.97rem; color: var(--text-soft);
  line-height: 1.6;
}
.member-highlights-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 0.5rem;
}
.member-motto {
  background: var(--navy-soft); padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
}
.member-motto p {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--on-dark); font-style: italic; line-height: 1.6; margin: 0;
}
.member-back-band {
  background: var(--navy); padding-block: 4rem; text-align: center;
}
.member-back-band p {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--on-dark-soft); margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .member-profile-hero { grid-template-columns: 1fr; grid-template-rows: 55vh auto; }
  .member-profile-hero__photo { min-height: 55vh; }
  .member-profile-hero__info { padding: 2.5rem 1.5rem; }
  .member-profile-hero__name { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}
#member-loading, #member-error { text-align: center; padding: 6rem 2rem; }
#member-loading p, #member-error p { color: var(--text-soft); font-size: 1rem; }
#member-error h2 { color: var(--navy); font-family: var(--font-display); margin-bottom: 1rem; }

/* ---------- Mobile nav ---------- */
@media (max-width: 980px) {
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 210;
    padding: 0.75rem; background: rgba(12,22,38,0.4); border-radius: 8px;
    position: relative; min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }
  .nav__burger span { width: 24px; height: 2px; background: var(--on-dark); transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 0; background: rgba(10,19,32,0.99);
    transform: translateX(100%); transition: transform 0.35s ease;
    z-index: 200; list-style: none; padding-inline: 2rem;
  }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links a { font-size: 1.1rem; display: flex; align-items: center; min-height: 56px; }
  .nav__links .nav__cta { margin-top: 1.5rem; display: inline-flex; min-height: 44px; }
  .nav__checkbox:checked ~ .nav__links { transform: translateX(0); }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Small screen refinements (≤ 520px) ---------- */
@media (max-width: 520px) {
  /* Nav: collapse brand name to single line, hide subtitle */
  .nav__brand { flex: 1 1 auto; min-width: 0; overflow: hidden; }
  .nav__brand-sub { display: none; }
  .nav__brand-name {
    font-size: 0.78rem; max-width: none; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
  }
  .nav__logo { width: 38px; height: 38px; }

  /* Typography: reduce h1 slightly, tighten section pad */
  :root { --section-pad: clamp(48px, 10vw, 80px); }
  h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  /* Hero: fix top clearance now nav is shorter, full-width CTA buttons */
  .hero { padding-top: 5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  /* Sections: more padding for content breathing room at edges */
  .container { padding-inline: 1.1rem; }

  /* Footer bar: stack and centre */
  .footer__bar { flex-direction: column; text-align: center; gap: 0.4rem; }

  /* Footer nav: proper touch targets */
  .footer__nav { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .footer__nav a { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 0.6rem; }

  /* Member profile: reduce tall photo on small screens */
  .member-profile-hero { grid-template-rows: 48vh auto; }
  .member-profile-hero__photo { min-height: 48vh; }
  .member-profile-hero__info { padding: 2rem 1.2rem; }

  /* Member card profile link: larger tap area */
  .member-card__profile-link { min-height: 40px; display: inline-flex; align-items: center; padding-block: 0.4rem; }

  /* Profile back link tap area */
  .member-profile-hero__back { min-height: 44px; }

  /* Payment tabs: tighter text on small screens */
  .payment__tab { font-size: 0.75rem; padding: 0.75rem 0.6rem; letter-spacing: 0.3px; }

  /* Pricing card: reduce large price font */
  .pricing-card__amount { font-size: 2.8rem; }

  /* CTA band actions: stack vertically */
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }
}

/* Scroll-margin so fixed nav doesn't cover anchor targets */
[id] { scroll-margin-top: 80px; }
