*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #1a2744;
  --steel: #4a6fa5;
  --silver: #c8d4e8;
  --off-white: #f4f6fa;
  --white: #fff;
  --text: #1e2535;
  --muted: #5a6480;
  --gold: #b8975a;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.al-link {
  color: var(--gold);
  border: 1px solid rgba(184, 151, 90, 0.4);
  margin-left: 8px;
}
.nav-links a.al-link:hover {
  background: rgba(184, 151, 90, 0.1);
}
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 40, 0.85) 0%,
    rgba(10, 18, 40, 0.35) 60%,
    rgba(10, 18, 40, 0.2) 100%
  );
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
section {
  padding: 96px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}
.tab-section {
  background: var(--off-white);
}
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--silver);
  margin-bottom: 64px;
}
.tab-btn {
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.tab-btn:hover {
  color: var(--navy);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}
.community-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.14);
}
.card-media {
  position: relative;
}
.media-tabs {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  gap: 4px;
}
.media-tab {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.15s;
}
.media-tab.active {
  background: var(--navy);
  color: #fff;
}
.card-img {
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.community-card:hover .card-img img {
  transform: scale(1.04);
}
.card-img-gallery {
  display: flex;
  height: 220px;
  overflow: hidden;
}
.card-img-gallery img {
  flex: 1;
  object-fit: cover;
  transition: transform 0.4s;
}
.card-img-gallery img + img {
  border-left: 2px solid #fff;
}
.community-card:hover .card-img-gallery img {
  transform: scale(1.04);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-multi {
  display: flex;
  flex-direction: column;
}
.card-body {
  padding: 24px 28px 28px;
}
.card-location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.15;
}
.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}
.card-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-right: 6px;
  margin-bottom: 4px;
}
.tag-active {
  background: rgba(74, 111, 165, 0.12);
  color: var(--steel);
}
.tag-sf {
  background: rgba(184, 151, 90, 0.12);
  color: var(--gold);
}
.tag-mf {
  background: rgba(26, 39, 68, 0.08);
  color: var(--navy);
}
.tag-done {
  background: rgba(40, 167, 69, 0.12);
  color: #28a745;
}
.tag-legacy {
  background: rgba(184, 151, 90, 0.08);
  color: #8a6a30;
  border: 1px solid rgba(184, 151, 90, 0.3);
}
.about-section {
  background: var(--navy);
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-photo img {
  width: 100%;
  display: block;
}
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}
.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.cred {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 16px 20px;
}
.cred-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.cred-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}
.al-banner {
  background: linear-gradient(135deg, #0f1a30 0%, #1e3055 100%);
  padding: 80px 0;
}
.al-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.al-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.al-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.al-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 12px;
}
.btn-gold:hover {
  background: #a8874a;
  transform: translateY(-1px);
}
.al-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.al-stat {
  border: 1px solid rgba(184, 151, 90, 0.25);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
}
.al-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.al-stat-lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.stat-box {
  background: var(--off-white);
  border-radius: 8px;
  padding: 32px;
}
.stat-num {
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--navy);
}
.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.contact-section {
  background: var(--off-white);
}
.contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 40px 56px;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.08);
}
.contact-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.contact-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact-btn {
  margin-top: 8px;
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: var(--steel);
}
footer {
  background: #0f1520;
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img {
  height: 36px;
  opacity: 0.7;
}
.footer-text {
  font-size: 13px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-links a {
    padding: 8px 10px;
    font-size: 11px;
  }
  .hero-content {
    padding: 0 24px 60px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .container {
    padding: 0 24px;
  }
  .about-grid,
  .al-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-creds,
  .al-stats {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 32px 24px;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
