:root {
  --orange: #ff6602;
  --orange-hover: #ea580c;
  --green: #00d230;
  --green-hover: #00b328;
  --home-soft: #f9fafb;
  --home-border: #f3f4f6;
  --home-gray-600: #4b5563;
  --home-gray-700: #374151;
  --home-dark: #1a1a1a;
}

html body,
html body button,
html body input,
html body textarea,
html body select {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.home-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 40rem) { .home-container { max-width: 40rem; } }
@media (min-width: 48rem) { .home-container { max-width: 48rem; } }
@media (min-width: 64rem) { .home-container { max-width: 64rem; } }
@media (min-width: 80rem) { .home-container { max-width: 80rem; } }
@media (min-width: 96rem) { .home-container { max-width: 96rem; } }

.template-home {
  overflow: clip;
  background: #fff;
  color: #000;
}

.template-home h1,
.template-home h2,
.template-home h3,
.template-home p {
  margin: 0;
}

.template-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .125rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: rgb(26 26 26 / 97%);
  color: #fff;
  backdrop-filter: blur(16px);
}

.is-home .site-header {
  position: absolute;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 1.5rem;
}

.is-home .header-inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 3rem;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  color: #fff;
  line-height: .82;
}

.logo-name {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -.075em;
}

.logo-dot { color: #fff; }

.logo small {
  margin-top: .42rem;
  color: #fff;
  font-size: .5rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 400;
}

.desktop-nav a {
  position: relative;
  padding-block: .75rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: .35rem;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 2.6rem;
  padding-inline: 1.25rem;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: .25rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 400;
  transition: background-color .2s ease, color .2s ease;
}

.header-cta:hover {
  background: #fff;
  color: #000;
}

.mobile-menu {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-content: center;
  gap: .32rem;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: .25rem;
}

.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 1.2rem; height: 1px; background: #fff; }

.mobile-panel {
  position: absolute;
  top: 3.2rem;
  right: 0;
  width: 16rem;
  padding: .75rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: .5rem;
  background: #1c1c1c;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
}

.mobile-panel a {
  display: block;
  padding: .75rem;
  border-radius: .3rem;
  color: #eee;
}

.mobile-panel a:hover { background: #292929; }
.mobile-panel .mobile-cta { margin-top: .5rem; background: var(--orange); text-align: center; }

.template-hero {
  position: relative;
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background: #000;
  color: #fff;
}

.template-hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scaleX(-1);
}

.template-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 68%) 48%, rgb(0 0 0 / 43%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 16%) 0%, rgb(0 0 0 / 38%) 100%);
}

.template-hero-content {
  position: relative;
  z-index: 20;
}

.template-hero h1 {
  max-width: 48rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.template-hero h1 span { color: var(--orange); }

.template-hero-content > p {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #f3f4f6;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.625;
}

.desktop-break { display: none; }

.template-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.template-hero-actions .template-button {
  padding: .75rem 1.5rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.template-button-light:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.template-button-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.template-hero-note {
  margin-bottom: 1rem;
  color: #d1d5db;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.template-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.template-pills span {
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1rem;
}

.template-feature-strip {
  padding-block: 5rem;
  background: var(--orange);
  color: #fff;
}

.template-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.template-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.template-feature-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.template-feature-card h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.template-feature-card p {
  margin-bottom: 2rem;
  color: #fff7ed;
  font-size: .875rem;
  line-height: 1.625;
}

.template-feature-card i {
  width: 100%;
  margin-top: auto;
  border-bottom: 1px solid #ff8833;
}

.template-section { padding-block: 5rem; }
.template-soft { background: var(--home-soft); }

.template-section-heading {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.template-section-heading--wide { margin-bottom: 4rem; }
.template-section-heading--faq { margin-bottom: 4rem; }

.template-section-heading h2 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.template-section-heading p {
  margin-top: 1rem;
  color: var(--home-gray-600);
  font-size: 1rem;
  line-height: 1.625;
}

.template-stage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.template-stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--home-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.template-stage-card:hover {
  border-color: #ffedd5;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.template-stage-card h3 {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.template-stage-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--home-gray-700);
  font-size: .875rem;
  line-height: 1.625;
}

.template-stage-card a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: .125rem;
  background: var(--orange);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .2s ease;
}

.template-stage-card a:hover { background: #000; }

.portfolio-section { background: #fff; }

.template-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.template-portfolio-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--home-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
  transition: box-shadow .3s ease, transform .3s ease;
}

.template-portfolio-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
  transform: translateY(-3px);
}

.template-portfolio-media {
  position: relative;
  height: 12rem;
  background: #e5e7eb;
}

.template-portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-portfolio-body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.template-portfolio-body > span {
  width: fit-content;
  margin-bottom: .75rem;
  padding: .0625rem .375rem;
  border-radius: .125rem;
  background: #e5e7eb;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.template-portfolio-body h3 {
  margin-bottom: .75rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.template-portfolio-body p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--home-gray-600);
  font-size: .75rem;
  line-height: 1.625;
}

.template-portfolio-body a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s ease;
}

.template-portfolio-body a:hover { color: #000; }
.template-portfolio-body a b { transition: transform .2s ease; }
.template-portfolio-body a:hover b { transform: translateX(4px); }

.template-centered-action {
  margin-top: 3rem;
  text-align: center;
}

.template-button-dark {
  padding: .75rem 2rem;
  background: #000;
  color: #fff;
  font-size: .875rem;
}

.template-button-dark:hover { background: var(--orange); }

.template-outcome-grid,
.template-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.template-outcome-card,
.template-process-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease, transform .3s ease;
}

.template-outcome-card {
  border: 1px solid var(--home-border);
  background: #fff;
}

.template-outcome-card:hover {
  border-color: #ffedd5;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.template-outcome-card > span,
.template-process-card > span {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .25rem .75rem;
  border-radius: .5rem;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 700;
}

.template-outcome-card > span { background: #fff7ed; }

.template-outcome-card h3,
.template-process-card h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.template-outcome-card h3 { color: #000; }
.template-outcome-card p { color: var(--home-gray-700); }

.template-outcome-card p,
.template-process-card p {
  font-size: .875rem;
  line-height: 1.625;
}

.template-process-section {
  background: var(--home-dark);
  color: #fff;
}

.template-section-heading-light h2 { color: #fff; }
.template-section-heading-light p { color: #d1d5db; }

.template-process-card {
  border: 1px solid rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 5%);
}

.template-process-card:hover {
  border-color: var(--orange);
  background: rgb(255 255 255 / 10%);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}

.template-process-card > span { background: rgb(255 102 2 / 10%); }
.template-process-card h3 { color: #fff; }
.template-process-card p { color: #d1d5db; }

.template-project-grid {
  display: grid;
  max-width: 64rem;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-inline: auto;
}

.template-project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--home-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.template-project-card:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.template-project-quote {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  fill: rgb(255 102 2 / 20%);
}

.template-project-label {
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.template-project-card > p {
  flex-grow: 1;
  margin-bottom: 2rem;
  color: var(--home-gray-700);
  font-size: 1rem;
  line-height: 1.625;
}

.template-project-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.template-project-person > span {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 700;
}

.template-project-person div { display: grid; }
.template-project-person strong { color: #000; font-size: 1rem; }
.template-project-person small { color: #6b7280; font-size: .75rem; }

.faq-section { background: #fff; }

.template-faq-list {
  display: grid;
  max-width: 48rem;
  gap: 1rem;
  margin-inline: auto;
}

.template-faq-list details {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  background: #fff;
  transition: border-color .3s ease;
}

.template-faq-list details:hover { border-color: #fdba74; }

.template-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
}

.template-faq-list summary::-webkit-details-marker { display: none; }
.template-faq-list summary span { color: #9ca3af; font-size: 1.25rem; font-weight: 400; transition: transform .2s ease; }
.template-faq-list details[open] summary span { transform: rotate(45deg); }

.template-faq-list details p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  color: var(--home-gray-600);
  font-size: .875rem;
  line-height: 1.625;
}

.template-cta-wrap {
  padding-block: 4rem;
  background: linear-gradient(90deg, #000 0%, #111827 100%);
  color: #fff;
}

.template-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.template-cta-inner > div { max-width: 42rem; }

.template-cta-inner h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.template-cta-inner p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.625;
}

.template-button-green {
  padding: .75rem 1.5rem;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
}

.template-button-green:hover { background: var(--green-hover); }

.form-section {
  padding-block: 6rem;
  background: var(--home-soft);
}

.form-heading { margin-bottom: 4rem; }

.form-heading > span {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .5rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: .125rem;
  background: #f3f4f6;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin-bottom: 2rem;
  color: #000;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.form-heading i {
  display: block;
  width: 6rem;
  height: .375rem;
  margin: 0 auto 2rem;
  border-radius: 9999px;
  background: var(--orange);
}

.form-heading p {
  margin-top: 0;
  color: var(--home-gray-700);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
}

.template-form-card {
  max-width: 56rem;
  margin-inline: auto;
  padding: 1.5rem;
  border: 1px solid var(--home-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
}

.template-form-frame {
  display: block;
  width: 100%;
  height: 1003px !important;
  min-height: 1003px !important;
  border: 0;
  border-radius: 3px;
  background: #fff;
}

.site-footer {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0;
  background: var(--orange);
  color: #fff;
}

.footer-shell {
  width: 100%;
  max-width: none;
  padding-inline: 1.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto .25rem;
}

.footer-left {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.footer-logo .logo-name {
  font-size: 1.875rem;
  font-weight: 900;
}

.footer-logo small {
  margin-top: 0;
  color: #fff;
  font-size: 10px;
  font-style: italic;
  letter-spacing: .1em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  color: #fff;
  font-size: .875rem;
}

.footer-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.footer-socials {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-social-label {
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-wordmark {
  width: 100%;
  padding-inline: 1.5rem;
  background: linear-gradient(to bottom, var(--orange) 0%, #fff 100%);
  background-clip: text;
  color: transparent;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .9;
  text-align: center;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 1.5rem 1.35rem;
  color: rgb(255 255 255 / 92%);
  font-size: .75rem;
  text-align: center;
}

.footer-bottom span + span::before { margin-right: .5rem; content: "·"; }

@media (min-width: 40rem) {
  .template-hero-actions { flex-direction: row; }
  .template-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-wordmark { font-size: 6rem; }
}

@media (min-width: 48rem) {
  .template-hero {
    min-height: 80vh;
    padding: 12rem 3rem 5rem;
  }

  .desktop-break { display: initial; }
  .template-hero h1 { font-size: 3rem; }
  .template-hero-content > p { font-size: 1.125rem; }

  .template-hero-actions .template-button {
    padding-inline: 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .template-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .template-feature-card svg { width: 2.5rem; height: 2.5rem; }
  .template-feature-card h2 { font-size: 1.5rem; }
  .template-feature-card p { font-size: 1rem; }

  .template-section-heading h2,
  .template-cta-inner h2 { font-size: 2.25rem; }

  .template-section-heading p,
  .template-cta-inner p { font-size: 1.125rem; }

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

  .template-stage-card,
  .template-outcome-card,
  .template-process-card { padding: 2rem; }

  .template-stage-card h3,
  .template-outcome-card h3,
  .template-process-card h3 { font-size: 1.25rem; }

  .template-stage-card p,
  .template-outcome-card p,
  .template-process-card p { font-size: 1rem; }

  .template-stage-card a { width: 280px; padding-inline: 2rem; }

  .template-portfolio-media { height: 14rem; }
  .template-portfolio-body { padding: 2rem; }
  .template-portfolio-body h3 { font-size: 1.25rem; }
  .template-portfolio-body p,
  .template-portfolio-body a { font-size: .875rem; }

  .template-project-card { padding: 2.5rem; }
  .template-project-quote { width: 2.5rem; height: 2.5rem; }
  .template-project-card > p { font-size: 1.125rem; }
  .template-project-person > span { width: 3.5rem; height: 3.5rem; font-size: 1.25rem; }
  .template-project-person strong { font-size: 1.125rem; }
  .template-project-person small { font-size: .875rem; }

  .template-faq-list details { padding: 1.5rem; }
  .template-faq-list summary { font-size: 1.125rem; }
  .template-faq-list details p { font-size: 1rem; }

  .template-cta-inner {
    flex-direction: row;
    text-align: left;
  }

  .template-button-green {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  .form-heading h2 { font-size: 2.25rem; }
  .form-heading p { font-size: 1.125rem; }
  .template-form-card { padding: 3rem; }

  .site-footer { padding-top: 3rem; }
  .footer-shell { padding-inline: 3rem; }
  .footer-top {
    max-width: 80rem;
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-left { width: auto; }
  .footer-logo .logo-name { font-size: 2.25rem; }
  .footer-nav { gap: 1.5rem; font-size: 1rem; }
  .footer-socials { width: auto; align-items: flex-end; text-align: right; }
  .footer-wordmark { font-size: 10rem; }
}

@media (min-width: 64rem) {
  .template-feature-grid,
  .template-outcome-grid,
  .template-process-grid,
  .template-portfolio-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .footer-wordmark { font-size: 16.8rem; }
}

@media (max-width: 47.9375rem) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .is-home .header-inner { padding-inline: 1.5rem; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .logo-name { font-size: 1.6rem; }
  .template-hero-video { object-position: 52% center; }
  .template-hero-overlay { background: linear-gradient(90deg, rgb(0 0 0 / 88%), rgb(0 0 0 / 58%)); }
  .template-form-frame { height: 1120px !important; min-height: 1120px !important; }
  .footer-bottom { flex-direction: column; gap: .2rem; }
  .footer-bottom span + span::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .template-hero-video { display: none; }
}
