@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato-italic.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato-bold.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/lato-black.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #231f20;
  --ink-soft: #626262;
  --purple: #320965;
  --purple-deep: #190d3e;
  --purple-bright: #492db6;
  --orange: #d43300;
  --orange-strong: #b92a0d;
  --ivory: #fffdf3;
  --ivory-warm: #fffde8;
  --white: #ffffff;
  --line: rgba(50, 9, 101, 0.16);
  --shadow: 0 22px 70px rgba(25, 13, 62, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 92px;
}

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

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a {
  color: var(--purple);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-strong);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  color: var(--purple);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

.lede {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button,
.button-secondary,
.text-link,
.filter-button,
.video-trigger {
  min-height: 48px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button {
  background: var(--orange);
  color: var(--white);
}

.button:hover {
  background: var(--orange-strong);
  color: var(--white);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--purple);
  background: transparent;
  color: var(--purple);
}

.button-secondary:hover {
  border-color: var(--orange-strong);
  color: var(--orange-strong);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  background: rgba(255, 253, 243, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.site-nav a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 50px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
}

.menu-toggle > span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: #edf2f6;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 243, 0.99) 0%, rgba(255, 253, 243, 0.96) 33%, rgba(255, 253, 243, 0.28) 64%, rgba(255, 253, 243, 0.02) 100%);
  content: "";
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-block: 90px 110px;
}

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

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--purple);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-wrap: balance;
}

.hero-subtitle::before {
  flex: 0 0 auto;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: var(--orange);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section-tight {
  padding-block: clamp(58px, 7vw, 90px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 56px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(25, 13, 62, 0.06);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:hover {
  border-color: rgba(239, 64, 35, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-warm);
  color: var(--orange-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card h3 {
  max-width: 410px;
  margin-bottom: 14px;
}

.service-card p {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.band-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--purple-deep);
}

.band-split-media {
  min-height: 520px;
}

.band-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 116px);
  color: rgba(255, 255, 255, 0.82);
}

.band-split-copy h2 {
  color: var(--white);
}

.band-split-copy .eyebrow {
  color: #ff745d;
}

.band-split-copy .button-secondary {
  align-self: flex-start;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.band-split-copy .button-secondary:hover {
  border-color: var(--orange);
  background: var(--orange);
}

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

.portfolio-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(25, 13, 62, 0.06);
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--purple-deep);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.035);
}

.play-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(25, 13, 62, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.portfolio-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.portfolio-category {
  margin-bottom: 10px;
  color: var(--orange-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-body h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.portfolio-body .text-link {
  margin-top: auto;
}

.portfolio-card--unavailable {
  background: #f3f0f3;
}

.portfolio-card--unavailable .portfolio-media {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--purple-deep), var(--purple));
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-card--unavailable .portfolio-media::before {
  width: 74px;
  height: 50px;
  border: 3px solid currentColor;
  border-radius: 12px;
  content: "";
}

.portfolio-card--unavailable .portfolio-media::after {
  position: absolute;
  width: 50px;
  height: 3px;
  background: currentColor;
  content: "";
  transform: rotate(-36deg);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -20px 0 40px;
}

.filter-button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 900;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quote-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 24px;
  background: var(--purple);
  color: rgba(255, 255, 255, 0.9);
}

.quote-card:nth-child(even) {
  background: var(--orange-strong);
}

.quote-card blockquote {
  margin: 0 0 32px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.quote-card footer {
  margin-top: auto;
  font-weight: 900;
}

.quote-card footer span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 400;
}

.designer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--purple-bright);
  color: rgba(255, 255, 255, 0.88);
}

.designer-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/assets/section-designers.avif") center / cover no-repeat;
  content: "";
}

.designer-section h2,
.designer-section h3 {
  color: var(--white);
}

.designer-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.designer-portrait {
  width: 220px;
  height: 220px;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  background: var(--purple-deep);
  color: var(--white);
  text-align: center;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 13, 62, 0.94), rgba(50, 9, 101, 0.6), rgba(239, 64, 35, 0.35));
  content: "";
}

.page-hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.page-hero .eyebrow {
  color: #ff836e;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.feature-item h3 {
  margin-bottom: 10px;
}

.feature-item p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.sample-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample-frame img {
  width: 100%;
  height: auto;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-view {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: start;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: var(--purple-deep);
  box-shadow: var(--shadow);
}

.video-shell img,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-trigger {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  border: 0;
  background: linear-gradient(0deg, rgba(25, 13, 62, 0.75), transparent 64%);
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  place-items: center;
}

.video-trigger span {
  display: grid;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: var(--orange);
  font-size: 1.6rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
}

.project-meta {
  padding: 28px;
  border-radius: 24px;
  background: var(--purple);
  color: rgba(255, 255, 255, 0.84);
}

.project-meta h2 {
  color: var(--white);
  font-size: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: clamp(30px, 4vw, 48px);
  border-radius: 24px;
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.85);
}

.contact-panel h2,
.contact-panel a {
  color: var(--white);
}

.contact-panel a:hover {
  color: #ff836e;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.field--wide,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(50, 9, 101, 0.22);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}

.field input {
  min-height: 54px;
  padding: 12px 15px;
}

.field textarea {
  min-height: 160px;
  padding: 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 64, 35, 0.12);
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--ink-soft);
}

.form-status[data-state="success"] {
  color: #146c43;
}

.form-status[data-state="error"] {
  color: #a02814;
}

.form-noscript {
  padding: 20px;
  border: 2px solid var(--purple);
  border-radius: 18px;
  background: var(--ivory-warm);
  font-weight: 700;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(100deg, rgba(239, 64, 35, 0.98), rgba(50, 9, 101, 0.55));
  content: "";
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-block: clamp(54px, 7vw, 84px);
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
}

.cta-inner .button-secondary {
  flex: 0 0 auto;
  border-color: var(--white);
  color: var(--white);
}

.cta-inner .button-secondary:hover {
  border-color: var(--purple-deep);
  background: var(--purple-deep);
}

.site-footer {
  padding-block: 72px 30px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 64px;
}

.footer-logo {
  width: 164px;
  height: auto;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  min-height: 44px;
  text-decoration: none;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 6px;
  font-weight: 900;
  text-decoration: none;
}

.not-found {
  display: grid;
  min-height: 620px;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 720px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    display: grid;
    width: 100%;
    align-items: stretch;
    padding: 0 0 22px;
  }

  .has-js .header-inner {
    flex-wrap: nowrap;
  }

  .has-js .menu-toggle {
    display: block;
  }

  .has-js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px max(20px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .has-js .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a:not(.button) {
    min-height: 48px;
  }

  .brand img {
    width: 118px;
  }

  .section-heading,
  .content-grid,
  .contact-layout,
  .project-view {
    grid-template-columns: 1fr;
  }

  .sticky-intro,
  .contact-panel {
    position: static;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

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

  .band-split {
    grid-template-columns: 1fr;
  }

  .band-split-media {
    min-height: 480px;
  }

  .designer-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 243, 0.98) 0%, rgba(255, 253, 243, 0.94) 58%, rgba(255, 253, 243, 0.3) 100%);
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-inner {
    align-items: start;
    padding-block: 68px 96px;
  }

  .hero-subtitle {
    gap: 12px;
  }

  .hero-subtitle::before {
    width: 32px;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: 1 / -1;
  }

  .portfolio-grid,
  .quote-grid,
  .contact-form,
  .designer-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 430px;
  }

  .field--wide,
  .form-actions,
  .form-status {
    grid-column: 1;
  }

  .designer-portrait {
    width: 170px;
    height: 170px;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 390px;
  }
}

@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 (forced-colors: active) {
  .button,
  .button-secondary,
  .filter-button,
  .menu-toggle,
  .video-trigger span {
    border: 2px solid ButtonText;
  }
}
