:root {
  color-scheme: dark;

  --color-bg: #050607;
  --color-bg-elevated: #0d0e11;
  --color-bg-soft: #14161b;
  --color-panel: #0b0c0f;
  --color-panel-strong: #111318;
  --color-text: #f8f4ee;
  --color-text-muted: #a9a097;
  --color-text-soft: #d8d0c7;
  --color-line: rgba(248, 244, 238, 0.12);
  --color-line-strong: rgba(248, 244, 238, 0.26);
  --color-accent: #943056;
  --color-accent-strong: #c1476e;
  --color-accent-soft: rgba(193, 71, 110, 0.16);
  --color-focus: #f3c8d7;

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1220px;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-soft: 0 22px 56px rgba(0, 0, 0, 0.28);
  --shadow-lift: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.025), rgba(248, 244, 238, 0) 280px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--color-bg);
  background-size: auto, 96px 96px, auto;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

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

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent-strong);
  color: #fff;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform var(--transition);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(22px);
  transition: background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--color-line);
  background: rgba(5, 6, 7, 0.95);
}

.site-nav {
  display: flex;
  min-width: 0;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand::before,
.footer-brand::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("../assets/logos/berry-creative-mark.svg") center / contain no-repeat;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  border-radius: 999px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 12px 13px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-text);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  border: 1px solid var(--color-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-inset);
  color: var(--color-text);
}

.nav-menu .nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-inset);
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition);
}

.nav-toggle-line:nth-of-type(2) {
  transform: translateY(-5px);
}

.nav-toggle-line:nth-of-type(3) {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - var(--header-height) - 18px));
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  isolation: isolate;
}

.hero::after,
.services-hero::after,
.not-found::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 244, 238, 0.32), transparent);
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
  opacity: 0.58;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.97) 0%, rgba(5, 6, 7, 0.8) 50%, rgba(5, 6, 7, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.76) 0%, rgba(5, 6, 7, 0.16) 46%, rgba(5, 6, 7, 0.94) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 116px 100px;
}

.eyebrow,
.section-label,
.tag,
.card-number {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.positioning h2,
.split-heading h2,
.why-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1040px;
  margin-top: 20px;
  font-size: 5.35rem;
  line-height: 0.94;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--color-text-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero-trust {
  max-width: 760px;
  margin: 30px 0 0;
  border-left: 1px solid var(--color-accent-strong);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-left: 18px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  padding: 15px 22px;
  text-align: center;
  box-shadow: var(--shadow-inset);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.button-primary {
  border: 1px solid var(--color-accent-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    var(--color-accent);
  box-shadow: var(--shadow-inset), 0 16px 34px rgba(148, 48, 86, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-accent-strong);
  box-shadow: var(--shadow-inset), 0 20px 42px rgba(148, 48, 86, 0.28);
}

.button-secondary {
  border: 1px solid var(--color-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  color: var(--color-text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
}

.button-compact {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 0.88rem;
}

.section {
  padding-block: 124px;
}

.section-ruled {
  border-block: 1px solid var(--color-line);
}

.positioning {
  background: var(--color-bg);
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: 92px;
}

.positioning-grid > *,
.why-grid > *,
.approach-grid > *,
.portfolio-hero-grid > *,
.services-hero-grid > *,
.service-process-grid > *,
.investment-grid > *,
.contact-layout > *,
.booking-layout > * {
  min-width: 0;
}

.positioning h2,
.section-heading h2,
.split-heading h2,
.why-section h2,
.final-cta h2 {
  font-size: 3.55rem;
  line-height: 0.98;
}

.positioning p:not(.section-label),
.section-heading > p:last-child,
.service-card p,
.work-card p,
.reason-item p,
.final-cta p,
.footer-brand-block p,
.footer-legal {
  color: var(--color-text-muted);
}

.positioning p:not(.section-label) {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.78;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 50px;
}

.section-heading .eyebrow,
.split-heading .eyebrow,
.why-section .eyebrow,
.final-cta .eyebrow {
  margin-bottom: 16px;
}

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

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

.service-card,
.work-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--color-panel);
  box-shadow: var(--shadow-inset), var(--shadow-soft);
}

.service-card,
.work-card,
.portfolio-card,
.trust-note-card,
.project-spotlight,
.contact-form,
.booking-card,
.portfolio-hero-panel,
.services-hero-panel {
  position: relative;
  isolation: isolate;
}

.service-card::before,
.trust-note-card::before,
.portfolio-hero-panel::before,
.services-hero-panel::before,
.contact-form::before,
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 244, 238, 0.28), transparent);
  pointer-events: none;
}

.service-card,
.work-card {
  box-shadow: var(--shadow-inset), var(--shadow-soft);
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 32px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--color-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--color-panel-strong);
  box-shadow: var(--shadow-inset), var(--shadow-lift);
}

.card-number {
  color: #d6a4b7;
  margin-bottom: 78px;
}

.service-card h3,
.work-card h3,
.reason-item h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.18;
}

.service-card p:not(.card-number),
.reason-item p,
.work-card p {
  margin: 14px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.93rem;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 10px;
  background: var(--color-accent-strong);
  transition: width var(--transition);
}

.text-link:hover::after {
  width: 48px;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.split-heading > div {
  max-width: 810px;
}

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

.work-card {
  overflow: hidden;
  background: var(--color-panel-strong);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-line-strong);
  background: #191c22;
  box-shadow: var(--shadow-lift);
}

.work-card:focus-within {
  border-color: var(--color-line-strong);
  background: #191c22;
}

.is-hidden {
  display: none !important;
}

.portfolio-card[hidden],
.project-spotlight[hidden] {
  display: none !important;
}

.work-card a {
  display: grid;
  height: 100%;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--color-line);
  filter: saturate(0.88) contrast(1.04);
}

.work-card-body {
  padding: 24px;
}

.tag {
  margin-bottom: 12px;
  color: #d6a4b7;
}

.why-section {
  border-block: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.018), rgba(248, 244, 238, 0)),
    var(--color-bg-elevated);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin-bottom: 0;
}

.reason-list {
  display: grid;
  gap: 0;
}

.reason-item {
  border-bottom: 1px solid var(--color-line);
  padding-block: 34px;
}

.reason-item:first-child {
  padding-top: 0;
}

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

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

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  gap: 8px;
  min-height: 150px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--color-panel);
  box-shadow: var(--shadow-inset);
  padding: 28px;
}

.proof-list strong {
  color: var(--color-text);
  font-size: 1.02rem;
  line-height: 1.2;
}

.proof-list span {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.trust-note-card {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--color-panel);
  box-shadow: var(--shadow-inset), var(--shadow-soft);
}

.trust-note-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.22rem;
  line-height: 1.2;
}

.trust-note-card p:not(.tag) {
  margin: 14px 0 0;
  color: var(--color-text-muted);
}

.final-cta {
  border-top: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(193, 71, 110, 0.12), rgba(5, 6, 7, 0) 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--color-panel);
  background-size: auto, 96px 96px, auto;
  padding-block: 122px;
}

.final-cta-inner {
  max-width: 940px;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.74;
}

.final-cta .button {
  margin-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #040506;
  padding-block: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(190px, auto);
  gap: 38px 54px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 470px;
  margin: 14px 0 0;
  font-size: 0.93rem;
}

.footer-social-note {
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(248, 244, 238, 0.02);
  opacity: 0.82;
  transition: border-color var(--transition), background var(--transition), opacity var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--color-line-strong);
  background: rgba(248, 244, 238, 0.055);
  opacity: 1;
}

.footer-socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1) saturate(0) brightness(1.18);
  transition: filter var(--transition), opacity var(--transition);
}

.footer-socials a:hover img,
.footer-socials a:focus-visible img {
  opacity: 1;
  filter: grayscale(1) saturate(0) brightness(1.45);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-nav a,
.footer-contact a {
  color: var(--color-text-muted);
  font-weight: 700;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"],
.footer-contact a:hover {
  color: var(--color-text);
}

.portfolio-hero {
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(193, 71, 110, 0.11), rgba(5, 6, 7, 0) 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--color-bg);
  background-size: auto, 96px 96px, auto;
  padding-block: 128px 96px;
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 86px;
  align-items: end;
}

.portfolio-hero-copy {
  max-width: 960px;
}

.portfolio-hero h1,
.portfolio-section-heading h2,
.approach-grid h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 4.55rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.portfolio-hero .eyebrow,
.portfolio-section-heading .eyebrow,
.approach-grid .eyebrow {
  margin-bottom: 16px;
}

.portfolio-hero-copy p:not(.eyebrow),
.portfolio-hero-panel,
.approach-list p,
.portfolio-card p,
.project-spotlight-copy p,
.project-deliverables dd {
  color: var(--color-text-muted);
}

.portfolio-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 1.1rem;
  line-height: 1.76;
}

.portfolio-hero .button {
  margin-top: 34px;
}

.portfolio-hero-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 12, 15, 0.82);
  box-shadow: var(--shadow-inset), var(--shadow-soft);
  padding: 30px;
}

.portfolio-hero-panel p {
  margin: 0 0 18px;
  color: var(--color-text);
  font-weight: 800;
}

.portfolio-hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
}

.portfolio-hero-panel li {
  padding-left: 4px;
}

.portfolio-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.portfolio-section-heading > div:first-child {
  max-width: 760px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-inset);
  color: var(--color-text-soft);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 16px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.filter-button:hover,
.filter-button.active,
.filter-button[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(193, 71, 110, 0.2), rgba(193, 71, 110, 0.08));
  color: var(--color-text);
}

.project-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
  box-shadow: var(--shadow-lift);
}

.project-spotlight-media,
.project-spotlight-copy {
  background: var(--color-panel);
}

.project-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.project-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.project-spotlight-copy h2,
.project-spotlight-copy h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 2.85rem;
  line-height: 0.98;
}

.project-spotlight-copy > p:not(.tag) {
  margin: 22px 0 0;
}

.project-deliverables {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.project-deliverables div {
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}

.project-deliverables dt {
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-deliverables dd {
  margin: 8px 0 0;
}

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

.portfolio-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016)),
    var(--color-panel-strong);
  box-shadow: var(--shadow-inset), var(--shadow-soft);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--color-line-strong);
  background: #191c22;
  box-shadow: var(--shadow-lift);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--color-line);
  filter: saturate(0.88) contrast(1.04);
}

.portfolio-card-body {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 26px;
}

.portfolio-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.22rem;
  line-height: 1.18;
}

.portfolio-card p:not(.tag) {
  margin: 14px 0 0;
}

.portfolio-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--color-text);
  font-weight: 800;
}

.portfolio-card a::after {
  content: "";
  width: 30px;
  height: 1px;
  margin-left: 10px;
  background: var(--color-accent-strong);
  transition: width var(--transition);
}

.portfolio-card a:hover::after {
  width: 44px;
}

.approach-section {
  background: var(--color-bg-elevated);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.approach-list {
  display: grid;
  gap: 0;
}

.approach-list article {
  border-bottom: 1px solid var(--color-line);
  padding-block: 28px;
}

.approach-list article:first-child {
  padding-top: 0;
}

.approach-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.approach-list span {
  display: block;
  margin-bottom: 18px;
  color: #d6a4b7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.approach-list h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.approach-list p {
  margin: 12px 0 0;
}

.footer-contact {
  display: grid;
  gap: 4px;
  justify-items: end;
  margin: 0;
  color: var(--color-text-muted);
  font-style: normal;
  text-align: right;
}

.footer-contact span {
  color: var(--color-text);
  font-weight: 800;
}

.footer-contact a {
  white-space: nowrap;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
  font-size: 0.88rem;
}

.services-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  isolation: isolate;
}

.services-hero-media,
.services-hero-media img,
.services-hero-scrim {
  position: absolute;
  inset: 0;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  opacity: 0.4;
}

.services-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.84) 50%, rgba(5, 6, 7, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.74) 0%, rgba(5, 6, 7, 0.24) 48%, rgba(5, 6, 7, 0.95) 100%);
}

.services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 78px;
  align-items: end;
  padding-block: 138px 108px;
}

.services-hero-copy {
  max-width: 940px;
}

.services-hero-copy .eyebrow,
.service-block-main .eyebrow,
.investment-grid .eyebrow {
  margin-bottom: 16px;
}

.services-hero-copy h1,
.service-block-main h3,
.investment-grid h2 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
}

.services-hero-copy h1 {
  max-width: 1040px;
  font-size: 4.55rem;
  line-height: 0.96;
}

.services-hero-copy p:not(.eyebrow),
.services-hero-panel,
.service-block-main p:not(.eyebrow),
.service-block-panel p,
.service-block-panel li,
.process-step p,
.investment-copy p {
  color: var(--color-text-muted);
}

.services-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  line-height: 1.76;
}

.services-hero-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(11, 12, 15, 0.86);
  box-shadow: var(--shadow-inset), var(--shadow-soft);
  padding: 30px;
}

.services-hero-panel p {
  margin: 0 0 18px;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.25;
}

.services-hero-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 18px;
}

.services-hero-panel li {
  padding-left: 4px;
  line-height: 1.55;
}

.services-breakdown {
  background: var(--color-bg);
}

.service-block-list {
  border-bottom: 1px solid var(--color-line);
}

.service-block {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(0, 0.88fr) minmax(310px, 0.56fr);
  gap: 50px;
  align-items: start;
  border-top: 1px solid var(--color-line);
  padding-block: 58px;
}

.service-index {
  margin: 0;
  color: #d6a4b7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.service-block-main h3 {
  max-width: 760px;
  font-size: 2.36rem;
  line-height: 1;
}

.service-block-main p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  font-size: 1.04rem;
  line-height: 1.78;
}

.service-block-panel {
  display: grid;
  gap: 24px;
  border-left: 1px solid var(--color-line);
  padding-left: 32px;
}

.service-block-panel h4 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-block-panel p {
  margin: 0;
  line-height: 1.62;
}

.service-block-panel .clean-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.service-block-panel .clean-list li::marker {
  color: var(--color-accent-strong);
}

.service-block-link {
  margin-top: 2px;
  padding-top: 0;
}

.service-process {
  background: var(--color-bg-elevated);
}

.service-process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.process-step {
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
}

.process-step span {
  display: block;
  margin-bottom: 18px;
  color: #d6a4b7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.process-step h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.process-step p {
  margin: 12px 0 0;
}

.investment-section {
  background:
    linear-gradient(180deg, rgba(193, 71, 110, 0.09), rgba(5, 6, 7, 0) 42%),
    var(--color-bg);
}

.investment-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 94px;
  align-items: start;
}

.investment-grid h2 {
  font-size: 3.3rem;
  line-height: 0.98;
}

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

.investment-copy p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.78;
}

.investment-copy p + p {
  margin-top: 18px;
}

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

.investment-checklist li {
  position: relative;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-soft);
  font-weight: 700;
  line-height: 1.45;
  padding: 14px 0 0 20px;
}

.investment-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-strong);
}

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

.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 94px;
  align-items: start;
}

.contact-copy h2,
.booking-copy h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.contact-copy .eyebrow,
.booking-copy .eyebrow {
  margin-bottom: 16px;
}

.contact-copy > p,
.booking-copy p:not(.eyebrow),
.contact-note li,
.contact-info,
.form-status,
.booking-card p {
  color: var(--color-text-muted);
}

.contact-copy > p,
.booking-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.78;
}

.contact-note {
  margin-top: 34px;
  border-top: 1px solid var(--color-line);
  padding-top: 26px;
}

.contact-note h3,
.booking-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.18rem;
  line-height: 1.22;
}

.contact-note .clean-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-note .clean-list li::marker {
  color: var(--color-accent-strong);
}

.contact-info {
  display: grid;
  gap: 7px;
  margin: 34px 0 0;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
  font-style: normal;
}

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

.contact-info a {
  width: fit-content;
  color: var(--color-text);
  font-weight: 800;
  transition: color var(--transition);
}

.contact-info a:hover {
  color: var(--color-text-soft);
}

.contact-meta-note {
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--color-panel);
  box-shadow: var(--shadow-inset), var(--shadow-lift);
  padding: 38px;
}

.form-guidance {
  margin: 0 0 6px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.62;
  padding-bottom: 20px;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row label {
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  color: var(--color-text);
  font: inherit;
  line-height: 1.4;
  min-height: 52px;
  padding: 14px 15px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.form-row textarea {
  min-height: 168px;
  resize: vertical;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(215, 209, 202, 0.5);
}

.form-help {
  margin: -2px 0 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(241, 199, 215, 0.7);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(180, 58, 100, 0.18);
  outline: none;
}

.form-row select option {
  background: #101115;
  color: var(--color-text);
}

.contact-form .button {
  width: fit-content;
  margin-top: 8px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.booking-section {
  background: var(--color-bg-elevated);
}

.booking-card {
  display: grid;
  min-height: 430px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(193, 71, 110, 0.12), rgba(255, 255, 255, 0.018) 42%),
    var(--color-panel);
  box-shadow: var(--shadow-inset), var(--shadow-lift);
  padding: 42px;
}

.booking-card > div {
  max-width: 520px;
}

.booking-card .tag {
  margin-bottom: 14px;
}

.booking-card p:not(.tag) {
  margin: 18px 0 0;
  line-height: 1.65;
}

.booking-card .button {
  margin-top: 28px;
}

.not-found {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.82) 48%, rgba(7, 8, 10, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.62) 0%, rgba(7, 8, 10, 0.94) 100%),
    url("../assets/images/hero-production-still.svg") center / cover no-repeat;
}

.not-found-inner {
  max-width: 780px;
  padding-block: 116px;
}

.not-found h1 {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 4.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-text-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 4.15rem;
  }

  .services-hero-copy h1 {
    font-size: 3.35rem;
  }

  .portfolio-hero h1,
  .portfolio-section-heading h2,
  .approach-grid h2 {
    font-size: 3.35rem;
  }

  .positioning h2,
  .section-heading h2,
  .split-heading h2,
  .why-section h2,
  .final-cta h2,
  .investment-grid h2,
  .contact-copy h2,
  .booking-copy h2 {
    font-size: 3rem;
  }

  .positioning-grid,
  .why-grid,
  .approach-grid,
  .portfolio-hero-grid,
  .services-hero-grid,
  .service-process-grid,
  .investment-grid,
  .contact-layout,
  .booking-layout {
    gap: 52px;
  }

  .service-block {
    gap: 34px;
  }

  .service-block-main h3 {
    font-size: 2rem;
  }

  .project-spotlight-copy h2,
  .project-spotlight-copy h3 {
    font-size: 2.35rem;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1fr) auto;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 20px auto;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 24px);
    overflow: auto;
    transform: translateY(-12px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: rgba(11, 12, 15, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-menu a {
    border-radius: var(--radius-sm);
    padding: 15px 14px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: min(640px, calc(100svh - var(--header-height) - 28px));
  }

  .hero-inner {
    padding-block: 82px 72px;
  }

  .positioning-grid,
  .why-grid,
  .approach-grid,
  .portfolio-hero-grid,
  .services-hero-grid,
  .service-process-grid,
  .investment-grid,
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .split-heading,
  .portfolio-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .project-spotlight {
    grid-template-columns: 1fr;
  }

  .project-spotlight-media img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .services-hero-grid {
    align-items: start;
    padding-block: 96px 76px;
  }

  .services-hero-panel {
    max-width: 620px;
  }

  .contact-copy,
  .booking-copy {
    max-width: 760px;
  }

  .service-block {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px 30px;
  }

  .service-block-panel {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(100% - 28px, var(--max-width));
  }

  .brand {
    font-size: 0.96rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.72) 0%, rgba(7, 8, 10, 0.56) 42%, rgba(7, 8, 10, 0.95) 100%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.56));
  }

  .hero-inner {
    padding-block: 58px 48px;
  }

  .hero h1 {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .hero-copy,
  .final-cta p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 22px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-trust {
    margin-top: 22px;
    font-size: 0.9rem;
  }

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

  .section {
    padding-block: 72px;
  }

  .positioning h2,
  .section-heading h2,
  .split-heading h2,
  .why-section h2,
  .final-cta h2,
  .services-hero-copy h1,
  .investment-grid h2,
  .contact-copy h2,
  .booking-copy h2,
  .portfolio-hero h1,
  .portfolio-section-heading h2,
  .approach-grid h2 {
    font-size: 2.14rem;
    line-height: 1.05;
  }

  .portfolio-hero {
    padding-block: 72px 58px;
  }

  .portfolio-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .portfolio-hero-panel,
  .services-hero-panel,
  .contact-form,
  .booking-card,
  .project-spotlight-copy,
  .portfolio-card-body {
    padding: 22px;
  }

  .project-spotlight-copy h2,
  .project-spotlight-copy h3 {
    font-size: 1.85rem;
    line-height: 1.05;
  }

  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    width: 100%;
  }

  .filter-button {
    flex: 0 0 auto;
    white-space: nowrap;
    width: auto;
  }

  .services-grid,
  .work-grid,
  .portfolio-grid,
  .trust-note-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .services-hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.8) 0%, rgba(7, 8, 10, 0.62) 42%, rgba(7, 8, 10, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.62));
  }

  .services-hero-grid {
    padding-block: 66px 58px;
  }

  .services-hero-copy p:not(.eyebrow),
  .investment-copy p,
  .contact-copy > p,
  .booking-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .contact-form .button {
    width: 100%;
  }

  .booking-card {
    min-height: 340px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 38px;
  }

  .service-block-main h3 {
    font-size: 1.62rem;
    line-height: 1.08;
  }

  .service-block-main p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .service-block-panel {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--color-line);
    padding-top: 22px;
    padding-left: 0;
  }

  .service-process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-number {
    margin-bottom: 44px;
  }

  .trust-note-card {
    padding: 26px;
  }

  .not-found-inner {
    padding-block: 74px;
  }

  .not-found h1 {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .not-found p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .services-hero-copy h1 {
    font-size: 2.18rem;
  }
}
