:root {
  --charcoal: #242424;
  --ink: #303030;
  --muted: #646464;
  --cream: #f4f0e8;
  --paper: #ffffff;
  --line: #ded7cd;
  --orange: #ff6a2f;
  --orange-dark: #d94f1f;
  --sage: #8a9685;
  --blue-gray: #4e6779;
  --shadow: 0 18px 45px rgba(36, 36, 36, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--charcoal);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: #ffffff;
  background: rgba(36, 36, 36, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: clamp(760px, 92vh, 980px);
  overflow: hidden;
  color: #ffffff;
}

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

.hero-media {
  background:
    linear-gradient(rgba(36, 36, 36, 0.08), rgba(36, 36, 36, 0.08)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.88), rgba(20, 20, 20, 0.62) 44%, rgba(20, 20, 20, 0.25)),
    linear-gradient(0deg, rgba(20, 20, 20, 0.44), rgba(20, 20, 20, 0.1));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(980px, calc(100% - 40px));
  min-height: clamp(760px, 92vh, 980px);
  padding: 130px 0 70px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

h3 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  padding: 0;
  margin: clamp(48px, 8vw, 86px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  min-height: 132px;
  padding: 22px;
  background: rgba(20, 20, 20, 0.42);
}

.hero-proof dt {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--orange);
}

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

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--orange);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.section-heading > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 26px;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "•";
}

.engagements {
  background: #ffffff;
}

.engagements-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.engagement-list {
  display: grid;
  gap: 18px;
}

.engagement-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.engagement-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.engagement-list span {
  display: inline-grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 50%;
  background: var(--blue-gray);
  font-weight: 900;
}

.engagement-list h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.engagement-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.audience {
  background: var(--cream);
}

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

.audience-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(36, 36, 36, 0.08);
}

.audience-grid h3 {
  margin-bottom: 16px;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.approach {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.96), rgba(36, 36, 36, 0.84)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=82")
      center / cover;
}

.approach h2,
.approach h3 {
  color: #ffffff;
}

.approach p {
  color: rgba(255, 255, 255, 0.78);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.step span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.about {
  background: #ffffff;
}

.about-stack {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-intro p {
  max-width: 720px;
}

.about-content-grid,
.about-values-grid,
.about-approach {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.about-panel {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-panel-accent {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.about-panel h3,
.about-values-grid h3,
.about-approach h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.16;
}

.about-values-grid {
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--charcoal);
}

.about-values-grid h3 {
  color: #ffffff;
}

.about-values-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.about-checks {
  margin-top: 0;
}

.about-checks li {
  color: #ffffff;
}

.about-approach {
  align-items: stretch;
}

.founder-quote {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(28px, 5vw, 44px);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius);
  background: var(--cream);
}

.founder-quote p {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.founder-quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.faq .section-heading {
  max-width: 820px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 82px);
  row-gap: 0;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:nth-child(-n + 2) {
  padding-top: 0;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.18;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact {
  color: #ffffff;
  background: var(--charcoal);
}

.contact h2 {
  color: #ffffff;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.contact-link {
  display: grid;
  gap: 2px;
  margin-top: 0;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-link span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.site-footer {
  padding: clamp(38px, 6vw, 70px) clamp(20px, 4vw, 64px) 28px;
  color: #ffffff;
  background: #191919;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 5vw, 64px);
  place-items: center;
  background: var(--cream);
}

.thank-you-panel {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.thank-you-brand {
  margin-bottom: clamp(40px, 7vw, 72px);
}

.thank-you-panel h1 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: clamp(32px, 7vw, 96px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand-block {
  max-width: 620px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-tagline {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
}

.footer-positioning {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  line-height: 1.16;
}

.footer-contact {
  display: grid;
  gap: 9px;
  min-width: min(340px, 100%);
}

.footer-contact h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.15rem;
}

.footer-contact a {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.footer-social {
  margin-top: 24px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-social-links svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-copyright {
  width: min(1180px, 100%);
  padding-top: 26px;
  margin: 36px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-grid,
  .engagements-grid,
  .approach-grid,
  .about-hero,
  .about-content-grid,
  .about-values-grid,
  .about-approach,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item:nth-child(2) {
    padding-top: 24px;
  }

  .about-portrait img {
    max-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(36, 36, 36, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero,
  .hero-content {
    min-height: 910px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 112px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.62));
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
  }

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

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

  .footer-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

}

@media (max-width: 460px) {
  .brand span {
    max-width: 190px;
  }

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

  .engagement-list article {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .engagement-list span,
  .engagement-list h3,
  .engagement-list p {
    grid-column: 1;
  }

  .engagement-list span {
    grid-row: auto;
  }
}
