:root {
  --base: #0b1824;
  --base-deep: #07111a;
  --base-soft: #102033;
  --surface: #172636;
  --surface-raised: #203246;
  --surface-deep: #0d1a27;
  --surface-glass: rgba(23, 38, 54, 0.8);
  --border: #34485a;
  --border-soft: rgba(216, 224, 231, 0.11);
  --border-accent: rgba(212, 175, 55, 0.46);
  --text: #f3f5f7;
  --text-soft: #d8e0e7;
  --muted: #c8d0d8;
  --muted-dark: #95a2af;
  --accent: #d4af37;
  --accent-strong: #f0c85a;
  --accent-soft: rgba(212, 175, 55, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --shadow-accent: 0 0 54px rgba(212, 175, 55, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --header-offset: 118px;
  --max-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% -8%, rgba(74, 116, 152, 0.17), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(216, 224, 231, 0.055), transparent 22rem),
    linear-gradient(180deg, var(--base) 0%, #0a1520 42rem, var(--base-deep) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 58rem);
  content: "";
}

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

.icon-sprite {
  display: none;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon * {
  vector-effect: non-scaling-stroke;
}

.icon-large {
  width: 1.55em;
  height: 1.55em;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--base-deep);
  background: var(--accent-strong);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-160%);
}

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

/* Shared type and controls */
.section {
  position: relative;
  padding: 80px 0;
  scroll-margin-top: var(--header-offset);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.82), transparent);
  content: "";
}

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

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 11.4ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 10.4vw, 4.12rem);
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 7vw, 3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading-centered {
  text-align: left;
}

.button,
.text-link,
.portfolio-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button {
  width: 100%;
  padding: 13px 18px;
  color: var(--base-deep);
  background: linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 100%);
  border: 1px solid rgba(240, 200, 90, 0.58);
  box-shadow:
    0 16px 36px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button::after {
  width: 10px;
  height: 10px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button:hover {
  background: linear-gradient(180deg, #f7dda0 0%, var(--accent-strong) 100%);
  box-shadow:
    0 18px 42px rgba(212, 175, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

.button-small {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  width: auto;
  min-height: 34px;
  justify-self: end;
  padding: 8px 10px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.button-small::after {
  width: 8px;
  height: 8px;
  margin-left: 9px;
}

.text-link {
  width: 100%;
  padding: 13px 18px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.052), rgba(245, 245, 245, 0.018)),
    rgba(23, 38, 54, 0.78);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(245, 245, 245, 0.05);
}

.text-link::after {
  width: 0;
  height: 0;
  margin-left: 12px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--accent-strong);
  content: "";
}

.text-link:hover,
.portfolio-link:hover {
  color: var(--accent-strong);
  border-color: var(--border-accent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.portfolio-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

.cta-row {
  display: grid;
  gap: 12px;
  margin: 30px 0 26px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(11, 24, 36, 0.94), rgba(7, 17, 26, 0.9));
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.header-layout {
  display: grid;
  grid-template-columns: auto auto;
  gap: 9px 12px;
  align-items: center;
  padding: 9px 0 10px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  color: var(--text);
  font-weight: 950;
  line-height: 0.96;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  background: #f3f5f7;
  border: 1px solid rgba(245, 245, 245, 0.22);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.9);
}

.brand-text {
  max-width: 9rem;
  font-size: 0.94rem;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px 15px;
  align-items: center;
}

.primary-nav a {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--accent-strong);
}

/* Hero */
.hero {
  overflow: hidden;
  padding: 46px 0 60px;
  background:
    radial-gradient(circle at 28% 22%, rgba(68, 111, 150, 0.19), transparent 25rem),
    radial-gradient(circle at 76% 18%, rgba(216, 224, 231, 0.055), transparent 20rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 46%, rgba(0, 0, 0, 0.26)),
    linear-gradient(115deg, var(--base) 0%, var(--base-soft) 52%, var(--base-deep) 100%);
  border-bottom: 1px solid rgba(184, 194, 204, 0.18);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(184, 194, 204, 0.05), transparent 28%, transparent 70%, rgba(184, 194, 204, 0.05)),
    repeating-linear-gradient(90deg, rgba(245, 245, 245, 0.025) 0 1px, transparent 1px 7rem);
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.58), transparent);
  content: "";
}

.hero-shell,
.hero-layout {
  position: relative;
}

.hero-layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px 6px 7px;
  color: var(--text-soft);
  background: rgba(245, 245, 245, 0.032);
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 880;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-list .icon {
  width: 22px;
  height: 22px;
  padding: 5px;
  flex: 0 0 auto;
  color: var(--accent-strong);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.13);
}

.showreel-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.07), rgba(245, 245, 245, 0.018)),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  box-shadow:
    0 38px 104px rgba(0, 0, 0, 0.58),
    0 0 76px rgba(88, 128, 164, 0.14);
}

.showreel-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(245, 245, 245, 0.12),
    inset 0 0 0 1px rgba(245, 245, 245, 0.02);
  content: "";
}

.showreel-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(315deg, rgba(184, 194, 204, 0.1), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.34;
  content: "";
}

.video-label {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.08), rgba(245, 245, 245, 0.025)),
    rgba(11, 24, 36, 0.92);
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-label-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--accent-strong);
  border-radius: 50%;
}

.video-label-mark::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--accent-strong);
  content: "";
}

.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(97, 135, 168, 0.22), transparent 10rem),
    linear-gradient(135deg, #0f1b27, var(--base-deep));
}

.showreel-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(245, 245, 245, 0.08), transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(184, 194, 204, 0.12), transparent 32%);
  content: "";
}

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

.showreel-frame video {
  display: block;
  background: #05090e;
  object-fit: cover;
}

.showreel-card figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 15px 17px 17px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(23, 38, 54, 0.88), rgba(11, 24, 36, 0.96));
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  font-size: 0.9rem;
}

.showreel-card figcaption a {
  width: auto;
  max-width: 100%;
  color: var(--accent-strong);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid var(--border-accent);
  transition: color 180ms ease, border-color 180ms ease;
  overflow-wrap: anywhere;
}

.showreel-card figcaption a:hover {
  color: #f3f7fa;
  border-color: #f3f7fa;
}

.work-type-grid {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.work-type-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 194, 204, 0.13), transparent 8rem),
    linear-gradient(145deg, rgba(245, 245, 245, 0.055), rgba(245, 245, 245, 0.016)),
    rgba(23, 38, 54, 0.86);
  border: 1px solid rgba(245, 245, 245, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.work-type-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(184, 194, 204, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(245, 245, 245, 0.06), transparent 42%);
  opacity: 0.72;
  content: "";
}

.work-type-card h2,
.work-type-card p {
  text-wrap: pretty;
}

.work-type-card::after {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--accent-strong);
  border-right: 2px solid var(--accent-strong);
  content: "";
  transform: rotate(45deg);
}

.work-type-card > * {
  position: relative;
  z-index: 1;
}

.work-type-card:hover {
  border-color: var(--border-accent);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.category-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--accent-strong);
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 68%),
    rgba(8, 13, 18, 0.74);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px rgba(212, 175, 55, 0.08),
    0 0 24px rgba(212, 175, 55, 0.08);
  font-size: 0.98rem;
  font-weight: 950;
}

.work-type-card h2 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.work-type-card p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.52;
}

/* Featured work */
.work {
  background:
    radial-gradient(circle at 18% -4%, rgba(74, 116, 152, 0.12), transparent 21rem),
    linear-gradient(180deg, var(--base) 0%, var(--base-deep) 100%);
  border-bottom: 1px solid var(--border);
}

.work-heading {
  display: grid;
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}

.work-heading .section-heading {
  margin-bottom: 0;
}

.work-actions {
  display: grid;
  gap: 16px;
  align-items: start;
  justify-items: start;
}

.portfolio-feature-video {
  position: relative;
  display: grid;
  width: min(100%, 340px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.06), rgba(245, 245, 245, 0.018)),
    radial-gradient(circle at 20% 8%, rgba(74, 116, 152, 0.18), transparent 17rem),
    rgba(17, 32, 47, 0.9);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(212, 175, 55, 0.05);
}

.portfolio-feature-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(315deg, rgba(212, 175, 55, 0.08), transparent 24%);
  opacity: 0.7;
  content: "";
}

.portfolio-feature-video .video-label {
  z-index: 2;
  padding: 10px 12px;
  font-size: 0.68rem;
}

.portfolio-feature-video .video-label-mark {
  width: 21px;
  height: 21px;
}

.feature-video-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(212, 175, 55, 0.13), transparent 10rem),
    linear-gradient(135deg, #102235, #07111a);
}

.portfolio-feature-video figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 12px 13px 13px;
  background:
    linear-gradient(180deg, rgba(32, 50, 70, 0.78), rgba(13, 26, 39, 0.92));
  border-top: 1px solid rgba(245, 245, 245, 0.1);
}

.portfolio-feature-video h3 {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.04rem);
  line-height: 1.18;
}

.portfolio-feature-video p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

.portfolio-feature-kicker {
  width: fit-content;
  padding: 4px 7px;
  color: var(--accent-strong);
  background: rgba(7, 17, 26, 0.6);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-feature-video figcaption a {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid var(--border-accent);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.portfolio-feature-video figcaption a:hover {
  color: var(--text);
  border-color: var(--text);
}

.portfolio-link {
  justify-self: start;
  min-height: 42px;
  padding: 11px 15px;
  color: var(--text);
  background: rgba(11, 24, 36, 0.72);
  border: 1px solid var(--border-accent);
}

.portfolio-link::after {
  width: 9px;
  height: 9px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.portfolio-grid {
  display: grid;
  gap: 16px;
}

.portfolio-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(245, 245, 245, 0.1);
  content: "";
}

.portfolio-card:hover {
  border-color: var(--border-accent);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(212, 175, 55, 0.075);
  transform: translateY(-3px);
}

.portfolio-thumb {
  position: relative;
  display: grid;
  min-height: 320px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(135deg, #1d222b, var(--base));
}

.portfolio-thumb::before,
.portfolio-thumb::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.portfolio-thumb::before {
  background:
    radial-gradient(circle at 24% 18%, rgba(245, 245, 245, 0.16), transparent 5rem),
    radial-gradient(circle at 72% 28%, rgba(184, 194, 204, 0.24), transparent 8rem),
    repeating-linear-gradient(90deg, rgba(245, 245, 245, 0.028) 0 1px, transparent 1px 3.8rem),
    linear-gradient(120deg, rgba(245, 245, 245, 0.09), transparent 34%);
}

.portfolio-thumb::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.32));
}

.portfolio-wedding .portfolio-thumb {
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(0, 0, 0, 0.18) 44% 46%, transparent 46%),
    radial-gradient(circle at 38% 42%, rgba(216, 224, 231, 0.1), transparent 7rem),
    radial-gradient(circle at 70% 18%, rgba(111, 151, 184, 0.26), transparent 9rem),
    linear-gradient(135deg, #233243 0%, #101823 48%, var(--base) 100%);
}

.portfolio-brand .portfolio-thumb {
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.07) 0 2px, transparent 2px 28%, rgba(245, 245, 245, 0.04) 28% 30%, transparent 30%),
    linear-gradient(90deg, rgba(245, 245, 245, 0.12) 0 2px, transparent 2px 18%),
    radial-gradient(circle at 72% 28%, rgba(184, 194, 204, 0.18), transparent 7rem),
    linear-gradient(135deg, #27384a 0%, var(--surface) 50%, #0a1520 100%);
}

.portfolio-product .portfolio-thumb {
  background:
    radial-gradient(ellipse at 50% 58%, rgba(0, 0, 0, 0.44), transparent 5rem),
    radial-gradient(ellipse at 50% 46%, rgba(245, 245, 245, 0.18), transparent 4rem),
    radial-gradient(circle at 62% 30%, rgba(112, 152, 188, 0.28), transparent 8rem),
    linear-gradient(135deg, #17283a 0%, #0a1520 72%);
}

.portfolio-event .portfolio-thumb {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.22), transparent 1.8rem),
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.18), transparent 1.6rem),
    radial-gradient(circle at 28% 24%, rgba(245, 245, 245, 0.16), transparent 5rem),
    radial-gradient(circle at 68% 20%, rgba(119, 158, 190, 0.3), transparent 9rem),
    radial-gradient(circle at 55% 80%, rgba(184, 194, 204, 0.12), transparent 7rem),
    linear-gradient(135deg, #182838 0%, var(--surface) 62%);
}

.portfolio-series .portfolio-thumb {
  background:
    radial-gradient(circle at 22% 30%, rgba(64, 104, 132, 0.5), transparent 7rem),
    linear-gradient(90deg, rgba(184, 194, 204, 0.1) 0 1px, transparent 1px 20%),
    linear-gradient(180deg, rgba(245, 245, 245, 0.08) 0 1px, transparent 1px 24%),
    radial-gradient(circle at 74% 30%, rgba(184, 194, 204, 0.2), transparent 8rem),
    linear-gradient(135deg, #23364a 0%, var(--base) 70%);
}

.play-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: rgba(7, 17, 26, 0.76);
  border: 1px solid rgba(245, 245, 245, 0.22);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--text);
  content: "";
}

.portfolio-category {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--accent-strong);
  background: rgba(7, 17, 26, 0.72);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portfolio-copy {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.portfolio-copy h3 {
  margin-bottom: 7px;
  font-size: 1.14rem;
}

.portfolio-copy p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

/* About */
.intro {
  background:
    radial-gradient(circle at 82% 18%, rgba(74, 116, 152, 0.075), transparent 18rem),
    linear-gradient(180deg, var(--base-deep) 0%, var(--base) 100%);
}

.intro-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p {
  color: var(--text-soft);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.trust-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.06), rgba(245, 245, 245, 0.018)),
    var(--surface);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-panel div {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.trust-panel div:last-child {
  border-bottom: 0;
}

.trust-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1rem;
}

.trust-panel span {
  color: var(--muted);
}

/* Services */
.services {
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 124, 160, 0.08), transparent 18rem),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-raised) 100%);
  border-block: 1px solid rgba(245, 245, 245, 0.08);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.058), rgba(245, 245, 245, 0.017)),
    var(--surface);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26), var(--shadow-accent);
  transform: translateY(-2px);
}

.card::before {
  position: absolute;
  top: -1px;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.58), transparent);
  content: "";
}

.service-card {
  min-height: 218px;
}

.service-card h3 {
  max-width: 19rem;
}

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

.card-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--accent-strong);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
}

.card-number .icon {
  width: 17px;
  height: 17px;
}

.service-card-wide {
  min-height: auto;
  background:
    radial-gradient(circle at 8% 20%, rgba(212, 175, 55, 0.12), transparent 9rem),
    linear-gradient(145deg, rgba(245, 245, 245, 0.06), rgba(245, 245, 245, 0.016)),
    var(--surface-raised);
  border-color: var(--border-accent);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

/* Why choose us */
.why {
  background:
    radial-gradient(circle at 8% 15%, rgba(74, 116, 152, 0.1), transparent 18rem),
    linear-gradient(180deg, var(--base-deep) 0%, var(--base) 100%);
}

.why-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.046), rgba(245, 245, 245, 0.016)),
    rgba(23, 38, 54, 0.52);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: var(--radius);
}

.reason-item {
  position: relative;
  padding: 20px 20px 20px 54px;
  border-bottom: 1px solid var(--border);
  transition: background 180ms ease;
}

.reason-item:hover {
  background: rgba(212, 175, 55, 0.035);
}

.reason-item:last-child {
  border-bottom: 0;
}

.reason-item::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle, var(--accent-strong) 0 35%, transparent 36%),
    rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  content: "";
}

.reason-item p {
  margin-bottom: 0;
}

/* Process */
.process {
  background:
    linear-gradient(90deg, rgba(74, 116, 152, 0.08), transparent 38%),
    linear-gradient(180deg, var(--base-soft) 0%, var(--surface) 100%);
  border-block: 1px solid rgba(245, 245, 245, 0.08);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.065), rgba(245, 245, 245, 0.018)),
    var(--surface);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.step:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.step span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--base);
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  border-radius: 50%;
  font-weight: 950;
}

.step p {
  margin-bottom: 0;
}

/* Trust section */
.testimonials {
  background:
    radial-gradient(circle at 82% 8%, rgba(74, 116, 152, 0.08), transparent 17rem),
    linear-gradient(180deg, var(--base) 0%, var(--base-deep) 100%);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.testimonial-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(245, 245, 245, 0.06), rgba(245, 245, 245, 0.018)),
    var(--surface);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.testimonial::before {
  position: absolute;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
}

.trust-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--accent-strong);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.08);
}

.trust-icon .icon {
  width: 18px;
  height: 18px;
}

.testimonial h3 {
  margin: 4px 0 0;
}

.testimonial p {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 18% 8%, rgba(74, 116, 152, 0.16), transparent 19rem),
    linear-gradient(180deg, var(--base-deep), var(--base));
}

.contact-panel {
  display: grid;
  gap: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(94, 135, 170, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(245, 245, 245, 0.06), rgba(245, 245, 245, 0.018)),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-copy {
  display: grid;
  min-width: 0;
  align-content: start;
}

.contact-copy p {
  color: var(--text-soft);
}

.contact-details {
  display: grid;
  gap: 6px;
  min-width: 0;
  margin-top: 20px;
  padding: 14px 0 18px;
  border-block: 1px solid rgba(245, 245, 245, 0.09);
}

.contact-details span,
.contact-details a {
  display: flex;
  gap: 9px;
  align-items: center;
  width: auto;
  max-width: 100%;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 760;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-details span:first-child {
  color: var(--text);
  font-weight: 900;
}

.contact-details a {
  width: fit-content;
  color: var(--accent-strong);
  border-bottom: 1px solid var(--border-accent);
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-details a:hover {
  color: var(--text);
  border-color: var(--text);
}

.contact-details .icon {
  color: var(--accent-strong);
}

.contact-guide {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-top: 20px;
}

.contact-guide article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(94, 135, 170, 0.11), transparent 8rem),
    linear-gradient(145deg, rgba(245, 245, 245, 0.05), rgba(245, 245, 245, 0.015)),
    rgba(7, 17, 26, 0.44);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: var(--radius);
}

.contact-guide h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-guide ul,
.contact-guide ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-guide li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-guide li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
  content: "";
}

.enquiry-form {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.045), rgba(245, 245, 245, 0.014)),
    rgba(7, 17, 26, 0.58);
  border: 1px solid rgba(245, 245, 245, 0.11);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(245, 245, 245, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.2);
}

.enquiry-form label {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 11px 13px;
  color: var(--text);
  background: rgba(7, 17, 26, 0.78);
  border: 1px solid rgba(245, 245, 245, 0.14);
  border-radius: var(--radius-sm);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.enquiry-form input:hover,
.enquiry-form textarea:hover,
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  background: rgba(7, 17, 26, 0.9);
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.enquiry-form textarea {
  min-height: 118px;
  resize: vertical;
}

.enquiry-form .button {
  min-height: 46px;
  margin-top: 8px;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 42px 0 46px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(74, 116, 152, 0.08), transparent 17rem),
    linear-gradient(180deg, var(--base-deep), #050c13);
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.footer-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.brand-footer {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 7px;
  color: rgba(245, 245, 245, 0.66);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

.site-footer a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid transparent;
}

.site-footer a:hover {
  border-color: var(--border-accent);
}

@media (min-width: 640px) {
  :root {
    --header-offset: 92px;
  }

  .button,
  .text-link {
    width: auto;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
  }

  .proof-list {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 14px 22px;
  }

  .proof-list li {
    padding-right: 14px;
  }

  .card-grid,
  .portfolio-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .section {
    padding: 92px 0;
  }

  .header-layout {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 14px 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    max-width: 9rem;
    font-size: 0.95rem;
  }

  .primary-nav {
    grid-column: auto;
    gap: 8px 12px;
    justify-content: center;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .button-small {
    grid-column: auto;
    grid-row: auto;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .button-small::after {
    width: 10px;
    height: 10px;
    margin-left: 14px;
  }

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

  .work-type-card {
    min-height: 178px;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .work-type-card .category-mark {
    grid-row: 1;
  }

  .work-type-card div {
    grid-column: 1 / -1;
  }

  .work-heading {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .portfolio-link {
    justify-self: end;
  }

  .work-actions {
    justify-items: end;
  }

  .section-heading-centered {
    margin-inline: auto;
    text-align: center;
  }

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .service-card-wide p {
    max-width: 58rem;
  }

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

@media (min-width: 1024px) {
  h1 {
    font-size: clamp(4.2rem, 5vw, 5.18rem);
  }

  h2 {
    font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  }

  .hero {
    padding: 72px 0 78px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-text {
    max-width: 10rem;
    font-size: 1.06rem;
  }

  .primary-nav {
    gap: 8px 15px;
  }

  .primary-nav a {
    font-size: 0.92rem;
  }

  .button-small {
    padding: 11px 15px;
    font-size: 0.9rem;
  }

  .intro-layout,
  .why-layout,
  .testimonial-layout,
  .contact-panel {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .intro-layout {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .intro-layout .trust-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-panel div {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .trust-panel div:last-child {
    border-right: 0;
  }

  .work-type-card {
    min-height: 170px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .work-type-card div {
    grid-column: auto;
  }

  .portfolio-feature-video {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .portfolio-feature-video .video-label {
    grid-column: auto;
  }

  .portfolio-feature-video figcaption {
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    border-left: 0;
  }

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

  .service-card-wide {
    display: grid;
    grid-column: span 3;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .service-card-wide .card-number {
    margin-bottom: 0;
  }

  .service-card-wide h3,
  .service-card-wide p {
    grid-column: 2;
  }

  .service-card-wide h3 {
    align-self: end;
    margin-bottom: 2px;
  }

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

  .steps {
    position: relative;
  }

  .steps::before {
    position: absolute;
    top: 42px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.36), transparent);
    content: "";
  }

  .step {
    z-index: 1;
  }
}

@media (min-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(570px, 1.18fr);
    gap: 58px;
  }

  .hero-text {
    max-width: 590px;
  }

  .showreel-card {
    justify-self: end;
  }

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

  .portfolio-thumb {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .primary-nav {
    padding-top: 2px;
  }

  .work-actions,
  .portfolio-feature-video {
    width: 100%;
  }

  .work-type-card {
    padding: 20px;
  }

  .category-mark {
    width: 50px;
    height: 50px;
    font-size: 0.86rem;
  }

  .portfolio-thumb {
    min-height: 280px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(2.62rem, 13.1vw, 3.3rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.28rem);
  }

  .hero-layout {
    gap: 28px;
  }

  .primary-nav {
    gap: 7px 12px;
  }

  .primary-nav a {
    font-size: 0.72rem;
  }

  .showreel-card figcaption {
    font-size: 0.84rem;
  }

  .portfolio-feature-video figcaption {
    padding: 20px;
  }

  .work-type-card {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .proof-list li {
    width: 100%;
  }

  .work-type-card h2 {
    font-size: 1.12rem;
  }

  .work-type-card p {
    font-size: 0.92rem;
  }

  .contact-panel {
    padding: 16px;
  }

  .enquiry-form {
    padding: 14px;
  }
}
