@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #2e4059;
  --navy-dark: #1e2d40;
  --navy-light: #3a4f6e;
  --cream: #f5f2eb;
  --cream-dark: #ede9e0;
  --gold: #c8b99a;
  --gold-light: #ddd0b8;
  --white: #ffffff;
  --text-on-navy: rgba(255,255,255,0.72);
  --text-on-navy-muted: rgba(255,255,255,0.45);
  --text-dark: #1e2d40;
  --text-mid: #4a5568;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 18px; line-height: 1.7; color: var(--text-dark); background: var(--cream); }

/* NAV */
nav {
  background: var(--cream);
  padding: 16px 56px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(46,64,89,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { /* image version */
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: #7a2535;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--navy-dark) !important; }

/* FOOTER */
footer {
  background: var(--navy-dark);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: var(--serif); font-size: 20px; color: var(--gold); letter-spacing: 0.06em; }
.footer-copy { font-size: 12px; color: var(--text-on-navy-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--text-on-navy-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 0.5px solid rgba(200,185,154,0.4);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,185,154,0.08); }

/* SECTION LABEL */
.eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-navy { color: #7a2535; }

/* DIVIDERS */
.section-divider { border: none; border-top: 0.5px solid rgba(255,255,255,0.08); }
.section-divider-light { border: none; border-top: 0.5px solid rgba(46,64,89,0.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 8px 16px;
    height: auto;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .nav-logo-img { height: 40px; }
  .nav-links {
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
  }
  .nav-links a { font-size: 12px; }
  .nav-links .meet-team-full { display: none; }
  .nav-links .meet-team-short { display: inline; }
  .nav-cta {
    padding: 6px 10px;
    font-size: 11px !important;
    white-space: nowrap;
  }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}
@media (min-width: 769px) {
  .meet-team-short { display: none; }
  .meet-team-full { display: inline; }
}

/* LOGO IMAGE */
.nav-logo-img {
  height: 112px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: auto;
  width: auto;
  display: block;
  /* SVG has colored text - invert on dark footer background */
  filter: brightness(0) invert(1) sepia(1) saturate(0.3) brightness(1.4);
}
