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

:root {
  --navy:       #0b1c2e;
  --navy-mid:   #14304f;
  --gold:       #b8922a;
  --gold-light: #d4aa4a;
  --gold-pale:  #f0e0b0;
  --white:      #ffffff;
  --off-white:  #f8f6f2;
  --light:      #ede9e0;
  --gray:       #5a6472;
  --text:       #1c2b3a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold-pale);
  letter-spacing: 0.06em;
}
.topbar-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-contact a:hover { color: var(--gold-light); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 24px rgba(11,28,46,0.10);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.site-logo em { color: var(--gold); font-style: normal; }

.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s, transform 0.2s;
}
.header-logos img:hover { filter: none; transform: translateY(-1px); }
.header-logos a {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--light);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-logos a:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--light);
  z-index: 199;
  box-shadow: 0 8px 32px rgba(11,28,46,0.12);
  padding: 8px 0 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--light);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--off-white); color: var(--gold); }

/* ── BANNER SECTION ── */
.banner-section {
  position: relative;
  overflow: hidden;
}

/* The actual banner image fills the full width */
.banner-img-wrap {
  position: relative;
  width: 100%;
  max-height: 560px;
  overflow: hidden;
}
.banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 280px;
}

/* Dark gradient overlay on the image */
.banner-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
	90deg,
	rgba(11,28,46,0.82) 0%,
	rgba(11,28,46,0.55) 50%,
	rgba(11,28,46,0.20) 100%
  );
}

/* Caption floats over the image */
.banner-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 48px clamp(24px, 6vw, 80px);
  z-index: 2;
}
.banner-caption-inner {
  max-width: 600px;
  color: var(--white);
}
.banner-logo-wrap {
  margin-bottom: 20px;
}
.banner-logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.banner-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0;
}
.banner-caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.banner-caption h2 b { color: var(--gold-pale); }
.banner-caption p {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.banner-caption p b { color: var(--gold-pale); }
.banner-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-block;
  padding: 11px 26px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.2s;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(184,146,42,0.35); }
.btn-ghost {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-pale); }

/* Section separator */
.sep {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

/* ── FEATURE BAR ── */
.feature-bar {
  background: var(--navy-mid);
  padding: 36px 28px;
}
.feature-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.feature-item {
  background: var(--navy-mid);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-pale);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--white);
  padding: 64px 28px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.about-label {
  text-align: right;
}
.about-label .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.about-label .rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 0 auto;
}
.about-body p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--navy); }

/* ── PRE-FOOTER ── */
.pre-footer {
  background: var(--navy);
  padding: 56px 28px;
}
.pre-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.pf-block { display: flex; align-items: flex-start; gap: 16px; }
.pf-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold-light);
}
.pf-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}
.pf-text p, .pf-text a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1.5;
}
.pf-text a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: #080f19;
  padding: 20px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}
.footer-inner a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-inner a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .feature-bar-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-label { text-align: left; }
  .about-label .rule { margin: 16px 0 0 0; }
}

@media (max-width: 680px) {
  .topbar-brand { display: none; }
  .topbar-contact { gap: 14px; }
  .header-logos { display: none; }
  .hamburger { display: flex; }
  .banner-img-wrap { max-height: 420px; }
  .banner-img-wrap::after {
	background: linear-gradient(
	  180deg,
	  rgba(11,28,46,0.75) 0%,
	  rgba(11,28,46,0.55) 100%
	);
  }
  .banner-caption {
	align-items: flex-end;
	padding: 28px 20px;
  }
  .banner-caption-inner { max-width: 100%; }
  .banner-logo-wrap img { height: 36px; }
  .banner-cta { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; }
  .feature-bar-inner { grid-template-columns: 1fr; }
  .feature-item { padding: 20px 24px; }
  .pre-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-strip { padding: 48px 20px; }
  .feature-bar { padding: 0; }
}

@media (max-width: 400px) {
  .topbar-contact { flex-direction: column; align-items: flex-start; gap: 4px; }
  .banner-img-wrap { max-height: 360px; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
