/* =====================================================
   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(12, 22, 38, 0.92);
  backdrop-filter: blur(12px);
  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 { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); }

.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;
}
.nav__cta:hover { background: var(--gold-light); }

.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;
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(201,162,75,0.18), transparent 55%),
    radial-gradient(100% 80% at 15% 90%, rgba(27,45,73,0.9), transparent 60%),
    linear-gradient(160deg, #0a1320, #122138 60%, #0c1626);
}
.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; font-size: 1.5rem; margin-bottom: 1.1rem;
  background: var(--surface-2); border: 1px solid var(--border);
}
.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; }
.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; }
.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 {
  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 {
  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%; 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-wrap: wrap; gap: 1rem 1.4rem; 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(30px); transition: opacity 0.7s ease, transform 0.7s ease; pointer-events: none; }
.reveal.visible { opacity: 1; transform: none; pointer-events: 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(3, 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; }

/* ---------- 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); }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 980px) {
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 110;
    padding: 0.5rem; background: rgba(12,22,38,0.4); border-radius: 8px;
  }
  .nav__burger span { width: 26px; 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: 1.8rem; background: rgba(12,22,38,0.98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav__links a { font-size: 1.1rem; }
  .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); }
}
