@font-face {
  font-family: "Oxanium";
  src: url("assets/fonts/oxanium-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #050814;
  --muted: #9eb1ba;
  --paper: #050814;
  --white: #f3fffd;
  --line: rgba(52, 255, 218, 0.2);
  --teal: #2cfbd3;
  --light-teal: #a6fff0;
  --amber: #ffb45e;
  --coral: #ff5c86;
  --graphite: #09101e;
  --sky: #081322;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --font-display: "Oxanium", "Trebuchet MS", sans-serif;
  --font-body: "Rajdhani", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  border-bottom: 1px solid rgba(44, 251, 211, 0.16);
  background: rgba(5, 8, 20, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(310px, 34vw);
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2.5vw, 28px);
  color: rgba(166, 255, 240, 0.76);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  font-family: var(--font-display);
  line-height: 1.1;
  cursor: pointer;
}

.nav-cta {
  border-color: var(--teal);
  color: var(--ink);
  background: var(--teal);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(44, 251, 211, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  padding: 132px clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero::before {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.38), rgba(5, 8, 20, 0.04)),
    url("assets/double-exposure-film-hero.jpg") 72% center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.99) 0%, rgba(5, 8, 20, 0.9) 42%, rgba(5, 8, 20, 0.28) 78%, rgba(5, 8, 20, 0.5) 100%),
    linear-gradient(0deg, rgba(5, 8, 20, 0.96) 0%, rgba(5, 8, 20, 0.08) 58%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 94px;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(44, 251, 211, 0.15) 48%, var(--amber), transparent);
  box-shadow: 0 0 16px rgba(44, 251, 211, 0.28);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  padding-left: 18px;
  border-left: 2px solid var(--teal);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--light-teal);
}

.hero h1 {
  color: var(--light-teal);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11.5em;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(213, 233, 234, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-phone {
  margin: 18px 0 0;
  color: rgba(166, 255, 240, 0.72);
  font-weight: 750;
}

.hero-phone a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(44, 251, 211, 0.7);
  text-underline-offset: 4px;
}

.button.primary {
  color: var(--ink);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 22px rgba(44, 251, 211, 0.18);
}

.button.ghost {
  color: var(--light-teal);
  background: rgba(5, 8, 20, 0.58);
  border-color: rgba(44, 251, 211, 0.38);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 12px;
}

.hero-panel > div {
  padding: 20px;
  border: 1px solid rgba(44, 251, 211, 0.34);
  border-radius: 2px;
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: inset 3px 0 0 rgba(255, 180, 94, 0.7), 0 18px 46px rgba(0, 0, 0, 0.3);
}

.panel-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel strong {
  display: block;
  font-size: 1.08rem;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(213, 233, 234, 0.7);
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(44, 251, 211, 0.1);
  background:
    linear-gradient(90deg, rgba(44, 251, 211, 0.04), transparent 35%),
    #070c18;
}

.intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

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

.services {
  background:
    repeating-linear-gradient(90deg, rgba(44, 251, 211, 0.035) 0 1px, transparent 1px 96px),
    var(--paper);
}

.service-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top-color: rgba(44, 251, 211, 0.7);
  border-radius: 2px;
  color: var(--white);
  background: rgba(9, 16, 30, 0.92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.service-icon {
  position: relative;
  width: 52px;
  height: 42px;
  margin-bottom: 28px;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.service-icon.live::before {
  inset: 8px 6px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.service-icon.live::after {
  left: 22px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 10px rgba(31, 138, 132, 0.13), 0 0 0 20px rgba(31, 138, 132, 0.08);
}

.service-icon.card::before {
  inset: 3px;
  border: 3px solid var(--coral);
  border-radius: 7px;
}

.service-icon.card::after {
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  background: var(--coral);
  box-shadow: 0 -9px 0 var(--amber);
}

.service-icon.social::before {
  inset: 0 11px;
  border: 3px solid var(--teal);
  border-radius: 10px;
}

.service-icon.social::after {
  left: 22px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.service-icon.interview::before {
  left: 4px;
  top: 8px;
  width: 28px;
  height: 20px;
  border: 3px solid var(--teal);
  border-radius: 7px;
}

.service-icon.interview::after {
  right: 3px;
  top: 16px;
  border-left: 18px solid var(--amber);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.service-icon.doc::before {
  left: 8px;
  top: 4px;
  width: 34px;
  height: 34px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.service-icon.doc::after {
  left: 23px;
  top: 10px;
  width: 4px;
  height: 24px;
  background: var(--coral);
  transform: rotate(40deg);
}

.service-icon.film::before {
  inset: 8px 2px;
  border: 3px solid var(--teal);
  border-radius: 7px;
}

.service-icon.film::after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 30px;
  background: var(--amber);
  box-shadow: 12px 0 0 var(--amber), 24px 0 0 var(--amber);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.work-band {
  position: relative;
  padding: clamp(68px, 9vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  border-top: 1px solid rgba(44, 251, 211, 0.28);
  border-bottom: 1px solid rgba(44, 251, 211, 0.2);
  background:
    linear-gradient(120deg, rgba(44, 251, 211, 0.06), transparent 34%, rgba(255, 180, 94, 0.04)),
    #070b16;
}

.work-band::before {
  content: ">>>>>";
  position: absolute;
  top: 34px;
  right: clamp(20px, 5vw, 72px);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.35rem;
  opacity: 0.74;
}

.work-band .eyebrow {
  color: var(--teal);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(44, 251, 211, 0.2);
}

.work-grid article {
  padding: clamp(24px, 4vw, 42px);
  background: #0a101e;
}

.work-grid span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--teal);
  font-weight: 850;
}

.work-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(44, 251, 211, 0.34);
  border-radius: 2px;
  background: rgba(5, 8, 20, 0.8);
  box-shadow: inset 0 3px 0 rgba(255, 180, 94, 0.48);
}

.video-frame {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(44, 251, 211, 0.3);
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 180, 94, 0.36), rgba(44, 251, 211, 0.22)),
    url("assets/colourful-film-shoot-background.jpg") center / cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(16, 20, 24, 0.72), rgba(16, 20, 24, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 84px);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 2px;
  background: var(--teal);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(44, 251, 211, 0.13), 0 0 34px rgba(44, 251, 211, 0.28);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  border-left: 22px solid var(--ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-copy {
  max-width: 520px;
}

.video-copy .eyebrow {
  color: var(--teal);
}

.video-copy p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.74);
}

.process {
  color: var(--white);
  background:
    repeating-linear-gradient(0deg, rgba(44, 251, 211, 0.025) 0 1px, transparent 1px 72px),
    var(--sky);
}

.timeline {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.timeline li {
  counter-increment: step;
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 2px;
  color: var(--white);
  background: rgba(5, 8, 20, 0.72);
  border: 1px solid var(--line);
  box-shadow: inset 0 2px 0 rgba(44, 251, 211, 0.3);
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 850;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
  color: var(--white);
  border-top: 1px solid rgba(44, 251, 211, 0.22);
  background:
    linear-gradient(90deg, rgba(44, 251, 211, 0.055), transparent 40%),
    var(--ink);
}

.contact .eyebrow {
  color: var(--teal);
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(44, 251, 211, 0.34);
  border-radius: 2px;
  background: rgba(8, 15, 29, 0.86);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(44, 251, 211, 0.18);
  border-radius: 2px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(4, 8, 18, 0.88);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  min-height: 48px;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(44, 251, 211, 0.14);
  background: #030611;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 850;
}

.site-footer a {
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--light-teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.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;
}

.help-launcher {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(44, 251, 211, 0.1), 0 0 30px rgba(44, 251, 211, 0.3);
  cursor: pointer;
}

.help-launcher span {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 25px;
  height: 19px;
  border: 3px solid var(--ink);
  border-radius: 3px;
}

.help-launcher span::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -8px;
  border-top: 7px solid var(--ink);
  border-left: 7px solid transparent;
}

.help-launcher:hover,
.help-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(44, 251, 211, 0.12), 0 0 38px rgba(44, 251, 211, 0.38);
}

.help-widget {
  position: fixed;
  z-index: 31;
  right: 22px;
  bottom: 94px;
  width: min(390px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 118px));
  grid-template-rows: auto minmax(150px, 1fr) auto auto auto;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(44, 251, 211, 0.56);
  border-radius: 3px;
  background: rgba(5, 8, 20, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), inset 0 3px 0 rgba(255, 180, 94, 0.65);
  backdrop-filter: blur(18px);
}

.help-widget:not([hidden]) {
  display: grid;
}

.help-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(44, 251, 211, 0.2);
  background: rgba(9, 16, 30, 0.94);
}

.help-widget-header strong,
.help-widget-header small {
  display: block;
}

.help-widget-header strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.help-widget-header small {
  margin-top: 2px;
  color: var(--muted);
}

.help-status {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.help-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(44, 251, 211, 0.8);
}

.help-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(44, 251, 211, 0.28);
  border-radius: 2px;
  color: var(--light-teal);
  background: transparent;
  font: 700 1.35rem/1 var(--font-display);
  cursor: pointer;
}

.help-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.help-message {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 3px;
  line-height: 1.35;
}

.help-message.bot {
  align-self: flex-start;
  color: rgba(243, 255, 253, 0.84);
  border: 1px solid rgba(44, 251, 211, 0.22);
  background: rgba(9, 16, 30, 0.92);
}

.help-message.user {
  align-self: flex-end;
  color: var(--ink);
  background: var(--teal);
  font-weight: 600;
}

.help-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 0 18px 14px;
}

.help-prompts button {
  min-height: 36px;
  padding: 6px;
  border: 1px solid rgba(44, 251, 211, 0.24);
  border-radius: 2px;
  color: var(--light-teal);
  background: rgba(44, 251, 211, 0.05);
  font: 700 0.72rem/1.1 var(--font-display);
  cursor: pointer;
}

.help-prompts button:hover,
.help-prompts button:focus-visible {
  border-color: var(--teal);
  background: rgba(44, 251, 211, 0.12);
}

.help-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid rgba(44, 251, 211, 0.14);
}

.help-form input {
  min-width: 0;
  height: 44px;
}

.help-form button {
  min-width: 68px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  color: var(--ink);
  background: var(--teal);
  font: 700 0.78rem/1 var(--font-display);
  cursor: pointer;
}

.help-contact {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 18px 14px;
  color: var(--teal);
  font: 700 0.76rem/1 var(--font-display);
}

.help-contact a:hover,
.help-contact a:focus-visible {
  color: var(--light-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .intro,
  .video-showcase,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .nav-cta {
    display: none;
  }

  .brand img {
    height: 52px;
    max-width: 240px;
  }

  .hero {
    padding: 104px 18px 42px;
  }

  .work-band::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-panel,
  .service-grid,
  .work-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .section,
  .work-band,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-card,
  .timeline li,
  .video-frame {
    min-height: 0;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .help-launcher {
    right: 14px;
    bottom: 14px;
  }

  .help-widget {
    right: 14px;
    bottom: 84px;
    max-height: calc(100vh - 104px);
  }
}

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

  .button:hover,
  .button:focus-visible,
  .nav-cta:hover,
  .nav-cta:focus-visible {
    transform: none;
  }
}
