:root {
  --bg: #0f1115;
  --bg-alt: #141821;
  --surface: rgba(23, 27, 36, 0.9);
  --surface-strong: #1a1f29;
  --card: #1d232f;
  --card-soft: #202736;
  --border: rgba(255, 255, 255, 0.1);
  --text: #e5e7eb;
  --muted: #a2abb9;
  --muted-strong: #7f8794;
  --accent: #c88b2b;
  --accent-soft: rgba(200, 139, 43, 0.18);
  --accent-strong: #ddb26d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 139, 43, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(97, 76, 41, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.76) 0%, rgba(15, 17, 21, 0.86) 30%, rgba(11, 13, 17, 0.94) 100%),
    url("../images/hero.jpg") center / cover fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  opacity: 0.14;
  z-index: -1;
  animation: drift 16s ease-in-out infinite alternate;
}

body::before {
  top: -7rem;
  right: -4rem;
  background: rgba(200, 139, 43, 0.6);
}

body::after {
  bottom: -9rem;
  left: -6rem;
  background: rgba(112, 84, 45, 0.55);
  animation-duration: 22s;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.consent-dialog {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 250;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.consent-dialog__panel {
  width: min(42rem, 100%);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(12, 15, 20, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.consent-dialog h2 {
  margin: 0.8rem 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.consent-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.consent-dialog__choices {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.consent-dialog__choices label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.consent-dialog__choices input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--accent);
}

.consent-dialog__choices strong,
.consent-dialog__choices small {
  display: block;
}

.consent-dialog__choices small {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.45;
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.consent-dialog__manage,
.cookie-settings-link {
  padding: 0;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.consent-dialog__note {
  margin-top: 0.85rem !important;
  font-size: 0.85rem;
}

.consent-dialog__note a,
.cookie-settings-link:hover {
  color: var(--accent-strong);
}

.cookie-settings-link {
  display: block;
  margin: 0.85rem auto 0;
  font-size: 0.85rem;
}

.video-consent-placeholder {
  display: grid;
  place-items: center;
  gap: 0.7rem;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 1.25rem;
  color: var(--text);
  text-align: center;
  background: linear-gradient(135deg, rgba(200, 139, 43, 0.18), rgba(7, 9, 12, 0.78));
}

.video-consent-placeholder span {
  max-width: 21rem;
  color: var(--muted);
  line-height: 1.5;
}

.video-consent-placeholder button {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #0b0d11;
  font-weight: 800;
  background: var(--accent);
  cursor: pointer;
}

.showreel-preview .video-consent-placeholder {
  gap: 0.45rem;
  padding: 0.65rem;
}

.showreel-preview .video-consent-placeholder strong {
  font-size: 0.82rem;
}

.showreel-preview .video-consent-placeholder button {
  padding: 0.48rem 0.8rem;
  font-size: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(200, 139, 43, 0.15);
}

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

.section-title,
.hero-title,
.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero-layout .hero-title {
  font-size: clamp(3rem, 5.3vw, 5.45rem);
}

.section-title .accent,
.hero-title .accent,
.page-title .accent,
.brand-mark,
.text-accent {
  color: var(--accent);
}

.section-copy,
.hero-copy,
.muted {
  color: var(--muted);
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1rem auto 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 4.5rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
  flex: 0 0 auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.nav-links button {
  color: #d9dee6;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.mobile-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0;
}

.mobile-toggle span::before {
  top: -0.4rem;
}

.mobile-toggle span::after {
  top: 0.4rem;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 12, 0.95);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel .container {
  padding: 0.7rem 0 1rem;
}

.mobile-panel a,
.mobile-panel button {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  animation: float 9s ease-in-out infinite;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: 18%;
  background: radial-gradient(circle, rgba(200, 139, 43, 0.22), transparent 65%);
}

.hero::after {
  width: 13rem;
  height: 13rem;
  left: -2rem;
  bottom: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 60%);
  animation-delay: -4s;
}

.hero-bg,
.hero-bg iframe,
.hero-bg video,
.hero-bg .hero-loop,
.hero-bg .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg iframe,
.hero-bg video,
.hero-bg .hero-loop {
  object-fit: cover;
  pointer-events: none;
  border: 0;
}

.hero-bg .yt-shell,
.video-frame .yt-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg .yt-shell.is-fallback,
.video-frame .yt-shell.is-fallback {
  display: grid;
  place-items: center;
}

.hero-bg .yt-shell iframe,
.video-frame .yt-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.hero-bg .fallback {
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.2), rgba(3, 5, 8, 0.7)),
    url("../images/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-poster {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.7)),
    url("../images/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.video-poster {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.7)),
    url("../images/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  padding-top: 0;
  animation: riseIn 900ms ease both;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(23rem, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: 2rem;
}

.social-showcase {
  position: relative;
  height: min(33rem, 62vh);
  min-height: 28rem;
  isolation: isolate;
}

.phone-mock {
  position: absolute;
  bottom: 0;
  width: clamp(8rem, 12vw, 10rem);
  aspect-ratio: 9 / 19.2;
  padding: 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.65rem;
  background: linear-gradient(135deg, #313846, #07090d 52%, #4a5260);
  box-shadow: 0 2rem 3.5rem rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform-origin: bottom center;
  transition: transform 260ms ease, filter 260ms ease;
}

.phone-mock:hover {
  filter: brightness(1.12);
}

.phone-mock-left {
  left: 9%;
  z-index: 4;
  transform: rotate(-15deg) translate(0, 1.25rem);
}

.phone-mock-left:hover {
  transform: rotate(-10deg) translate(-0.6rem, -0.15rem);
}

.phone-mock-centre {
  left: 50%;
  z-index: 6;
  transform: translateX(-50%) translateY(-0.4rem);
}

.phone-mock-centre:hover {
  transform: translateX(-50%) translateY(-1rem) scale(1.025);
}

.phone-mock-right {
  right: 9%;
  z-index: 5;
  transform: rotate(15deg) translate(0, 1.25rem);
}

.phone-mock-right:hover {
  transform: rotate(10deg) translate(0.6rem, -0.15rem);
}

.phone-speaker {
  position: absolute;
  top: 0.78rem;
  left: 50%;
  z-index: 2;
  width: 3.1rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #121721;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-reel {
  background: linear-gradient(160deg, #283349 0%, #101722 44%, #bb7c2b 160%);
}

.placeholder-story {
  background: linear-gradient(160deg, #c88b2b -20%, #4d2548 42%, #121720 95%);
}

.placeholder-campaign {
  background: linear-gradient(160deg, #1d514e -20%, #14202d 49%, #7d582a 140%);
}

.instagram-screen {
  position: relative;
  color: #fff;
  background-size: cover;
}

.instagram-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.2), transparent 36%, rgba(7, 9, 12, 0.8));
}

.instagram-top,
.instagram-caption,
.instagram-actions,
.instagram-reel-tag {
  position: absolute;
  z-index: 1;
}

.instagram-top {
  top: 1rem;
  right: 0.7rem;
  left: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.58rem;
}

.story-ring {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #f4b342;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #e54d8a, 0 0 0 3px rgba(255, 255, 255, 0.75);
}

.instagram-more {
  margin-left: auto;
  letter-spacing: 0.08em;
}

.instagram-reel-tag {
  top: 3.3rem;
  left: 0.75rem;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.35rem;
  background: rgba(8, 10, 14, 0.34);
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}

.instagram-actions {
  right: 0.75rem;
  bottom: 4.4rem;
  display: grid;
  gap: 0.75rem;
  font-size: 1.2rem;
}

.instagram-caption {
  right: 0.75rem;
  bottom: 1.2rem;
  left: 0.75rem;
  display: grid;
  gap: 0.24rem;
  font-size: 0.58rem;
}

.instagram-caption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.48rem;
}

.facebook-screen {
  padding: 0.75rem 0.56rem;
  color: #18263c;
  background: #f7f8fa;
  font-family: Arial, sans-serif;
}

.facebook-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.58rem;
  border-bottom: 1px solid #dce1e8;
  color: #1877f2;
  font-size: 0.74rem;
}

.facebook-top b {
  letter-spacing: -0.04em;
}

.facebook-profile {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  margin-top: 0.7rem;
}

.facebook-profile i {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #3d5476);
}

.facebook-profile span,
.facebook-profile small {
  display: grid;
}

.facebook-profile strong {
  font-size: 0.52rem;
}

.facebook-profile small {
  margin-top: 0.12rem;
  color: #667085;
  font-size: 0.41rem;
}

.facebook-copy {
  margin: 0.65rem 0;
  font-size: 0.52rem;
  line-height: 1.4;
}

.facebook-media {
  display: grid;
  min-height: 7.5rem;
  place-items: center;
  border: 1px dashed #8da1bf;
  color: #587195;
  background: linear-gradient(145deg, #dce8f7, #9aacc0);
  font-size: 0.48rem;
  text-align: center;
}

.facebook-reactions {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: #5d6d85;
  font-size: 0.4rem;
}

.facebook-reactions span {
  color: #e9474d;
}

.showreel-preview {
  position: absolute;
  top: -2rem;
  right: 5%;
  left: 5%;
  z-index: 1;
  display: flex;
  aspect-ratio: 16 / 8.4;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  background: #090b0f;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.38);
}

.showreel-preview .yt-shell,
.showreel-preview .yt-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showreel-preview .yt-shell {
  z-index: 0;
}

.showreel-preview .yt-shell iframe {
  border: 0;
  pointer-events: none;
}

.showreel-preview.has-consent-placeholder .showreel-label,
.showreel-preview.has-consent-placeholder .showreel-copy {
  display: none;
}

.showreel-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.24), rgba(5, 7, 10, 0.68));
  pointer-events: none;
}

.showreel-label,
.showreel-copy {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.showreel-label {
  top: 0.85rem;
  left: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showreel-copy {
  right: 1rem;
  bottom: 0.75rem;
  font-size: 0.56rem;
  line-height: 1.35;
  text-align: right;
}

.showreel-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.45rem;
}

.phone-nav {
  position: absolute;
  right: 0.85rem;
  bottom: 0.88rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.phone-nav i {
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.hero-copy {
  margin: 1.35rem 0 0;
  max-width: 39rem;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.65;
}

.hero-subtitle {
  margin: 1.1rem 0 0;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
}

.hero-actions,
.button-row,
.pill-row,
.filter-row,
.metric-row,
.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #0b0d11;
  background: linear-gradient(180deg, #e3b86f, var(--accent));
}

.btn-outline {
  color: #f1d8ab;
  border: 1px solid rgba(200, 139, 43, 0.5);
  background: rgba(200, 139, 43, 0.08);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.2rem;
  margin: 0.75rem auto 0;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 139, 43, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.card-soft {
  background: rgba(255, 255, 255, 0.03);
}

.card-pad {
  padding: 1.5rem;
}

.card-pad-lg {
  padding: 2rem;
}

.card-media {
  height: 14rem;
  background:
    linear-gradient(135deg, rgba(200, 139, 43, 0.26), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.card-media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-title {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.card-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.price {
  margin: 1rem 0 0.3rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f2d4a2;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===== Pricing page ===== */
.page-intro {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-content {
  padding-top: 1.5rem;
}

.page-hero.pricing-hero,
.page-hero.contact-hero {
  padding-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.58), rgba(8, 10, 14, 0.9)),
    url("../images/hero.jpg") center 42% / cover no-repeat;
  isolation: isolate;
}

.pricing-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(200, 139, 43, 0.12), transparent 45%, rgba(0, 0, 0, 0.24));
}

.page-hero.blog-hero {
  padding-bottom: 1rem;
}

.blog-content {
  padding-top: 1.5rem;
}

.post-date {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero.about-hero {
  padding-bottom: 1rem;
}

.services-hero {
  padding: 6.5rem 0 2rem;
  background:
    linear-gradient(110deg, rgba(8, 10, 14, 0.72), rgba(8, 10, 14, 0.9) 58%),
    linear-gradient(110deg, rgba(200, 139, 43, 0.14), transparent 48%),
    url("../images/hero.jpg") center 42% / cover no-repeat;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.services-hero-copy .page-copy {
  max-width: 39rem;
  margin: 1.2rem 0 0;
  text-align: left;
}

.services-hero .page-title {
  max-width: 16ch;
  margin: 1.1rem 0 0;
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.services-hero-menu {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(8, 11, 16, 0.62);
  box-shadow: var(--shadow);
}

.services-hero-menu > .eyebrow {
  width: max-content;
  margin-bottom: 0.35rem;
}

.services-hero-item {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: inherit;
  text-decoration: none;
}

.services-hero-item > span:first-child {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.services-hero-item strong,
.services-hero-item small {
  display: block;
}

.services-hero-item strong {
  color: var(--text);
  font-size: 1rem;
}

.services-hero-item small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.services-hero-item b {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.services-hero-item:hover b {
  transform: translate(0.18rem, -0.18rem);
}

.services-overview .section-title {
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.05;
}

.services-main > .section:not(.services-hero) {
  padding: 3.5rem 0;
}

.services-main > .services-overview {
  padding: 2rem 0 3.5rem;
}

.contact-hero + .section {
  padding-top: 3rem;
}

.services-overview [id] {
  scroll-margin-top: 6rem;
}

.services-path-grid .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-path-grid .btn {
  margin-top: 1.5rem;
}

.about-content {
  padding-top: 1.5rem;
}

/* The About-page assurance cards sit inside one half of a two-column layout.
   Keep them as a readable vertical list rather than squeezing three cards across. */
.about-content .trust-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.about-content .trust-item {
  width: 100%;
}

.trust-item p {
  min-width: 0;
  margin: 0;
}

.page-hero.portfolio-hero {
  padding-bottom: 1rem;
}

.portfolio-video-section {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.portfolio-gallery-section {
  padding-top: 2rem;
}

.pricing-intro {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.pricing-intro h2,
.pricing-section-heading h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.pricing-intro p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-section-heading {
  margin-bottom: 1.25rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  width: 100%;
  min-height: 15rem;
  padding: 1.5rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-card .card-title {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.pricing-card .card-copy {
  max-width: 28rem;
}

.pricing-card .price {
  margin-top: auto;
  font-size: 1.9rem;
}

.pricing-card-number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pricing-card-featured {
  border-color: rgba(200, 139, 43, 0.7);
  background:
    linear-gradient(135deg, rgba(200, 139, 43, 0.16), transparent 55%),
    var(--surface);
}

.pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-cta p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

#enquiry {
  scroll-margin-top: 6rem;
}

.process-section {
  margin: 4.5rem 0 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.process-section h2 {
  margin: 0.5rem 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.case-lead {
  max-width: 44rem;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.8;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-list li {
  padding-left: 1.25rem;
  position: relative;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.detail-list strong,
.process-list strong {
  color: var(--text);
}

.detail-list-plain {
  list-style: none;
  padding: 0;
}

.detail-list-plain div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-list-plain div:first-child {
  padding-top: 0.5rem;
}

.detail-list-plain span {
  color: var(--muted);
  line-height: 1.6;
}

.detail-list-plain b {
  color: #f2d4a2;
}

.process-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0 0;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-list li {
  padding-left: 0.5rem;
}

.process-list span {
  display: block;
  margin-top: 0.25rem;
}

.process-list-inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0;
  padding-left: 1.25rem;
}

.process-list-inline li {
  padding-left: 0.35rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #d5dbe4;
  line-height: 1.6;
}

.check {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: #0b0d11;
  background: linear-gradient(180deg, #e3b86f, var(--accent));
  font-weight: 800;
  font-size: 0.82rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.card-stack {
  display: grid;
  gap: 1rem;
}

.media-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #10151d;
  box-shadow: var(--shadow);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.video-frame .content {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.video-frame .hero-overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.play-button {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e3b86f, var(--accent));
  color: #0b0d11;
  font-size: 1.1rem;
  box-shadow: 0 18px 45px rgba(200, 139, 43, 0.35);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0b0d11;
  background: linear-gradient(180deg, #e3b86f, var(--accent));
  flex: 0 0 auto;
}

.trust-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-note {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-note a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.label {
  color: #c9ced7;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(200, 139, 43, 0.75);
  box-shadow: 0 0 0 4px rgba(200, 139, 43, 0.15);
}

.textarea {
  min-height: 11rem;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  align-items: stretch;
}

.filter-row {
  margin: 0 0 1.5rem;
}

.filter-btn {
  cursor: pointer;
}

.filter-btn.is-active {
  background: linear-gradient(180deg, #e3b86f, var(--accent));
  color: #0b0d11;
}

.project-card,
.blog-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 139, 43, 0.55);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card.is-hidden,
.blog-card.is-hidden {
  display: none;
}

.project-card .meta {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

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

.testimonial-viewport {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #f2d4a2;
}

.testimonial-stars span {
  font-size: 1.05rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.icon-btn {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 139, 43, 0.45);
  background: rgba(200, 139, 43, 0.08);
  color: #f3d9b0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.dot.is-active {
  width: 2rem;
  background: var(--accent);
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 10, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer h4,
.footer h3 {
  margin: 0 0 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  text-align: center;
  font-size: 0.9rem;
}

.page-hero {
  padding: 6.25rem 0 3rem;
}

main > .page-hero:not(.pricing-hero):not(.contact-hero) {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.64), rgba(8, 10, 14, 0.9)),
    url("../images/hero.jpg") center 42% / cover no-repeat;
}

.page-hero .page-copy {
  margin: 1rem auto 0;
  max-width: 46rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 1.15rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.status {
  color: #dfe4eb;
}

.article-list {
  display: grid;
  gap: 1.25rem;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
}

.legal h2,
.legal h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.45rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.8;
}

.legal hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.3rem 0;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.logo-tile {
  min-height: 7rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.logo-tile img {
  max-height: 4rem;
  object-fit: contain;
  filter: saturate(0.9) brightness(1.05);
}

.stack-gap {
  gap: 1.5rem;
}

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

.small {
  font-size: 0.93rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.05);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(12px, -10px, 0) scale(1.08);
  }
}

.split-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@media (max-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-hero-menu {
    max-width: 48rem;
  }

  .grid-3,
  .project-grid,
  .footer-grid,
  .logo-wall,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.75fr);
    gap: 2rem;
  }

  .social-showcase {
    height: 27rem;
    min-height: 24rem;
  }

  .phone-mock {
    width: clamp(7.25rem, 15vw, 9rem);
  }
}

/* ===== Case Study Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 9, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--surface-strong);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 280ms ease;
  overflow: hidden;
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 13, 18, 0.72);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  background: rgba(200, 139, 43, 0.18);
  border-color: rgba(200, 139, 43, 0.55);
  transform: rotate(90deg);
}

.modal-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  padding: 2rem;
}

.modal-content .case-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #10151d;
  margin-bottom: 1.75rem;
}

.modal-content .case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content .case-title {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.modal-content .case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.modal-content .case-body {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.modal-content .case-body p {
  margin: 0 0 1rem;
}

.modal-content .case-placeholder {
  display: grid;
  place-items: center;
  min-height: 18rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  text-align: center;
  padding: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .modal-overlay {
    padding: 0.75rem;
    align-items: end;
  }

  .modal-dialog {
    max-height: 92vh;
    border-radius: var(--radius-lg);
  }

  .modal-content {
    padding: 1.25rem;
    padding-top: 3.25rem;
  }
}

@media (max-width: 760px) {
  .section.services-hero {
    padding: 5.75rem 0 1.75rem;
  }

  .services-main > .section:not(.services-hero) {
    padding: 3rem 0;
  }

  .services-main > .services-overview {
    padding: 1.5rem 0 3rem;
  }

  .services-hero .page-title {
    max-width: 14ch;
    font-size: clamp(2.1rem, 8vw, 2.55rem);
  }

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

  .services-hero-menu {
    padding: 1.1rem;
  }

  .services-hero-item {
    gap: 0.6rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .page-title {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .section-copy,
  .hero-copy,
  .page-copy {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1rem;
  }

  .hero-layout .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-copy {
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .social-showcase {
    width: min(23rem, 100%);
    height: 22rem;
    min-height: 22rem;
    margin: 0 auto;
  }

  .phone-mock {
    width: clamp(5.75rem, 25vw, 6.5rem);
    padding: 0.38rem;
    border-radius: 1.25rem;
  }

  .phone-mock-left {
    left: 2.25rem;
  }

  .phone-mock-right {
    right: 2.25rem;
  }

  .phone-mock-centre {
    transform: translateX(-50%);
  }

  .phone-screen {
    border-radius: 0.92rem;
  }

  .phone-speaker {
    top: 0.6rem;
    width: 2.3rem;
    height: 0.28rem;
  }

  .phone-nav {
    right: 0.62rem;
    bottom: 0.62rem;
    left: 0.62rem;
  }

  .phone-nav i {
    width: 0.44rem;
    height: 0.44rem;
  }

  .instagram-top {
    top: 0.8rem;
  }

  .instagram-actions {
    bottom: 3.7rem;
    gap: 0.55rem;
    font-size: 1rem;
  }

  .instagram-caption {
    bottom: 0.85rem;
  }

  .showreel-preview {
    top: 0;
    right: 15%;
    left: 15%;
    z-index: 7;
    border-radius: 1rem;
  }

  .showreel-label {
    top: 0.6rem;
    left: 0.7rem;
    font-size: 0.5rem;
  }

  .showreel-copy {
    right: 0.7rem;
    bottom: 0.55rem;
    font-size: 0.45rem;
  }

  .hero-content .eyebrow {
    max-width: calc(100vw - 1.5rem);
    white-space: normal;
    text-align: center;
    padding-inline: 0.7rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
    margin-inline: auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .section {
    padding: 3rem 0;
  }

  .grid-3,
  .project-grid,
  .footer-grid,
  .logo-wall,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-bg {
    overflow: hidden;
  }

  .hero-bg .yt-shell {
    overflow: hidden;
  }

  .hero-bg .yt-shell iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    word-break: normal;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.7rem);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: 5.25rem;
  }

  .card-pad-lg {
    padding: 1.35rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .pricing-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .process-section {
    margin-top: 3rem;
    padding-top: 2.25rem;
  }

  .process-list-inline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
