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

:root {
  --ink:     #0E0C0A;
  --bone:    #F5F0E8;
  --warm:    #EDE6D8;
  --gold:    #B8924A;
  --gold-lt: #D4B07A;
  --slate:   #2C3440;
  --mid:     #7A7268;
  --rule:    #DDD5C5;
  --white:   #FDFAF5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.serif { font-family: 'Cormorant Garamond', serif; }
.mono {
  font-family: 'Jost', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.fade-up  { animation: fadeUp  0.9s cubic-bezier(.22,.68,0,1.2) both; }
.fade-in  { animation: fadeIn  1.1s ease both; }
.delay-1  { animation-delay: 0.15s; }
.delay-2  { animation-delay: 0.3s; }
.delay-3  { animation-delay: 0.45s; }
.delay-4  { animation-delay: 0.6s; }
.delay-5  { animation-delay: 0.75s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
nav.scrolled {
  border-bottom-color: var(--rule);
  padding: 16px 60px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bone) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--rule);
}
.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  animation: lineGrow 0.6s ease both;
  transform-origin: left;
}
.hero h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold); }
.btn-ghost {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
  font-weight: 500;
}

.hero-right {
  position: relative;
  background: var(--warm);
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  mix-blend-mode: multiply;
  filter: sepia(8%);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184,146,74,0.08) 0%, transparent 60%);
  z-index: 1;
}
.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  background: rgba(14,12,10,0.82);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}
.hero-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.5;
}
.hero-caption cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  padding: 0 30px;
}
.ticker-item span { color: var(--gold); font-size: 16px; line-height: 1; }

/* ── SECTION WRAPPER ── */
.section {
  padding: 100px 60px;
}
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 64px;
}
.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 600;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -12px;
}
.section-head-text .mono { color: var(--gold); margin-bottom: 12px; display: block; }
.section-head-text h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  color: var(--ink);
  line-height: 1.1;
}

/* ── INSIDER STRIP ── */
.insider {
  background: var(--warm);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.insider-label { color: var(--gold); margin-bottom: 20px; display: block; }
.insider-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}
.insider-quote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.insider-right p {
  font-size: 16px;
  line-height: 1.9;
  color: #4A4540;
  font-weight: 300;
}
.insider-right p + p { margin-top: 18px; }
.insider-right strong { color: var(--ink); font-weight: 500; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--ink); }
.service-card:hover .service-title,
.service-card:hover .service-body,
.service-card:hover .service-num { color: rgba(255,255,255,0.9); }
.service-card:hover .service-icon { border-color: var(--gold); color: var(--gold); }
.service-card:hover .service-line { background: var(--gold); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--gold);
  transition: border-color 0.3s, color 0.3s;
}
.service-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s;
}
.service-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  transition: color 0.3s;
}

/* ── WHO I WORK WITH ── */
.who {
  background: var(--slate);
  padding: 100px 60px;
  color: #fff;
}
.who .mono { color: var(--gold-lt); margin-bottom: 16px; display: block; }
.who h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  max-width: 600px;
  line-height: 1.1;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.who-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 32px;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.who-card:hover {
  border-color: var(--gold);
  background: rgba(184,146,74,0.06);
}
.who-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.who-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.who-card .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(184,146,74,0.4);
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 100px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: sepia(5%);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  color: var(--bone);
  padding: 24px 28px;
  text-align: center;
}
.about-img-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
}
.about-img-badge .small {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}
.about-content .mono { color: var(--gold); margin-bottom: 16px; display: block; }
.about-content h2 {
  font-size: clamp(32px, 3vw, 46px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-content .lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.5;
  font-weight: 500;
}
.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #4A4540;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-content strong { color: var(--ink); font-weight: 500; }
.credential-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
}
.credential-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}



/* ── PROCESS ── */
.process {
  padding: 100px 60px;
  background: var(--warm);
}
.process .mono { color: var(--gold); display: block; margin-bottom: 12px; }
.process h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  color: var(--ink);
  margin-bottom: 60px;
  max-width: 500px;
  line-height: 1.1;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: steps;
}
.process-step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--rule);
  padding-right: 36px;
  margin-right: 36px;
}
.process-step:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

/* ── CTA ── */
.cta-section {
  padding: 120px 60px;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'STRATEGY';
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-section .mono { color: var(--gold); display: block; margin-bottom: 20px; }
.cta-section h2 {
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.05;
  position: relative;
}
.cta-section h2 em { color: var(--gold); }
.cta-section p {
  font-size: 17px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}
.cta-section .btn-primary {
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 3px;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 60px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left::after { display: none; }
  .insider { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-step { border-right: none; margin-right: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .section, .cta-section { padding: 80px 32px; }
  .who, .process, .about-strip { padding: 80px 32px; }
  .insider { padding: 60px 32px; }
}