@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500&display=swap');

:root {
  --green-bright: #0EDA51;
  --green-deep: #0BAE41;
  --ink: #111111;
  --paper: #ffffff;

  --size-h1: 68px;
  --size-h2: 32px;
  --size-h3: 46px;
  --size-body: 22px;
  --size-eyebrow: 15px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Alegreya', serif;
  font-size: var(--size-body);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Alegreya', serif;
  font-weight: 600;
  font-size: 24px;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  background: var(--green-bright);
  color: #0d0d0d;
}

/* Sections */
section { padding: 88px 0; }
.section-dark { background: #0d0d0d; color: #fff; }

.eyebrow {
  font-family: 'Alegreya', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--size-eyebrow);
  color: var(--green-deep);
  margin: 0 0 16px;
}
.section-dark .eyebrow { color: var(--green-bright); }

h1 {
  font-weight: 800;
  font-size: var(--size-h1);
  line-height: 1.08;
  letter-spacing: 0.3px;
  margin: 0 0 6px;
}
h2 {
  font-weight: 800;
  font-size: var(--size-h3);
  line-height: 1.15;
  letter-spacing: 0.3px;
  margin: 0 0 18px;
}

p { font-size: var(--size-body); line-height: 1.6; margin: 0 0 16px; }

a.inline-link {
  color: var(--green-deep);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: opacity 0.15s ease;
}
.section-dark a.inline-link { color: var(--green-bright); }
a.inline-link:hover { opacity: 0.7; }

/* Hero */
.hero {
  text-align: center;
  min-height: 60vh;
  padding: 96px 0;
  display: flex;
  align-items: center;
}
.hero h1 { margin: 0 auto 32px; max-width: 900px; }
.accent-underline {
  color: var(--paper);
  text-decoration: underline wavy;
  text-decoration-color: var(--green-bright);
  text-decoration-thickness: 0.045em;
  text-underline-offset: 0.16em;
}

.emoji-headshot {
  height: 1.35em;
  width: 1.35em;
  object-fit: cover;
  border-radius: 50%;
  vertical-align: -0.32em;
  margin: 0 0.06em;
}

/* Client logo strip */
.logo-strip { text-align: center; }
.logo-strip .eyebrow { text-align: center; }
.logo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: center; justify-items: center; }
.logo-row img { width: 100%; height: auto; max-height: 220px; object-fit: contain; }

/* Full-bleed section photo: edge-to-edge, flush against the section above */
.photo-wrap { position: relative; }
.photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section-photo { display: block; width: 100%; height: auto; margin: 0; }

/* What I do / Mission */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.span-full { grid-column: 1 / -1; }

.services-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Alegreya', serif;
  font-weight: 400;
  font-size: 24px;
  text-decoration: none;
  padding: 28px 34px;
  border-radius: 10px;
  transition: opacity 0.15s ease;
  background: var(--ink);
  color: var(--paper);
}
.callout-label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-callout:hover { opacity: 0.85; }
.services-callout .callout-arrow { color: var(--green-bright); }

/* Testimonials */
#senja-widget-wrapper { margin-top: 24px; }

/* Strategist / Leader / Storyteller — stacked full-width components */
.pillar { padding: 72px 0; }
.pillar.light { background: var(--paper); color: var(--ink); }
.pillar.dark { background: #0d0d0d; color: #fff; }
.pillar h2 { max-width: 700px; }
.pillar p { max-width: 700px; }

/* Ideal clients — side visual for the "Strategist for hire" pillar */
.pillar-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.ideal-clients-label { margin-bottom: 20px; }
.ideal-clients { display: flex; flex-direction: column; gap: 34px; }
.client-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-family: 'Alegreya', serif;
  font-weight: 400;
  font-size: 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
}
.client-box:nth-child(1) { margin-right: 14%; }
.client-box:nth-child(2) { margin-left: 14%; }
.client-box:nth-child(3) { margin-right: 6%; }

.client-shape { flex-shrink: 0; background: var(--green-bright); }
.client-shape.circle { width: 16px; height: 16px; border-radius: 50%; }
.client-shape.square { width: 15px; height: 15px; border-radius: 3px; }
.client-shape.triangle {
  width: 0;
  height: 0;
  background: none;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid var(--green-bright);
}
.client-shape.diamond {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  transform: rotate(45deg);
}

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo { width: 100%; height: auto; border-radius: 10px; display: block; }

/* CTA banner */
.cta-banner { background: var(--paper); color: var(--ink); text-align: center; }
.cta-banner h2 { margin: 0 auto 28px; }

@media (max-width: 860px) {
  .two-up, .about-grid, .pillar-grid { grid-template-columns: 1fr; }
  .logo-row { gap: 20px; }
}

.hero-break { display: none; }

@media (max-width: 600px) {
  :root { --size-h1: 42px; --size-h3: 32px; }
  .hero h1 { font-size: 34px; }
  .logo-row { grid-template-columns: 1fr; gap: 30px; }
  .logo-row img { max-height: 260px; }
  .hero-break { display: block; }
}
