:root {
  --bg: #f6f2ed;
  --ink: #0d0d0d;
  --muted: #625d57;
  --line: #ded7cf;
  --surface: #ffffff;
  --surface-strong: #f2ebe3;
  --accent: #f37021;
  --accent-dark: #b84812;
  --signal: #f37021;
  --deep: #050505;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 32;
}

.brand-logo {
  display: block;
  height: 36px;
  object-fit: contain;
  width: 170px;
}

.main-nav {
  align-items: center;
  background: rgba(5, 5, 5, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  display: none;
  flex-direction: column;
  gap: 6px;
  left: 0;
  padding: 12px 18px 18px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 31;
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 13px;
  width: 100%;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(243, 112, 33, 0.18);
  color: #fff;
  outline: none;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  display: block;
  height: 42px;
  margin-left: auto;
  padding: 8px;
  width: 42px;
  position: relative;
  z-index: 32;
}

@media (min-width: 1201px) {
  .main-nav {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    position: static;
  }

  .main-nav a {
    width: auto;
  }

  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

.hero {
  background: var(--deep);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  min-height: auto;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 76px);
}

.hero-content {
  align-self: center;
  justify-self: center;
  max-width: 980px;
  text-align: center;
}

.hero-name-logo {
  display: block;
  height: auto;
  margin: 0 auto 28px;
  max-width: min(430px, 88vw);
  width: 100%;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.35rem, 5.7vw, 5.65rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 1060px;
}

.hero h1 {
  color: var(--accent);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-proof span {
  background: rgba(243, 112, 33, 0.16);
  border: 1px solid rgba(243, 112, 33, 0.28);
  border-radius: 8px;
  color: #ffb15d;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 10px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-image {
  align-self: stretch;
  background: var(--deep);
  border-radius: 0;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  justify-self: center;
  margin: 0;
  max-width: 1120px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-image img {
  display: block;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-strip {
  background: #050505;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1px clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.product-strip article {
  background: #111111;
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
}

.product-strip span {
  color: var(--accent);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 44px;
}

.product-strip h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4rem);
  margin-bottom: 8px;
}

.product-strip strong {
  color: #ffb15d;
  display: block;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.product-strip p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 440px;
}

.hero-image figcaption {
  background: rgba(5, 5, 5, 0.9);
  border-left: 5px solid var(--accent);
  bottom: 24px;
  color: #fff;
  left: 24px;
  max-width: min(430px, calc(100% - 48px));
  padding: 16px 18px;
  position: absolute;
  z-index: 2;
}

.hero-image figcaption strong,
.hero-image figcaption span {
  display: block;
}

.hero-image figcaption strong {
  line-height: 1.14;
}

.hero-image figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-top: 6px;
}

section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--surface);
}

.section-heading {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  margin-bottom: 38px;
}

.intro {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr);
}

.intro > p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  margin: 0;
  max-width: 1020px;
}

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

.service-card,
.sector-grid article,
.audience-grid article,
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100%;
  padding: 24px;
}

.service-card p,
.sector-grid p,
.audience-grid p,
.result-card p,
.timeline-item p,
.contact-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-icon {
  color: var(--accent);
  display: inline-block;
  font-weight: 850;
  margin-bottom: 28px;
}

.timeline {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline-item {
  border-left: 1px solid var(--line);
  padding: 10px 26px 0;
}

.results-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.9fr));
}

.result-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

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

.result-card strong {
  color: var(--deep);
  display: block;
  margin-top: auto;
  padding-top: 24px;
}

.result-card.featured {
  background: var(--deep);
  color: #fff;
}

.result-card.featured p,
.result-card.featured strong {
  color: rgba(255, 255, 255, 0.78);
}

.result-card.featured span {
  color: #ffb15d;
}

.timeline-item span {
  align-items: center;
  background: var(--deep);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  margin-bottom: 18px;
  width: 36px;
}

.deliverable-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.check-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 26px;
}

.check-list li {
  color: var(--muted);
  padding-left: 34px;
  position: relative;
}

.check-list li::before {
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 800;
  height: 22px;
  left: 0;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 22px;
}

.metric-panel {
  background: var(--deep);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.metric-panel div {
  background: rgba(255, 255, 255, 0.07);
  padding: 26px;
}

.metric-panel strong {
  color: #ffb15d;
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.82);
}

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

.sector-grid article {
  background: transparent;
}

.value-strip {
  background: var(--deep);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.value-strip div {
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(22px, 4vw, 34px);
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-strip span {
  color: rgba(255, 255, 255, 0.76);
}

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

.about-layout {
  display: grid;
  gap: clamp(24px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
}

.about-layout p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
}

.principles {
  background: var(--deep);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 26px;
}

.principles li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.principles li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.final-cta {
  align-items: center;
  background: var(--deep);
  color: #fff;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta .eyebrow {
  color: var(--signal);
}

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

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--deep);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 920px;
}

.contact {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.contact-copy {
  max-width: 680px;
}

.contact-link {
  color: var(--accent-dark);
  display: inline-block;
  font-weight: 800;
  margin-top: 26px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
}

.contact-form label {
  color: var(--deep);
  display: grid;
  font-size: 0.9rem;
  font-weight: 750;
  gap: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.18);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .contact,
  .deliverable-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 420px;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }
  }

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

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

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

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

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 1200px) {
  .site-header {
    padding: 13px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 31;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .brand-logo {
    height: 30px;
    width: 142px;
  }
}

@media (max-width: 760px) {

  .section-heading,
  .service-grid,
  .timeline,
  .sector-grid,
  .audience-grid,
  .results-grid,
  .about-layout,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-name-logo {
    margin-left: 0;
    margin-right: 0;
    max-width: min(320px, 84vw);
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }

  .hero-image,
  .hero-image img {
    min-height: 340px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-image,
  .hero-image img {
    min-height: 300px;
  }
}
