:root {
  color-scheme: light;
  --burgundy: #6f1232;
  --burgundy-dark: #491021;
  --charcoal: #535457;
  --ink: #202326;
  --muted: #6e7378;
  --line: #e3e0df;
  --mist: #f6f4f3;
  --white: #ffffff;
  --silver: #d7d8d8;
  --rose: #f7e9ee;
  --amber: #c8984f;
  --shadow: 0 24px 70px rgba(32, 35, 38, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 330px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(111, 18, 50, 0.16);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(32, 35, 38, 0.1);
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: min(100%, 310px);
  max-height: 68px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--burgundy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button,
.tier-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta {
  padding: 0 18px;
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(111, 18, 50, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100vh - 92px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 74px) clamp(42px, 7vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(73, 16, 33, 0.97), rgba(111, 18, 50, 0.9) 48%, rgba(83, 84, 87, 0.92)),
    var(--burgundy-dark);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 76%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 178px;
  padding: 0 22px;
  border: 1px solid transparent;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 620px;
}

.hero-collage {
  position: relative;
  width: min(100%, 650px);
  min-height: 620px;
  margin: 0 auto;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 8% 5% 4% 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.055) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.045) 42px 43px);
}

.collage-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--burgundy-dark);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-main {
  left: 3%;
  top: 7%;
  width: 50%;
  height: 58%;
}

.tile-main img,
.tile-cover img {
  object-position: center 38%;
}

.tile-wide {
  right: 3%;
  top: 0;
  width: 44%;
  height: 28%;
}

.tile-cover {
  right: 9%;
  top: 31%;
  width: 35%;
  height: 46%;
}

.tile-digital {
  left: 11%;
  bottom: 2%;
  width: 43%;
  height: 25%;
}

.tile-media {
  right: 0;
  bottom: 6%;
  width: 34%;
  height: 22%;
}

.tile-book {
  left: 0;
  top: 61%;
  width: 28%;
  height: 22%;
}

.collage-badge {
  position: absolute;
  z-index: 2;
  width: min(218px, 45%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.collage-badge span {
  display: block;
  color: var(--burgundy);
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  font-weight: 950;
  line-height: 1;
}

.collage-badge strong {
  display: block;
  margin-top: 9px;
  color: var(--charcoal);
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.badge-one {
  left: 0;
  top: 22%;
  transform: translateX(-7%);
}

.badge-two {
  right: 1%;
  top: 74%;
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 74px);
}

.section-heading,
.section-copy {
  max-width: 800px;
}

.section-heading {
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  background: var(--mist);
}

.principles {
  display: grid;
  gap: 14px;
}

.principles article,
.solution-grid article,
.work-grid article,
.channel-grid article,
.tier-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.principles article {
  padding: 24px;
}

.principles span,
.solution-grid span,
.work-grid span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles p,
.solution-grid p,
.work-grid p,
.channel-grid p,
.tier-card p,
.process-grid p {
  margin-bottom: 0;
}

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

.solutions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 233, 238, 0.42)),
    var(--white);
}

.solutions .section-heading,
.solutions .solution-grid {
  position: relative;
  z-index: 2;
}

.solutions-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.solutions-animation::before,
.solutions-animation::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(111, 18, 50, 0.16);
  border-radius: 50%;
  animation: orbitPulse 11s ease-in-out infinite;
}

.solutions-animation::before {
  right: -160px;
  top: 42px;
  width: 390px;
  height: 390px;
}

.solutions-animation::after {
  left: -110px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  animation-delay: -4s;
}

.solutions-animation span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 10px rgba(111, 18, 50, 0.08);
  opacity: 0.56;
  animation: floatSignal 8s ease-in-out infinite;
}

.solutions-animation span:nth-child(1) {
  left: 12%;
  top: 20%;
}

.solutions-animation span:nth-child(2) {
  left: 32%;
  top: 12%;
  background: var(--amber);
  animation-delay: -2s;
}

.solutions-animation span:nth-child(3) {
  right: 18%;
  top: 25%;
  animation-delay: -3.5s;
}

.solutions-animation span:nth-child(4) {
  right: 31%;
  bottom: 18%;
  background: var(--charcoal);
  animation-delay: -1s;
}

.solutions-animation span:nth-child(5) {
  left: 19%;
  bottom: 22%;
  background: var(--amber);
  animation-delay: -5s;
}

.solutions-animation span:nth-child(6) {
  right: 8%;
  bottom: 36%;
  animation-delay: -6.5s;
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -28px, 0) scale(1.45);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.74;
  }
}

.solution-grid article,
.work-grid article,
.process-grid article {
  min-height: 260px;
  padding: 26px;
}

.solution-grid h3,
.work-grid h3,
.process-grid h3,
.tier-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
}

.work {
  background:
    linear-gradient(180deg, rgba(111, 18, 50, 0.06), transparent 260px),
    var(--white);
}

.work-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.work-grid article::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border: 12px solid var(--rose);
  border-radius: 50%;
}

.work-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--rose);
  border-bottom: 1px solid var(--line);
}

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

.work-grid article:hover .work-media img {
  transform: scale(1.04);
}

.work-grid article > span,
.work-grid article > h3,
.work-grid article > p {
  position: relative;
  z-index: 1;
  padding-left: 26px;
  padding-right: 26px;
}

.work-grid article > span {
  margin-top: 24px;
}

.work-grid article > p {
  padding-bottom: 28px;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 7vw, 86px);
  background: var(--burgundy-dark);
  color: var(--white);
}

.audience h2 {
  color: var(--white);
}

.audience p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-panel {
  display: grid;
  gap: 18px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.channel-grid article {
  min-height: 170px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.channel-grid strong {
  color: var(--white);
  font-size: 1.1rem;
}

.partner {
  background: var(--mist);
}

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

.tier-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tier-card.featured {
  border-color: rgba(111, 18, 50, 0.42);
  box-shadow: var(--shadow);
}

.tier-card.is-selected {
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tier-card > p {
  margin: 0;
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.tier-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.5;
}

.tier-card li {
  position: relative;
  padding-left: 24px;
}

.tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
}

.tier-card button {
  margin-top: auto;
  width: 100%;
  border: 0;
  background: var(--burgundy);
  color: var(--white);
}

.rate-card-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 18, 50, 0.08), rgba(200, 152, 79, 0.1)),
    var(--white);
}

.rate-card-intro h2 {
  max-width: 920px;
}

.rate-card-intro p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
}

.rate-card-intro .button-primary {
  min-width: 196px;
  background: var(--burgundy);
  color: var(--white);
}

.rate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.rate-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 850;
}

.rate-tabs button.is-active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.rate-panels {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.rate-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
}

.rate-panel.is-active {
  display: grid;
}

.rate-panel article {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rate-panel article:nth-child(3n) {
  border-right: 0;
}

.rate-panel article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.rate-panel span {
  color: var(--muted);
  font-weight: 750;
}

.rate-panel strong {
  color: var(--burgundy);
  font-size: 1.35rem;
}

.rate-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.clients {
  background:
    linear-gradient(180deg, var(--white), rgba(247, 233, 238, 0.52));
}

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

.client-grid article {
  display: grid;
  place-items: center;
  min-height: 158px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(32, 35, 38, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 18, 50, 0.28);
  box-shadow: var(--shadow);
}

.client-grid img {
  width: min(100%, 280px);
  max-height: 116px;
  object-fit: contain;
}

.process {
  background: var(--mist);
}

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

.process-grid article {
  min-height: 250px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(111, 18, 50, 0.92), rgba(32, 35, 38, 0.92)),
    var(--burgundy);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.contact-details a {
  min-height: 52px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form .button-primary {
  border: 0;
  background: var(--burgundy);
  color: var(--white);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--burgundy);
  font-weight: 800;
}

.site-footer {
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 74px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.footer-about img {
  width: min(260px, 100%);
  margin-bottom: 18px;
  background: var(--white);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  line-height: 1.15;
}

.site-footer h2 {
  font-size: 1.4rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer p,
.site-footer address {
  margin: 0;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-download {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber) !important;
  font-weight: 850;
}

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

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(180px, 280px) auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--burgundy);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .intro,
  .audience,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 500px;
  }

  .hero-collage {
    min-height: 500px;
    max-width: 620px;
  }

  .solution-grid,
  .work-grid,
  .tier-grid,
  .client-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-card-intro,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rate-card-intro {
    align-items: start;
  }

  .rate-card-intro > div {
    grid-column: 1 / -1;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand img {
    max-height: 54px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .solution-grid,
  .work-grid,
  .channel-grid,
  .tier-grid,
  .rate-panel,
  .client-grid,
  .process-grid,
  .contact-details,
  .contact-form,
  .rate-card-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solutions-animation {
    opacity: 0.62;
  }

  .rate-card-intro .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-collage {
    min-height: 410px;
  }

  .tile-main {
    width: 52%;
    height: 54%;
  }

  .tile-wide {
    width: 43%;
    height: 24%;
  }

  .tile-cover {
    right: 4%;
    top: 28%;
    width: 38%;
    height: 43%;
  }

  .tile-digital {
    left: 9%;
    width: 45%;
    height: 23%;
  }

  .tile-media {
    width: 36%;
    height: 20%;
  }

  .tile-book {
    width: 30%;
    height: 19%;
  }

  .collage-badge {
    width: 158px;
    padding: 14px;
  }

  .badge-one {
    transform: none;
  }

  .solution-grid article,
  .work-grid article,
  .process-grid article,
  .tier-card {
    min-height: auto;
  }

  .rate-panel article,
  .rate-panel article:nth-child(3n),
  .rate-panel article:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rate-panel article:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .section,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .contact-form {
    padding: 18px;
  }
}
