:root {
  --navy: #101c34;
  --navy-deep: #0a1424;
  --gold: #c9a227;
  --gold-light: #e4c65e;
  --cream: #f7f4ec;
  --ink: #1a1f2b;
  --muted: #5b6472;
  font-family: "Georgia", "Iowan Old Style", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, .brand, .quote blockquote {
  font-family: "Georgia", "Iowan Old Style", serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  color: var(--gold-light);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: #e8e6df;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--gold-light); }
.nav-instagram {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,36,0.75) 0%, rgba(10,20,36,0.55) 45%, rgba(10,20,36,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 20px;
  line-height: 1.1;
}
.hero-lede {
  max-width: 640px;
  font-size: 1.15rem;
  color: #dfe2e8;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Intro */
.intro { padding: 100px 0; background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.intro-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(16,28,52,0.18);
}
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.intro-text h2, .pillar-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 20px;
  color: var(--navy);
}
.intro-text p, .pillar-body p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

/* Pillars */
.pillar { padding: 96px 0; }
.pillar-light { background: var(--cream); }
.pillar-dark { background: var(--navy); }
.pillar-dark .section-eyebrow { color: var(--gold-light); }
.pillar-dark h2 { color: #fff; }
.pillar-dark p { color: #c7ccd6; }
.pillar-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
}
.pillar-index {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}
.pillar-body p + p { margin-top: 18px; }
.pillar-placeholder {
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  background: rgba(201, 162, 39, 0.08);
  color: var(--muted);
}
.pillar-dark .pillar-placeholder {
  background: rgba(201, 162, 39, 0.12);
  color: #c7ccd6;
}

/* Quote */
.quote {
  background: var(--navy-deep);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.quote blockquote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 780px;
  margin: 0 auto 20px;
  font-style: italic;
  color: var(--gold-light);
}
.quote-attr { color: #9aa2b1; letter-spacing: 0.05em; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9aa2b1;
  padding: 32px 0;
  font-size: 0.9rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-social a { color: var(--gold-light); }
.site-footer a { color: var(--gold-light); }

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { max-width: 240px; margin: 0 auto; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-index { font-size: 2.5rem; opacity: 0.5; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    display: none;
    gap: 18px;
  }
  .site-nav.open { display: flex; }
}
