/* SAWYERR & CO. — SHARED STYLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B36;
  --navy-mid: #152444;
  --navy-light: #1E2F50;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --muted: #6A6A6A;
  --border: #E2DDD4;
  --rule: #C8B878;
  --lgrey: #F5F4F0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 54, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  color: var(--gold-light) !important;
  border: 1px solid rgba(184, 134, 11, 0.4);
  padding: 8px 20px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* PAGE HEADER (inner pages) */
.page-header {
  background: var(--navy);
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,134,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.page-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.page-header-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

.page-header-eyebrow span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-header-title em { font-style: italic; color: var(--gold-light); }

.page-header-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* SECTIONS */
.section { padding: 100px 60px; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-lgrey { background: var(--lgrey); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

.eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--gold-light); }

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 16px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost-navy {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }

.btn-ghost-white {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* GOLD QUOTE BOX */
.gold-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  padding: 40px 48px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

/* FOOTER */
footer {
  background: #070F1F;
  padding: 0 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--gold-light); }

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-brand-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-bottom-right {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-header { padding: 120px 24px 60px; }
  .section { padding: 64px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 0 32px; }
  footer { padding: 0 24px; }
}
