@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
  --ink: #241126;
  --plum: #4a174f;
  --plum-dark: #2a0c2e;
  --violet: #8d5a9c;
  --lilac: #d8c3dd;
  --mist: #f3edf4;
  --ivory: #fbf8f3;
  --white: #fff;
  --gold: #c9a96e;
  --line: rgba(74, 23, 79, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(42, 12, 46, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 20;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
::selection {
  background: var(--plum);
  color: var(--white);
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}
.section--compact {
  padding: 80px 0;
}
.eyebrow {
  position: relative;
  display: block;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--violet);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  position: absolute;
  top: 0.1em;
  bottom: 0.1em;
  left: 0;
  width: 2px;
  background: var(--gold);
}
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.title em,
.display em {
  color: var(--violet);
  font-weight: 400;
}
.lead {
  max-width: 650px;
  color: #5f4c61;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
}
.link-arrow {
  position: relative;
  display: inline-block;
  padding: 0 22px 9px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.link-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.35s ease;
}
.link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.35s ease;
}
.link-arrow:hover::before {
  transform: scaleX(0.72);
}
.link-arrow:hover::after {
  transform: translateX(-32px);
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--plum);
  border-radius: 0 20px;
  background: var(--plum);
  color: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.35s ease;
}
.button:hover {
  transform: translateY(-3px);
  background: var(--plum-dark);
  box-shadow: 0 14px 30px rgba(74, 23, 79, 0.2);
}
.button--ghost {
  color: var(--plum);
  background: transparent;
}
.button--ghost:hover {
  color: var(--white);
  background: var(--plum);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 140px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 8, 35, 0.62), transparent);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(14px);
}
.site-header.scrolled .brand-logo {
  filter: brightness(0) saturate(100%) invert(16%) sepia(26%) saturate(2494%)
    hue-rotate(257deg) brightness(87%) contrast(96%)
    drop-shadow(0 3px 8px rgba(42, 12, 46, 0.1));
}
.site-header.scrolled::before,
.site-header.menu-open::before {
  opacity: 0;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 52px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(42, 12, 46, 0.12));
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--plum);
  border-radius: 0 13px;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.brand-name small {
  display: block;
  margin-top: -7px;
  font-family: var(--sans);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a:not(.button) {
  position: relative;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
}
.site-header:not(.scrolled):not(.menu-open) .brand-name,
.site-header:not(.scrolled):not(.menu-open) .nav-links a:not(.button),
.site-header:not(.scrolled):not(.menu-open) .menu-toggle {
  color: var(--white);
}
.site-header:not(.scrolled):not(.menu-open) .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25));
}
.site-header:not(.scrolled):not(.menu-open) .nav-links a:not(.button)::after {
  background: var(--white);
}
.site-header:not(.scrolled):not(.menu-open) .nav-links .button {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}
.site-header:not(.scrolled):not(.menu-open) .nav-links .button:hover {
  border-color: var(--plum);
  background: var(--plum);
}
.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  background: var(--ivory);
}
.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
}
.home .hero-media img {
  object-position: center 38%;
}
.hero.in-view .hero-media img {
  animation: heroZoom 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 67%,
      rgba(251, 248, 243, 0.28) 82%,
      var(--ivory) 100%
    ),
    linear-gradient(
      0deg,
      rgba(36, 17, 38, 0.34) 0%,
      rgba(36, 17, 38, 0.08) 42%,
      transparent 68%
    );
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px clamp(38px, 5vw, 90px) 9vh;
  background: linear-gradient(
    90deg,
    rgba(251, 248, 243, 0.88),
    var(--ivory) 18%
  );
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 0;
  width: 54px;
  height: 1px;
  background: var(--gold);
}
.hero-copy .display {
  margin-left: clamp(-110px, -7vw, -60px);
  color: var(--ink);
  font-size: clamp(4.7rem, 8vw, 8.8rem);
  text-shadow: 0 3px 30px rgba(251, 248, 243, 0.45);
}
.hero-copy .lead {
  max-width: 420px;
  margin: 34px 0 50px;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #746376;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-transform: uppercase;
}
.hero-copy .display,
.hero-copy .lead,
.hero-meta {
  opacity: 0;
  transform: translateY(30px);
}
.hero.in-view .hero-copy .display {
  animation: heroTextIn 0.85s 0.18s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero.in-view .hero-copy .lead {
  animation: heroTextIn 0.75s 0.34s ease both;
}
.hero.in-view .hero-meta {
  animation: heroTextIn 0.75s 0.48s ease both;
}
.hero-monogram {
  position: absolute;
  z-index: 2;
  top: 16%;
  right: -0.04em;
  color: rgba(74, 23, 79, 0.04);
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  pointer-events: none;
}
.scroll-line {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 24px;
  width: 1px;
  height: 80px;
  background: var(--gold);
  animation: pulseLine 2s ease infinite;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.intro-copy p {
  margin: 0 0 22px;
  color: #68566a;
}
.signature {
  margin-top: 34px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}
.manifesto {
  position: relative;
  padding: 42px 0 22px 58px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 1.14;
}
.manifesto::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 20px;
  color: var(--lilac);
  font-size: 7rem;
  line-height: 1;
}
.experience {
  background: var(--plum-dark);
  color: var(--white);
  overflow: hidden;
}
.home .experience {
  position: relative;
  isolation: isolate;
}
.home .experience::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 58%;
  background:
    linear-gradient(90deg, var(--plum-dark), rgba(42, 12, 46, 0.5)),
    url("../images/6-production.jpg") center 28% / cover no-repeat;
  opacity: 0.8;
  filter: saturate(0.65);
}
.home .experience > .container {
  position: relative;
  z-index: 1;
}
.experience .eyebrow {
  color: var(--lilac);
}
.experience-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}
.service-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.service-line {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.35s ease;
}
.service-line:hover {
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.045);
}
.service-number {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}
.service-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}
.service-view {
  position: relative;
  padding-bottom: 5px;
  color: var(--gold);
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-view::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-line:hover .service-view::after {
  transform: scaleX(1);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.feature-image {
  overflow: hidden;
  border-radius: 0 100px;
}
.feature-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.home .feature-image img {
  object-position: center 34%;
}
.feature-image:hover img {
  transform: scale(1.035);
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8vw;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 40px;
}
.value {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.value strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.value span {
  color: #746376;
  font-size: 0.82rem;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--lilac);
}
.cta-band::after {
  content: "PM";
  position: absolute;
  top: -120px;
  right: 4vw;
  color: rgba(255, 255, 255, 0.27);
  font-family: var(--serif);
  font-size: 25rem;
  line-height: 1;
}
.home .cta-band {
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(216, 195, 221, 0.97),
      rgba(216, 195, 221, 0.79)
    ),
    url("../images/4-production.jpg") right 34%/46% auto no-repeat;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.page-hero {
  position: relative;
  height: 360px;
  min-height: 0;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  background: var(--ivory);
}
.page-hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 62%,
      rgba(251, 248, 243, 0.34) 80%,
      var(--ivory) 100%
    ),
    linear-gradient(0deg, rgba(36, 17, 38, 0.24), transparent 55%);
}
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-page .page-hero-media img,
.services-page .page-hero-media img {
  object-position: center 28%;
}
.contact-page .page-hero-media img {
  object-position: center 24%;
}
.page-hero:hover .page-hero-media img {
  transform: scale(1.025);
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px clamp(32px, 5vw, 90px) 30px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(251, 248, 243, 0.9),
    var(--ivory) 20%
  );
}
.page-hero-copy .display {
  width: min(680px, 115%);
  margin-left: clamp(-62px, -4vw, -34px);
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}
.page-index {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.site-footer {
  padding: 80px 0 28px;
  background: var(--plum-dark);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.62fr 0.62fr 0.85fr;
  gap: 55px;
  padding-bottom: 70px;
}
.footer-brand .brand {
  display: inline-flex;
}
.footer-brand p {
  max-width: 390px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
}
.footer-heading {
  margin: 0 0 20px;
  color: var(--lilac);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
}
.footer-links a {
  width: fit-content;
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-socials a {
  position: relative;
  padding-left: 16px;
}
.footer-socials a::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.footer-contact a {
  display: block;
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.footer-contact address {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  font-style: normal;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.footer-bottom span:last-child {
  color: rgba(255, 255, 255, 0.48);
}
.footer-bottom a {
  color: var(--gold);
  transition: color 0.25s ease;
}
.footer-bottom a:hover {
  color: var(--white);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes heroZoom {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulseLine {
  0%,
  100% {
    transform: scaleY(0.35);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 720px);
  }
  .section {
    padding: 85px 0;
  }
  .nav {
    height: 74px;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 8px;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: 0.3s ease;
  }
  .menu-toggle::before {
    top: 16px;
  }
  .menu-toggle::after {
    top: 25px;
  }
  .menu-toggle.open::before {
    top: 21px;
    transform: rotate(45deg);
  }
  .menu-toggle.open::after {
    top: 21px;
    transform: rotate(-45deg);
  }
  .nav-links {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 390px);
    min-height: 100svh;
    padding: 110px 38px 46px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    overflow-y: auto;
    background: var(--ivory);
    box-shadow: -24px 0 60px rgba(36, 17, 38, 0.16);
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a:not(.button) {
    width: 100%;
    padding: 5px 0;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 5vw, 1.6rem);
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-links .button {
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    padding-inline: 18px;
  }
  .hero {
    min-height: 760px;
    display: block;
    background: var(--plum-dark);
  }
  .hero-media {
    position: absolute;
    inset: 0;
  }
  .hero-media::after {
    background: linear-gradient(
      0deg,
      rgba(36, 17, 38, 0.94) 0%,
      rgba(36, 17, 38, 0.1) 80%
    );
  }
  .hero-copy {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    padding: 120px 24px 9vh;
    background: transparent;
  }
  .hero-copy::before {
    display: none;
  }
  .hero-copy .display {
    margin: 0;
    color: var(--white);
    font-size: clamp(3.8rem, 15vw, 6rem);
    text-shadow: none;
  }
  .hero-copy .display em {
    color: var(--lilac);
  }
  .hero-copy .lead {
    margin: 24px 0 32px;
    color: rgba(255, 255, 255, 0.72);
  }
  .hero-meta {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.25);
  }
  .hero-monogram {
    display: none;
  }
  .page-hero {
    height: 330px;
    min-height: 0;
    display: block;
    background: var(--plum-dark);
  }
  .page-hero-media {
    position: absolute;
    inset: 0;
  }
  .page-hero-media::after {
    background: linear-gradient(
      0deg,
      rgba(36, 17, 38, 0.94),
      rgba(36, 17, 38, 0.08) 80%
    );
  }
  .page-hero-copy {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    padding: 90px 24px 28px;
    background: transparent;
    color: var(--white);
  }
  .page-hero-copy .display {
    width: 100%;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.35rem, 9vw, 3.3rem);
  }
  .page-hero-copy .display em {
    color: var(--lilac);
  }
  .page-hero-copy .eyebrow {
    color: var(--lilac);
  }
  .intro-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .manifesto {
    padding-left: 38px;
  }
  .experience-head,
  .cta-inner {
    align-items: start;
    flex-direction: column;
  }
  .service-line {
    grid-template-columns: 44px 1fr auto;
    gap: 15px;
  }
  .service-desc {
    display: none;
  }
  .feature-grid {
    min-height: auto;
  }
  .feature-image {
    height: 580px;
    border-radius: 0 60px;
  }
  .feature-copy {
    padding: 70px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .brand-logo {
    width: 40px;
    height: 35px;
  }
  .brand-name {
    font-size: 0.94rem;
  }
  .nav-links {
    width: min(90vw, 350px);
    padding: 96px 28px 38px;
    gap: 15px;
  }
  .nav-links a:not(.button) {
    font-size: 1.38rem;
  }
  .hero-copy .display {
    font-size: 3.65rem;
  }
  .service-line {
    padding: 26px 0;
  }
  .values,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .feature-image {
    height: 450px;
  }
}
