/* Editors Flow — premium agency landing
   Palette: white base, orange accent, vivid red CTA */

:root {
  --bg: #ffffff;
  --bg-subtle: #f7f7f5;
  --bg-muted: #efeeeb;
  --text: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  --border: #e7e5e4;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --orange-soft: rgba(234, 88, 12, 0.08);
  --maroon: #ef4341;
  --maroon-hover: #d6302e;
  --maroon-soft: rgba(239, 67, 65, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 8px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 4px 6px rgba(28, 25, 23, 0.03), 0 24px 48px rgba(28, 25, 23, 0.08);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-duration: 0.62s;
  --space: clamp(1rem, 4vw, 2rem);
  --container: 1320px;
  --container-gutter: clamp(0.75rem, 2.5vw, 1.25rem);
  --tap-min: 48px;
}

@keyframes ef-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ef-fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ef-scale-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ef-blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.96);
  }
}

@keyframes ef-ken {
  0%,
  100% {
    transform: scale(1.02) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1.5%, 0.5%);
  }
}

@keyframes ef-shine {
  0% {
    transform: translateX(-120%) skewX(-12deg);
    opacity: 0;
  }
  15% {
    opacity: 0.12;
  }
  40% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes ef-border-glow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.011em;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(234, 88, 12, 0.12);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.page {
  background: linear-gradient(180deg, #fdfcfa 0%, #f7f5f2 38%, #faf8f6 100%);
}

/* Scroll-driven fades (only when JS runs — see inline script on body) */
.reveal {
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
  will-change: opacity, transform;
}

html.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
}

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

.reveal-group > * {
  transition:
    opacity 0.52s var(--ease-out),
    transform 0.52s var(--ease-out);
}

html.js-reveal .reveal-group:not(.is-visible) > * {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
}

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

.reveal-group.is-visible > *:nth-child(1) {
  transition-delay: 0.04s;
}
.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 0.09s;
}
.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 0.14s;
}
.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 0.19s;
}
.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 0.24s;
}
.reveal-group.is-visible > *:nth-child(6) {
  transition-delay: 0.29s;
}
.reveal-group.is-visible > *:nth-child(7) {
  transition-delay: 0.34s;
}
.reveal-group.is-visible > *:nth-child(8) {
  transition-delay: 0.39s;
}
.reveal-group.is-visible > *:nth-child(9) {
  transition-delay: 0.44s;
}
.reveal-group.is-visible > *:nth-child(10) {
  transition-delay: 0.49s;
}
.reveal-group.is-visible > *:nth-child(11) {
  transition-delay: 0.54s;
}
.reveal-group.is-visible > *:nth-child(12) {
  transition-delay: 0.59s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js-reveal .reveal:not(.is-visible),
  html.js-reveal .reveal-group:not(.is-visible) > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal,
  .reveal.is-visible,
  .reveal-group > *,
  .reveal-group.is-visible > * {
    transition: none !important;
    animation: none !important;
  }

  body.is-loaded .site-header,
  body.is-loaded .hero-copy-animate > *,
  body.is-loaded .hero-panel-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .page-bg__blob,
  .hero-media img,
  .cta-band::after,
  .subpage-hero__media img,
  .hero-glow {
    animation: none !important;
  }

  .hero-glow {
    opacity: 0.45 !important;
  }

  .contact-form:hover {
    transform: none !important;
  }
}

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

a {
  color: var(--maroon);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-soft);
}

a:hover {
  color: var(--orange-hover);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--maroon);
  color: #fff;
  border-radius: 6px;
}

.skip-link:focus {
  left: 0.75rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0);
  overflow: visible;
  transition:
    box-shadow 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(28, 25, 23, 0.07);
}

@media (prefers-reduced-motion: no-preference) {
  body.is-loaded .site-header {
    animation: ef-fade-down 0.55s var(--ease-out) backwards;
  }
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  width: 100%;
}

.header-inner > .logo {
  grid-column: 1;
  justify-self: start;
  z-index: 2;
}

.header-inner > .nav {
  grid-column: 2;
  justify-self: center;
  z-index: 1;
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  z-index: 2;
}

.nav-list__cta-mobile {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-inner > .nav {
    grid-column: 2;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-list__cta-mobile {
    display: block;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: inherit;
}

.logo-img {
  display: block;
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 600px) {
  .logo-img {
    height: 52px;
    max-height: 52px;
  }
}

.footer-logo-img {
  height: 44px;
  max-height: 44px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--maroon), #7a1a19);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: var(--bg-subtle);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  box-shadow: 0 -7px 0 var(--text), 0 7px 0 var(--text);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.75rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--maroon);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--maroon-hover);
  color: #fff !important;
}

.nav {
  position: relative;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(72px + env(safe-area-inset-top, 0px));
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--container-gutter) calc(1rem + env(safe-area-inset-bottom, 0));
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.3s var(--ease-out),
      transform 0.3s var(--ease-out),
      visibility 0s linear 0.3s;
    max-height: min(72vh, calc(100dvh - 76px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 49;
  }

  .nav.is-open .nav-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
    transition-timing-function: var(--ease-out);
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list li:last-child {
    border-bottom: 0;
    padding-top: 0.75rem;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: var(--tap-min);
    padding: 0.5rem 0;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-min);
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.22s var(--ease-soft),
    color 0.22s var(--ease-soft),
    border-color 0.22s var(--ease-soft),
    transform 0.2s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft);
}

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

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.btn-primary:hover {
  background: var(--maroon-hover);
  border-color: var(--maroon-hover);
  color: #fff;
  box-shadow: 0 8px 24px rgba(239, 67, 65, 0.32);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon-soft);
  color: var(--maroon);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

/* Global decorative background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% -20%, rgba(234, 88, 12, 0.14), transparent 55%),
    radial-gradient(ellipse 90% 70% at 95% 15%, rgba(239, 67, 65, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(234, 88, 12, 0.06), transparent 45%);
}

.page-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: ef-blob-float 22s ease-in-out infinite;
}

.page-bg__blob--1 {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -8%;
  left: -6%;
  background: rgba(234, 88, 12, 0.35);
  animation-duration: 26s;
}

.page-bg__blob--2 {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  bottom: 5%;
  right: -10%;
  background: rgba(239, 67, 65, 0.26);
  animation-duration: 32s;
  animation-delay: -6s;
}

.page-bg__blob--3 {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  top: 42%;
  left: 35%;
  background: rgba(251, 146, 60, 0.2);
  animation-duration: 24s;
  animation-delay: -12s;
}

.page-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 80% 55% at 70% -10%, var(--orange-soft), transparent),
    radial-gradient(ellipse 60% 40% at 0% 50%, var(--maroon-soft), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 55%);
  overflow: hidden;
}

.hero--rich {
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(234, 88, 12, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ef-border-glow 8s ease-in-out infinite;
}

.hero--rich .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-panel {
    order: -1;
    align-self: center;
    width: 100%;
    max-width: 36rem;
  }

  .hero-copy {
    text-align: left;
    max-width: none;
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-trust {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    margin-inline: 0;
  }

  .hero-title {
    text-wrap: balance;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
    min-width: min(100%, 11rem);
    justify-content: center;
  }

  .hero-media {
    flex: none;
    max-height: min(320px, 48vh);
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-width: 100%;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.045em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--maroon);
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-trust li {
  padding-left: 1.35rem;
  position: relative;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

@media (prefers-reduced-motion: no-preference) {
  body.is-loaded .hero-copy-animate > * {
    animation: ef-fade-up 0.68s var(--ease-out) backwards;
  }

  body.is-loaded .hero-copy-animate > *:nth-child(1) {
    animation-delay: 0.04s;
  }
  body.is-loaded .hero-copy-animate > *:nth-child(2) {
    animation-delay: 0.1s;
  }
  body.is-loaded .hero-copy-animate > *:nth-child(3) {
    animation-delay: 0.16s;
  }
  body.is-loaded .hero-copy-animate > *:nth-child(4) {
    animation-delay: 0.22s;
  }
  body.is-loaded .hero-copy-animate > *:nth-child(5) {
    animation-delay: 0.28s;
  }

  body.is-loaded .hero-panel-animate {
    animation: ef-scale-in 0.72s 0.18s var(--ease-out) backwards;
  }
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 0;
  align-self: stretch;
}

.hero-media {
  position: relative;
  margin: 0;
  flex: 1 1 auto;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(28, 25, 23, 0.45) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: ef-ken 22s ease-in-out infinite alternate;
  }
}

.logos {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-subtle);
}

.logos-inner {
  text-align: center;
}

.logos-title {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.logo-strip span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  background: var(--bg);
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease-soft), transform 0.25s var(--ease-soft), color 0.2s;
}

.logo-strip span:hover {
  border-color: rgba(234, 88, 12, 0.35);
  color: var(--text);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-alt {
  background: var(--bg-subtle);
}

.section--mesh {
  position: relative;
  overflow: hidden;
}

.section--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(239, 67, 65, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 67, 65, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.7;
}

.section--mesh > .container {
  position: relative;
  z-index: 1;
}

.section--panel {
  position: relative;
}

.section--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(234, 88, 12, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(239, 67, 65, 0.07), transparent 55%);
  pointer-events: none;
}

.section--panel .container {
  position: relative;
  z-index: 1;
}

.logos--visual {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 245, 0.98)),
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(234, 88, 12, 0.08), transparent 55%);
}

.section--portfolio {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
}

.section--portfolio::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}

.section--depth {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(234, 88, 12, 0.06), transparent 55%),
    var(--bg-subtle);
}

.section--contact {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.section--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 720px);
  height: 160px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(239, 67, 65, 0.08), transparent 70%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 52ch;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  line-height: 1.22;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .section-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta-row .btn {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
}

/* Services teaser (home) */
.services-teaser {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.services-teaser-lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.services-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
}

@media (max-width: 640px) {
  .services-teaser-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .services-teaser-actions .btn {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.28s var(--ease-soft),
    box-shadow 0.28s var(--ease-soft),
    transform 0.28s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--maroon);
  background: var(--maroon-soft);
  border-radius: 12px;
  margin-bottom: 1.1rem;
  transition: transform 0.3s var(--ease-out), background 0.25s;
}

.service-card:hover .service-icon {
  transform: scale(1.06);
  background: rgba(234, 88, 12, 0.1);
}

.service-card h2,
.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* —— Services page —— */

/* Capability grid (9 numbered cards) */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.capability-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.25s var(--ease-soft),
    box-shadow 0.28s var(--ease-soft);
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 67, 65, 0.32);
  box-shadow: var(--shadow-lg);
}

.capability-card__num {
  position: absolute;
  top: 0.55rem;
  right: 0.85rem;
  font-family: var(--font);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(28, 25, 23, 0.06);
  user-select: none;
}

.capability-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon) 0%, #7a1a19 100%);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(239, 67, 65, 0.3);
}

.capability-card__icon svg {
  width: 22px;
  height: 22px;
}

.capability-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.capability-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

@media (max-width: 560px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
}

/* Industries grid */
.industry-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.industry-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.25rem 0.75rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft);
}

.industry-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 67, 65, 0.35);
  box-shadow: var(--shadow-lg);
}

.industry-tile__emoji {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

/* Why-us split (image + copy) */
.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.why-split__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #292524;
}

.why-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, transparent 50%, rgba(239, 67, 65, 0.15));
}

.why-split__copy .eyebrow {
  margin-bottom: 0.75rem;
}

.why-split__copy .section-title {
  margin-bottom: 1rem;
  text-wrap: balance;
}

.why-split__copy p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.why-split__list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.why-split__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.why-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--maroon));
  box-shadow: 0 0 0 3px var(--orange-soft);
}

@media (max-width: 900px) {
  .why-split {
    grid-template-columns: 1fr;
  }

  .why-split__media {
    max-width: 540px;
    margin-inline: auto;
  }
}

/* AI services grid (8 cards) */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.ai-card {
  position: relative;
  padding: 1.45rem 1.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft);
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.3rem;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--maroon));
  border-radius: 0 0 4px 4px;
}

.ai-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 67, 65, 0.3);
  box-shadow: var(--shadow-lg);
}

.ai-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.ai-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 480px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

/* Process timeline (5 steps, vertical) */
.process-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 56rem;
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--maroon-soft), var(--maroon) 30%, var(--orange) 75%, transparent);
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.timeline-step__num {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon) 0%, #7a1a19 100%);
  box-shadow:
    0 10px 24px rgba(239, 67, 65, 0.35),
    0 0 0 5px var(--bg);
}

.timeline-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.timeline-step p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 560px) {
  .process-timeline::before {
    left: 24px;
  }

  .timeline-step {
    padding-left: 4rem;
  }

  .timeline-step__num {
    width: 44px;
    height: 44px;
    left: 0.4rem;
    font-size: 0.8125rem;
  }
}

/* CTA strip (25% off) */
.services-cta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #1a0a0c 0%, #2a1110 60%, #3b1211 100%);
  border-radius: var(--radius-lg);
  color: #fafaf9;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(239, 67, 65, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(234, 88, 12, 0.18), transparent 55%);
}

.services-cta-strip > * {
  position: relative;
  z-index: 1;
}

.services-cta-strip__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.services-cta-strip__title span {
  background: linear-gradient(135deg, #fdba74, #fb923c, var(--maroon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-cta-strip__desc {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(250, 250, 249, 0.78);
}

.services-cta-strip .btn-primary {
  background: linear-gradient(135deg, #fb923c 0%, var(--maroon) 65%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 10px 28px rgba(239, 67, 65, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.services-cta-strip .btn-primary:hover {
  background: linear-gradient(135deg, #fdba74 0%, var(--maroon) 65%);
  border-color: transparent;
}

@media (max-width: 720px) {
  .services-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}

.faq-item[open] {
  border-color: rgba(239, 67, 65, 0.3);
  box-shadow: var(--shadow-lg);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--maroon-soft);
  color: var(--maroon);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-soft);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--maroon);
  color: #fff;
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 0.85rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.pricing-grid > .pricing-card.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
  align-self: stretch;
  padding-top: 1.4rem;
}

/* Body grows to row height; spacer absorbs extra space so CTAs stay at card bottom */
.pricing-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.pricing-card__head {
  flex: 0 0 auto;
}

.pricing-card__fill {
  flex: 1 1 auto;
  min-height: 0;
}

.pricing-card.service-card .pricing-card__price {
  margin: 0 0 0.15rem;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
}

.pricing-card.service-card .pricing-card__price-note {
  margin: 0 0 1.2rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.pricing-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--maroon));
  box-shadow: 0 0 0 2px var(--orange-soft);
}

.pricing-card .btn-block {
  margin-top: 0;
  padding-top: 1.1rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card__badge--popup {
    animation: none;
  }
}

.pricing-card__badge--popup {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  margin: 0;
  padding: 0.22rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--maroon) 0%, #7a1a19 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(239, 67, 65, 0.5),
    0 2px 8px rgba(28, 25, 23, 0.12);
  transform: translate(-50%, -58%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .pricing-card__badge--popup {
    animation: ef-pricing-badge-pop 0.55s var(--ease-out) 0.12s both;
  }
}

@keyframes ef-pricing-badge-pop {
  from {
    opacity: 0;
    transform: translate(-50%, -20%) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -58%) scale(1);
  }
}

.pricing-card--featured {
  border-color: rgba(234, 88, 12, 0.42);
  background: linear-gradient(165deg, #fffefb 0%, var(--bg) 40%);
  box-shadow: var(--shadow);
}

.pricing-promo {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 100% at 50% -35%, var(--maroon-soft), transparent 58%),
    radial-gradient(ellipse 55% 70% at 100% 85%, var(--orange-soft), transparent 52%);
}

.pricing-promo > * {
  position: relative;
  z-index: 1;
}

.pricing-promo__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
}

.pricing-promo__accent {
  color: var(--maroon);
}

.pricing-promo__desc {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pricing-promo__btn {
  min-width: min(100%, 18rem);
}

@media (max-width: 480px) {
  .pricing-promo__btn {
    width: 100%;
    max-width: 20rem;
  }
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .pricing-card--featured {
    order: -1;
  }
}

.pricing-footnote {
  position: relative;
  clear: both;
  margin: clamp(2.75rem, 6vw, 4rem) auto 0;
  padding-top: 0.25rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.text-link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--orange);
  position: relative;
  transition: color 0.2s var(--ease-soft);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

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

.text-link:hover::after {
  transform: scaleX(1);
}

/* Process — podium / staircase */
.process-podium {
  --tower-step-1: 220px;
  --tower-step-2: 300px;
  --tower-step-3: 380px;
  --tower-step-4: 460px;
  list-style: none;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.6vw, 1.25rem);
  align-items: end;
  min-height: calc(var(--tower-step-4) + 200px);
}

.podium-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

/* The card sits ABOVE the circle, which sits on TOP of the tower */
.podium-card {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-bottom: -38px;
  padding: 0.9rem 1rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: left;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.25s var(--ease-soft);
}

.podium-card::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.podium-step:hover .podium-card {
  transform: translateY(-3px);
  border-color: rgba(239, 67, 65, 0.28);
  box-shadow:
    var(--shadow-lg),
    0 18px 40px rgba(239, 67, 65, 0.12);
}

.podium-card__tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.18rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--maroon-soft);
  border: 1px solid rgba(239, 67, 65, 0.22);
  border-radius: 999px;
}

.podium-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.podium-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Circle sits half-above the tower, immediately under the card */
.podium-circle {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, #ff7574 0%, var(--maroon) 50%, #7a1a19 100%);
  border-radius: 50%;
  box-shadow:
    0 14px 28px rgba(239, 67, 65, 0.4),
    0 0 0 8px var(--bg-subtle),
    0 0 0 9px var(--border);
  transform: translateY(42px);
  transition: transform 0.3s var(--ease-out);
}

.podium-circle svg {
  width: 32px;
  height: 32px;
}

.podium-step:hover .podium-circle {
  transform: translateY(38px) scale(1.04);
}

/* Tower / podium */
.podium-tower {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--tower);
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 30%, var(--bg-muted) 100%);
  border: 1px solid var(--border);
  border-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 rgba(28, 25, 23, 0.04);
  overflow: hidden;
}

.podium-tower::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(239, 67, 65, 0.08), transparent);
  pointer-events: none;
}

.podium-num {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(28, 25, 23, 0.18);
  user-select: none;
}

/* Cascading tower heights */
.podium-step--1 { --tower: var(--tower-step-1); }
.podium-step--2 { --tower: var(--tower-step-2); }
.podium-step--3 { --tower: var(--tower-step-3); }
.podium-step--4 { --tower: var(--tower-step-4); }

@media (max-width: 1024px) {
  .process-podium {
    --tower-step-1: 200px;
    --tower-step-2: 260px;
    --tower-step-3: 320px;
    --tower-step-4: 380px;
  }
}

@media (max-width: 900px) {
  .process-podium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --tower-step-1: 180px;
    --tower-step-2: 240px;
    --tower-step-3: 180px;
    --tower-step-4: 240px;
    min-height: 0;
    gap: 1rem 0.85rem;
  }
}

@media (max-width: 560px) {
  .process-podium {
    grid-template-columns: 1fr;
    --tower-step-1: 120px;
    --tower-step-2: 120px;
    --tower-step-3: 120px;
    --tower-step-4: 120px;
    max-width: 22rem;
    margin-inline: auto;
  }

  .podium-card {
    text-align: center;
  }
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.35s var(--ease-soft), transform 0.35s var(--ease-out), border-color 0.25s;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(234, 88, 12, 0.25);
}

.portfolio-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1c1917;
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease-out);
}

.portfolio-visual__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 67, 65, 0.18) 0%, transparent 40%, rgba(28, 25, 23, 0.55) 100%);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-soft);
}

.portfolio-card:hover .portfolio-visual img {
  transform: scale(1.07);
}

.portfolio-card:hover .portfolio-visual__shade {
  opacity: 0.92;
}

.portfolio-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.portfolio-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 0 0 0.35rem;
}

.portfolio-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.portfolio-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.portfolio-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  margin: 0;
  padding: 1.5rem 1.65rem 1.5rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid rgba(234, 88, 12, 0.7);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.3s var(--ease-soft), transform 0.28s var(--ease-out);
}

.quote-card:hover {
  border-color: rgba(239, 67, 65, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.quote-card figcaption cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  display: block;
  font-size: 0.9375rem;
}

.quote-card figcaption span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #7a1a19 0%, var(--maroon) 45%, #9a3412 100%);
  color: #fafaf9;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(234, 88, 12, 0.15), transparent 35%);
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .cta-band::after {
    animation: ef-shine 7s ease-in-out infinite;
  }
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  max-width: 22ch;
}

.cta-band-text {
  margin: 0;
  max-width: 48ch;
  opacity: 0.9;
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tighter stack so the photo lines up closer to the quote form height */
#contact .contact-intro > .section-head {
  margin-bottom: 1rem;
}

.contact-photo {
  margin: 0.5rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-muted);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}

.contact-photo:hover img {
  transform: scale(1.03);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.contact-list li {
  margin-bottom: 0.65rem;
  padding-left: 0;
}

.contact-form {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-soft);
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.field input,
.field select {
  width: 100%;
  min-height: var(--tap-min);
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}

.field textarea {
  width: 100%;
  min-height: 8rem;
  padding: 0.75rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: transparent;
}

.form-foot {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer — dark band, glow, icon socials */
.site-footer {
  position: relative;
  padding: 1.15rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  border-top: none;
  color: #e7e5e4;
  background:
    linear-gradient(165deg, #1a0a0c 0%, #1c1917 38%, #0c0a0a 100%);
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  z-index: 0;
}

.site-footer::before {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.45) 0%, transparent 68%);
}

.site-footer::after {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  bottom: -25%;
  left: -15%;
  background: radial-gradient(circle, rgba(239, 67, 65, 0.55) 0%, transparent 65%);
}

@media (prefers-reduced-motion: no-preference) {
  .site-footer::before {
    animation: ef-footer-glow 14s ease-in-out infinite alternate;
  }
}

@keyframes ef-footer-glow {
  from {
    opacity: 0.42;
    transform: scale(1) translate(0, 0);
  }
  to {
    opacity: 0.62;
    transform: scale(1.06) translate(-4%, 3%);
  }
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr minmax(0, 36rem) 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-body {
  grid-column: 2;
  text-align: center;
  justify-self: center;
  width: 100%;
}

.footer-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fdba74 0%, #fb923c 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
}

.footer-copy {
  margin: 0 auto 0.5rem;
  max-width: 32rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(231, 229, 228, 0.78);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTAs on dark: primary pops (orange), outline reads as glass */
.site-footer .btn-primary {
  background: linear-gradient(135deg, #fb923c 0%, var(--orange) 48%, #c2410c 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 4px 16px rgba(234, 88, 12, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.site-footer .btn-primary:hover {
  background: linear-gradient(135deg, #fdba74 0%, #fb923c 42%, var(--orange) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 8px 28px rgba(234, 88, 12, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.site-footer .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fafaf9;
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.footer-social {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.footer-social-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.45);
  white-space: nowrap;
}

.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.footer-social-list li {
  display: inline-flex;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #e7e5e4;
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition:
    color 0.22s var(--ease-soft),
    border-color 0.22s var(--ease-soft),
    background 0.22s var(--ease-soft),
    transform 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft);
}

.footer-social-list a:hover {
  color: #fff;
  border-color: rgba(234, 88, 12, 0.55);
  background: rgba(234, 88, 12, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.footer-social-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-legal {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(250, 250, 249, 0.38);
  text-align: right;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .footer-brand,
  .footer-body {
    grid-column: 1;
  }

  .footer-body {
    justify-self: center;
    max-width: 36rem;
  }
}

@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .footer-actions .btn {
    width: 100%;
  }

  .footer-social-list {
    gap: 0.45rem;
  }
}

.site-footer a:focus-visible {
  outline-color: #fdba74;
}

/* Subpage hero (Services, About) */
/* Services hero — split layout with picture stack */
.services-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 6vw, 4.5rem) !important;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem) !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 67, 65, 0.09), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(234, 88, 12, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff7f5 100%);
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
}

.services-hero__bg-blob--a {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(239, 67, 65, 0.4), transparent 65%);
}

.services-hero__bg-blob--b {
  width: 460px;
  height: 460px;
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.32), transparent 65%);
}

.services-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 25, 23, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 25, 23, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  opacity: 0.6;
}

.services-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.services-hero__copy .eyebrow {
  margin-bottom: 0.85rem;
}

.services-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

.services-hero__accent {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.services-hero__desc {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.services-hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.services-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.services-hero__chips li span {
  color: var(--maroon);
  font-size: 1.1em;
  line-height: 1;
}

/* Media: layered photo stack */
.services-hero__media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-inline: auto;
  width: 100%;
}

.services-hero__photo {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #292524;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 30px 60px rgba(28, 25, 23, 0.18),
    0 8px 18px rgba(28, 25, 23, 0.08);
  transition: transform 0.5s var(--ease-out);
}

.services-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__photo--main {
  inset: 0 14% 12% 0;
  z-index: 2;
}

.services-hero__photo--main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(122, 26, 25, 0.45));
}

.services-hero__photo--accent {
  width: 52%;
  aspect-ratio: 1 / 1;
  bottom: 0;
  right: 0;
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.85);
}

.services-hero__media:hover .services-hero__photo--main {
  transform: translate(-4px, -4px);
}

.services-hero__media:hover .services-hero__photo--accent {
  transform: translate(4px, 4px);
}

.services-hero__photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--maroon);
  z-index: 4;
}

.services-hero__photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
  box-shadow: 0 0 0 4px rgba(239, 67, 65, 0.18);
  animation: ef-hero-pulse 1.6s ease-in-out infinite;
}

@keyframes ef-hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero__photo-dot { animation: none; }
}

.services-hero__badge {
  position: absolute;
  top: 6%;
  right: -10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 18px 36px rgba(28, 25, 23, 0.12),
    0 0 0 1px rgba(28, 25, 23, 0.05);
}

.services-hero__badge-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--maroon) 0%, #7a1a19 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(239, 67, 65, 0.35);
}

.services-hero__badge-icon svg {
  width: 18px;
  height: 18px;
}

.services-hero__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.services-hero__badge-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.services-hero__badge-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .services-hero__grid {
    grid-template-columns: 1fr;
  }

  .services-hero__copy {
    text-align: left;
  }

  .services-hero__actions,
  .services-hero__chips {
    justify-content: flex-start;
  }

  .services-hero__desc {
    margin-inline: 0;
  }

  .services-hero__media {
    max-width: 460px;
    margin-inline: auto;
  }

  .services-hero__accent {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .services-hero__media {
    max-width: 360px;
  }

  .services-hero__badge {
    right: 0;
    padding: 0.55rem 0.75rem;
  }

  .services-hero__badge-text strong {
    font-size: 0.8125rem;
  }
}

.subpage-hero {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  min-height: min(44vh, 440px);
}

.subpage-hero__media {
  position: relative;
  z-index: 0;
  min-height: min(44vh, 440px);
}

.subpage-hero__media img {
  display: block;
  width: 100%;
  height: min(48vh, 480px);
  min-height: 280px;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  .subpage-hero__media img {
    animation: ef-ken 24s ease-in-out infinite alternate;
  }
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.12) 0%, rgba(28, 25, 23, 0.88) 100%);
}

.subpage-hero__inner {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  width: min(100% - 2 * var(--container-gutter), var(--container));
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.subpage-hero__inner .eyebrow {
  color: #fdba74;
}

.subpage-hero__inner .section-title {
  color: #fafaf9;
}

.subpage-hero__inner .section-desc {
  color: rgba(250, 250, 249, 0.9);
  margin-inline: auto;
}

.subpage-hero__inner .section-head {
  margin-bottom: 0;
  max-width: 42rem;
  margin-inline: auto;
}

.subpage-hero__inner .about-page-head {
  margin-bottom: 0;
}

/* About page */
.about-page-main,
.services-page-main {
  padding-top: 0;
}

.about-page-head {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-page-head .section-title {
  margin-bottom: 0.5rem;
}

.about-prose {
  max-width: 65ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  padding: 2rem 2.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-prose p {
  margin: 0 0 1.25rem;
}

.about-prose p:last-of-type {
  margin-bottom: 0;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* About page — story, values, imagery */
.about-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.about-split__copy .about-lead {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--text);
}

.about-split__copy p {
  margin: 0 0 1.1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-split__copy p:last-of-type {
  margin-bottom: 0;
}

.about-highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--maroon));
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.about-split__visual {
  position: relative;
  min-height: min(52vw, 420px);
  overflow: visible;
}

.about-photo-stack {
  position: relative;
  height: 100%;
  min-height: 320px;
  isolation: isolate;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--primary {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  max-height: 480px;
}

.about-photo--float {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -6%;
  width: min(52%, 220px);
  aspect-ratio: 1;
  background: #292524;
  box-shadow:
    0 20px 50px rgba(28, 25, 23, 0.18),
    0 0 0 1px rgba(234, 88, 12, 0.2);
}

.about-photo--float::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), transparent 45%);
}

.about-values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.about-value-card {
  padding: 1.5rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft),
    border-color 0.25s var(--ease-soft);
}

.about-value-card:hover {
  border-color: rgba(234, 88, 12, 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.about-value-card__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.about-value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-value-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: minmax(200px, 1fr) minmax(200px, 1fr);
  gap: 1rem;
  min-height: min(52vh, 520px);
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.about-bento__cell {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-bento__cell--hero {
  grid-row: span 2;
}

.about-bento__cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .about-bento__cell:hover img {
    transform: scale(1.04);
  }
}

.about-quote-strip {
  position: relative;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: min(38vh, 360px);
  box-shadow: var(--shadow-lg);
}

.about-quote-strip__media {
  position: absolute;
  inset: 0;
}

.about-quote-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 25, 23, 0.92) 0%,
    rgba(28, 25, 23, 0.75) 42%,
    rgba(239, 67, 65, 0.4) 100%
  );
}

.about-quote-strip blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(2rem, 6vw, 3.25rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 36rem;
}

.about-quote-strip blockquote p {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #fafaf9;
}

.about-quote-strip cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: rgba(253, 186, 116, 0.95);
}

.about-cta-block {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.5rem;
}

.about-cta-block .about-cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-cta-block .about-cta-desc {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-cta-block .about-page-actions {
  margin-top: 0.25rem;
}

/* Founder card */
.about-founder {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-founder__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #292524;
  position: relative;
  isolation: isolate;
}

.about-founder__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, transparent 55%, rgba(239, 67, 65, 0.22));
  z-index: 1;
}

.about-founder__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder__copy p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.about-founder__copy p:last-of-type {
  margin-bottom: 1.25rem;
}

.about-founder__name {
  margin: 0 0 0.15rem !important;
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.about-founder__role {
  margin: 0 0 1.1rem !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* History / countries */
.about-history {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-history__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.about-history__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.3;
  text-wrap: balance;
}

.about-history__lead,
.about-history p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-history p:last-of-type {
  margin-bottom: 1.5rem;
}

.about-countries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-countries li {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}

.about-countries li:hover {
  border-color: rgba(234, 88, 12, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}

/* Process grid (Mission / Vision / Strategies / Results) */
.about-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: about-step;
}

.about-process__step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft),
    border-color 0.25s var(--ease-soft);
}

.about-process__step:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 88, 12, 0.28);
  box-shadow: var(--shadow-lg);
}

.about-process__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon) 0%, #7a1a19 100%);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(239, 67, 65, 0.3);
}

.about-process__title {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.about-process__step p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .about-founder {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-founder__photo {
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 1;
  }

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

@media (max-width: 520px) {
  .about-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .about-photo--float {
    right: 2%;
    bottom: -4%;
  }
}

@media (max-width: 520px) {
  .about-photo--float {
    width: 40%;
    max-width: 150px;
    right: 0;
    bottom: -2%;
  }
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .about-bento__cell--hero {
    grid-row: auto;
    min-height: 220px;
  }

  .about-bento__cell:not(.about-bento__cell--hero) {
    min-height: 180px;
  }
}

.nav-list a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* —— Responsive polish & mobile eye-catching touches —— */

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-inline: 0;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    flex: none;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: clamp(2.5rem, 10vw, 4rem) 0;
  }

  .hero {
    padding: clamp(2rem, 6vw, 3.25rem) 0 clamp(2.5rem, 8vw, 4rem);
  }

  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.45rem);
  }

  .contact-form {
    padding: 1.35rem 1.1rem;
  }

  .about-prose {
    padding: 1.35rem 1.1rem;
  }

  .service-card,
  .portfolio-card,
  .quote-card {
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .service-card,
  .portfolio-card,
  .quote-card {
    box-shadow:
      0 4px 28px rgba(28, 25, 23, 0.08),
      0 0 0 1px rgba(234, 88, 12, 0.07);
  }

  .service-card:active,
  .portfolio-card:active,
  .quote-card:active {
    transform: scale(0.995);
  }
}

@media (max-width: 520px) {
  .about-page-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin-inline: auto;
  }

  .about-page-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .subpage-hero__inner .section-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .subpage-hero {
    min-height: min(38vh, 360px);
  }

  .subpage-hero__media,
  .subpage-hero__media img {
    min-height: 220px;
    max-height: 36vh;
  }
}

.logo-strip span:active {
  transform: scale(0.98);
}

a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .portfolio-card:hover,
  .quote-card:hover {
    box-shadow:
      0 12px 40px rgba(28, 25, 23, 0.1),
      0 0 0 1px rgba(234, 88, 12, 0.12);
  }
}

/* —— Site-wide mobile responsive —— */

.page,
main {
  overflow-x: clip;
}

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

@media (max-width: 768px) {
  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-band-title {
    max-width: none;
  }

  .cta-band-actions {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .contact-grid {
    gap: 1.75rem;
  }

  .contact-intro {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .why-split {
    gap: 1.75rem;
  }

  .why-split__copy .btn {
    width: 100%;
    max-width: 20rem;
  }

  .services-hero {
    overflow-x: clip;
  }

  .services-hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
  }

  .services-hero__actions .btn {
    width: 100%;
  }

  .services-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .services-cta-strip .btn {
    width: 100%;
    max-width: 20rem;
  }

  .about-founder__copy {
    text-align: center;
  }

  .about-founder__copy p {
    text-align: left;
  }

  .about-history {
    padding: 1.35rem 1.1rem;
  }

  .about-quote-strip blockquote {
    padding: 1.75rem 1.25rem;
    max-width: none;
  }

  .faq-item summary {
    font-size: 0.9375rem;
    padding: 1rem 1.1rem;
  }

  .faq-item p {
    padding: 0 1.1rem 1.1rem;
  }
}

@media (max-width: 640px) {
  .logo-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
    margin-inline: calc(-1 * var(--container-gutter));
    padding-inline: var(--container-gutter);
  }

  .logo-strip::-webkit-scrollbar {
    display: none;
  }

  .logo-strip span {
    flex-shrink: 0;
  }

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

  .capability-card__num {
    font-size: 1.75rem;
  }

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

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

  .pricing-promo {
    padding: 1.5rem 1.1rem;
  }

  .pricing-promo__btn {
    width: 100%;
    max-width: none;
  }

  .portfolio-body {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .quote-card {
    padding: 1.25rem 1.1rem;
  }

  .section-head-left,
  .section-head-left .section-title {
    text-align: left;
  }

  .services-hero__title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .services-hero__chips {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .services-hero__photo--accent {
    width: 46%;
  }

  .services-hero__badge {
    max-width: calc(100% - 1rem);
  }

  .services-hero__badge-text span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .timeline-step {
    padding: 1.15rem 1.1rem 1.15rem 4.25rem;
  }

  .footer-copy {
    padding-inline: 0.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-gutter: max(1rem, env(safe-area-inset-left, 0px));
  }

  .header-inner {
    min-height: 64px;
    gap: 0.65rem;
  }

  .nav-list {
    top: calc(64px + env(safe-area-inset-top, 0px));
  }

  .hero-lead {
    max-width: none;
  }

  .hero-panel {
    max-width: none;
  }

  .hero-media {
    max-height: min(260px, 42vh);
  }

  .services-hero__media {
    max-width: 100%;
  }

  .services-hero__photo--main {
    inset: 0 8% 10% 0;
  }

  .services-hero__photo--accent {
    width: 42%;
  }

  .about-bento__cell--hero {
    min-height: 180px;
  }

  .about-bento__cell:not(.about-bento__cell--hero) {
    min-height: 140px;
  }

  .about-process__step {
    padding: 1.15rem 1rem;
  }

  .podium-card {
    font-size: 0.875rem;
  }

  .pricing-card.service-card {
    padding: 1.35rem 1.15rem;
  }

  .contact-photo {
    margin-top: 0.25rem;
  }

  .footer-logo-img {
    height: 40px;
    max-height: 40px;
  }

  .footer-actions,
  .about-page-actions {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .services-hero__badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 0.75rem auto 0;
    max-width: 100%;
  }

  .services-hero__photo-tag {
    font-size: 0.6875rem;
    padding: 0.3rem 0.6rem;
  }
}
