:root {
  --bg: #080808;
  --surface: #101010;
  --surface-soft: #171717;
  --surface-elevated: #1d1d1d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f1eb;
  --muted: #aaa6a0;
  --orange: #e97c2f;
  --orange-bright: #f28a3d;
  --blue: #2f6bff;
  --blue-hover: #245ce6;
  --cream: #eee7dc;
  --ink: #12110f;
  --ink-muted: #5c574f;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --page: min(1440px, calc(100% - 64px));
  --section-space: clamp(92px, 10vw, 168px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffb77f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 99px;
  background: var(--cream);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 58px;
  margin-inline: auto;
}

.wordmark {
  width: max-content;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: inline-flex;
  width: 220px;
  align-items: center;
  background: transparent;
}

.brand-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.72));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(245, 241, 235, 0.7);
  font-size: 14px;
  font-weight: 560;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 14px;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--blue-hover);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover {
  background: #fffaf2;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.76) contrast(1.03) brightness(0.76);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.82) 0%, rgba(4, 4, 4, 0.3) 43%, rgba(4, 4, 4, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 4, 4, 0.65), rgba(4, 4, 4, 0.16) 60%, rgba(4, 4, 4, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 110px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.46);
  color: rgba(245, 241, 235, 0.8);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.eyebrow span {
  color: var(--orange-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 1120px;
  margin-bottom: 28px;
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(245, 241, 235, 0.77);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-note {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(245, 241, 235, 0.6);
  font-size: 13px;
}

.hero-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-enter 720ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.hero-enter--eyebrow {
  animation-delay: 80ms;
}

.hero-enter--title {
  transform: translateY(24px) scale(0.985);
  animation-name: hero-title-enter;
  animation-duration: 840ms;
  animation-delay: 180ms;
}

.hero-enter--copy {
  animation-delay: 500ms;
}

.hero-enter--actions {
  animation-delay: 650ms;
}

.hero-enter--note {
  animation-delay: 750ms;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-band {
  padding: 42px 0;
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 72px);
}

.proof-benefit {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.proof-benefit strong {
  max-width: 360px;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.proof-benefit span {
  max-width: 330px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding-block: var(--section-space);
}

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

.section-heading {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading h2,
.being-copy h2,
.process-heading h2,
.booking-copy h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 730;
  letter-spacing: -0.058em;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
}

.split-heading p {
  max-width: 590px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
}

.problem-grid,
.sek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.simple-card,
.sek-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.card-number,
.service-item > span,
.process-list > li > span {
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.simple-card h3,
.sek-card h3 {
  margin: 56px 0 14px;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.simple-card p,
.sek-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.system-section {
  border-block: 1px solid var(--line);
  background: #0d0d0d;
}

.centered-heading {
  max-width: 1010px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p {
  max-width: 750px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.sek-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  background: var(--surface-soft);
}

.sek-letter {
  color: var(--orange);
  font-size: clamp(70px, 7vw, 108px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.sek-label {
  margin-top: 22px;
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sek-card h3 {
  margin: auto 0 14px;
  font-size: 28px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--bg);
}

.media-tile {
  position: relative;
  height: clamp(440px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  isolation: isolate;
}

.media-tile::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.08) 28%, rgba(8, 8, 8, 0.32) 64%, rgba(8, 8, 8, 0.8) 100%);
  content: "";
  pointer-events: none;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.76);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.media-tile--filming img {
  object-position: 58% 50%;
}

.media-tile--editing img {
  object-position: 56% 50%;
}

.media-tile--publishing img {
  object-position: 50% 48%;
}

.media-tile--analysis img {
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.02) brightness(0.65);
}

.media-tile:hover img {
  filter: saturate(0.92) contrast(1.02) brightness(0.84);
  transform: scale(1.025);
}

.media-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.72);
  font-size: 14px;
  font-weight: 690;
  backdrop-filter: blur(12px);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4.5vw, 64px);
}

.section-cta .button {
  min-width: min(100%, 390px);
}

.section-cta-after-strip {
  margin-top: clamp(32px, 4vw, 52px);
  margin-bottom: clamp(32px, 4vw, 52px);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 176px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-item:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.service-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.case-section {
  border-top: 1px solid var(--line);
  background: #0e0e0e;
}

.case-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.case-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 6vw, 90px);
}

.case-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.case-copy p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.case-hero > img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 50% 50%;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.case-step {
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.case-step > span {
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-step h3 {
  margin: 68px 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.case-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-result {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.case-result > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.result-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 5vw, 78px);
}

.result-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.result-copy > p {
  color: var(--muted);
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 30px 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.result-metrics div {
  padding: 24px;
  background: var(--surface);
}

.result-metrics strong,
.result-metrics span {
  display: block;
}

.result-metrics strong {
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.045em;
}

.result-metrics span,
.result-copy small {
  color: var(--muted);
  font-size: 13px;
}

.trust-section {
  background: var(--cream);
  color: var(--ink);
}

.trust-section .section-kicker {
  color: #a94e14;
}

.being-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: clamp(40px, 7vw, 104px);
}

.being-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-block: 40px;
}

.being-copy .lead {
  margin: 32px 0 18px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 620;
  line-height: 1.45;
}

.being-copy > p:last-child {
  color: var(--ink-muted);
}

.being-story > img {
  width: 100%;
  height: clamp(590px, 61vw, 790px);
  object-fit: cover;
  object-position: 50% 65%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(70px, 9vw, 130px);
}

.team-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(18, 17, 15, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.34);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 50% 28%;
}

.team-card > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 36px;
}

.team-card span {
  color: #a94e14;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 14px 0 18px;
  font-size: 35px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.team-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 15px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(52px, 8vw, 118px);
}

.process-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-heading h2 {
  margin-bottom: 38px;
}

.process-heading img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--radius-md);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  min-height: 158px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 120px);
}

.faq-shell .section-heading {
  margin: 0;
}

.faq-shell h2 {
  font-size: clamp(42px, 4vw, 62px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-item button > span:first-child {
  font-size: 19px;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.faq-state {
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding-inline: 28px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 28px;
}

.booking-section {
  padding-top: 0;
  background: #0d0d0d;
}

.booking-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  gap: clamp(48px, 8vw, 114px);
  padding: clamp(48px, 7vw, 100px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.booking-dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.booking-dust-particle {
  position: absolute;
  width: var(--dust-size);
  height: var(--dust-size);
  border-radius: 50%;
  background: #fff1d6;
  box-shadow: 0 0 5px rgba(255, 215, 153, 0.65);
  opacity: 0;
  pointer-events: none;
  animation: booking-dust-fade 560ms ease-out forwards;
}

@keyframes booking-dust-fade {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dust-drift)), 7px) scale(0.15); }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .booking-dust { display: none; }
}

.booking-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.booking-copy h2 {
  font-size: clamp(44px, 4.5vw, 68px);
}

.booking-copy > p {
  margin: 28px 0;
  color: var(--muted);
}

.booking-copy ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(245, 241, 235, 0.78);
}

.booking-action {
  align-self: flex-start;
  margin-top: 34px;
}

.booking-card {
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #232323;
  box-shadow: var(--shadow);
}

.booking-card-heading {
  padding: 10px 10px 22px;
}

.booking-card-heading h3 {
  margin: 10px 0 8px;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.booking-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-link-panel {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: var(--surface);
  text-align: center;
}

.booking-external-link {
  width: 100%;
  max-width: 390px;
  padding: 16px 20px;
  line-height: 1.4;
}

.booking-link-panel p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.booking-confirmation-note {
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(242, 138, 61, 0.34);
  border-radius: 16px;
  background: rgba(233, 124, 47, 0.08);
}

.booking-confirmation-note > span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-confirmation-note strong {
  display: block;
  font-size: 17px;
}

.booking-confirmation-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
}

.footer-shell > div:first-child p,
.copyright {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  justify-self: end;
}

@media (min-width: 641px) and (max-width: 1000px) {
  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    justify-self: start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Keep hover motion independent of the staggered scroll reveal. */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .simple-card,
  .case-step,
  .team-card,
  .being-story > img,
  .process-list > li,
  .faq-item {
    transition-property: opacity, transform, scale, translate, box-shadow;
    transition-duration: 650ms, 650ms, 260ms, 260ms, 260ms;
    transition-timing-function: ease, cubic-bezier(0.2, 0.7, 0.2, 1), ease-out, ease-out, ease-out;
    transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
  }

  .simple-card.is-visible:hover,
  .case-step.is-visible:hover,
  .team-card.is-visible:hover,
  .being-story.is-visible > img:hover,
  .process-list > li.is-visible:hover {
    scale: 1.018;
    translate: 0 -5px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  }

  .faq-item.is-visible:hover,
  .faq-item.is-visible:focus-within {
    scale: 1.01;
    translate: 0 -2px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 40px, 1100px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    margin-right: 90px;
  }

  .menu-button {
    position: absolute;
    right: 20px;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.65);
    color: var(--text);
    cursor: pointer;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 20px auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #141414;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

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

  .team-card img {
    height: 500px;
    min-height: 0;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-shell .section-heading {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 96px;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-background {
    object-position: 50% 50%;
  }

  h1 {
    font-size: clamp(52px, 11vw, 82px);
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .split-heading,
  .case-hero,
  .case-result,
  .being-story,
  .process-layout,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .sek-grid,
  .case-flow {
    grid-template-columns: 1fr;
  }

  .simple-card {
    min-height: 230px;
  }

  .sek-card {
    min-height: 420px;
  }

  .media-strip {
    display: flex;
    overflow-x: auto;
    scroll-padding-inline: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .media-tile {
    flex: 0 0 min(42vw, 330px);
    height: 460px;
    scroll-snap-align: start;
  }

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

  .case-hero > img {
    height: 630px;
    min-height: 0;
  }

  .case-result > img {
    min-height: 480px;
  }

  .being-story {
    gap: 30px;
  }

  .being-story > img {
    height: 680px;
  }

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

  .process-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 28px);
    --section-space: 78px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 11px 0;
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(12px);
  }

  .nav-shell {
    min-height: 48px;
  }

  .brand-logo {
    width: 176px;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    right: 14px;
  }

  .site-nav.is-open {
    inset: 68px 14px auto;
  }

  .hero {
    min-height: max(760px, 100svh);
    align-items: end;
  }

  .hero-background {
    object-position: 50% 50%;
    filter: saturate(0.72) contrast(1.03) brightness(0.7);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.78) 0%, rgba(4, 4, 4, 0.28) 37%, rgba(4, 4, 4, 0.92) 78%, #080808 100%);
  }

  .hero-content {
    align-items: flex-start;
    padding: 120px 0 64px;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 14.2vw, 61px);
    line-height: 0.96;
    text-wrap: pretty;
  }

  .hero-copy {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    width: 100%;
    text-align: center;
  }

  .proof-band {
    padding: 28px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-benefit {
    gap: 4px;
  }

  .proof-benefit strong,
  .proof-benefit span {
    max-width: none;
  }

  .section-heading h2,
  .being-copy h2,
  .process-heading h2,
  .booking-copy h2,
  .case-copy h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading p,
  .centered-heading p {
    font-size: 16px;
  }

  .simple-card,
  .sek-card,
  .service-item,
  .case-step,
  .process-list li {
    padding: 24px;
  }

  .simple-card h3 {
    margin-top: 42px;
  }

  .sek-card {
    min-height: 390px;
  }

  .sek-card h3 {
    font-size: 26px;
  }

  .media-strip {
    gap: 8px;
    padding: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .media-tile {
    flex-basis: min(82vw, 320px);
    height: 430px;
    scroll-snap-stop: always;
  }

  .section-cta {
    margin-top: 32px;
  }

  .section-cta .button {
    width: 100%;
    min-width: 0;
  }

  .service-item {
    grid-template-columns: 38px 1fr;
    min-height: 170px;
  }

  .case-hero,
  .case-result,
  .booking-shell {
    border-radius: 24px;
  }

  .case-copy,
  .result-copy {
    padding: 34px 24px;
  }

  .case-hero {
    min-height: 0;
  }

  .case-hero > img {
    height: 520px;
  }

  .case-step {
    min-height: 240px;
  }

  .case-step h3 {
    margin-top: 52px;
  }

  .case-result > img {
    min-height: 330px;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

  .result-metrics div {
    padding: 19px;
  }

  .being-copy {
    padding: 0;
  }

  .being-copy .lead {
    font-size: 20px;
  }

  .being-story > img {
    height: 520px;
    border-radius: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 60px;
  }

  .team-card {
    grid-template-columns: 0.84fr 1.16fr;
  }

  .team-card img {
    height: 100%;
    min-height: 390px;
  }

  .team-card > div {
    padding: 22px;
  }

  .team-card h3 {
    font-size: 28px;
  }

  .team-card p {
    font-size: 13px;
  }

  .process-layout {
    gap: 42px;
  }

  .process-heading img {
    max-height: 430px;
  }

  .faq-item button {
    min-height: 84px;
    padding: 20px;
  }

  .faq-item button > span:first-child {
    font-size: 17px;
  }

  .faq-state {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .faq-answer > p {
    padding-inline: 20px;
  }

  .faq-item.is-open .faq-answer > p {
    padding-bottom: 22px;
  }

  .booking-shell {
    width: calc(100% - 16px);
    padding: 44px 18px 18px;
  }

  .booking-copy {
    padding-inline: 6px;
  }

  .booking-action {
    width: 100%;
    align-self: stretch;
  }

  .booking-card {
    padding: 10px;
  }

  .booking-card-heading {
    padding: 14px 10px 20px;
  }

  .booking-link-panel {
    min-height: 200px;
    padding: 24px 14px;
  }

  .booking-confirmation-note {
    padding: 18px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 450px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
