:root {
  --ink: #121614;
  --muted: #5f675f;
  --paper: #fbf8f0;
  --paper-deep: #f1eadf;
  --white: #ffffff;
  --green: #0b4c3f;
  --green-soft: #dceae5;
  --coral: #e86f55;
  --cyan: #1aa6b1;
  --gold: #c89937;
  --violet: #7361a8;
  --line: rgba(18, 22, 20, 0.14);
  --shadow: 0 20px 60px rgba(18, 22, 20, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand-logo {
  width: auto;
  height: 54px;
  max-width: 154px;
  object-fit: contain;
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-panel {
  flex: 1;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.menu-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  color: #2c332f;
  cursor: pointer;
  font-weight: 650;
}

.nav-link:hover,
.nav-link:focus-visible,
.menu-trigger:hover,
.menu-trigger:focus-visible {
  background: rgba(11, 76, 63, 0.08);
  outline: none;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.text-link::after {
  content: "->";
  font-weight: 800;
}

.button-arrow {
  font-weight: 800;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  background: var(--coral);
  color: var(--ink);
  border-color: rgba(18, 22, 20, 0.2);
}

.button-secondary {
  background: rgba(251, 248, 240, 0.84);
  color: var(--ink);
  border-color: rgba(251, 248, 240, 0.5);
}

.nav-item {
  position: relative;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-item-menu:hover .mega-menu,
.nav-item-menu:focus-within .mega-menu,
.nav-item-menu.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu a {
  display: grid;
  gap: 5px;
  padding: 13px;
  border-radius: var(--radius);
  background: #f8f5ef;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  background: var(--green-soft);
  outline: none;
}

.mega-menu strong {
  color: var(--green);
}

.mega-menu span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  min-height: 68svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-growth-studio.png");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 22, 20, 0.88) 0%, rgba(18, 22, 20, 0.66) 35%, rgba(18, 22, 20, 0.18) 74%),
    linear-gradient(180deg, rgba(18, 22, 20, 0.35) 0%, rgba(18, 22, 20, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb09c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: 4.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-metrics div {
  min-width: 152px;
  padding-left: 14px;
  border-left: 3px solid var(--coral);
}

.hero-metrics dt {
  font-size: 1.18rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.logo-strip {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-strip-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.logo-strip ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.logo-strip li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.section-copy p,
.section-heading p {
  color: var(--muted);
}

.section-copy > p:last-child,
.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 620px;
}

.intro-section {
  background: var(--paper);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-grid article,
.service-card,
.case-card,
.insight-panel article,
.process-row article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.signal-grid article {
  min-height: 190px;
  padding: 22px;
}

.signal-grid span,
.process-row span,
.case-type,
.insight-panel span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-grid p,
.service-card p,
.case-card dd,
.insight-panel p,
.process-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 278px;
  padding: 24px;
  display: grid;
  align-content: start;
  border-top: 5px solid var(--green);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 22, 20, 0.11);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.accent-coral {
  border-top-color: var(--coral);
}

.accent-coral .service-icon {
  background: #fde6df;
  color: #a03b2b;
}

.accent-cyan {
  border-top-color: var(--cyan);
}

.accent-cyan .service-icon {
  background: #dff3f4;
  color: #0d6770;
}

.accent-ink {
  border-top-color: var(--ink);
}

.accent-ink .service-icon {
  background: #e5e2dc;
  color: var(--ink);
}

.accent-gold {
  border-top-color: var(--gold);
}

.accent-gold .service-icon {
  background: #f4ebd2;
  color: #72551b;
}

.accent-violet {
  border-top-color: var(--violet);
}

.accent-violet .service-icon {
  background: #ebe7f4;
  color: #443568;
}

.process-section {
  background: var(--paper-deep);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.process-row article {
  min-height: 250px;
  border: 0;
  border-radius: 0;
  padding: 24px;
  background: transparent;
}

.process-row article + article {
  border-left: 1px solid var(--line);
}

.work-section {
  background: var(--green);
  color: var(--white);
}

.work-section .eyebrow {
  color: #ffb09c;
}

.work-section .section-heading p,
.work-section .case-card dd,
.work-section .case-type {
  color: rgba(255, 255, 255, 0.72);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.case-card h3 {
  font-size: 1.45rem;
}

.case-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.case-card dt {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 900;
}

.case-card dd {
  margin: 0;
}

.insights-section {
  background: var(--paper);
}

.insight-panel {
  display: grid;
  gap: 14px;
}

.insight-panel article {
  padding: 22px;
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question span::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 22px;
}

.contact-section {
  padding: 88px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-section .eyebrow {
  color: #ffb09c;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.contact-grid h2 {
  max-width: 700px;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 12px 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 111, 85, 0.24);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ffcfbf;
}

.site-footer {
  padding: 34px 0;
  background: #0c100e;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .brand-logo {
  height: 58px;
  max-width: 166px;
}

.site-footer p {
  max-width: 340px;
  margin-bottom: 0;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.page-hero {
  padding: 96px 0 64px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--ink);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-section {
  padding: 76px 0;
  background: var(--white);
}

.content-section.alt {
  background: var(--paper);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.content-card,
.legal-content,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.content-card {
  min-height: 250px;
  padding: 24px;
}

.content-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  max-width: 900px;
  padding: 34px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a,
.contact-details a {
  color: var(--green);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details {
  padding: 24px;
}

.contact-details dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-details dt {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    min-height: calc(100svh - 72px);
    padding: 18px 20px 28px;
    align-items: stretch;
    justify-content: start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav-panel {
    display: grid;
    gap: 18px;
  }

  .nav-links {
    display: grid;
    gap: 8px;
    margin: 0;
  }

  .nav-link,
  .menu-trigger,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item-menu.is-open .mega-menu {
    display: grid;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background: rgba(18, 22, 20, 0.68);
  }

  h1 {
    max-width: 640px;
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .split,
  .split.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-row article + article {
    border-left: 0;
  }

  .process-row article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .process-row article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    height: 66px;
  }

  .nav-panel {
    inset: 66px 0 auto 0;
    min-height: calc(100svh - 66px);
  }

  .brand-logo {
    height: 46px;
    max-width: 132px;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-content {
    padding: 42px 0 34px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-metrics,
  .logo-strip-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics div {
    min-width: 0;
  }

  .logo-strip-inner {
    padding: 22px 0;
  }

  .logo-strip ul {
    justify-content: flex-start;
  }

  .section {
    padding: 62px 0;
  }

  .signal-grid,
  .service-grid,
  .content-grid,
  .case-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 62px 0 44px;
  }

  .legal-content {
    padding: 22px;
  }

  .process-row article:nth-child(even) {
    border-left: 0;
  }

  .process-row article:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .service-card,
  .case-card {
    min-height: auto;
  }

  .case-card dl {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
