/* =============================================================
   AUREUS PARTNERS — style.css
   Sections:
   1. Variables & Reset
   2. Typography Utilities
   3. Navigation
   4. Hero
   5. Ticker Strip
   6. Shared Section Styles
   7. About / Founder
   8. Services / What We Do
   9. How We Work
   10. Sectors
   11. Contact
   12. Footer
   13. Scroll Reveal
   14. Animations
   15. Mobile / Responsive
============================================================= */


/* ─────────────────────────────────────────
   1. VARIABLES & RESET
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Neutrals */
  --white:   #FFFFFF;
  --snow:    #FAFAF8;
  --paper:   #F4F2EE;
  --rule:    #E8E5DF;
  --rule2:   #D6D2CA;
  --ink:     #141210;
  --ink2:    #3A3733;
  --gray:    #7A776F;
  --silver:  #B0ADA6;

  /* Gold accent — change these two to retheme */
  --gold:    #A8843A;
  --gold2:   #C5A253;

  /* Typography */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Instrument Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}


/* ─────────────────────────────────────────
   2. TYPOGRAPHY UTILITIES
───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h2 i,
h2 em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
}

.body-copy {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
}


/* ─────────────────────────────────────────
   3. NAVIGATION
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#nav.scrolled {
  border-bottom-color: var(--rule);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-mark svg {
  width: 14px;
  height: 14px;
}
.nav-wordmark {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-wordmark span {
  color: var(--silver);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links .cta a {
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .cta a:hover {
  background: var(--ink);
  color: var(--white);
}


/* ─────────────────────────────────────────
   4. HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.hero-left {
  padding: 160px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--rule);
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-h1 i {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.32s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.44s forwards;
}

.btn-solid {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--white);
  transition: background 0.2s;
}
.btn-solid:hover {
  background: var(--ink2);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-line:hover {
  color: var(--ink);
}
.btn-line::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.2s;
}
.btn-line:hover::after {
  transform: translateX(3px);
}

.hero-right {
  padding: 160px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-stat {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero-stat-num i {
  font-style: italic;
  color: var(--gold2);
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}


/* ─────────────────────────────────────────
   5. TICKER STRIP
───────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--snow);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver);
  flex-shrink: 0;
}
.ticker-sep {
  width: 4px;
  height: 4px;
  background: var(--gold2);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   6. SHARED SECTION STYLES
───────────────────────────────────────── */
.section {
  border-bottom: 1px solid var(--rule);
}
.wrap {
  padding: 96px 60px;
}


/* ─────────────────────────────────────────
   7. ABOUT / FOUNDER
───────────────────────────────────────── */
#founder .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.founder-img-area {
  background: var(--paper);
  border: 1px solid var(--rule);
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.founder-img-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 140px;
  font-weight: 400;
  color: var(--rule2);
  font-style: italic;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
/* To use a real photo, replace the monogram div with:
   <img src="images/ted-andrews.jpg" alt="Ted Andrews" style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;">
*/
.founder-img-caption {
  position: relative;
  z-index: 2;
}
.founder-img-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  display: block;
}
.founder-img-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.founder-content {
  padding-top: 4px;
}


/* ─────────────────────────────────────────
   8. SERVICES / WHAT WE DO
───────────────────────────────────────── */
#what .wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.what-left {
  position: sticky;
  top: 88px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  align-self: start;
}

.what-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.what-card:hover {
  background: var(--snow);
}

.what-card-num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--gold2);
  display: block;
  margin-bottom: 16px;
}
.what-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.what-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   9. HOW WE WORK  (dark section)
───────────────────────────────────────── */
#how {
  background: var(--ink);
}
#how .eyebrow {
  color: var(--gold2);
}
#how .eyebrow::before {
  background: var(--gold2);
}
#how h2 {
  color: var(--white);
}
#how h2 i {
  color: var(--gold2);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-step {
  padding: 40px 32px;
  background: var(--ink);
}

.how-step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold2);    /* ← gold step numbers */
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.how-step-accent {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold2);
  margin-bottom: 20px;
}
.how-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.how-step p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   10. SECTORS
───────────────────────────────────────── */
#sectors .wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.sectors-left {
  position: sticky;
  top: 88px;
}

.sectors-list {
  display: flex;
  flex-direction: column;
}

.sector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}
.sector-row:first-child {
  border-top: 1px solid var(--rule);
}

.sector-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.sector-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--rule2);
  padding: 5px 10px;
}


/* ─────────────────────────────────────────
   11. CONTACT
───────────────────────────────────────── */
#contact {
  background: var(--snow);
}
#contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule2);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-email-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cf-row {
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}
.cf-row label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}
.cf-row input,
.cf-row textarea,
.cf-row select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.cf-row input::placeholder,
.cf-row textarea::placeholder {
  color: var(--silver);
}
.cf-row select {
  color: var(--silver);
  cursor: pointer;
}
.cf-row select option {
  background: var(--white);
  color: var(--ink);
}

.cf-submit {
  margin-top: 28px;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.2s;
}
.cf-submit:hover {
  background: var(--ink2);
}


/* ─────────────────────────────────────────
   12. FOOTER
───────────────────────────────────────── */
footer {
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
}

.footer-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-copy {
  font-size: 11px;
  color: var(--silver);
}


/* ─────────────────────────────────────────
   13. SCROLL REVEAL
───────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.r.in {
  opacity: 1;
  transform: none;
}
.r2 { transition-delay: 0.1s; }
.r3 { transition-delay: 0.2s; }


/* ─────────────────────────────────────────
   14. ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ─────────────────────────────────────────
   15. MOBILE / RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  #nav {
    padding: 0 20px;
  }
  /* Hide text nav links on mobile, keep Contact button */
  .nav-links li:not(.cta) {
    display: none;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 120px 20px 48px;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px 20px 48px;
    gap: 32px;
  }

  .wrap {
    padding: 64px 20px;
  }

  #founder .wrap,
  #what .wrap,
  #sectors .wrap,
  #contact .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .what-left,
  .sectors-left {
    position: static;
  }

  .what-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px;
    text-align: center;
  }
}
