:root {
  color-scheme: light;
  --design-width: 849;
  --ink: #082c2f;
  --deep: #003d42;
  --deep-2: #002c30;
  --teal: #00656b;
  --teal-soft: #e9f3f1;
  --coral: #f66f5f;
  --coral-soft: #ffe5df;
  --paper: #fbfcfb;
  --muted: rgba(8, 44, 47, 0.72);
  --line: rgba(8, 44, 47, 0.18);
  --line-strong: rgba(8, 44, 47, 0.28);
  --sans: "Satoshi", Inter, "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-rest: 0 1px 2px rgba(8, 44, 47, 0.04), 0 4px 12px rgba(8, 44, 47, 0.04);
  --shadow-hover: 0 2px 6px rgba(8, 44, 47, 0.06), 0 18px 38px rgba(8, 44, 47, 0.13);
  --shadow-dark: 0 2px 6px rgba(0, 0, 0, 0.18), 0 20px 44px rgba(0, 0, 0, 0.32);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--coral);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  box-shadow: 0 0 8px rgba(246, 111, 95, 0.5);
  transition: width 90ms linear;
  pointer-events: none;
}

body {
  width: 849px;
  transform-origin: top left;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 185px 1fr 145px;
  align-items: center;
  height: 47px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(3, 25, 27, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: height 280ms var(--ease), background 280ms var(--ease),
    box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.site-header.is-scrolled {
  height: 42px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: transparent;
  box-shadow: 0 6px 24px rgba(8, 44, 47, 0.1);
}

.brand img {
  width: 101px;
  height: auto;
  transition: transform 280ms var(--ease);
}

.brand:hover img {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #071719;
  font-size: 8.5px;
  font-weight: 850;
  line-height: 1;
}

.site-nav a {
  position: relative;
  padding: 20px 0;
  color: #071719;
  transition: color 220ms var(--ease);
}

.site-nav a::after {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
  content: "";
}

.site-nav a:hover {
  color: var(--teal);
}

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

.site-nav a.is-active {
  color: var(--teal);
}

.header-cta,
.button-primary,
.button-secondary,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  cursor: pointer;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease),
    background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.cta-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: transparent url("assets/icons/arrowRight-blue.svg") center / contain no-repeat;
  transition: transform 280ms var(--ease);
}

.header-cta:hover .cta-icon,
.button-primary:hover .cta-icon,
.button-secondary:hover .cta-icon,
.platform-link:hover .cta-icon,
.contact-form button:hover .cta-icon,
.service-grid a:hover .cta-icon,
.outcome-copy a:hover .cta-icon,
.engagement-grid a:hover .cta-icon {
  transform: translateX(3px);
}

.header-cta .cta-icon,
.button-primary .cta-icon,
.button-secondary .cta-icon,
.platform-link .cta-icon,
.engagement-grid .cta-icon,
.contact-form button .cta-icon {
  background-image: url("assets/icons/arrowRight-white.svg");
}

.header-cta {
  justify-self: end;
  width: 139px;
  min-height: 28px;
  background: var(--deep-2);
  color: #fff;
}

.header-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 61, 66, 0.28);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: 394px;
  overflow: hidden;
  background: #091213;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  animation: hero-kenburns 22s ease-out forwards;
  will-change: transform;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.12) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.02) translate3d(-1.2%, -1%, 0);
  }
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 18, 20, 0.84) 0%, rgba(0, 18, 20, 0.58) 33%, rgba(0, 18, 20, 0.18) 58%, rgba(0, 18, 20, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 74px 0 0 49px;
}

.hero-content > * {
  animation: hero-rise 900ms var(--ease-out) both;
}

.hero-content > .kicker {
  animation-delay: 80ms;
}

.hero-content > h1 {
  animation-delay: 180ms;
}

.hero-content > p {
  animation-delay: 320ms;
}

.hero-content > .hero-actions {
  animation-delay: 440ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .kicker {
  margin: 0 0 11px;
  color: #ff8b48;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 326px;
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero-content > p {
  max-width: 278px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 19px;
}

.button-primary,
.button-secondary {
  min-height: 31px;
  padding: 0 22px;
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 26px rgba(246, 111, 95, 0.32);
}

.button-primary:hover {
  background: #ff7d6e;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(246, 111, 95, 0.42);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.button-primary:active,
.button-secondary:active,
.header-cta:active,
.contact-form button:active {
  transform: translateY(0);
}

.section-inner {
  width: 762px;
  margin: 0 auto;
}

.walk-in {
  min-height: 175px;
  padding: 20px 0 0;
  background: var(--paper);
}

.walk-in h2,
.services h2,
.journey h2,
.engagements h2 {
  margin: 0 0 13px;
  color: #06272a;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.pain-grid article {
  display: grid;
  grid-template-columns: 63px 1fr;
  align-items: center;
  min-height: 115px;
  padding: 20px 19px;
  border: 1px solid rgba(8, 44, 47, 0.15);
  background: #fff;
  box-shadow: var(--shadow-rest);
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease),
    border-color 380ms var(--ease);
}

.pain-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 101, 107, 0.45);
  box-shadow: var(--shadow-hover);
}

.problem-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  transition: transform 380ms var(--ease);
}

.pain-grid article:hover .problem-icon {
  transform: scale(1.08) rotate(-4deg);
}

.problem-icon img {
  width: 29px;
  filter: invert(23%) sepia(59%) saturate(1336%) hue-rotate(145deg) brightness(91%) contrast(91%);
}

.problem-icon.is-coral {
  background: var(--coral-soft);
}

.problem-icon.is-coral img {
  filter: invert(55%) sepia(88%) saturate(776%) hue-rotate(322deg) brightness(100%) contrast(93%);
}

.problem-icon.is-mist {
  background: var(--teal-soft);
}

.pain-grid h3,
.service-grid h3,
.journey h3,
.stat-grid h3,
.engagement-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
}

.pain-grid p,
.service-grid p,
.journey p,
.stat-grid p,
.engagement-grid p,
.contact-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 500;
  line-height: 1.45;
}

.services {
  min-height: 190px;
  padding: 0 0 12px;
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-grid article {
  position: relative;
  min-height: 174px;
  padding: 18px 13px 12px;
  border: 1px solid rgba(8, 44, 47, 0.15);
  background: #fff;
  box-shadow: var(--shadow-rest);
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease),
    border-color 380ms var(--ease);
}

.service-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
  content: "";
}

.service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 101, 107, 0.4);
  box-shadow: var(--shadow-hover);
}

.service-grid article:hover::before {
  transform: scaleX(1);
}

.service-icon {
  transition: transform 420ms var(--ease);
}

.service-grid article:hover .service-icon {
  transform: translateY(-2px) scale(1.06);
}

.service-icon,
.engagement-grid img,
.stat-grid img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: invert(19%) sepia(63%) saturate(1355%) hue-rotate(147deg) brightness(94%) contrast(96%);
}

.service-grid h3 {
  margin-top: 16px;
}

.service-grid p {
  min-height: 42px;
}

.service-grid a,
.platform-link,
.outcome-copy a,
.engagement-grid a {
  display: inline-flex;
  gap: 9px;
  margin-top: 12px;
  color: var(--teal);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 280ms var(--ease), color 220ms var(--ease);
}

.service-grid a:hover,
.outcome-copy a:hover {
  gap: 13px;
  color: var(--coral);
}

.platform-link:hover,
.engagement-grid a:hover {
  gap: 13px;
}

.platforms {
  min-height: 141px;
  padding: 19px 40px 18px;
  background:
    radial-gradient(circle at 23% 20%, rgba(39, 143, 146, 0.26), transparent 30%),
    linear-gradient(90deg, #00373b 0%, #002b2f 100%);
  color: #fff;
  text-align: center;
}

.platforms h2 {
  margin: 0 0 18px;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: start;
  gap: 0;
}

.platform-row span {
  display: grid;
  min-height: 53px;
  place-items: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 7px;
  font-weight: 800;
  line-height: 1.15;
}

.platform-row span:first-child {
  border-left: 0;
}

.platform-row img {
  width: 32px;
  height: 26px;
  object-fit: contain;
  transition: transform 360ms var(--ease);
}

.platform-row span {
  transition: color 260ms var(--ease);
}

.platform-row span:hover {
  color: #fff;
}

.platform-row span:hover img {
  transform: scale(1.14) translateY(-2px);
}

.platform-link {
  margin-top: 12px;
  color: #fff;
}

.journey {
  min-height: 263px;
  padding: 20px 0 8px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.journey article {
  position: relative;
  transition: transform 380ms var(--ease);
}

.journey article:hover {
  transform: translateY(-5px);
}

.journey article img {
  transition: filter 420ms var(--ease), box-shadow 420ms var(--ease);
}

.journey article:hover img {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: var(--shadow-hover);
}

.journey h3 span {
  transition: background-color 320ms var(--ease), transform 320ms var(--ease);
}

.journey article:hover h3 span {
  background: var(--coral);
  transform: scale(1.08);
}

.journey article:not(:last-child)::after {
  position: absolute;
  top: 54px;
  right: -16px;
  width: 12px;
  height: 12px;
  background: transparent url("assets/icons/arrowRight-blue.svg") center / contain no-repeat;
  content: "";
}

.journey article img {
  width: 136px;
  height: 106px;
  object-fit: cover;
}

.journey h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  font-size: 10px;
}

.journey h3 span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  background: var(--deep);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
}

.outcomes {
  min-height: 212px;
  padding: 18px 0 17px;
  background: var(--paper);
}

.outcomes-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--coral);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.outcome-copy h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.93;
}

.outcome-copy p {
  max-width: 168px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 500;
  line-height: 1.45;
}

.outcome-copy a {
  margin-top: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(8, 44, 47, 0.13);
  background: #fff;
}

.stat-grid article {
  min-height: 132px;
  padding: 21px 21px 12px;
  border-left: 1px solid rgba(8, 44, 47, 0.13);
  transition: background-color 320ms var(--ease);
}

.stat-grid article:first-child {
  border-left: 0;
}

.stat-grid article:hover {
  background: var(--teal-soft);
}

.stat-grid img {
  width: 26px;
  height: 26px;
  margin-bottom: 11px;
  transition: transform 360ms var(--ease);
}

.stat-grid article:hover img {
  transform: translateY(-2px) scale(1.08);
}

.stat-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transition: color 320ms var(--ease);
}

.stat-grid article:hover strong {
  color: var(--teal);
}

.stat-grid h3 {
  margin-top: 9px;
  font-size: 8px;
  line-height: 1.15;
}

.stat-grid p {
  margin-top: 12px;
  font-size: 6.5px;
}

.engagements {
  display: grid;
  grid-template-columns: 626px 223px;
  min-height: 203px;
  background: var(--deep);
  color: #fff;
}

.engagement-content {
  padding: 20px 0 12px 44px;
}

.engagements h2 {
  color: #fff;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  width: 581px;
}

.engagement-grid article {
  min-height: 131px;
  padding: 10px 11px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 380ms var(--ease), background-color 380ms var(--ease),
    border-color 380ms var(--ease), box-shadow 380ms var(--ease);
}

.engagement-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-dark);
}

.engagement-grid img {
  width: 22px;
  height: 22px;
  filter: invert(100%);
}

.engagement-grid h3 {
  min-height: 21px;
  margin-top: 4px;
  color: #fff;
  font-size: 7.2px;
  line-height: 1.15;
}

.engagement-grid p,
.engagement-grid li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 5.2px;
  line-height: 1.38;
}

.engagement-grid p {
  min-height: 23px;
  margin-top: 5px;
}

.engagement-grid ul {
  margin: 5px 0 0;
  padding-left: 10px;
}

.engagement-grid a {
  margin-top: 6px;
  color: #fff;
  font-size: 6px;
}

.engagement-photo {
  width: 223px;
  height: 203px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  min-height: 183px;
  padding: 13px 43px 5px 46px;
  background: #fff;
}

.contact h2 {
  font-size: 27px;
}

.contact-copy p {
  max-width: 200px;
  font-size: 7.4px;
}

.brief-list {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 6.8px;
  font-weight: 700;
  line-height: 1.2;
}

.brief-list strong {
  color: var(--teal);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-list span {
  position: relative;
  padding-left: 14px;
}

.brief-list span::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: "✓";
  font-size: 5px;
  line-height: 8px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 23px;
  row-gap: 6px;
  align-content: start;
  padding: 10px 12px 8px;
  border: 1px solid rgba(8, 44, 47, 0.14);
}

.contact-form label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(8, 44, 47, 0.74);
  font-size: 7px;
  font-weight: 750;
}

.contact-form label {
  position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 19px;
  border: 0;
  border-bottom: 1px solid rgba(8, 44, 47, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 7px;
  outline: 0;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-bottom-color: rgba(8, 44, 47, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--teal);
  box-shadow: 0 1px 0 0 var(--teal);
}

.contact-form label span {
  transition: color 240ms var(--ease);
}

.contact-form label:focus-within span {
  color: var(--teal);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(8, 44, 47, 0.45);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 1px;
}

.contact-form button {
  width: 102px;
  min-height: 27px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(246, 111, 95, 0.28);
}

.contact-form button:hover {
  background: #ff7d6e;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(246, 111, 95, 0.4);
}

.form-actions p {
  position: relative;
  margin: 0;
  color: rgba(8, 44, 47, 0.66);
  font-size: 7.5px;
  font-weight: 650;
  transition: color 240ms var(--ease);
}

/* Scroll reveal — only active when JS is present (.has-js on <html>) */
.has-js [data-reveal],
.has-js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  will-change: opacity, transform;
}

.has-js [data-reveal].is-visible,
.has-js [data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

.has-js [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 460ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 520ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(9) { transition-delay: 580ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(10) { transition-delay: 640ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .has-js [data-reveal],
  .has-js [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    animation: none;
    transform: scale(1.02);
  }
}

@media (max-width: 760px) {
  body {
    width: auto;
    min-width: 320px;
  }

  .site-header {
    grid-template-columns: 1fr 44px;
    height: 64px;
    padding: 0 18px;
  }

  .brand img {
    width: 121px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: block;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition: border-color 200ms var(--ease), background 200ms var(--ease);
  }

  .menu-button:hover {
    border-color: var(--line-strong);
  }

  .menu-button span {
    position: absolute;
    left: 50%;
    width: 17px;
    height: 1.75px;
    margin-left: -8.5px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 240ms var(--ease), opacity 140ms var(--ease);
  }

  .menu-button span:nth-child(1) {
    top: 14px;
  }

  .menu-button span:nth-child(2) {
    top: 19px;
  }

  .menu-button span:nth-child(3) {
    top: 24px;
  }

  body.menu-open .menu-button span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
  }

  body.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-button span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 10px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    font-size: 17px;
  }

  body.menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(8, 44, 47, 0.09);
  }

  /* desktop sliding underline doesn't suit the tall stacked rows — the teal
     colour alone marks the active item */
  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero-bg {
    object-position: 56% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 23, 25, 0.2) 0%, rgba(0, 23, 25, 0.92) 58%, rgba(0, 23, 25, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 23, 25, 0.55), rgba(0, 23, 25, 0.08));
  }

  .hero-content {
    display: grid;
    min-height: 720px;
    align-content: end;
    padding: 96px 24px 28px;
    color: #fff;
  }

  .hero .kicker,
  .section-kicker {
    margin: 0 0 14px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .hero h1 {
    max-width: 540px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(46px, 12vw, 66px);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }

  .hero-content > p {
    max-width: 470px;
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .button-primary,
  .button-secondary {
    min-height: 50px;
    padding: 0 22px;
    font-size: 12px;
  }

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

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

  .section-inner {
    width: auto;
    margin: 0;
    padding: 0 22px;
  }

  .walk-in,
  .services,
  .journey,
  .outcomes,
  .contact {
    min-height: 0;
    padding: 34px 0;
  }

  .walk-in h2,
  .services h2,
  .journey h2,
  .engagements h2 {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .pain-grid,
  .service-grid,
  .journey-row,
  .outcomes-inner,
  .stat-grid,
  .engagements,
  .engagement-grid,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .service-grid,
  .journey-row,
  .engagement-grid {
    gap: 14px;
  }

  .pain-grid article {
    grid-template-columns: 72px 1fr;
    min-height: 126px;
    padding: 22px;
  }

  .problem-icon {
    width: 58px;
    height: 58px;
  }

  .pain-grid h3,
  .service-grid h3,
  .journey h3,
  .stat-grid h3,
  .engagement-grid h3 {
    font-size: 20px;
  }

  .pain-grid p,
  .service-grid p,
  .journey p,
  .stat-grid p,
  .engagement-grid p,
  .contact-copy p {
    font-size: 15px;
  }

  .service-grid article {
    min-height: 0;
    padding: 24px;
  }

  .service-grid h3 {
    margin-top: 14px;
  }

  .service-grid p {
    min-height: 0;
  }

  .service-grid a,
  .platform-link,
  .outcome-copy a,
  .engagement-grid a {
    margin-top: 16px;
    font-size: 13px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .platforms {
    min-height: 0;
    padding: 34px 20px;
  }

  .platforms h2 {
    font-size: 13px;
  }

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

  .platform-row span {
    min-height: 80px;
    font-size: 13px;
  }

  .platform-row span:nth-child(odd) {
    border-left: 0;
  }

  .platform-row img {
    width: 44px;
    height: 36px;
  }

  .journey article:not(:last-child)::after {
    display: none;
  }

  .journey article img {
    width: 100%;
    height: 210px;
  }

  .journey h3 {
    margin-top: 14px;
    font-size: 20px;
  }

  .journey h3 span {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .outcome-copy h2,
  .contact h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .outcome-copy p {
    max-width: 520px;
  }

  .stat-grid {
    border-top: 0;
  }

  .stat-grid article {
    min-height: 0;
    padding: 24px;
    border-top: 1px solid rgba(8, 44, 47, 0.13);
    border-left: 0;
  }

  .stat-grid strong {
    font-size: 34px;
  }

  .stat-grid h3 {
    font-size: 17px;
  }

  .engagements {
    min-height: 0;
  }

  .engagement-content {
    padding: 34px 22px;
  }

  .engagement-grid {
    width: auto;
  }

  .engagement-grid article {
    min-height: 0;
    padding: 22px;
  }

  .engagement-grid img {
    width: 34px;
    height: 34px;
  }

  .engagement-grid h3 {
    min-height: 0;
    font-size: 20px;
  }

  .engagement-grid p,
  .engagement-grid li {
    font-size: 14px;
  }

  .engagement-photo {
    width: 100%;
    height: 260px;
  }

  .contact {
    gap: 28px;
    padding: 34px 22px 42px;
  }

  .contact-copy p {
    max-width: 520px;
  }

  .brief-list {
    gap: 8px;
    font-size: 14px;
  }

  .brief-list strong {
    font-size: 13px;
  }

  .brief-list span {
    padding-left: 22px;
  }

  .brief-list span::before {
    top: 4px;
    width: 13px;
    height: 13px;
    font-size: 8px;
    line-height: 13px;
  }

  .contact-form {
    gap: 16px;
    padding: 0;
    border: 0;
  }

  .contact-form span,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .form-actions p {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 42px;
  }

  .contact-form textarea {
    min-height: 82px;
  }

  .form-actions {
    display: grid;
    gap: 14px;
  }

  .contact-form button {
    width: 156px;
    min-height: 48px;
    font-size: 12px;
  }
}
