/* ===== Wellington Asset Holdings - Site Styles ===== */

:root {
  --navy: #0f2540;
  --navy-dark: #0a1a2e;
  --navy-light: #1c3a5e;
  --gold: #b8923f;
  --gold-light: #d4af6a;
  --cream: #f7f5f0;
  --ink: #1c2530;
  --ink-soft: #4a5568;
  --white: #ffffff;
  --border: #e4e0d8;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1160px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow.center {
  text-align: center;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

h2.center {
  text-align: center;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-sub.center {
  text-align: center;
}

.section-sub.light {
  color: #c7d2df;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 26, 46, 0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 26, 46, 0.96);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.01em;
}

.brand-name-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 35, 0.72) 0%,
    rgba(10, 20, 35, 0.55) 45%,
    rgba(10, 20, 35, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  max-width: 720px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 19px;
  max-width: 560px;
  color: #dbe4ee;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost-inverse {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-ghost-inverse:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-primary-inverse {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary-inverse:hover {
  background: var(--gold-light);
}

/* ===== Pillars ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 37, 64, 0.08);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 146, 63, 0.1);
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
}

.pillar-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat {
  padding: 22px 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 10px rgba(15, 37, 64, 0.05);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ===== Leadership ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.leadership-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.leader-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.leadership-grid-single .leader-card {
  text-align: left;
}

.leader-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.leadership-grid-single .leader-avatar {
  margin: 0 0 20px;
}

.leader-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.leader-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ===== Contact ===== */
.contact-inner {
  max-width: 760px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 8px 0 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #dbe4ee;
}

.contact-item i {
  color: var(--gold-light);
  font-size: 16px;
}

.contact-item a {
  color: #dbe4ee;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-actions {
  display: flex;
  justify-content: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

.footer-inner p {
  font-size: 13px;
  color: #8fa0b3;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 26, 46, 0.98);
    padding: 24px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 17px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
