:root {
  --gold:        #A8832A;
  --gold-light:  #C9A84C;
  --gold-pale:   #F5EDD6;
  --ink:         #1A1A2E;
  --ink-mid:     #3D3D55;
  --ink-light:   #6B6B88;
  --surface:     #FAFAF7;
  --surface-alt: #F2F0EB;
  --white:       #FFFFFF;
  --border:      #E2DDD4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 3px rgba(26,26,46,0.06), 0 4px 16px rgba(26,26,46,0.08);
  --max-width: 1100px;
  --section-pad: 96px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--surface); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: all 0.18s ease; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); padding: 9px 20px; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,250,247,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--ink-mid); transition: color 0.15s; }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }
.hero { padding: 80px 0 72px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding: 4px 12px; background: var(--gold-pale); border-radius: 40px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 68px); font-weight: 300; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero h1 { font-family: var(--font-body) !important; font-weight: 600 !important; letter-spacing: -0.03em !important; }
.hero-body { font-size: 17px; color: var(--ink-mid); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-image { position: relative; }
.hero-image img { width: 100%; max-width: 380px; border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; object-position: top; box-shadow: 0 20px 60px rgba(26,26,46,0.18); }
.hero-image::before { content: ''; position: absolute; inset: -12px -12px 12px 12px; border: 2px solid var(--gold-pale); border-radius: calc(var(--radius-lg) + 6px); z-index: -1; }
.logos { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-alt); }
.logos-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 32px; }
.logos-grid { display: grid; grid-template-columns: repeat(5, auto); justify-content: center; gap: 24px 40px; }
.logos-grid img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.55); transition: filter 0.2s; }
.logos-grid img:hover { filter: grayscale(0) opacity(1); }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 300; letter-spacing: -0.025em; text-align: center; margin-bottom: 48px; color: var(--ink); }
.divider-quote { padding: 56px 0; background: var(--ink); }
.divider-quote p { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; font-style: italic; color: var(--gold-pale); text-align: center; max-width: 680px; margin: 0 auto; line-height: 1.5; letter-spacing: -0.01em; }
.services { padding: var(--section-pad) 0; background: var(--surface-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.service-card .card-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 14px; color: var(--ink); }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li { font-size: 14px; color: var(--ink-mid); padding-left: 16px; position: relative; }
.service-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 1px; }
.testimonial { padding: var(--section-pad) 0; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px 64px; display: flex; gap: 48px; align-items: flex-start; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-card); }
.testimonial-photo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gold-pale); }
blockquote p { font-family: var(--font-display); font-size: 20px; font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.6; letter-spacing: -0.01em; margin-bottom: 24px; }
blockquote footer { display: flex; flex-direction: column; gap: 2px; }
blockquote strong { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); }
blockquote span { font-size: 13px; color: var(--gold); font-weight: 500; }
.cta-section { padding: var(--section-pad) 0; background: var(--ink); text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 300; letter-spacing: -0.025em; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-section .btn-primary { background: var(--gold); border-color: var(--gold); font-size: 15px; padding: 15px 36px; }
.cta-section .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0 24px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.footer .logo { color: var(--white); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-linkedin { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-linkedin:hover { color: var(--gold-light); }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-copy p { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 280px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex-direction: column; align-items: center; text-align: center; padding: 40px 32px; gap: 28px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; z-index: 99; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
  blockquote p { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* Logo item: icon + name */
.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}
.logo-item:hover { filter: grayscale(0) opacity(1); }
.logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.logo-item span {
  font-family: system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.logo-item span { display: flex; flex-direction: column; gap: 2px; }
.logo-item em { font-style: normal; font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.clarity-section { padding: 56px 0 8px; background: var(--surface); }
.what-i-do { padding-top: 32px !important; padding-bottom: 48px !important; }
.hero h1 { font-size: clamp(36px, 4.5vw, 58px) !important; }
.logos-grid { display: grid !important; grid-template-columns: repeat(5, auto) !important; justify-items: center !important; justify-content: center !important; gap: 24px 40px !important; }

@media (max-width: 700px) {
  .logos-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px 16px !important;
    padding: 0 16px !important;
  }
  .logo-item {
    flex: 0 0 auto !important;
    max-width: 140px !important;
  }
  .logo-item img {
    height: 20px !important;
  }
  .logo-item span {
    font-size: 12px !important;
  }
  .logo-item em {
    font-size: 8px !important;
  }
}
.clarity-section p { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); font-weight: 300; font-style: italic; color: var(--ink); max-width: 720px; margin: 0 auto; text-align: center; line-height: 1.7; letter-spacing: -0.01em; }

/* Smaller headshot */
.hero-image img { max-width: 260px !important; }

/* Two testimonials side by side */
.testimonials-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .testimonials-wrap { grid-template-columns: 1fr; }
}

/* Headshot — enforce small size and square crop */
.hero-image img {
  max-width: 240px !important;
  width: 240px !important;
  height: 240px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* Testimonial photos — fix sliver rendering */
.testimonial-photo {
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* Testimonial card layout fix */
.testimonial-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

/* Fix hero image container to match smaller photo */
.hero-image::before {
  inset: -8px -8px 8px 8px !important;
}
.hero-image {
  max-width: 240px !important;
}

.what-i-do { padding: var(--section-pad) 0; }
.what-i-do-intro { font-size: 20px; color: var(--ink-mid); max-width: 680px; margin: 0 auto 32px; text-align: center; line-height: 1.75; }
.what-i-do-list { max-width: 600px; margin: 0 auto 32px; list-style: none; display: flex; flex-direction: column; gap: 24px; }
.what-i-do-list li { font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.4; padding-left: 32px; padding-bottom: 8px; position: relative; }
.what-i-do-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 18px; font-weight: 600; }
.what-i-do-close { font-size: 18px; font-style: italic; color: var(--ink-mid); max-width: 680px; margin: 0 auto; text-align: center; }
.how-i-work { padding: var(--section-pad) 0; background: var(--ink); text-align: center; }
.how-i-work h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 300; letter-spacing: -0.025em; color: var(--white); margin-bottom: 24px; }
.how-i-work p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 680px; margin: 0 auto; line-height: 1.8; }

.what-i-do { background: var(--surface); }

.what-i-do-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto 40px; }
.what-i-do-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 28px; }
.what-i-do-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 14px; }
.what-i-do-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.what-i-do-card li { font-size: 14px; color: var(--ink-mid); padding-left: 16px; position: relative; line-height: 1.6; }
.what-i-do-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 1px; }
@media (max-width: 600px) { .what-i-do-grid { grid-template-columns: 1fr; } }
