/* ── Accessibility utilities ─────────────────────────── */
.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 ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: #F15D12;
  color: #F2F2F2;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; }

/* ── Custom Elements ──────────────────────────────────── */
site-nav, site-footer { display: contents; }

/* ── Page Loader ──────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #121212;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-logo {
  width: 9rem;
  height: 9rem;
  animation: loader-pulse 0.6s ease infinite alternate;
}

@keyframes loader-pulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1); }
}

/* ───────────────────────────────────────────────────────── */
html {
  color-scheme: dark;
}

:root {
  --color-dark: #121212;
  --color-orange: #F15D12;
  --color-light: #F2F2F2;
  --color-mid: #2A2A2A;
  --color-muted: #6B6B6B;
  --color-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  background: #121212;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

html,
body {
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #ffffff;
  color: #121212;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

/* ── Buttons ──────────────────────────────── */
.btn-orange {
  display: inline-block;
  background: #F15D12;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.01em;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #121212;
  color: #121212;
  padding: 0.68rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
}

.btn-outline-light {
  display: inline-block;
  border: 2px solid rgba(242, 242, 242, 0.4);
  color: #F2F2F2;
  padding: 0.68rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
}

/* ── Container ────────────────────────────── */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── Contact Page ─────────────────────────── */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.contact-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* ── Subpage hero video background (work, services, pricing, about) ── */
.subpage-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.55) 0%,
    rgba(18, 18, 18, 0.35) 50%,
    rgba(18, 18, 18, 0.60) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem 6rem;
  max-width: 72rem;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.contact-eyebrow::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-orange);
}

.contact-heading {
  display: flex;
  flex-direction: column;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 4.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-light);
  margin-bottom: 2rem;
}

.contact-line {
  display: block;
  opacity: 0;
}

.contact-accent {
  color: var(--color-orange);
}

.contact-sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: rgba(242, 242, 242, 0.65);
  line-height: 1.6;
  max-width: 36ch;
  opacity: 0;
}

.contact-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(242, 242, 242, 0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: color 0.2s ease;
}

.contact-hero-scroll:hover {
  color: #F2F2F2;
}

.contact-hero-scroll-arrow {
  display: inline-block;
  animation: hero-scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .contact-hero-content {
    padding: 0 1.5rem 4rem;
  }
}

/* ── Contact Form Section ─────────────────── */
.contact-form-section {
  background: var(--color-dark);
  padding: 7rem 0 8rem;
}

.contact-form-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-form-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 32ch;
}

.contact-form-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-item:hover {
  color: var(--color-orange);
}

.contact-detail-item svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke: var(--color-orange);
}

.contact-form-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-input {
  width: 100%;
  resize: none;
  background: var(--color-mid);
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 1rem 1.25rem;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--color-light);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.contact-input::placeholder {
  color: var(--color-muted);
}

.contact-input:focus {
  border-color: var(--color-orange);
}

.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  cursor: pointer;
  color: var(--color-muted);
}

.contact-select option {
  background: var(--color-mid);
  color: var(--color-light);
}

.contact-submit {
  align-self: flex-start;
  background: var(--color-orange);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s ease, gap 0.2s ease;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: #d94e0a;
  gap: 1.25rem;
}

.contact-submit span {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── Contact form success state ───────────────────────── */
.contact-form-success {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  grid-column: 2;
}

.contact-form-success.is-visible {
  display: flex;
}

.contact-form-success-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F15D12;
}

.contact-form-success-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: #F2F2F2;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.contact-form-success-heading span {
  color: #F15D12;
}

.contact-form-success-sub {
  font-size: 0.9375rem;
  color: #6B6B6B;
  margin: 0;
}

/* ── Homepage CTA success override ───────────────────── */
.cta-inner .contact-form-success {
  flex: 0 0 23.75rem;
  grid-column: auto;
}

/* ── What happens next ────────────────────────────────── */
.next-section {
  background: #121212;
  padding: 6rem 0;
}

.next-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  padding-top: 3rem;
}

.next-step-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F15D12;
  margin-bottom: 1.25rem;
}

.next-step-title {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #F2F2F2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.next-step-desc {
  font-size: 0.9375rem;
  color: rgba(242, 242, 242, 0.5);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .next-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .next-inner {
    padding: 0 1.5rem;
  }
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
  padding: 6rem 0;
}

.faq-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.faq-inner .section-heading {
  margin: 1rem 0 3rem;
  color: #121212;
}

.faq-list {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 700;
  color: #121212;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: #F15D12;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer[aria-hidden="false"] {
  max-height: 20rem; /* fallback als JS uitstaat */
}

.faq-answer > p {
  font-size: 0.9375rem;
  color: #6B6B6B;
  line-height: 1.8;
  padding-bottom: 1.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-inner {
    padding: 0 1.5rem;
  }
}

/* ── Navigation ───────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.75rem 2rem;
  pointer-events: none;
}

/* Logo: floating left, no background */
.nav-logo {
  grid-column: 1;
  justify-self: start;
  text-decoration: none;
  flex-shrink: 0;
  display: grid;
  align-items: center;
  pointer-events: auto;
}

.nav-logo-full,
.nav-logo-mark {
  grid-area: 1 / 1;
  justify-self: start;
  align-self: center;
}

.nav-logo-full {
  height: 5rem;
  width: auto;
  display: block;
  opacity: 1;
  transform: scale(1);
  transform-origin: left center;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.nav-logo-mark {
  height: 5rem;
  width: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  margin-left: 0.175rem; /* compensates SVG internal offset (7/200 × height) */
  transition: opacity 0.25s ease 0.25s;
}

.nav.scrolled .nav-logo-full {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: opacity 0.4s ease 0.1s, transform 0.3s ease 0.3s;
}

.nav.scrolled .nav-logo-mark {
  height: 5rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease 0s;
}

/* Nav pill: centered */
.nav-pill {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-radius: 3.125rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}

/* Sliding hover pill */
.nav-pill-hover {
  position: absolute;
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: left 0.2s ease, top 0.2s ease, width 0.2s ease, height 0.2s ease, opacity 0.15s ease;
}

.nav-pill a:not(.btn-orange) {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem 0.875rem;
  border-radius: 3.125rem;
  position: relative;
  z-index: 1;
}

.nav-pill a:not(.btn-orange):hover,
.nav-pill a.nav-active {
  color: #ffffff;
}

.nav-pill .btn-orange {
  margin-left: 0.25rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: 3.125rem;
}

/* Mobile container — fixed, anchored at bottom, groeit omhoog als popup open is */
.nav-mobile-container {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: stretch;
  z-index: 200;
  pointer-events: none;
  min-width: min(300px, 88vw);
  border-radius: 1.25rem;
  /* Sluit-animatie: glas fades uit nadat popup is ingerold */
  transition: background 0.25s ease 0.25s,
              box-shadow 0.25s ease 0.25s,
              border-color 0.25s ease 0.25s;
}

/* Open: één glaslaag op de container — geen naad mogelijk */
/* Open-animatie: glas verschijnt direct */
.nav-mobile-container.open {
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease,
              box-shadow 0.2s ease,
              border-color 0.2s ease;
}

/* Mobile bottom bar */
.nav-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-radius: 3.125rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  white-space: nowrap;
  /* Sluit-animatie: glas keert direct terug */
  transition: border-radius 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.2s ease 0.25s,
              border-color 0.2s ease 0.25s,
              box-shadow 0.2s ease 0.25s;
}

/* Open: bottom-bar wordt transparant — container neemt het glas over */
.nav-mobile-container.open .nav-bottom-bar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0 0 1.25rem 1.25rem;
  /* Open-animatie: direct transparant */
  transition: border-radius 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.15s ease,
              border-color 0.15s ease,
              box-shadow 0.15s ease;
}

.nav-bottom-mark {
  height: 2rem;
  width: auto;
  display: block;
}

.nav-menu-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  padding: 0;
  transition: color 0.3s ease;
}

/* Overlay — dimming laag, geen flex-positioning */
.nav-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Popup: grid-trick voor vloeiende hoogte-animatie op werkelijke contenthoogte */
.nav-popup {
  display: grid;
  grid-template-rows: 0fr;
  pointer-events: auto;
  /* Sluit: hoogte klapt in, daarna body opacity al weg */
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-container.open .nav-popup {
  grid-template-rows: 1fr;
  /* Open: hoogte klapt uit */
  transition: grid-template-rows 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Binnenste wrapper: knipt overflow + animeert opacity */
.nav-popup-body {
  min-height: 0;
  overflow: hidden;
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  /* Sluit: content vervaagt snel */
  transition: opacity 0.2s ease;
}

.nav-mobile-container.open .nav-popup-body {
  opacity: 1;
  /* Open: content verschijnt iets vertraagd zodat hoogte al begint */
  transition: opacity 0.3s ease 0.1s;
}

.nav-popup a:not(.btn-orange) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 0;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.nav-popup a:not(.btn-orange):hover {
  color: #ffffff;
}

.nav-popup .btn-orange {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: 3.125rem;
  display: block;
}

.nav-popup-close {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  padding: 0.5rem 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
}

/* ── Brede tablet: pill naar rechts ──────── */
@media (max-width: 1200px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

/* ── Tablet nav ───────────────────────────── */
@media (max-width: 1024px) {
  .nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-logo-full {
    height: 4.25rem;
  }

  .nav-logo-mark {
    height: 4.25rem;
    margin-left: 0.149rem;
  }

  .nav.scrolled .nav-logo-mark {
    height: 4.25rem;
  }
}

/* ── Mobile nav ───────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .nav-logo-full {
    height: 3.25rem;
  }

  .nav-logo-mark {
    height: 3.25rem;
    margin-left: 0.114rem;
  }

  .nav.scrolled .nav-logo-mark {
    height: 3.25rem;
  }

  .nav-pill {
    display: none;
  }

  .nav-mobile-container {
    display: flex;
  }
}

/* ── Hero (sticky, full viewport) ─────────── */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #121212;
}

/* Inner scene — receives the scale + blur transform */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, filter;
  transform-origin: center center;
  background: radial-gradient(ellipse at 65% 50%, #c85000 0%, #121212 60%);
}

/* ── Page content (slides over sticky hero) ── */
.page-content {
  position: relative;
  z-index: 1;
}

.hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  z-index: 1;
}

.hero-eyebrow,
.hero-line,
.hero-sub,
.hero-ctas {
  opacity: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 50rem;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F15D12;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #F15D12;
}

.hero-headline {
  font-size: clamp(3.5rem, 4.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #F2F2F2;
  margin: 0 0 1.5rem;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(242, 242, 242, 0.65);
  line-height: 1.75;
  margin: 0 0 2.5rem;
  max-width: 35rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ── Ghost text ─────────────────────────── */
.ghost-text {
  position: absolute;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #F15D12;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* Hero ghost */
.hero > .ghost-text {
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.10;
}

/* Services-intro ghost */
.services-intro-inner {
  position: relative;
  overflow: hidden;
}

.services-intro-inner > .ghost-text {
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Process-header ghost */
.process-header {
  position: relative;
  overflow: hidden;
}

.process-header > .ghost-text {
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
}

.process-header > :not(.ghost-text) {
  position: relative;
  z-index: 1;
}

/* ── Custom cursor ───────────────────────── */
body:has(.cursor-dot) {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: #F15D12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(241, 93, 18, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

.cursor-dot.cursor--light  { background: #ffffff; }
.cursor-ring.cursor--light { border-color: rgba(255, 255, 255, 0.5); }

/* ── About section ────────────────────────── */
.about-section {
  background: #121212;
  overflow: hidden;
}

/* ── About split-screen ─────────────────────── */
.about-grid {
  display: flex;
  min-height: 85vh;
}

.about-col-left {
  flex: 0 0 40%;
  background: #F15D12;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-col-right {
  flex: 0 0 60%;
  background: #121212;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

/* Colour overrides for orange column */
.about-col-left .about-eyebrow {
  color: #F2F2F2;
}

.about-col-left .about-eyebrow::before {
  background: #F2F2F2;
}

.about-col-left .about-heading {
  color: #F2F2F2;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F15D12;
  margin-bottom: 2.5rem;
}

.about-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #F15D12;
}

.about-heading {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #F2F2F2;
  margin: 0 0 2.5rem;
}

.about-body {
  font-size: 0.9375rem;
  color: rgba(242, 242, 242, 0.5);
  line-height: 1.75;
  margin: 0 0 3rem;
  max-width: 42ch;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
  margin-bottom: 3rem;
}

.about-stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #F15D12;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(242, 242, 242, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}


/* ── Features bar (3-col) ─────────────────── */
.features-bar {
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.features-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 2.5rem 3rem;
  border-right: 1px solid #ebebeb;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  background: #F15D12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #121212;
  margin: 0 0 0.4rem;
}

.feature-text {
  font-size: 0.8125rem;
  color: #6B6B6B;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .features-bar-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid #ebebeb;
    padding: 2rem 0;
  }

  .feature-item:last-child {
    border-bottom: none;
  }
}

/* ── Split section ────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-text {
  padding: 6rem 4.5rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  position: relative;
  min-height: 32.5rem;
  background: #121212;
  overflow: hidden;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F15D12;
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #F15D12;
}

.section-heading {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #121212;
  margin: 0 0 1.25rem;
}

.section-heading.light {
  color: #F2F2F2;
}

.section-text {
  font-size: 0.9375rem;
  color: #6B6B6B;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #121212;
}

.check-list li::before {
  content: '';
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  background: #F15D12;
  border-radius: 50%;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem;
}

/* ── Services section ─────────────────────────────────── */
.services-section {
  background: #121212;
}

.services-intro {
  padding: 12rem 1.5rem 9rem;
}

.services-intro-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.services-intro-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.services-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  flex: 0 0 auto;
}

.services-body {
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.7;
  max-width: 36rem;
  padding-top: 0.5rem;
}

.services-cards {
  position: relative;
}

.service-pin-card {
  position: relative;
  min-height: 65vh;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  perspective: 1000px;
  overflow: hidden;
}

.service-pin-card .overlay {
  position: absolute;
  inset: 0;
  background: #E8CEC5;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.service-pin-card-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
  display: flex;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-pin-left {
  flex: 1;
}

.service-pin-right {
  flex: 0 0 320px;
}

.service-pin-num {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #F15D12;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.service-pin-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #121212;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.service-pin-desc {
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.7;
  max-width: 38rem;
}

.service-pin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service-pin-list li {
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #121212;
  letter-spacing: 0.01em;
}

.service-pin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F15D12;
  text-decoration: none;
  text-wrap: balance;
  transition: gap 0.2s ease;
}

.service-pin-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.service-pin-link:hover {
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .services-intro-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-pin-card-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .service-pin-right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services-intro {
    padding: 4rem 1.25rem 2.5rem;
  }

  .service-pin-card-inner {
    padding: 4rem 1.25rem;
  }
}

/* ── Logo strip ───────────────────────────── */
/* ── Marquee Strip ────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: #F15D12;
  padding: 2.25rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
}

.marquee-logo {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: block;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA section ──────────────────────────── */
.cta-section {
  background: #121212;
  padding: 5.5rem 0;
}

.cta-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.cta-text {
  flex: 1;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F15D12;
  margin-bottom: 1.25rem;
}

.cta-label::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #F15D12;
}

.cta-heading {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  color: #F2F2F2;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.cta-sub {
  font-size: 0.9375rem;
  color: rgba(242, 242, 242, 0.5);
  line-height: 1.7;
  margin: 0;
}

.cta-form {
  flex: 0 0 23.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-feedback {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  min-height: 1.25em;
}

.form-feedback--success {
  color: #4ade80;
}

.form-feedback--error {
  color: #f87171;
}

.cta-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-family: 'Public Sans', sans-serif;
  background: rgba(242, 242, 242, 0.07);
  border: 1px solid rgba(242, 242, 242, 0.15);
  border-radius: 3px;
  color: #F2F2F2;
  outline: none;
}

.cta-input::placeholder {
  color: rgba(242, 242, 242, 0.3);
}

.cta-btn {
  width: 100%;
  padding: 1rem;
  background: #F15D12;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  letter-spacing: 0.02em;
}

/* ── Portfolio section (GSAP Showcase Slider) ────────── */
.portfolio-section {
  position: relative;
  background: #121212;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.portfolio-section-header {
  padding: 6rem 5rem 5rem;
}

.portfolio-section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.portfolio-section-intro {
  max-width: 38rem;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* Hide mobile swiper on desktop — use parent specificity to beat Swiper CSS */
@media (min-width: 769px) {
  .portfolio-section .portfolio-swiper { display: none !important; }
}

/* ── Showcase layout ─────────────────────── */
.portfolio-showcase {
  overflow: hidden;
  position: relative;
}

/* Simple flex column — JS handles items positioning */
.portfolio-showcase__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horizontal flex row — GSAP translates this container */
.portfolio-showcase__items {
  display: flex;
  align-items: center;
  width: 100%; /* ensures left edge starts at 0 so getCenteredX() formula is correct */
}

/* Each item: 70vw wide so side items peek in at 15vw each side */
.portfolio-showcase__item {
  flex-shrink: 0;
  position: relative;
  width: 60vw;
}

/* Image box — 16:9 aspect ratio */
.portfolio-showcase__img {
  border-radius: 0.75rem;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  opacity: 0.5;
  transform: scale(0.88);
  filter: blur(10px);
  transform-origin: 50% 50%;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.portfolio-showcase__item--active .portfolio-showcase__img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.portfolio-showcase__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Details row: text left-aligned under slide, nav pushed to right of viewport */
.portfolio-showcase__details {
  width: 100%;
  padding: 2.5rem 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #ffffff;
}

/* Text group: starts at slide's left edge (slide is 70vw centered → 15vw from left) */
.portfolio-showcase__text {
  flex: 1;
  padding-left: 15vw;
  padding-right: 3vw;
  text-align: left;
}

/* Grid overlay: all items stacked, only .active is visible */
.portfolio-showcase__titles,
.portfolio-showcase__descs,
.portfolio-showcase__cats,
.portfolio-showcase__links {
  display: grid;
  width: 100%;
}

.portfolio-showcase__titles > *,
.portfolio-showcase__descs > *,
.portfolio-showcase__cats > *,
.portfolio-showcase__links > * {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.portfolio-showcase__titles > *.active,
.portfolio-showcase__descs > *.active,
.portfolio-showcase__cats > *.active,
.portfolio-showcase__links > *.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease 0.15s, transform 0.55s var(--ease-out) 0.15s;
  pointer-events: auto;
}

/* Titles */
.portfolio-showcase__titles p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

/* Descriptions */
.portfolio-showcase__descs p {
  font-size: 0.9375rem;
  color: rgba(242, 242, 242, 0.6);
  line-height: 1.7;
  max-width: 38ch;
  margin: 0;
}

/* Category badges */
.portfolio-showcase__cats p {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F15D12;
  margin: 1rem 0;
}

/* CTA links */
.portfolio-showcase__links .slide-link {
  justify-content: flex-start;
}

/* Navigation buttons — right side of viewport */
.portfolio-showcase__nav {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-right: 4vw;
}

.portfolio-showcase__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.portfolio-showcase__btn:hover:not(:disabled) {
  border-color: #F15D12;
  background: rgba(241, 93, 18, 0.12);
  color: #F15D12;
}

.portfolio-showcase__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── Shared slide-link and slide-category styles ─────── */
.slide-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F15D12;
  margin-block: 1.25rem;
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.slide-link:hover {
  color: #F15D12;
  gap: 0.75rem;
}

/* ── Coming Soon placeholder ──────────────── */
.coming-soon-placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.coming-soon-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: -0.03em;
}

.coming-soon-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-light);
  text-align: center;
  line-height: 1.3;
}

/* ── Process Timeline ────────────────────── */
.process-section {
  background: var(--color-dark);
  padding-bottom: 8rem;
}

.process-header {
  padding: 6rem 5rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.process-intro {
  max-width: 38rem;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.process-timeline {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 5rem;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #2a2a2a;
  transform: translateX(-50%);
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--color-orange);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1.5rem 1fr;
  align-items: center;
  min-height: 60vh;
  opacity: 0.25;
  transition: opacity 0.4s ease;
  padding: 4rem 0;
}

.process-step.is-active {
  opacity: 1;
}

.process-step-left {
  text-align: right;
  padding-right: 3rem;
}

.process-step-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #2a2a2a;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: -webkit-text-stroke-color 0.4s ease;
}

.process-step.is-active .process-step-num {
  -webkit-text-stroke-color: #4a4a4a;
}

.process-step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: -0.02em;
}

.process-step-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #2a2a2a;
  justify-self: center;
  transition: background 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 1;
}

.process-step.is-active .process-step-dot {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.process-step-right {
  padding-left: 3rem;
}

.process-step-subtitle {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 28rem;
}

.process-cta {
  display: block;
  width: fit-content;
  margin: 4rem auto 0;
}

/* ── Footer ───────────────────────────────── */
.footer {
  background: #F15D12;
  color: #ffffff;
  overflow: hidden;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3.5rem;
}

.footer-intro p,
.footer-cta-text p {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0;
}

.footer-brand {
  color: #ffffff;
  font-weight: 600;
}

.footer-highlight {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

@keyframes plane-fly {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  30% {
    transform: translate(32px, -32px) rotate(-20deg);
    opacity: 0;
  }

  31% {
    transform: translate(-28px, 28px) rotate(-20deg);
    opacity: 0;
  }

  70% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

.footer-contact-item[href^="mailto"]:hover svg {
  animation: plane-fly 1.4s ease-in-out infinite;
}

@keyframes phone-ring {
  0% {
    transform: rotate(0deg);
  }

  7% {
    transform: rotate(18deg);
  }

  14% {
    transform: rotate(-16deg);
  }

  21% {
    transform: rotate(14deg);
  }

  28% {
    transform: rotate(-12deg);
  }

  35% {
    transform: rotate(10deg);
  }

  42% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.footer-contact-item[href^="tel"]:hover svg {
  animation: phone-ring 1.2s ease-in-out infinite;
  transform-origin: bottom left;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* ── ORANGE letters ─────────────────────── */
.footer__logo {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 3rem 0;
  overflow: hidden;
}

/* Each letter gets a flex-basis proportional to its aspect ratio,
   accounting for 5 gaps so letters always fill the container exactly.
   Percentages = letter_ratio / sum_of_ratios (2.969):
   O=16.97%, R=17.73%, A=17.94%, N=17.87%, G=16.97%, E=12.51% */
.footer__logo-inner {
  --letter-gap: clamp(0.2rem, 1vw, 0.75rem);
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: var(--letter-gap);
}

.footer__letter {
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.footer__letter:nth-child(1) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.16974);
}

/* O */
.footer__letter:nth-child(2) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.17734);
}

/* R */
.footer__letter:nth-child(3) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.17940);
}

/* A */
.footer__letter:nth-child(4) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.17872);
}

/* N */
.footer__letter:nth-child(5) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.16974);
}

/* G */
.footer__letter:nth-child(6) {
  flex-basis: calc((100% - 5 * var(--letter-gap)) * 0.12511);
}

/* E */

.footer__letter svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Footer bottom bar ─────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-nav-pill {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 3.125rem;
  padding: 0.4rem 1.25rem 0.4rem 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer-nav-mark {
  height: 2rem;
  width: auto;
  display: block;
}

.footer-nav-pill a {
  color: #121212;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.footer-nav-pill a:hover {
  opacity: 1;
}

.footer-legal {
  display: flex;
  gap: 0.375rem;
  align-items: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Container */
  .container {
    padding: 0 1.5rem;
  }

  /* Hero */
  .hero-text {
    padding: 3rem 1.5rem;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-sub {
    font-size: 0.9375rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* About */
  .about-grid {
    flex-direction: column;
    min-height: auto;
  }

  .about-col-left {
    min-height: 14rem;
    padding: 2.5rem;
  }

  .about-col-right {
    padding: 2.5rem;
  }

  .about-heading {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .about-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  /* Split section */
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 3rem 1.5rem;
  }

  .split-image {
    min-height: 20rem;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 3 / 2;
  }

  /* Logos strip */

  /* CTA */
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-inner {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .cta-form {
    flex: 1;
    width: 100%;
  }

  /* Portfolio section mobile — simple Swiper touch slider */
  .portfolio-showcase { display: none; }

  .portfolio-section {
    padding: 4rem 0 5rem;
    overflow: visible;
  }

  .portfolio-section-header {
    padding: 0 1.5rem 2.5rem;
  }

  .portfolio-swiper {
    display: block;
    overflow: hidden;
    padding-bottom: 3rem;
  }

  .portfolio-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .portfolio-swiper .swiper-slide .slide-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
    order: 1;
  }

  .portfolio-swiper .swiper-slide .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .portfolio-swiper .slide-content {
    padding-top: 1.25rem;
    order: 2;
  }

  .portfolio-swiper .swiper-pagination {
    bottom: 0.5rem;
  }

  .portfolio-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
  }

  .portfolio-swiper .swiper-pagination-bullet-active {
    background: #F15D12;
  }

  /* Process timeline mobile */
  .process-header {
    padding: 4rem 1.5rem 2rem;
  }

  .process-timeline {
    padding: 0 1.5rem;
  }

  .process-line {
    left: 1.5rem;
    transform: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 2rem 0 2rem 2.75rem;
    opacity: 1;
    position: relative;
  }

  .process-step-dot {
    display: block;
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    top: 2.75rem;
    justify-self: unset;
  }

  .process-step-left {
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }

  .process-step-num {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .process-step-right {
    padding-left: 0;
  }

  /* Footer */
  .footer-content {
    padding: 0 1.5rem;
  }

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

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__logo {
    padding: 1.5rem 1.5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */

/* ── About Hero ──────────────────────────────────────────── */
.about-hero {
  background: var(--color-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

.about-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.about-hero-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 4.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-light);
  margin-bottom: 2rem;
}

.about-hero-line {
  display: block;
  opacity: 0;
}

.about-sub {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 34rem;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.about-hero-cta {
  align-self: flex-start;
  opacity: 0;
}

/* Decorative visual element */
.about-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-mid);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
}

.about-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 90%, rgba(241, 93, 18, 0.18) 0%, transparent 65%);
}

.about-hero-visual::after {
  content: 'SO';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(9rem, 18vw, 22rem);
  font-weight: 800;
  color: rgba(241, 93, 18, 0.07);
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ── Our Story ───────────────────────────────────────────── */
.about-story {
  background: var(--color-dark);
  padding: 9rem 0;
  border-top: 1px solid var(--color-mid);
}

.about-story-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-story-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-top: 1.25rem;
}

.about-story-right {
  padding-top: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-story-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-orange);
  letter-spacing: -0.02em;
  border-left: 3px solid var(--color-orange);
  padding-left: 2rem;
  margin: 0;
  font-style: normal;
}

/* ── Values ──────────────────────────────────────────────── */
.about-values {
  background: var(--color-light);
  padding: 7rem 0;
}

.about-values-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.about-values-header {
  margin-bottom: 4rem;
}

.about-values-header .section-heading {
  color: var(--color-dark);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  background: var(--color-dark);
  padding: 2.5rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
}

.about-value-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.about-value-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-light);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-value-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

/* ── By the Numbers ──────────────────────────────────────── */
.about-numbers {
  display: none; /* hidden until portfolio grows */
  background: var(--color-dark);
  padding: 7rem 0;
  border-top: 1px solid var(--color-mid);
}

.about-numbers-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.about-numbers-inner > .section-label {
  display: block;
  margin-bottom: 3.5rem;
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-number-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-mid);
}

.about-number-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-orange);
}

.about-number-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

/* ── About CTA ───────────────────────────────────────────── */
.about-cta-section {
  background: var(--color-dark);
  border-top: 1px solid var(--color-mid);
  padding: 8rem 0;
}

.about-cta-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.about-cta-inner > .section-label {
  margin-bottom: 1.5rem;
}

.about-cta-inner > .section-heading {
  margin-bottom: 1.25rem;
}

.about-cta-sub {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

/* ── About page responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .about-hero-visual {
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .about-hero-cta {
    align-self: stretch;
    text-align: center;
  }

  .about-story {
    padding: 5rem 0;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .about-story-right {
    padding-top: 0;
  }

  .about-values {
    padding: 5rem 0;
  }

  .about-values-inner {
    padding: 0 1.5rem;
  }

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

  .about-numbers {
    padding: 5rem 0;
  }

  .about-numbers-inner {
    padding: 0 1.5rem;
  }

  .about-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }

  .about-cta-section {
    padding: 5rem 0;
  }

  .about-cta-inner {
    padding: 0 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────── */
.srv-hero {
  background: var(--color-dark);
  padding: 10rem 0 7rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.srv-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.srv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  margin-bottom: 2rem;
  opacity: 0;
}

.srv-eyebrow::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.srv-hero-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-light);
  margin-bottom: 2rem;
}

.srv-hero-line {
  display: block;
  opacity: 0;
}

.srv-sub {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 36rem;
  text-wrap: pretty;
  opacity: 0;
}

/* ── Service detail sections ─────────────────────────────── */
.srv-detail {
  background: var(--color-dark);
  padding: 7rem 0;
  border-top: 1px solid var(--color-mid);
}

.srv-detail--light {
  background: var(--color-light);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.srv-detail-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.srv-detail-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-orange);
  opacity: 0.2;
  margin-bottom: 1.25rem;
}

.srv-detail-num--dark {
  color: var(--color-dark);
  opacity: 0.12;
}

.srv-detail-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.srv-detail-title--dark {
  color: var(--color-dark);
}

.srv-detail-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.srv-detail-desc--dark {
  color: #555;
}

.srv-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.srv-detail-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.srv-detail-cta:hover {
  gap: 0.75rem;
}

.srv-detail-cta--dark {
  color: var(--color-dark);
}

.srv-detail-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.srv-detail-features li {
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 0.01em;
}

.srv-detail-features--dark {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.srv-detail-features--dark li {
  border-bottom-color: rgba(0, 0, 0, 0.12);
  color: var(--color-dark);
}

/* ── Process ─────────────────────────────────────────────── */
.srv-process {
  background: var(--color-dark);
  padding: 7rem 0;
  border-top: 1px solid var(--color-mid);
}

.srv-process-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.srv-process-inner > .section-label {
  display: block;
  margin-bottom: 1.25rem;
}

.srv-process-inner > .section-heading {
  margin-bottom: 4rem;
}

.srv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.srv-process-step {
  border-top: 2px solid var(--color-orange);
  padding-top: 2rem;
}

.srv-step-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.srv-step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.srv-step-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
  text-wrap: pretty;
}

/* ── CTA ─────────────────────────────────────────────────── */
.srv-cta-section {
  background: var(--color-dark);
  border-top: 1px solid var(--color-mid);
  padding: 8rem 0;
}

.srv-cta-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.srv-cta-inner > .section-label {
  margin-bottom: 1.5rem;
}

.srv-cta-inner > .section-heading {
  margin-bottom: 1.25rem;
}

.srv-cta-sub {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

/* ── Services responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .srv-hero {
    padding: 7rem 0 5rem;
  }

  .srv-hero-inner {
    padding: 0 1.5rem;
  }

  .srv-detail {
    padding: 5rem 0;
  }

  .srv-detail-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .srv-process {
    padding: 5rem 0;
  }

  .srv-process-inner {
    padding: 0 1.5rem;
  }

  .srv-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .srv-cta-section {
    padding: 5rem 0;
  }

  .srv-cta-inner {
    padding: 0 1.5rem;
  }
}

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

/* ════════════════════════════════════════════════════════
   WORK PAGE
   ════════════════════════════════════════════════════════ */

/* ── Work Hero ───────────────────────────────────────────── */
.work-hero {
  background: var(--color-dark);
  padding: 6rem 5rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.work-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.work-hero-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.75rem;
}

.work-hero-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.125rem;
  margin-top: 1.5rem;
  max-width: 40ch;
}

/* ── Radial Gallery ──────────────────────────────────────── */
.radial-gallery-section {
  background: var(--color-dark);
  position: relative;
}

.radial-gallery-mask {
  position: relative;
  height: 100vh;
  overflow: hidden;
  mask-image: linear-gradient(to top, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%, black 100%);
}

.radial-wheel {
  position: absolute;
  width: 1000px;
  height: 1000px;
  left: calc(50% - 500px);
  bottom: -350px;
  list-style: none;
  padding: 0;
  margin: 0;
  will-change: transform;
}

.radial-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -150px;
  list-style: none;
  will-change: transform;
}

.radial-card {
  width: 300px;
  height: 400px;
  background: linear-gradient(145deg, #1C1C1C 0%, #282828 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.radial-card-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  margin-bottom: auto;
}

.radial-card-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  line-height: 1.5;
}

.radial-card-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ── Work hero responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .work-hero {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (max-width: 768px) {
  .work-hero {
    padding: 10rem 1.5rem 4rem;
  }

  /* Mobile: simple 2-col grid */
  .radial-gallery-section {
    padding: 2rem 1.5rem 5rem;
  }

  .radial-gallery-mask {
    height: auto;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .radial-wheel {
    position: static;
    width: 100%;
    height: auto;
    left: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .radial-item {
    position: static;
    margin: 0;
  }

  .radial-card {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
  }
}

/* ── Work Stats Bar ──────────────────────────────────────── */
.work-stats-bar {
  background: var(--color-dark);
  border-top: 1px solid var(--color-mid);
  border-bottom: 1px solid var(--color-mid);
  padding: 3rem 5rem;
}

.work-stats-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Work Services Overview ──────────────────────────────── */
.work-services-overview {
  background: var(--color-dark);
  padding: 7rem 5rem;
}

.work-services-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.work-services-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.75rem 0 3.5rem;
}

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

.work-service-card {
  background: #1C1C1C;
  border: 1px solid var(--color-mid);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-service-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.1em;
}

.work-service-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.work-service-desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
}

.work-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-mid);
}

.work-service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-mid);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(242, 242, 242, 0.6);
}

@media (max-width: 900px) {
  .work-services-overview {
    padding: 5rem 1.5rem;
  }
  .work-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .work-stats-bar {
    padding: 2.5rem 1.5rem;
  }
  .work-stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
}

/* ── FAQ ─────────────────────────────────────────────────── */

.srv-faq-section { background: #121212; padding: 6rem 0; }
.srv-faq-inner { max-width: 760px; margin: 0 auto; padding: 0 var(--section-x); }
.srv-faq-inner .section-heading { margin-bottom: 3rem; }
.srv-faq-list { border-top: 1px solid rgba(255,255,255,0.1); }
.srv-faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.srv-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #f2f2f2;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 2rem;
}
.srv-faq-icon { flex-shrink: 0; transition: transform 0.3s ease; }
.srv-faq-item--open .srv-faq-icon { transform: rotate(180deg); }
.srv-faq-a {
  display: none;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.srv-faq-a > p {
  font-size: 0.9375rem;
  color: rgba(242,242,242,0.65);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  margin: 0;
}
.srv-faq-item--open .srv-faq-a {
  display: block;
  visibility: visible;
}
.faq-price-link { color: #F15D12; text-decoration: underline; }

/* ── PRICING PAGE ────────────────────────────────────────── */

/* Hero */
.pricing-hero {
  background: #121212;
  padding: 10rem 0 7rem;
  color: #f2f2f2;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.pricing-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.pricing-hero-sub {
  color: rgba(242,242,242,0.65);
  max-width: 50ch;
  line-height: 1.7;
}

/* Packages */
.pricing-packages { background: #2A2A2A; padding: 6rem 0; }
.pricing-packages-inner .section-heading { margin-bottom: 3rem; }
.pricing-packages-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  color: #f2f2f2;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured { border-color: #F15D12; }
.pricing-card--selected { border-color: #F15D12; background: rgba(241,93,18,0.06); }
.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #F15D12;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.pricing-card-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #F15D12;
  margin: 0;
  line-height: 1;
}
.pricing-card-price span {
  font-size: 0.875rem;
  color: rgba(242,242,242,0.45);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}
.pricing-card-monthly {
  font-size: 0.875rem;
  color: rgba(242,242,242,0.5);
  margin: 0.5rem 0 2rem;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.pricing-card-features li {
  font-size: 0.9375rem;
  color: rgba(242,242,242,0.8);
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.pricing-card-features li::before { content: '✓'; color: #F15D12; flex-shrink: 0; }
.pricing-card-features li.unavailable { color: rgba(242,242,242,0.3); }
.pricing-card-features li.unavailable::before { content: '—'; color: rgba(242,242,242,0.2); }
.pricing-card-cta {
  display: block;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #f2f2f2;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.pricing-card-cta:hover { border-color: #F15D12; background: rgba(241,93,18,0.08); }
.pricing-card--featured .pricing-card-cta { background: #F15D12; border-color: #F15D12; color: #fff; }
.pricing-card--featured .pricing-card-cta:hover { background: #d44d0a; border-color: #d44d0a; }

/* Calculator */
.pricing-calculator { background: #121212; padding: 6rem 0; }
.pricing-calc-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}
.pricing-calc-sub {
  color: rgba(242,242,242,0.55);
  margin: 0 0 3rem;
  line-height: 1.7;
}
.calc-step { margin-bottom: 2.5rem; }
.calc-step-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f2f2f2;
  margin: 0 0 1rem;
}
.calc-options { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.calc-option { display: none; }
.calc-option-label {
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(242,242,242,0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: 'Public Sans', sans-serif;
}
.calc-option:checked + .calc-option-label {
  border-color: #F15D12;
  color: #F15D12;
  background: rgba(241,93,18,0.1);
}
.calc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0;
}
.calc-result {
  background: #2A2A2A;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.calc-result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(242,242,242,0.5);
  margin: 0 0 0.5rem;
}
.calc-result-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #F15D12;
  margin: 0 0 0.25rem;
  line-height: 1;
}
.calc-result-note {
  color: rgba(242,242,242,0.45);
  font-size: 0.875rem;
  margin: 0 0 2rem;
}

@media (max-width: 768px) {
  .pricing-hero-inner { padding: 0 1.5rem; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card--featured { order: -1; }
}

@media (min-width: 1024px) {
  .calc-body {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }
  .calc-main { flex: 1; }
  .calc-result {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 6rem;
  }
  .calc-divider { display: none; }
}