:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-soft: #fff4ee;
  --ink: #171f2b;
  --muted: #697280;
  --line: rgba(23, 31, 43, 0.08);
  --accent: #ff6536;
  --accent-deep: #f0491c;
  --accent-soft: #ffd8cb;
  --navy: #101b2a;
  --navy-soft: #2a3648;
  --steel: #31516f;
  --shadow: 0 18px 42px rgba(18, 26, 40, 0.11);
  --shadow-soft: 0 10px 26px rgba(18, 26, 40, 0.07);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1140px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 101, 54, 0.11), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
}

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

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

button,
a,
.stat-card,
.service-card,
.mini-card,
.faq-item,
.footer-cta,
.hero-image-wrap,
.case-media {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 31, 43, 0.05);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(255, 101, 54, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 101, 54, 0.34);
}

.button--ghost {
  background: #fff;
  border-color: rgba(23, 31, 43, 0.1);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 101, 54, 0.34);
  box-shadow: 0 18px 40px rgba(18, 26, 40, 0.1);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
}

.button--footer {
  min-width: 140px;
  height: 50px;
  background: linear-gradient(135deg, #091728, #153656);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  box-shadow: 0 16px 34px rgba(3, 11, 23, 0.34);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(23, 31, 43, 0.08);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

h1,
h2,
h3,
strong {
  font-family: "Manrope", sans-serif;
}

h1 {
  margin: 0;
  font-size: 4.05rem;
  line-height: 1;
  letter-spacing: 0;
  max-width: 11ch;
}

h2 {
  margin: 0 0 16px;
  font-size: 2.85rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.section {
  padding: 72px 0;
}

.hero {
  position: relative;
  padding: 28px 0 0;
}

.hero-overlay {
  position: absolute;
  inset: 58px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 101, 54, 0.06) 100%),
    linear-gradient(128deg, transparent 0 72%, rgba(255, 101, 54, 0.22) 72% 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  min-height: 520px;
}

.hero-copy,
.hero-visual,
.stat-card,
.about-media,
.about-copy,
.section-heading,
.service-card,
.case-copy,
.case-media,
.insight-banner__wrap,
.faq-copy,
.faq-list,
.footer-cta {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 56ch;
  margin-top: 22px;
  font-size: 1.04rem;
}

.hero-lead strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 20px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  height: 460px;
  border-radius: 0 34px 34px 34px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(138deg, transparent 0 68%, rgba(255, 101, 54, 0.38) 68% 100%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 68px rgba(18, 26, 40, 0.18);
}

.hero-side-icons {
  position: absolute;
  top: 120px;
  right: 20px;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-side-icons li {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 1.05rem;
  line-height: 1;
}

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding-bottom: 0;
}

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

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 150px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 31, 43, 0.06);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 101, 54, 0.22);
  box-shadow: 0 22px 46px rgba(18, 26, 40, 0.11);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 101, 54, 0.1);
  color: var(--accent-deep);
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.about {
  position: relative;
  padding-top: 58px;
  padding-bottom: 20px;
}

.about-band {
  position: absolute;
  left: 0;
  top: 156px;
  width: 32%;
  height: 370px;
  background:
    linear-gradient(135deg,
      rgba(255, 101, 54, 0.96) 0%,
      rgba(255, 101, 54, 0.82) 22%,
      rgba(255, 164, 134, 0.36) 58%,
      rgba(255, 255, 255, 0) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-media img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.about-copy {
  padding: 34px 40px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 31, 43, 0.06);
  box-shadow: none;
}

.about-values {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.mini-card {
  flex: 1;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(23, 31, 43, 0.06);
  box-shadow: 0 10px 24px rgba(18, 26, 40, 0.06);
}

.mini-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(240, 73, 28, 0.2);
}

.mini-card:hover h3,
.mini-card:hover p,
.mini-card:hover .mini-icon {
  color: #fff;
}

.mini-card:hover .mini-icon {
  background: rgba(255, 255, 255, 0.18);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255, 101, 54, 0.12);
  color: var(--accent-deep);
  font-size: 1.2rem;
  line-height: 1;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

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

.service-card {
  min-height: 238px;
  padding: 30px 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 31, 43, 0.06);
  box-shadow: 0 10px 24px rgba(18, 26, 40, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  box-shadow: 0 28px 54px rgba(240, 73, 28, 0.2);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 0;
  background: rgba(255, 101, 54, 0.11);
  color: var(--accent-deep);
  font-size: 1.38rem;
  line-height: 1;
}

.case-study {
  position: relative;
  padding-top: 64px;
}

.case-band {
  position: absolute;
  right: 0;
  top: 160px;
  width: 30%;
  height: 250px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 182, 157, 0.28) 34%,
      rgba(255, 101, 54, 0.72) 100%);
}

.case-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.case-media {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  box-shadow: 0 18px 42px rgba(18, 26, 40, 0.12);
}

.case-media:hover {
  transform: translateY(-6px);
}

.case-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.case-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  padding: 20px;
  background: rgba(240, 73, 28, 0.78);
  color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
}

.case-overlay p {
  color: #fff;
  line-height: 1.65;
}

.insight-banner__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 34px 38px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 243, 0.96)),
    linear-gradient(135deg, transparent 0 68%, rgba(255, 101, 54, 0.12) 68% 100%);
  border: 1px solid rgba(23, 31, 43, 0.06);
  box-shadow: 0 10px 24px rgba(18, 26, 40, 0.06);
}

.insight-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.insight-pill {
  padding: 15px 18px;
  background: #fff;
  border: 1px solid rgba(23, 31, 43, 0.06);
  color: var(--ink);
  border-left: 3px solid var(--accent);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.faq-image-card {
  margin-top: 28px;
}

.faq-image-card img {
  width: 100%;
  max-width: 420px;
  height: 220px;
  object-fit: cover;
}

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

.faq-item {
  border: 1px solid rgba(23, 31, 43, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(18, 26, 40, 0.06);
}

.faq-item.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.faq-item.active button,
.faq-item.active p {
  color: #fff;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  font-size: 1.2rem;
  color: inherit;
}

.faq-item.active button::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.site-footer {
  position: relative;
  padding: 0 0 18px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background:
    radial-gradient(circle at left, rgba(255, 101, 54, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(11, 20, 35, 0.18), transparent);
  pointer-events: none;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 34px;
  margin-bottom: 20px;
  transform: translateY(-40px);
  background:
    radial-gradient(circle at right, rgba(255, 255, 255, 0.12), transparent 28%),
    repeating-radial-gradient(circle at right, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #ff6233, #ef4c22);
  box-shadow: 0 18px 34px rgba(240, 73, 28, 0.26);
}

.footer-cta h2,
.footer-cta p,
.footer-mail {
  color: #fff;
}

.footer-cta__copy {
  max-width: 720px;
}

.footer-cta__copy h2 {
  max-width: 18ch;
  font-size: 2.55rem;
}

.footer-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(100%, 390px);
  flex: 0 0 min(100%, 390px);
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  min-width: 0;
  container-type: inline-size;
}

.footer-cta__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta__email {
  display: block;
  color: #fff;
  white-space: nowrap;
  line-height: 1.25;
  font-size: clamp(0.56rem, 3.35cqw, 1rem);
  font-weight: 700;
}

.footer-cta__email:hover {
  opacity: 0.78;
}

.footer-mail:hover {
  opacity: 0.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 30px;
  padding: 6px 0 24px;
}

.footer-brand p,
.footer-contact p {
  max-width: 34ch;
}

.footer-links,
.footer-contact {
  padding-top: 6px;
}

.brand--footer span,
.site-footer h3 {
  color: #fff;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

.footer-cta .footer-cta__email {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.footer-cta .button--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 0;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-cta .button--footer:hover,
.footer-cta .button--footer:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(3, 11, 23, 0.26);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .nav-row {
    gap: 16px;
  }

  .site-nav {
    gap: 18px;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-grid {
    grid-template-columns: 0.96fr 1.04fr;
    gap: 32px;
    min-height: 520px;
  }

  .hero-image-wrap {
    height: 460px;
  }

  .stat-card {
    min-height: 170px;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 48px rgba(18, 26, 40, 0.12);
  }

  .site-header.menu-open .site-nav a {
    padding: 8px 2px;
  }

  .hero-grid,
  .about-grid,
  .case-grid,
  .insight-banner__wrap,
  .faq-grid,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image-wrap,
  .about-media img,
  .case-media {
    max-width: none;
  }

  .hero-image-wrap {
    height: 500px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .about-copy {
    padding: 30px;
  }

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

  .footer-cta__actions {
    width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 720px) {
  .nav-row {
    min-height: 78px;
  }

  .brand span {
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.85rem;
    max-width: 10ch;
  }

  h2,
  .footer-cta__copy h2 {
    font-size: 2.1rem;
  }

  .section {
    padding: 62px 0;
  }

  .about {
    padding-top: 58px;
    padding-bottom: 18px;
  }

  .hero-grid {
    min-height: unset;
    gap: 28px;
  }

  .hero-image-wrap {
    height: 360px;
    border-radius: 0 22px 22px 22px;
  }

  .hero-side-icons {
    top: 18px;
    right: 16px;
    gap: 10px;
  }

  .stats-grid,
  .services-grid,
  .about-values {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-band,
  .case-band {
    display: none;
  }

  .about-copy,
  .insight-banner__wrap,
  .footer-cta {
    padding: 24px;
  }

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

  .footer-cta__actions {
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button--footer {
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .about-media img {
    height: 360px;
  }

  .case-media img,
  .faq-image-card img {
    height: 240px;
  }

  .case-overlay {
    width: 74%;
    padding: 16px;
  }

  .footer-cta {
    transform: translateY(-28px);
  }
}
