/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */

:root {
  --bg: #0b0c0f;
  --panel: #111318;
  --text: #f1f0eb;
  --muted: #999ca4;
  --line: #292c34;
  --accent: #139F4B;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

main {
  overflow: hidden;
}


/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(55px, 8vw, 105px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  margin: 25px 0;
}

h2 {
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0;
}

h2 em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 35px rgba(19, 159, 75, 0.45);
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* ==========================================================================
   3. NAVIGATION & BRANDING
   ========================================================================== */

.nav {
  height: 82px;
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 21px "Space Grotesk";
  letter-spacing: -0.04em;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  color: #b7b9c0;
}

.nav nav a:hover {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid #393c44;
  border-radius: 2px;
  font-size: 12px;
}

.nav-cta span,
.button span {
  color: var(--accent);
}

.button.primary {
  background: #f1f0eb;
  color: #111318;
  border-color: #f1f0eb;
}

.text-link {
  font-size: 12px;
  color: #b7b9c0;
}


/* ==========================================================================
   4. HERO
   ========================================================================== */

.hero {
  max-width: var(--max);
  margin: auto;
  padding: 130px 28px 110px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.hero-glow-bg {
  position: absolute;
  top: 50%;
  right: -5%;
  width: 550px;
  height: 550px;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(19, 159, 75, 0.15) 0%,
    rgba(11, 12, 15, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.hero-copy {
  max-width: 640px;
  color: #b7b9c0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 34px 0;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #686b73;
  font-size: 11px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}


/* ==========================================================================
   5. SHARED SECTION STRUCTURE
   ========================================================================== */

.about,
.questions,
.audience,
.services,
.thinking {
  max-width: var(--max);
  margin: auto;
  padding: 100px 28px;
  border-top: 1px solid var(--line);
}


/* ==========================================================================
   6. ABOUT ME
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  margin-top: 35px;
}

.portrait-wrap {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16181d;
  border: 1px solid var(--line);
  overflow: hidden;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy p {
  max-width: 670px;
  color: var(--muted);
}

.about-copy em {
  color: #d7e8b0;
  font-style: normal;
}

.about-positioning {
  margin: 30px 0;
  padding: 22px;
  background: var(--panel);
  border-left: 2px solid var(--accent);
}

.about-positioning strong {
  font: 600 16px "Space Grotesk";
}

.about-positioning p {
  margin: 8px 0 0 !important;
  font-size: 13px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  
  background: var(--line);
  border: 1px solid var(--line);
}

.outcomes-grid > div {
  padding: 20px 24px;
  background: var(--bg);
  transition: background 0.2s ease, transform 0.2s ease;
}



.outcomes-grid span {
  display: block;
  min-height: 18px;
  color: var(--accent);
  font-size: 12px;
  line-height: 18px;
}

.outcomes-grid strong {
  display: block;
  margin: 25px 0 0;
  font: 600 18px/1.25 "Space Grotesk";
}

.social-link {
  margin-top: 28px;
}

.social-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #555b62;
  font-size: 13px;
  color: #b7b9c0;
  transition: all 0.25s ease;
}

.social-link a span {
  display: inline-block;
  color: var(--accent);
  transition: transform 0.25s ease;
}

/* Hover State */
.social-link a:hover {
  color: #ffffff;
  border-bottom-color: var(--accent);
  /* Soft emerald shadow/glow */
  text-shadow: 0 0 12px rgba(19, 159, 75, 0.4);
}

/* Arrow moves up and to the right */
.social-link a:hover span {
  transform: translate(3px, -3px);
}


/* ==========================================================================
   7. THE QUESTIONS
   ========================================================================== */

.questions-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}

.questions-head p {
  max-width: 430px;
  color: var(--muted);
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
}

.questions-grid div {
  min-height: 170px;
  padding: 28px;
  background: var(--bg);
}

.questions-grid strong {
  display: block;
  margin-bottom: 12px;
  font: 600 19px "Space Grotesk";
}

.questions-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}


/* ==========================================================================
   8. AUDIENCE
   ========================================================================== */

.audience {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
}

.audience-copy p {
  margin-top: 0;
  color: var(--muted);
}


/* ==========================================================================
   9. SERVICES
   ========================================================================== */

.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin: 0 0 55px;
}

.services-intro p {
  max-width: 430px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span {
  color: var(--accent);
  font-size: 10px;
}

.service-item h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


/* ==========================================================================
   10. THINKING
   ========================================================================== */

.thinking-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin: 0 0 55px;
}

.thinking-head p {
  max-width: 430px;
  color: var(--muted);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
}

.article-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--bg);
  transition: background 0.25s, transform 0.25s;
}

.article-card:hover {
  background: var(--panel);
  transform: translateY(-3px);
}

.article-no {
  color: var(--accent);
  font-size: 10px;
}

.article-card h3 {
  margin: 55px 0 10px;
  font: 600 21px/1.12 "Space Grotesk";
  letter-spacing: -0.035em;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-card .read {
  margin-top: auto;
  padding-top: 25px;
  color: #bfc1c7;
  font-size: 11px;
}


/* ==========================================================================
   11. CONTACT
   ========================================================================== */

.contact {
  background: var(--accent);
  color: #10120b;
}

.contact-inner {
  max-width: var(--max);
  margin: auto;
  padding: 100px 28px;
}

.contact h2 {
  margin: 25px 0;
  font: 600 clamp(42px, 6vw, 75px)/0.95 "Space Grotesk";
  letter-spacing: -0.06em;
}

.contact h2 em {
  color: #10120b;
}

.contact-lead {
  max-width: 560px;
  font-size: 15px;
}

.contact-form {
  max-width: 700px;
  margin-top: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(16, 18, 11, 0.25);
  border-radius: 3px;
  outline: none;
  color: #10120b;
  font: 14px "DM Sans";
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  background: #10120b;
  color: #f1f0eb;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-top: 12px !important;
  font-size: 11px !important;
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */

footer {
  max-width: var(--max);
  margin: auto;
  padding: 35px 28px;
  display: flex;
  justify-content: space-between;
  color: #686b73;
  font-size: 11px;
  border-top: 1px solid var(--line);
}

footer .brand {
  color: #f1f0eb;
  font-size: 16px;
}


/* ==========================================================================
   13. ARTICLE DETAIL PAGES
   ========================================================================== */

.article {
  max-width: 820px;
  margin: auto;
  padding: 100px 28px 120px;
}

.article h1 {
  margin: 28px 0;
  font: 600 clamp(45px, 7vw, 78px)/0.98 "Space Grotesk", sans-serif;
  letter-spacing: -0.06em;
}

.deck {
  font-family: "Space Grotesk", sans-serif; /* Matches headline typography */
  font-size: clamp(20px, 2.5vw, 24px);     /* Larger, responsive scaling */
  line-height: 1.4;                         /* Tighter line-height for subheadings */
  font-weight: 500;
  color: #c8cbd2;                           /* Brighter than body copy, softer than h1 */
  max-width: 680px;
  margin: 0 0 48px;
  border-left: 2px solid var(--accent);     /* Optional subtle vertical accent line */
  padding-left: 18px;
}

.article h2 {
  margin: 55px 0 15px;
  font: 600 28px/1.15 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.article p {
  color: #c0c2c8;
  font-size: 16px;
  line-height: 1.7;
}

.article strong {
  color: var(--text);
}

.article em {
  color: var(--accent);
  font-style: normal;
}

/* ==========================================================================
   14. THANK YOU PAGE
   ========================================================================== */

.thank-you {
  max-width: var(--max);
  min-height: calc(100vh - 153px);
  margin: auto;
  padding: 140px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.thank-you h1 {
  margin: 25px 0;
}

.thank-you h1 em {
  font-style: normal;
  color: var(--accent);
}

.thank-you-copy {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */

@media (max-width: 800px) {

  .nav nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-glow-bg {
    width: 300px;
    height: 300px;
    right: -20%;
  }

  .questions-head,
  .audience,
  .services-intro,
  .thinking-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .questions-grid,
  .articles-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    min-height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 12px;
  }

  .article {
    padding-top: 70px;
  }

  .article h1 {
    font-size: 52px;
  }
}

