@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-orange: #f0592a;
  --color-orange-dark: #ce400d;
  --color-dark: #171717;
  --color-text: #2c2c2c;
  --color-muted: #5d5d5d;
  --color-light: #f7f4ef;
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 220ms ease;
  --header-offset: 164px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
}

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

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  z-index: 10000;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
  padding-top: var(--header-offset);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
}

.topbar {
  background: var(--color-orange);
  color: var(--color-white);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}

.topbar__phones {
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.social-links--large {
  justify-content: center;
}

.social-links--large a {
  width: 50px;
  height: 50px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 1.1rem;
}

.social-links--large a:hover {
  background: var(--color-orange);
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 116px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: min(240px, 45vw);
}

.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.nav-link:hover {
  color: var(--color-orange);
}

.nav-link.is-active {
  background: var(--color-orange);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: inline;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section--light {
  background: var(--color-white);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark-accent {
  background: linear-gradient(145deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
}

.section--social {
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 89, 42, 0.13), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(240, 89, 42, 0.1), transparent 25%),
    #fff8f4;
}

.section--support {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  max-width: none;
  margin: 0 0 2rem;
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-note {
  margin: 0;
  color: inherit;
  opacity: 0.9;
  font-size: 1.02rem;
}

.section-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.hero {
  position: relative;
  color: var(--color-white);
  background-color: #2c2c2c;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.74) 100%),
    var(--hero-image, none);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(240, 89, 42, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.hero-home::before {
  display: none;
}

.hero-home::after {
  background: linear-gradient(90deg, rgba(88, 34, 16, 0.08) 0%, rgba(88, 34, 16, 0.02) 30%, rgba(0, 0, 0, 0.16) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero--compact .hero__content {
  min-height: 440px;
}

.hero--blog .hero__content {
  min-height: 340px;
}

.hero__content--center {
  justify-content: center;
}

.hero__copy {
  max-width: 620px;
}

.hero__copy--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  text-align: center;
}

.hero__copy--center p {
  margin: 1.5rem auto 0;
}

.hero__copy--center .button {
  margin-top: 1.5rem;
}

.hero__copy h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero__copy p {
  max-width: 640px;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.8rem;
  border: 0;
  border-radius: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

.button--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.button--ghost {
  background: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.button--ghost:hover {
  background: rgba(240, 89, 42, 0.08);
}

.button--light {
  background: var(--color-white);
  color: var(--color-orange);
  box-shadow: var(--shadow-soft);
}

.button--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.service-grid,
.highlight-grid,
.value-grid,
.blog-grid,
.support-grid,
.app-grid,
.pillar-grid,
.contact-grid,
.video-grid,
.portrait-grid,
.cause-grid,
.category-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-card {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  padding: 1.45rem 1rem;
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.17);
}

.service-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.service-card span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
}

.highlight-grid,
.value-grid,
.pillar-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.highlight-card,
.value-card,
.pillar-card,
.contact-card,
.category-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.section--light .highlight-card,
.section--light .value-card,
.section--light .pillar-card,
.section--light .contact-card,
.section--light .category-card {
  background: #fffaf7;
  box-shadow: var(--shadow-card);
}

.highlight-card h3,
.value-card h3,
.pillar-card h3,
.contact-card h3,
.category-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact-card h3 span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.96rem;
  color: var(--color-orange);
}

.cta-panel,
.budget-card,
.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.1rem 2.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1f1f1f 0%, #323232 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.budget-card,
.promo-card {
  background: linear-gradient(145deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
}

.cta-panel__copy h2,
.budget-card h2,
.promo-card h2,
.split-copy h2,
.split-copy h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.testimonial-carousel {
  position: relative;
  min-height: 0;
}

.testimonial-card {
  display: none;
  text-align: center;
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-bubble {
  padding: 1.45rem 2rem;
  border-radius: 18px;
  background: #242424;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.testimonial-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-author,
.testimonial-context {
  margin: 1rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.testimonial-author {
  font-size: 1.8rem;
  color: var(--color-dark);
}

.testimonial-context {
  margin-top: 0.25rem;
  opacity: 0.55;
  font-size: 0.84rem;
  color: var(--color-dark);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  min-height: 100%;
}

.blog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.blog-card__copy h3 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.blog-card__copy p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.blog-card__meta {
  font-size: 0.82rem;
  color: #8f8f8f;
}

.blog-card__link {
  margin-top: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color-orange);
}

.social-callout {
  text-align: center;
}

.home-story {
  padding-top: 2.6rem;
  padding-bottom: 3rem;
}

.home-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.home-feature-list {
  display: grid;
  gap: 1.4rem;
}

.home-story .section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.home-feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1rem;
  align-items: start;
}

.home-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.5rem;
  line-height: 1;
}

.home-feature__copy h3 {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.home-feature__copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.home-story__media {
  display: grid;
  align-self: center;
}

.home-video__frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.home-video__frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.home-video__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.home-video__actions .button {
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
}

.home-testimonials {
  padding-top: 2.8rem;
  padding-bottom: 2rem;
}

.testimonial-stage {
  width: min(100%, 980px);
  margin: 0 auto;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: rgba(0, 0, 0, 0.82);
}

.home-budget-band {
  padding-top: 0;
  padding-bottom: 3.8rem;
}

.home-budget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  border-radius: 18px;
  background: #191919;
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.eyebrow--home {
  margin-bottom: 0.25rem;
  color: #b36d45;
}

.home-budget__copy p:last-child {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.home-budget__button {
  min-width: 220px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #111;
  color: var(--color-white);
  box-shadow: none;
}

.home-budget__button:hover {
  background: #232323;
}

.home-blog {
  padding-top: 1.75rem;
}

.home-blog .blog-card__media {
  aspect-ratio: 1 / 1;
}

.home-social {
  padding-top: 2.4rem;
  padding-bottom: 4.5rem;
}

.home-social .social-callout h2 {
  margin: 0;
}

.home-social .social-links {
  justify-content: center;
  margin-top: 1rem;
}

.home-social .social-links a {
  width: 38px;
  height: 38px;
  background: #1f1f1f;
  color: var(--color-white);
}

.home-social .social-links a:hover {
  background: var(--color-orange);
}

.copy-layout,
.narrow-copy {
  width: min(100%, 900px);
  margin: 0 auto;
}

.wysiwyg p,
.post-body p {
  margin: 0 0 1.2rem;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.about-hero .hero__content {
  min-height: 430px;
  align-items: center;
}

.about-hero__copy {
  max-width: 540px;
  margin-left: 4.5rem;
  padding: 3rem 0;
  text-align: left;
}

.about-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 0.94;
}

.about-hero__copy p {
  max-width: 36ch;
  font-size: clamp(0.96rem, 1.28vw, 1.18rem);
}

.about-story {
  padding-bottom: 2.5rem;
}

.about-story__shell {
  width: min(100%, 980px);
}

.about-story__copy {
  max-width: 900px;
  margin: 0 auto;
}

.about-story__copy p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-trajectory {
  padding-top: 1.5rem;
}

.about-trajectory__stack {
  display: grid;
  gap: 1.9rem;
  width: min(100%, 860px);
  margin: 0 auto;
}

.about-feature-video__frame,
.about-care__frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow-card);
}

.about-feature-video__frame {
  aspect-ratio: 16 / 9;
}

.about-feature-video__frame iframe,
.about-care__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-feature-video__caption {
  margin: 0.85rem auto 0;
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.about-units {
  padding-top: 0.75rem;
}

.about-units__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.9rem;
  width: min(100%, 980px);
  margin: 0 auto;
}

.about-unit-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-unit-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--color-muted);
}

.about-unit-card__text a {
  color: var(--color-orange-dark);
  font-weight: 700;
}

.about-unit-card__text a:hover {
  color: var(--color-orange);
}

.about-unit-card__media {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.about-unit-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9.1;
  object-fit: cover;
}

.about-people-band {
  padding: 5rem 0 4.5rem;
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(240, 89, 42, 0.95), rgba(206, 64, 13, 0.92)),
    url("../media/uploads/2022/03/pentagon-bg-1.jpg") center / cover;
}

.about-people-band .section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.about-people-band .section-heading h2 {
  color: var(--color-white);
}

.about-people-band .section-heading h2 span {
  display: block;
}

.about-people-band .section-heading p {
  color: rgba(255, 255, 255, 0.88);
}

.about-team {
  position: relative;
  display: block;
  padding: 0 2.6rem;
}

.about-team__viewport {
  overflow: hidden;
  width: 100%;
}

.about-team__track {
  display: flex;
  gap: 1rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.about-team__card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.about-team__card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-team__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.about-team__nav--prev {
  left: 0;
}

.about-team__nav--next {
  right: 0;
}

.about-team__nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.7);
}

.about-team__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.about-team__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.about-team__dot.is-active {
  width: 28px;
  background: var(--color-white);
}

.about-care .section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.about-care__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 980px);
  margin: 0 auto;
}

.about-care__frame {
  aspect-ratio: 16 / 9;
}

.about-social {
  padding-top: 4rem;
}

.about-social .social-links a {
  background: var(--color-dark);
  color: var(--color-white);
}

.about-social .social-links a:hover {
  background: var(--color-orange);
}

.media-grid {
  display: grid;
  gap: 1.5rem;
}

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

.media-card,
.portrait-card,
.cause-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-card img,
.portrait-card img,
.cause-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.video-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.video-card h3 {
  margin: 0;
  padding: 1.2rem 1.2rem 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.split-copy {
  max-width: 840px;
  margin: 2.6rem auto 0;
  text-align: center;
}

.split-copy p {
  margin: 0;
  color: var(--color-muted);
}

.service-stack {
  display: grid;
  gap: 3rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: #fffaf7;
  box-shadow: var(--shadow-card);
}

.service-detail--reverse .service-detail__copy {
  order: 2;
}

.service-detail--reverse .service-detail__media {
  order: 1;
}

.service-detail__copy h2 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.service-detail__copy p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-muted);
}

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

.service-detail__media .media-card:first-child:last-child {
  grid-column: span 2;
}

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

.app-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.app-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.app-card__copy h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
}

.app-card__copy p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.section--light .faq-item {
  background: #fffaf7;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--color-orange);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: inherit;
  opacity: 0.88;
}

.budget-actions,
.promo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.promo-card__copy {
  max-width: 700px;
}

.handle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.handle-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff7f2;
  color: var(--color-orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.pagination__link.is-active,
.pagination__link:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.post-page {
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.post-hero {
  padding: 7rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(240, 89, 42, 0.2), transparent 28%),
    linear-gradient(180deg, #f7e7df 0%, #fff8f3 100%);
}

.post-hero__content {
  max-width: 900px;
  text-align: center;
}

.post-hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.post-meta,
.tag-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(240, 89, 42, 0.14);
  color: var(--color-orange-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.post-layout {
  width: min(calc(100% - 2rem), 920px);
  margin: 0 auto;
  padding: 1.5rem 0 4.5rem;
}

.post-featured {
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.post-body {
  font-size: 1.05rem;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  margin: 2rem 0 0.9rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.post-body a {
  color: var(--color-orange);
  text-decoration: underline;
}

.post-body ul,
.post-body ol {
  padding-left: 1.35rem;
  margin: 0 0 1.2rem;
}

.post-body li + li {
  margin-top: 0.55rem;
}

.post-body img {
  margin: 1.5rem auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.post-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin: 1.5rem 0;
}

.post-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--color-orange);
  background: #fff8f3;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-nav {
  margin-top: 2rem;
}

.site-footer {
  position: relative;
  color: var(--color-white);
  background: #141414;
}

.site-footer__notch {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 20px;
  height: 10px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, transparent 50%, #ffb10f 50%) left,
    linear-gradient(225deg, transparent 50%, #ffb10f 50%) right;
  background-size: 50% 100%;
  background-repeat: no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3.1rem 0 2.3rem;
  justify-items: center;
  text-align: center;
}

.footer-brand img {
  width: min(150px, 100%);
  margin-bottom: 1rem;
}

.footer-brand,
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-column h3,
.footer-brand h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
  justify-items: center;
}

.footer-links a:hover,
.footer-policy a:hover {
  color: var(--color-orange);
}

.footer-ssl {
  width: 110px;
  margin-top: 1rem;
}

.footer-policy {
  margin: 1rem 0 0;
}

.footer-developer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-developer p {
  margin: 0 0 0.6rem;
}

.footer-developer img {
  width: 115px;
}

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

.footer-bottom p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 1.95rem;
  align-items: center;
  justify-content: center;
  min-height: 348px;
  padding: 3.15rem 1.35rem 2.85rem;
  border-radius: 10px;
  background: #d65a0c;
  color: var(--color-white);
  box-shadow: 0 18px 34px rgba(125, 53, 8, 0.14);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(125, 53, 8, 0.18);
}

.support-card__icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3.25rem;
}

.support-card__icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  line-height: 1;
}

.support-card__label {
  font-family: "Montserrat", sans-serif;
  max-width: 200px;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.support-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 52px;
  padding: 0.65rem 1.3rem;
  border: 1px solid #ffcc3d;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  color: #ffd44a;
}

.support-helpbar {
  position: relative;
  margin-top: 4.5rem;
  background: var(--color-orange);
}

.support-helpbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  text-align: center;
  position: relative;
}

.support-helpbar__inner img {
  width: 102px;
  position: absolute;
  right: 8%;
  bottom: -2px;
  transform: none;
}

.support-helpbar__inner p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.page-about .container {
  width: min(calc(100% - 2.5rem), 1280px);
}

.page-about .section {
  padding: 5.25rem 0;
}

.page-about .section-heading h2 {
  font-size: clamp(2.55rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-about .hero__content {
  min-height: 500px;
}

.page-about .about-hero__copy {
  max-width: 620px;
  margin-left: 5.8rem;
  padding: 3.5rem 0;
}

.page-about .about-hero__copy h1 {
  max-width: 10.5ch;
  font-size: clamp(2.95rem, 5vw, 4.8rem);
}

.page-about .about-hero__copy p {
  max-width: 34ch;
  font-size: clamp(1rem, 1.35vw, 1.26rem);
  line-height: 1.6;
}

.page-about .about-story {
  padding-bottom: 3.5rem;
}

.page-about .about-story__shell {
  width: min(100%, 1080px);
}

.page-about .about-story__copy {
  max-width: 980px;
}

.page-about .about-story__copy p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.82;
}

.page-about .about-trajectory {
  padding-top: 1.25rem;
}

.page-about .about-trajectory__stack {
  width: min(100%, 980px);
  gap: 2.4rem;
}

.page-about .about-feature-video__caption {
  max-width: 920px;
  font-size: 1rem;
}

.page-about .about-units {
  padding-top: 1.25rem;
}

.page-about .about-units__grid {
  width: min(100%, 1120px);
  gap: 2rem 2.25rem;
}

.page-about .about-unit-card__text {
  font-size: 1rem;
  line-height: 1.74;
}

.page-about .about-people-band {
  padding: 6rem 0 5.2rem;
}

.page-about .about-people-band .section-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.page-about .about-team {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 3rem;
}

.page-about .about-team__track {
  gap: 1.35rem;
}

.page-about .about-team__card {
  flex-basis: calc((100% - 2.7rem) / 3);
}

.page-about .about-team__nav {
  width: 50px;
  height: 50px;
}

.page-about .about-team__dots {
  margin-top: 1.35rem;
}

.page-about .about-care .section-heading {
  max-width: 900px;
  margin-bottom: 2.35rem;
}

.page-about .about-care__grid {
  width: min(100%, 1040px);
  gap: 1.8rem;
}

.page-about .about-social {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.page-about .home-social .social-links {
  gap: 1rem;
  margin-top: 1.25rem;
}

.page-about .home-social .social-links a {
  width: 42px;
  height: 42px;
}

.page-about .section--support {
  padding-top: 2.5rem;
}

.page-about .support-grid {
  gap: 1.15rem;
}

.page-about .support-card {
  min-height: 348px;
  padding: 3.15rem 1.35rem 2.85rem;
}

.page-about .support-card__icon {
  width: 88px;
  height: 88px;
  font-size: 3.25rem;
}

.page-about .support-card__label {
  font-size: 2rem;
}

.page-about .support-helpbar {
  margin-top: 5rem;
}

.page-about .support-helpbar__inner {
  min-height: 100px;
}

.page-about .support-helpbar__inner p {
  font-size: 1.08rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 980;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 1120px);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.cookie-banner__copy {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  text-align: left;
}

.cookie-banner__copy strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.cookie-banner__copy p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cookie-banner__accept {
  min-width: 190px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, #f05a24 0%, #ff7b42 100%);
  color: var(--color-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cookie-banner__accept:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(240, 90, 36, 0.28);
}

.cookie-banner__learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--color-white);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cookie-banner__learn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.page-legal .hero--blog .hero__copy {
  max-width: 860px;
}

.page-legal .hero--blog .hero__copy p {
  max-width: 28ch;
  margin: 1.35rem auto 0;
}

.page-legal .narrow-copy {
  width: min(100%, 980px);
}

.page-legal .reveal,
.js .page-legal .reveal,
.js .page-legal .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.legal-copy {
  display: grid;
  gap: 1.4rem;
}

.legal-copy__section {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcf8f4 100%);
  box-shadow: 0 18px 36px rgba(29, 24, 21, 0.07);
}

.legal-copy__section--highlight {
  background:
    linear-gradient(135deg, rgba(240, 90, 36, 0.13) 0%, rgba(240, 90, 36, 0.04) 100%),
    #fffaf6;
}

.legal-copy__section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.legal-copy__section h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.legal-copy__section p:last-child,
.legal-copy__section ul:last-child {
  margin-bottom: 0;
}

.legal-copy__section li::marker {
  color: var(--color-orange);
}

.legal-cookie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.legal-cookie-card {
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(240, 90, 36, 0.14);
  border-radius: 18px;
  background: #fff;
}

.legal-cookie-card p {
  margin-bottom: 0;
}

.legal-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.legal-copy__actions .button {
  min-width: 224px;
  justify-content: center;
}

.legal-copy__actions .button--primary {
  background: linear-gradient(135deg, #f05a24 0%, #ff6b32 100%);
  color: #ffffff;
  text-shadow: none;
}

.legal-copy__actions .button--primary:hover {
  background: linear-gradient(135deg, #db4c1a 0%, #f05a24 100%);
  color: #ffffff;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

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

  .blog-grid,
  .value-grid,
  .highlight-grid,
  .pillar-grid,
  .contact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 920px) {
  :root {
    --header-offset: 140px;
  }

  .topbar__inner,
  .navbar__inner,
  .cta-panel,
  .budget-card,
  .promo-card,
  .app-card,
  .service-detail {
    flex-direction: column;
  }

  .navbar__inner {
    flex-direction: row;
    min-height: 92px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    color: #222222;
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 0.35rem;
    border-radius: 0;
    color: #222222;
  }

  .hero__content {
    min-height: 520px;
  }

  .hero-home .hero__copy {
    max-width: min(92vw, 330px);
    margin: 0 auto;
    text-align: center;
  }

  .hero-home .hero__copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
  }

  .hero-home .hero__copy p {
    max-width: 100%;
    margin: 1rem auto 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-home .hero__copy .button {
    margin-top: 1.2rem;
  }

  .hero-home {
    background-position: 34% 22% !important;
    background-size: cover !important;
  }

  .about-hero__copy {
    margin: 0 auto;
    text-align: center;
  }

  .about-hero__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-about .hero__content {
    justify-content: center;
  }

  .page-about .about-hero__copy {
    max-width: min(90vw, 356px);
    margin: 0 auto;
    padding: 2.5rem 0;
    text-align: center;
  }

  .page-about .about-hero__copy h1 {
    max-width: none;
    margin: 0 auto;
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .page-about .about-hero__copy p {
    max-width: 26ch;
    margin: 1rem auto 0;
    font-size: 1.06rem;
    line-height: 1.72;
  }

  .hero-home::before {
    width: 100%;
    opacity: 0.36;
  }

  .hero-home::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.56) 35%, rgba(0, 0, 0, 0.74) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
  }

  .home-story__grid {
    grid-template-columns: 1fr;
  }

  .home-video__actions,
  .home-budget {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .service-detail,
  .app-card {
    display: flex;
  }

  .service-detail__media {
    width: 100%;
  }

  .media-grid--two,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .about-team__card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 148px;
  }

  .page-about .container {
    width: min(calc(100% - 1.5rem), 1280px);
  }

  .topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    min-height: 52px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .topbar__phones {
    display: none;
  }

  .social-links {
    gap: 0.7rem;
  }

  .navbar__inner {
    min-height: 96px;
  }

  .page-about .about-story__copy {
    padding: 0 0.35rem;
  }

  .page-about .about-story__copy p {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .page-about .about-people-band {
    padding-top: 4.8rem;
    padding-bottom: 4.2rem;
  }

  .page-about .about-team {
    max-width: 360px;
    padding: 0;
  }

  .page-about .about-team__viewport {
    overflow: hidden;
  }

  .page-about .about-team__track {
    gap: 0.75rem;
    align-items: center;
  }

  .page-about .about-team__card {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 10px;
    transform: scale(0.9);
    opacity: 0.55;
    transition: transform 320ms ease, opacity 320ms ease;
  }

  .page-about .about-team__card.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .page-about .about-team__card img {
    aspect-ratio: 0.92 / 1;
  }

  .page-about .about-team__dots {
    margin-top: 1rem;
  }

  .brand img {
    width: min(240px, 62vw);
  }

  .nav-toggle {
    background: transparent;
    color: #111111;
  }

  .topbar__phones {
    font-size: 0.82rem;
  }

  .section {
    padding: 3rem 0;
  }

  .service-grid,
  .support-grid,
  .blog-grid,
  .value-grid,
  .highlight-grid,
  .pillar-grid,
  .contact-grid,
  .video-grid,
  .portrait-grid,
  .cause-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .home-video__actions {
    grid-template-columns: 1fr;
  }

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

  .service-detail__media .media-card:first-child:last-child {
    grid-column: auto;
  }

  .cta-panel,
  .budget-card,
  .promo-card {
    padding: 1.75rem;
  }

  .home-story {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .home-testimonials {
    padding-top: 1.8rem;
    padding-bottom: 1.6rem;
  }

  .home-budget-band {
    padding-bottom: 2.4rem;
  }

  .home-blog {
    padding-top: 1.2rem;
  }

  .home-social {
    padding-top: 1.6rem;
    padding-bottom: 2.8rem;
  }

  .about-story {
    padding-bottom: 1.5rem;
  }

  .about-trajectory {
    padding-top: 0;
  }

  .about-units__grid,
  .about-care__grid {
    grid-template-columns: 1fr;
  }

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

  .about-team__nav {
    display: none;
  }

  .about-team__card {
    flex-basis: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 2rem 0 1.5rem;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .section-footer {
    margin-top: 1.75rem;
  }

  .page-about .section--support {
    padding-top: 1.8rem;
  }

  .support-grid {
    gap: 0.7rem;
  }

  .support-card {
    min-height: 158px;
    padding: 1.2rem 0.9rem 1rem;
    gap: 0.8rem;
  }

  .support-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .support-card__label {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .support-card__action {
    min-width: 122px;
    min-height: 44px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  .support-helpbar__inner {
    min-height: 78px;
    padding-top: 0.55rem;
  }

  .support-helpbar__inner img {
    position: static;
    transform: none;
    width: 64px;
    margin-top: 0.2rem;
  }

  .cookie-banner__inner {
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 20px;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem;
  }

  .cookie-banner__copy strong {
    font-size: 0.95rem;
  }

  .cookie-banner__copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .cookie-banner__accept,
  .cookie-banner__learn {
    width: 100%;
    min-height: 46px;
  }

  .legal-copy__section {
    padding: 1.5rem 1.2rem;
    border-radius: 18px;
  }

  .legal-cookie-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 20px;
    bottom: 90px;
  }

  .floating-contact__menu {
    width: min(260px, calc(100vw - 28px));
  }
}

.page-services .hero {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.84) 100%),
    var(--hero-image, none);
}

.page-services .hero::after {
  display: none;
}

.page-services .hero__content {
  min-height: 392px;
}

.page-services .hero__copy--center {
  max-width: 920px;
}

.page-services .hero__copy h1 {
  font-size: clamp(2.55rem, 3.8vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-services .hero__copy p {
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
}

.services-overview {
  padding-top: 4.5rem;
  padding-bottom: 3.75rem;
}

.services-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 320px);
  gap: 3.1rem;
  align-items: center;
  margin-bottom: 3.25rem;
}

.services-featured__copy h2 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #070707;
}

.services-featured__copy p {
  margin: 0;
  max-width: 580px;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--color-muted);
}

.services-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--color-orange);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.22);
  color: var(--color-orange);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.services-outline-button i {
  font-size: 0.96rem;
}

.services-featured__media {
  justify-self: center;
  width: 100%;
  max-width: 300px;
}

.services-featured__viewport {
  position: relative;
  aspect-ratio: 0.74;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
}

.services-featured__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.services-featured__slide.is-active {
  opacity: 1;
}

.services-featured__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-featured__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.services-featured__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c4c4c4;
  cursor: pointer;
}

.services-featured__dot.is-active {
  background: #111111;
}

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

.services-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.services-card__media {
  margin: 0;
  aspect-ratio: 1.48;
  overflow: hidden;
}

.services-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card__body {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
}

.services-card__body h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.12;
  color: #222222;
}

.services-card__body p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: #666666;
}

.services-apps {
  padding-top: 4.25rem;
  padding-bottom: 4.5rem;
}

.services-apps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem;
}

.services-app h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #333333;
}

.services-app p {
  margin: 0;
  max-width: 530px;
  margin-inline: auto;
  text-align: justify;
  font-size: 1.01rem;
  line-height: 1.72;
  color: var(--color-muted);
}

.services-app__art {
  margin: 2rem auto 0;
  width: min(100%, 470px);
}

.services-app__art img {
  width: 100%;
  display: block;
}

.services-pillars {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
}

.services-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../media/uploads/2022/03/pentagon-bg-1.jpg") center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.services-pillars .container {
  position: relative;
  z-index: 1;
}

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

.services-pillar {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  min-height: 132px;
  padding: 1.15rem 1rem;
  border-radius: 8px;
  background: var(--color-white);
  color: #222222;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.services-pillar__icon {
  flex: 0 0 auto;
  color: #8a8a8a;
  font-size: 1.75rem;
  line-height: 1;
}

.services-pillar__copy h3 {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.services-pillar__copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #666666;
}

.services-pillars__footer {
  margin-top: 1.7rem;
  text-align: center;
}

.services-faq {
  padding-top: 4rem;
  padding-bottom: 4.25rem;
}

.services-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-faq__column {
  display: grid;
  gap: 1rem;
}

.page-services .services-faq .faq-item {
  padding: 0;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
}

.page-services .services-faq .faq-item summary {
  position: relative;
  padding: 1rem 2.75rem 1rem 1rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #020202;
}

.page-services .services-faq .faq-item summary::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  float: none;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  color: #000000;
  content: "\f0da";
  transform: translateY(-50%);
}

.page-services .services-faq .faq-item[open] summary::after {
  color: #fa8a00;
  content: "\f0d8";
}

.page-services .services-faq .faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  border-top: 1px solid #e5e5e5;
  color: #373737;
  font-size: 0.97rem;
  line-height: 1.65;
  opacity: 1;
}

.services-budget {
  padding-top: 3.25rem;
  padding-bottom: 4.5rem;
}

.services-budget .section-heading {
  margin-bottom: 2rem;
}

.services-budget .section-heading p + p {
  margin-top: 0.2rem;
}

.services-budget__panel {
  max-width: 1080px;
  margin: 0 auto;
}

.services-budget__panel--simple {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.services-budget__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.services-budget__copy p {
  margin: 0;
  max-width: 560px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services-budget__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

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

.services-budget__contact-pill {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  color: #222222;
  text-align: left;
}

.services-budget__contact-pill strong {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #222222;
}

.services-budget__contact-pill span {
  margin: 0;
  color: #666666;
  font-size: 0.92rem;
  line-height: 1.55;
}

.services-budget__contact-pill:hover {
  border-color: rgba(240, 89, 42, 0.28);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
  color: var(--color-orange);
}

.services-budget__contact-pill:hover strong,
.services-budget__contact-pill:hover span {
  color: inherit;
}

.services-budget__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0.95rem 2.25rem;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.services-budget__submit:hover {
  background: #029e17;
  color: #ffffff;
}

.services-budget__submit--ghost {
  background: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.services-budget__submit--ghost:hover {
  background: rgba(240, 89, 42, 0.08);
  color: var(--color-orange);
}

.floating-contact {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-contact__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 999px;
  background: var(--color-orange);
  color: #ffffff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.floating-contact__toggle i {
  font-size: 1.75rem;
  line-height: 1;
}

.floating-contact__toggle:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.floating-contact.is-open .floating-contact__toggle {
  transform: scale(0.96);
}

.floating-contact__menu {
  display: grid;
  gap: 0.65rem;
  width: min(280px, calc(100vw - 40px));
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.floating-contact__menu[hidden] {
  display: none;
}

.floating-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  transition: background var(--transition), transform var(--transition);
}

.floating-contact__item:hover {
  transform: translateX(-2px);
}

.floating-contact__item--whatsapp {
  background: rgba(37, 211, 102, 0.08);
}

.floating-contact__item--linktree {
  background: rgba(0, 0, 0, 0.04);
}

.floating-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-orange);
  flex: 0 0 auto;
}

.floating-contact__item--whatsapp .floating-contact__icon {
  color: #25d366;
}

.floating-contact__item--linktree .floating-contact__icon {
  color: #222222;
}

.floating-contact__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.floating-contact__text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #202020;
}

.floating-contact__text small {
  color: #666666;
  font-size: 0.84rem;
}

@media (max-width: 1160px) {
  .services-card-grid,
  .services-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-apps__grid {
    gap: 1.5rem;
  }
}

@media (max-width: 920px) {
  .page-services .hero__content {
    min-height: 320px;
  }

  .page-services .hero__copy .button {
    margin-top: 1rem;
  }

  .services-featured,
  .services-apps__grid,
  .services-faq__grid,
  .services-budget__contact-line {
    grid-template-columns: 1fr;
  }

  .services-featured {
    gap: 2rem;
  }

  .services-featured__media {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .services-overview,
  .services-apps,
  .services-pillars,
  .services-faq,
  .services-budget {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .services-card-grid,
  .services-pillars__grid {
    grid-template-columns: 1fr;
  }

  .services-card__body,
  .services-pillar {
    text-align: left;
  }

  .services-card__body h3 {
    font-size: 1.24rem;
  }

  .services-featured__copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
