/* ============================================================
   Global Assets and Wealth — placeholder site
   Palette inspired by the GAW logo: deep navy + teal + platinum
   ============================================================ */

:root {
  --ink:        #0a1929;
  --ink-2:      #11253b;
  --ink-soft:   #2a3a4c;
  --paper:      #f7f4ee;
  --paper-2:    #ece7dc;
  --rule:       #d8d2c4;
  --teal:       #2dd4bf;
  --teal-deep:  #14b8a6;
  --platinum:   #b69b6c;
  --platinum-2: #d4b87c;
  --warn:       #ef9a8d;
  --text:       #1d2a39;
  --text-soft:  #4f5b6a;
  --text-mute:  #7a8593;
  --white:      #ffffff;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 56px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 400; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 400; }
h3 { font-size: clamp(20px, 1.6vw, 24px); }
h4 { font-size: 14px; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; }

p { margin: 0 0 1em; }
em { font-style: italic; color: var(--platinum); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--platinum);
  margin: 0 0 24px;
}
.eyebrow--dark { color: var(--ink-soft); }
.eyebrow--light { color: var(--platinum-2); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 0 1.4em;
}
.lede--light { color: rgba(255,255,255,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--paper); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,238,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--rule); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__w { color: var(--teal-deep); }
.brand__text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,25,41,0.85) 0%, rgba(10,25,41,0.65) 45%, rgba(10,25,41,0.45) 100%),
    linear-gradient(to bottom, rgba(10,25,41,0.4), rgba(10,25,41,0.85));
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hero__title {
  color: var(--paper);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 18ch;
}
.hero__title em {
  color: var(--teal);
  font-style: italic;
  font-weight: 400;
}
.hero__lede {
  color: rgba(255,255,255,0.85);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 60ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
  max-width: 760px;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__stats strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--paper);
}
.hero__stats span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
/* ---------- Trust ---------- */
.trust {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.trust__label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  margin: 0 0 28px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 48px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
}
.trust__row span {
  white-space: nowrap;
  transition: color .3s ease;
}
.trust__row span:hover { color: var(--platinum); }

/* ---------- Sections ---------- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--showcase { background: var(--paper-2); }
.section--membership { background: var(--ink); color: var(--paper); }
.section--membership h2 { color: var(--paper); }
.section--membership .lede { color: rgba(255,255,255,0.8); }
.section--contact { background: var(--ink-2); color: var(--paper); }
.section--contact h2, .section--contact .section__title { color: var(--paper); }

.section__header { max-width: 780px; margin: 0 0 64px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header--center .lede { margin-left: auto; margin-right: auto; }
.section__title {
  font-size: clamp(30px, 4vw, 52px);
}
.section--dark .section__title { color: var(--paper); }

/* ---------- Grid split ---------- */
.grid--split {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.grid__col--media { position: sticky; top: 100px; }
@media (max-width: 900px) {
  .grid--split { grid-template-columns: 1fr; }
  .grid__col--media { position: static; }
}

/* ---------- About ---------- */
.about__principles {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.about__principles h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 6px;
}
.about__principles p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0;
}
.about__figure {
  margin: 0 0 32px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,25,41,0.45);
}
.about__figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about__figure figcaption {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 14px 4px 0;
}
.about__quote {
  margin: 0;
  border-left: 2px solid var(--platinum);
  padding: 8px 0 8px 24px;
}
.about__quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 14px;
  font-style: italic;
}
.about__quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--paper);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s ease;
}
.pillar:hover { background: var(--white); }
.pillar__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--platinum);
  letter-spacing: 0.12em;
}
.pillar h3 { margin: 0; font-size: clamp(24px, 2vw, 30px); }
.pillar p { color: var(--text-soft); margin: 0; }

.forum__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.forum__gallery figure { margin: 0; overflow: hidden; border-radius: 4px; }
.forum__gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(0.9) brightness(0.9);
}
.forum__gallery figure:hover img { transform: scale(1.05); filter: none; }
@media (max-width: 800px) {
  .forum__gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Leaders ---------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .leaders { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .leaders { grid-template-columns: 1fr; } }

.leader { display: flex; flex-direction: column; }
.leader__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
  margin-bottom: 20px;
}
.leader__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.leader:hover .leader__media img { transform: scale(1.04); }
.leader h3 {
  font-size: 22px;
  margin: 0 0 4px;
}
.leader__role {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 6px;
}
.leader__topic {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--platinum);
  margin: 0;
}
.leaders__more {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  max-width: 880px;
}
.leaders__more p { color: var(--text-soft); font-size: 15px; margin: 0; }
.leaders__more strong { color: var(--ink); font-weight: 500; }

/* ---------- Showcase ---------- */
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 56px;
}
@media (max-width: 980px) { .showcase__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .showcase__grid { grid-template-columns: 1fr; } }

.show {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  transition: background .3s, transform .3s;
}
.show:hover { background: var(--white); transform: translateY(-2px); }
.show__sector {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--platinum);
  font-weight: 500;
}
.show h3 { font-size: 22px; margin: 0; }
.show p { font-size: 14px; color: var(--text-soft); margin: 0; }

.showcase__photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}
.showcase__photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}
.showcase__photo figcaption {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 14px 4px 0;
}

/* ---------- Membership criteria ---------- */
.criteria {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 24px;
}
.criteria li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.criteria strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
}
.criteria span {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .criteria li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Form ---------- */
.form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form input,
.form textarea,
.form select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--paper);
  transition: border-color .25s ease;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.35); }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-bottom-color: var(--teal);
}
.form select { appearance: none; cursor: pointer; }
.form select option { background: var(--ink-2); color: var(--paper); }
.form .btn { justify-self: start; margin-top: 8px; }
.form__success {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 14px;
}
.form__error {
  margin: 12px 0 0;
  color: var(--warn);
  font-size: 14px;
}
/* Honeypot — visually hidden, off-screen; bots fill it, humans don't. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
  margin: 16px 0 0;
}
.footer__brand .brand__mark { color: var(--paper); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 640px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer__cols h4 {
  color: var(--platinum-2);
  margin-bottom: 16px;
  font-size: 11px;
}
.footer__cols div { display: flex; flex-direction: column; gap: 10px; }
.footer__cols a, .footer__cols span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer__cols a:hover { color: var(--teal); }
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 80px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--pad) 32px;
    gap: 18px;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-110%);
    transition: transform .35s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 18px; }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
