:root {
  --plum: #320c34;
  --plum-dark: #1e0720;
  --magenta: #e400d2;
  --cream: #f6f1eb;
  --ink: #171218;
  --line: rgba(50, 12, 52, 0.18);
  --sans: var(--font-geist-sans), Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

.section-shell {
  width: min(1420px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 86px;
  padding: 14px 4.8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--plum);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(20, 1, 22, 0.2);
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: 202px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 46px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
  opacity: 0.82;
  transition: opacity 200ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.nav-links > a:hover {
  opacity: 1;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta:hover {
  color: var(--plum);
  background: var(--magenta);
  border-color: var(--magenta);
}

.nav-cta span,
.button span,
.text-link span {
  transition: transform 220ms ease;
}

.nav-cta:hover span,
.button:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 86px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--plum-dark);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  animation: hero-scale 16s ease-out both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 7, 32, 0.97) 0%, rgba(50, 12, 52, 0.73) 43%, rgba(20, 3, 22, 0.18) 76%),
    linear-gradient(0deg, rgba(22, 3, 23, 0.8) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(228, 0, 210, 0.45);
  border-radius: 50%;
  animation: float-orbit 9s ease-in-out infinite alternate;
}

.orbit-one {
  right: -13vw;
  top: 8%;
  width: 45vw;
  aspect-ratio: 1;
}

.orbit-two {
  right: 3vw;
  top: 28%;
  width: 16vw;
  aspect-ratio: 1;
  animation-delay: -4s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0 164px;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  opacity: 0;
  animation: rise-in 800ms 250ms ease-out forwards;
}

.hero-kicker span {
  width: 38px;
  height: 1px;
  background: var(--magenta);
}

.hero h1 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(4.8rem, 10.2vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.74;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-left: 0.42em;
  color: var(--magenta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.12;
  text-transform: none;
  opacity: 0;
  transform: translateY(50px);
  animation: rise-in 900ms 550ms ease-out forwards;
}

.hero-bottom {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 70px;
}

.hero-bottom > p {
  max-width: 600px;
  margin: 0 0 0 8.5vw;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.65;
  opacity: 0;
  animation: rise-in 800ms 750ms ease-out forwards;
}

.circle-link {
  width: 112px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.circle-link b {
  display: none;
}

.circle-link:hover {
  color: var(--plum);
  background: var(--magenta);
  border-color: var(--magenta);
  transform: rotate(-7deg) scale(1.05);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(760px, 58vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--plum);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof div {
  min-height: 116px;
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: #fff;
  background: var(--magenta);
  transform: rotate(-1.1deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  width: max-content;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee i {
  font-size: 0.7rem;
  font-style: normal;
}

.statement {
  padding-top: 180px;
  padding-bottom: 170px;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 10vw;
}

.statement h2 {
  max-width: 920px;
  margin: 0;
  color: var(--plum);
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.statement h2 em {
  color: var(--magenta);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.statement-copy {
  padding-top: 16px;
}

.statement-copy p {
  margin: 0 0 24px;
  color: #554d55;
  font-size: 1rem;
  line-height: 1.8;
}

.text-link {
  position: relative;
  margin-top: 18px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--plum);
  border-bottom: 1px solid var(--plum);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services {
  position: relative;
  padding: 150px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(228, 0, 210, 0.18), transparent 25%),
    var(--plum);
  overflow: hidden;
}

.services::before {
  content: "JAC";
  position: absolute;
  right: -0.04em;
  bottom: -0.23em;
  color: rgba(255, 255, 255, 0.025);
  font-size: 36vw;
  font-weight: 900;
  letter-spacing: -0.15em;
  line-height: 1;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.58fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.section-heading .eyebrow {
  margin: 0 0 7px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-list {
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.28fr 1fr 0.7fr 60px;
  gap: 40px;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 300ms ease, padding 300ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--magenta);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms ease;
}

.service-card:hover {
  padding-inline: 28px;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  transition: color 300ms ease;
}

.service-card:hover .service-number {
  color: var(--plum);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
  transition: color 300ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease;
}

.service-card:hover .service-arrow {
  color: var(--magenta);
  background: #fff;
  transform: rotate(45deg);
}

.feature {
  padding-top: 170px;
  padding-bottom: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: 9vw;
  align-items: center;
}

.feature-image-wrap {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.feature-image-wrap::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.feature-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 670px;
  display: block;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-image-wrap:hover img {
  transform: scale(1.045);
}

.image-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 14px 18px;
  color: #fff;
  background: var(--plum);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin: 0 0 34px;
  color: var(--plum);
  font-size: clamp(3.4rem, 5.4vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 24px;
  color: #554d55;
  font-size: 0.96rem;
  line-height: 1.75;
}

.feature-copy .feature-lead {
  color: var(--plum) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem !important;
  line-height: 1.55 !important;
}

.feature-tags {
  margin: 42px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feature-tags span {
  padding: 10px 14px;
  color: var(--plum);
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 238px;
  padding: 19px 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button-dark {
  color: #fff;
  background: var(--plum);
  border: 1px solid var(--plum);
}

.button-dark:hover {
  color: var(--plum);
  background: var(--magenta);
  border-color: var(--magenta);
}

.experience-showcase {
  padding: 150px 0 170px;
  color: #fff;
  background: var(--plum-dark);
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 76px;
}

.showcase-heading h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.8rem, 6.5vw, 7.4rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.showcase-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.75;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.experience-wide {
  grid-row: span 2;
  min-height: 860px;
}

.experience-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(30, 7, 32, 0.94) 0%, rgba(50, 12, 52, 0.12) 70%);
  transition: background 500ms ease;
}

.experience-card:hover img {
  filter: saturate(1.12);
  transform: scale(1.075);
}

.experience-card:hover::after {
  background: linear-gradient(0deg, rgba(30, 7, 32, 0.98) 0%, rgba(228, 0, 210, 0.07) 80%);
}

.experience-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px;
  transform: translateY(30px);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.experience-card:hover .experience-overlay {
  transform: none;
}

.experience-overlay > span {
  color: var(--magenta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-overlay h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  letter-spacing: -0.045em;
}

.experience-overlay p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.experience-card:hover .experience-overlay p {
  opacity: 1;
  transform: none;
}

.team-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  align-items: stretch;
  background: var(--cream);
}

.team-image {
  position: relative;
  min-height: 830px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  min-height: 830px;
  display: block;
  object-fit: cover;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(50, 12, 52, 0.35));
}

.team-image-frame {
  position: absolute;
  z-index: 2;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.team-copy {
  padding: 120px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-copy h2 {
  margin: 0 0 38px;
  color: var(--plum);
  font-size: clamp(3.5rem, 5.5vw, 6.4rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.team-copy > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #554d55;
  font-size: 0.96rem;
  line-height: 1.75;
}

.team-copy .team-lead {
  color: var(--plum) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem !important;
  line-height: 1.55 !important;
}

.team-roles {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-roles span {
  padding: 10px 14px;
  color: var(--plum);
  border: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.team-roles span:hover {
  color: #fff;
  background: var(--plum);
  transform: translateY(-3px);
}

.process {
  padding-top: 160px;
  padding-bottom: 165px;
}

.process-title {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 90px;
}

.process-title h2 {
  max-width: 860px;
  margin: 0;
  color: var(--plum);
  font-size: clamp(3.8rem, 6.5vw, 7.3rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps article {
  position: relative;
  min-height: 330px;
  padding: 38px 34px;
  border-left: 1px solid var(--line);
  transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.process-steps article:last-child {
  border-right: 1px solid var(--line);
}

.process-steps article:hover {
  z-index: 2;
  color: #fff;
  background: var(--plum);
  transform: translateY(-14px);
}

.process-steps span {
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.process-steps h3 {
  margin: 85px 0 20px;
  color: var(--plum);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  transition: color 300ms ease;
}

.process-steps article:hover h3 {
  color: #fff;
}

.process-steps p {
  margin: 0;
  color: #6c646c;
  font-size: 0.86rem;
  line-height: 1.7;
  transition: color 300ms ease;
}

.process-steps article:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.mandy-profile {
  position: relative;
  min-height: 760px;
  padding: 140px max(7vw, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 9vw;
  color: #fff;
  background: var(--plum);
  overflow: hidden;
}

.mandy-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 14% 45%, rgba(228, 0, 210, 0.22), transparent 28%);
}

.profile-monogram {
  position: relative;
  z-index: 1;
  width: min(32vw, 460px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 0, 210, 0.7);
  border-radius: 50%;
  animation: float-orbit 9s ease-in-out infinite alternate;
}

.profile-monogram::before,
.profile-monogram::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.profile-monogram::before {
  inset: 8%;
}

.profile-monogram::after {
  inset: 20%;
}

.profile-monogram span {
  position: relative;
  z-index: 1;
  margin-left: -0.12em;
  color: #fff;
  font-size: clamp(5rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.18em;
  line-height: 1;
}

.profile-monogram span:last-child {
  color: var(--magenta);
}

.profile-copy {
  position: relative;
  z-index: 1;
}

.profile-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(4rem, 7.5vw, 8rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.profile-lead {
  max-width: 820px;
  margin: 0 0 45px;
  color: var(--magenta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}

.profile-columns {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.profile-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.75;
}

.profile-copy blockquote {
  max-width: 860px;
  margin: 48px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.6;
}

.contact-cta {
  position: relative;
  min-height: 780px;
  padding: 160px 0;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30, 7, 32, 0.98) 0%, rgba(50, 12, 52, 0.85) 58%, rgba(50, 12, 52, 0.45) 100%),
    url("images/jac-live-concert-production.webp") center 54% / cover;
  overflow: hidden;
}

.contact-backdrop {
  position: absolute;
  right: -14vw;
  top: 50%;
  width: 47vw;
  aspect-ratio: 1;
  border: 1px solid rgba(228, 0, 210, 0.45);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-backdrop::before,
.contact-backdrop::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-backdrop::before {
  inset: 13%;
}

.contact-backdrop::after {
  inset: 28%;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-inner h2 {
  max-width: 1040px;
  margin: 0 0 60px;
  font-size: clamp(4rem, 7.7vw, 8.3rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-light {
  color: var(--plum);
  background: #fff;
  border: 1px solid #fff;
}

.button-light:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}

.site-footer {
  padding: 100px 0 28px;
  color: #fff;
  background: #160417;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.52fr 0.68fr;
  gap: 8vw;
  padding-bottom: 85px;
}

.footer-brand img {
  width: 270px;
  max-width: 100%;
  display: block;
}

.footer-brand p {
  max-width: 300px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.55;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column > span {
  margin-bottom: 15px;
  color: var(--magenta);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.6;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-scale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes rise-in {
  to { opacity: 1; transform: none; }
}

@keyframes float-orbit {
  from { transform: translate3d(0, -10px, 0) rotate(-6deg); }
  to { transform: translate3d(-18px, 18px, 0) rotate(8deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .section-shell,
  .hero-inner {
    width: min(100% - 56px, 1420px);
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 12vw, 8rem);
  }

  .hero-proof {
    width: 72vw;
  }

  .statement-grid,
  .feature,
  .team-builder {
    gap: 6vw;
  }

  .section-heading {
    grid-template-columns: 0.4fr 1fr;
  }

  .section-heading > p:last-child {
    display: none;
  }

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

  .process-steps article:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .process-steps article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .mandy-profile {
    grid-template-columns: 0.55fr 1fr;
    gap: 6vw;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .section-shell,
  .hero-inner {
    width: min(100% - 36px, 1420px);
  }

  .site-header {
    min-height: 74px;
    padding: 12px 18px;
  }

  .brand {
    width: 168px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.32);
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: #fff;
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    padding: 28px 18px 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--plum);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-130%);
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links > a:not(.nav-cta) {
    padding: 16px 4px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    margin-top: 18px;
    justify-content: space-between;
  }

  .hero {
    min-height: 900px;
    padding-top: 74px;
    align-items: flex-start;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(29, 4, 31, 0.98) 0%, rgba(50, 12, 52, 0.72) 61%, rgba(20, 3, 22, 0.28) 100%);
  }

  .hero-inner {
    padding: 130px 0 260px;
  }

  .hero-kicker {
    align-items: flex-start;
    max-width: 270px;
    line-height: 1.8;
  }

  .hero-kicker span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 21vw, 6.4rem);
    line-height: 0.82;
  }

  .hero h1 em {
    margin: 0.11em 0 0 0.05em;
    font-size: 0.68em;
    line-height: 1;
  }

  .hero-bottom {
    margin-top: 50px;
    display: block;
  }

  .hero-bottom > p {
    margin: 0;
    max-width: 92%;
    font-size: 0.98rem;
  }

  .circle-link {
    margin-top: 36px;
    width: auto;
    aspect-ratio: auto;
    padding: 15px 18px;
    display: inline-flex;
    gap: 44px;
    border-radius: 0;
  }

  .circle-link b {
    display: block;
  }

  .hero-proof {
    left: 0;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof div {
    min-height: 122px;
    padding: 18px 13px;
  }

  .hero-proof strong {
    font-size: 0.88rem;
  }

  .hero-proof span {
    font-size: 0.57rem;
    line-height: 1.5;
  }

  .orbit-one {
    width: 96vw;
    right: -48vw;
  }

  .orbit-two {
    width: 46vw;
    right: -10vw;
  }

  .statement {
    padding-top: 125px;
    padding-bottom: 110px;
  }

  .statement-grid,
  .feature,
  .team-builder {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 50px;
  }

  .statement h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .services {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 50px;
  }

  .service-card {
    grid-template-columns: 44px 1fr 44px;
    gap: 13px;
    padding: 27px 0;
  }

  .service-card p {
    grid-column: 2 / 4;
    margin-top: -4px;
  }

  .service-arrow {
    width: 40px;
  }

  .feature {
    padding-top: 110px;
    padding-bottom: 115px;
    gap: 65px;
  }

  .feature-image-wrap,
  .feature-image-wrap img {
    min-height: 490px;
  }

  .feature-copy h2 {
    font-size: clamp(3.5rem, 15vw, 5.1rem);
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }

  .showcase-heading h2 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .experience-showcase {
    padding: 105px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-wide,
  .experience-card {
    grid-row: auto;
    min-height: 520px;
  }

  .experience-overlay {
    padding: 28px;
    transform: none;
  }

  .experience-overlay p {
    opacity: 1;
    transform: none;
  }

  .team-image,
  .team-image img {
    min-height: 540px;
  }

  .team-copy {
    padding: 105px 18px;
  }

  .team-copy h2 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .process {
    padding-top: 110px;
    padding-bottom: 115px;
  }

  .process-title {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .process-title h2 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .process-steps article:first-child {
    border-top: 0;
  }

  .process-steps h3 {
    margin-top: 55px;
  }

  .mandy-profile {
    padding: 100px 18px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .profile-monogram {
    width: min(82vw, 420px);
    margin-inline: auto;
  }

  .profile-copy h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .profile-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-cta {
    min-height: 720px;
    padding: 110px 0;
  }

  .contact-inner h2 {
    font-size: clamp(3.8rem, 16vw, 5.5rem);
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .contact-backdrop {
    width: 100vw;
    right: -55vw;
  }

  .site-footer {
    padding-top: 80px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

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