:root {
  --navy: #111a2d;
  --navy-2: #18243c;
  --blue: #496dff;
  --cyan: #76e4f7;
  --coral: #ff6846;
  --orange: #ff8b37;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #141923;
  --muted: #656a72;
  --line: #ddd7cd;
  --lime: #d8ef78;
  --white: #fff;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.58;
}
h1,h2,h3,p {
  text-align: left;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.wrap {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(17,26,45,.08);
  background: rgba(255,253,248,.93);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand b {
  color: var(--coral);
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  color: white;
  font-size: 17px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #343a45;
  font-size: 14px;
  font-weight: 650;
}
.site-header nav>a:hover {
  color: var(--coral);
}
.language {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 12px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  font-weight: 700;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  right: -220px;
  bottom: -230px;
  border-radius: 50%;
  background: var(--lime);
}
.hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0,1fr) minmax(440px,.9fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #273149;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--coral);
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px,5.2vw,70px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--coral);
  font-style: normal;
}
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #525964;
  font-size: 18px;
  line-height: 1.75;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: .2s transform,.2s background,.2s color;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--navy);
  color: white;
}
.primary:hover {
  background: var(--coral);
}
.text-link {
  font-size: 14px;
  font-weight: 800;
}
.text-link:hover {
  color: var(--coral);
}
.location-note {
  margin: 28px 0 0;
  color: #73777e;
  font-size: 12px;
}
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-visual>img {
  width: 100%;
  height: 520px;
  border-radius: 42px 14px 42px 14px;
  box-shadow: 0 28px 70px rgba(24,36,60,.18);
}
.hero-visual:before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -18px 34px 34px -18px;
  border: 2px solid var(--blue);
  border-radius: 50px 14px;
}
.floating-card {
  position: absolute;
  right: -18px;
  bottom: 38px;
  display: flex;
  max-width: 250px;
  flex-direction: column;
  padding: 17px 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 15px 38px rgba(17,26,45,.2);
}
.floating-card strong {
  font-size: 14px;
}
.floating-card span {
  color: var(--muted);
  font-size: 11px;
}
.visual-stamp {
  position: absolute;
  top: 28px;
  left: -30px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-8deg);
}
.signal-stack {
  position: absolute;
  top: 25px;
  right: -14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.signal-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 7px;
  background: rgba(17,26,45,.86);
  color: white;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  box-shadow: 0 8px 20px rgba(17,26,45,.14);
  backdrop-filter: blur(8px);
}
.ticker {
  overflow: hidden;
  background: var(--coral);
  color: var(--navy);
  white-space: nowrap;
}
.ticker div {
  width: max-content;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}
.ticker i {
  padding: 0 18px;
  color: var(--cream);
  font-style: normal;
}
.growth-section {
  position: relative;
  overflow: hidden;
  background: #eef1ff;
}
.growth-section:before {
  position: absolute;
  content: "";
  width: 420px;
  height: 420px;
  top: -260px;
  right: -80px;
  border-radius: 50%;
  background: rgba(118,228,247,.55);
  filter: blur(2px);
}
.growth-grid {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}
.growth-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(40px,4.8vw,60px);
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.growth-copy>p:not(.kicker) {
  max-width: 600px;
  margin: 24px 0 0;
  color: #555f76;
  font-size: 17px;
}
.growth-steps {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(17,26,45,.16);
}
.growth-steps>div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17,26,45,.16);
}
.growth-steps b {
  color: var(--blue);
  font-size: 11px;
}
.growth-steps span {
  color: #677087;
  font-size: 13px;
}
.growth-steps strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.digital-console {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: var(--navy);
  color: white;
  box-shadow: 0 30px 70px rgba(46,60,116,.22);
}
.console-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #18233c;
}
.console-bar>span {
  display: flex;
  gap: 5px;
}
.console-bar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64708b;
}
.console-bar i:first-child {
  background: var(--coral);
}
.console-bar b {
  font-size: 10px;
  letter-spacing: .14em;
}
.console-bar small {
  justify-self: end;
  padding: 4px 7px;
  border-radius: 99px;
  background: rgba(216,239,120,.12);
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
}
.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 22px;
}
.console-card {
  min-height: 154px;
  padding: 21px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.console-card small {
  display: block;
  margin-bottom: 12px;
  color: #919ab0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.console-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.02em;
}
.console-card.wide,.channel-row.wide {
  grid-column: 1/-1;
}
.console-card.wide {
  display: grid;
  min-height: 205px;
  grid-template-columns: .75fr 1.25fr;
  gap: 30px;
  align-items: end;
}
.mini-line {
  position: relative;
  display: block;
  height: 38px;
  margin-top: 24px;
  border-bottom: 2px solid var(--cyan);
  transform: skewY(-8deg);
}
.mini-line:before,.mini-line:after,.mini-line i {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.mini-line:before {left: 3%;bottom: -4px}.mini-line i {left: 48%;bottom: -4px}.mini-line:after {right: 2%;bottom: -4px}.mini-line.warm {border-color: var(--coral)}.mini-line.warm:before,.mini-line.warm:after,.mini-line.warm i {background: var(--coral)}
.bar-chart {
  display: flex;
  height: 120px;
  align-items: end;
  gap: 9px;
  padding: 8px 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: repeating-linear-gradient(to top,transparent 0,transparent 29px,rgba(255,255,255,.06) 30px);
}
.bar-chart i {
  flex: 1;
  height: 28%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg,var(--cyan),var(--blue));
}
.bar-chart i:nth-child(2){height:44%}.bar-chart i:nth-child(3){height:39%}.bar-chart i:nth-child(4){height:62%}.bar-chart i:nth-child(5){height:55%}.bar-chart i:nth-child(6){height:78%}.bar-chart i:nth-child(7){height:92%;background:linear-gradient(180deg,var(--lime),#60c99b)}
.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.channel-row span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  color: #b8c0d3;
  font-size: 10px;
  font-weight: 750;
}
.section {
  padding: 104px 0;
}
.section-heading {
  display: block;
  margin-bottom: 46px;
}
.section-heading h2,.content-copy h2,.process-intro h2,.page-hero h1,.page-section h2,.contact-hero h1 {
  margin: 0;
  font-size: clamp(39px,5vw,62px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.section-heading>p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.section-heading h2 {
  max-width: 850px;
  text-wrap: balance;
}
.dark-kicker {
  color: var(--navy);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: .25s transform,.25s border-color,.25s box-shadow;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: 0 18px 42px rgba(17,26,45,.08);
}
.service-card.featured {
  background: var(--navy);
  color: white;
}
.service-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}
.service-card h3 {
  margin: 34px 0 12px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.service-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}
.service-card.featured p {
  color: rgba(255,255,255,.66);
}
.card-label {
  position: absolute;
  top: 28px;
  left: 72px;
  font-size: 11px!important;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card-label+h3 {
  margin-top: 34px;
}
.card-link {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}
.outline {
  border-color: var(--navy);
  background: transparent;
}
.outline:hover {
  background: var(--navy);
  color: white;
}
.content-band {
  background: var(--navy);
  color: white;
}
.content-band-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.content-image {
  position: relative;
}
.content-image img {
  width: 100%;
  height: 570px;
  border-radius: 26px;
}
.content-image>span {
  position: absolute;
  right: -24px;
  bottom: 25px;
  max-width: 200px;
  padding: 18px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--navy);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
  transform: rotate(-3deg);
}
.light-kicker {
  color: var(--cream);
}
.content-copy>p:not(.kicker) {
  color: rgba(255,255,255,.68);
  font-size: 17px;
}
.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.check-list li:before {
  content: "↳";
  padding-right: 12px;
  color: var(--coral);
  font-weight: 900;
}
.coral {
  background: var(--coral);
  color: var(--navy);
}
.coral:hover {
  background: var(--lime);
}
.audience-section {
  background: var(--cream);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.audience-grid>div {
  padding: 32px;
  border-top: 4px solid var(--navy);
  background: var(--paper);
}
.audience-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}
.audience-grid h3 {
  margin: 35px 0 12px;
  font-size: 25px;
  letter-spacing: -.03em;
}
.audience-grid p {
  margin: 0;
  color: var(--muted);
}
.process-section {
  background: var(--coral);
  color: var(--navy);
}
.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}
.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.process-intro p:last-child {
  max-width: 430px;
}
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17,26,45,.25);
}
.process-list>li>span {
  font-size: 12px;
  font-weight: 900;
}
.process-list h3 {
  margin: 0 0 6px;
  font-size: 25px;
  letter-spacing: -.03em;
}
.process-list p {
  margin: 0;
}
.cta-section {
  padding: 70px 0;
  background: var(--paper);
}
.cta-card {
  padding: 70px;
  border-radius: 30px;
  background: var(--lime);
  text-align: center;
}
.cta-card>p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
}
.cta-card h2 {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: clamp(40px,5vw,65px);
  line-height: 1;
  letter-spacing: -.055em;
}
.cta-card>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-card small {
  color: #48513b;
}
.cta-card small a {
  text-decoration: underline;
}
footer {
  padding: 70px 0 30px;
  background: var(--navy);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 45px;
}
.footer-grid>div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}
.footer-grid strong {
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-grid>div a,.footer-grid>div span {
  color: rgba(255,255,255,.67);
}
.footer-grid>div a:hover {
  color: white;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex!important;
  flex-direction: row!important;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 35px;
  padding-top: 22px;
}
.footer-brand .brand-mark {
  background: var(--coral);
  color: var(--navy);
}
/* Interior pages */
.page-hero {
  padding: 100px 0 88px;
  background: var(--cream);
}
.page-hero-grid {
  display: block;
}
.page-hero h1 {
  max-width: 960px;
  font-size: clamp(52px,6.4vw,82px);
  text-wrap: balance;
}
.page-hero h1 em {
  color: var(--coral);
  font-style: normal;
}
.page-hero p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.page-section {
  padding: 90px 0;
}
.page-section.alt {
  background: var(--cream);
}
.detail-list {
  display: grid;
  gap: 15px;
  margin-top: 42px;
}
.detail-card {
  display: grid;
  grid-template-columns: 58px minmax(0,760px);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.detail-card>span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}
.detail-card h2 {
  font-size: 34px;
}
.detail-card>div>p {
  margin: 10px 0 0;
  color: var(--muted);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  grid-column: 2;
}
.tag-list span {
  padding: 7px 12px;
  border-radius: 99px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 40px;
}
.offer-card {
  padding: 28px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}
.offer-card h3 {
  font-size: 22px;
  letter-spacing: -.03em;
}
.offer-card p {
  margin: 0;
  color: var(--muted);
}
.production-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 55px;
  align-items: center;
}
.production-hero img {
  height: 570px;
  border-radius: 28px;
}
.production-copy h1 {
  margin: 0;
  font-size: clamp(50px,6vw,80px);
  line-height: .98;
  letter-spacing: -.06em;
}
.production-copy h1 em {
  color: var(--coral);
  font-style: normal;
}
.production-copy>p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-top: 38px;
}
.deliverables article {
  padding: 25px;
  border-radius: 18px;
  background: var(--cream);
}
.deliverables h3 {
  margin: 0 0 7px;
  font-size: 20px;
}
.deliverables p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.contact-hero {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
}
.contact-hero h1 em {
  color: var(--coral);
  font-style: normal;
}
.contact-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}
.contact-box {
  padding: 34px;
  border-radius: 24px;
  background: var(--navy);
  color: white;
}
.contact-box h2 {
  margin: 0 0 12px;
  font-size: 28px;
}
.contact-box p {
  color: rgba(255,255,255,.65);
}
.contact-box .button {
  margin-top: 15px;
}
.brief-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: brief;
}
.brief-list li {
  counter-increment: brief;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.brief-list li:before {
  content: counter(brief,decimal-leading-zero);
  display: inline-block;
  width: 45px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}
.faq {
  display: grid;
  gap: 0;
  margin-top: 35px;
}
.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  max-width: 760px;
  color: var(--muted);
}
@media(max-width:900px){
.site-header nav {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  background: var(--paper);
  box-shadow: 0 15px 28px rgba(17,26,45,.1);
}
.site-header nav.open {
  display: flex;
}
.menu-button {
  display: block;
}
.hero-grid,.content-band-grid,.process-grid,.production-hero,.contact-grid,.growth-grid {
  grid-template-columns: 1fr;
}
.hero-grid {
  padding: 60px 0 85px;
}
.hero-visual {
  max-width: 680px;
}
.section-heading {
  gap: 25px;
}
.growth-grid {
  gap: 50px;
}
.growth-copy h2 {
  max-width: 760px;
}
.service-grid {
  grid-template-columns: 1fr;
}
.content-band-grid {
  gap: 50px;
}
.content-image>span {
  right: 16px;
}
.process-grid {
  gap: 55px;
}
.process-intro {
  position: static;
}
.detail-card {
  grid-template-columns: 45px 1fr;
}
.detail-card>.tag-list {
  grid-column: 2;
}
.offer-grid {
  grid-template-columns: 1fr 1fr;
}
.footer-grid {
  grid-template-columns: 1fr 1fr;
}
.footer-brand {
  grid-column: 1/-1;
}
}
@media(max-width:600px){
.wrap {
  width: min(100% - 28px,1180px);
}
.hero-grid {
  min-height: 0;
}
.hero h1 {
  font-size: 44px;
}
.hero-visual>img {
  height: 420px;
  border-radius: 30px 12px;
}
.visual-stamp {
  left: -6px;
}
.floating-card {
  right: 8px;
}
.signal-stack {
  right: 8px;
}
.button-row {
  align-items: flex-start;
  flex-direction: column;
}
.section {
  padding: 76px 0;
}
.service-card {
  min-height: 255px;
  padding: 24px;
}
.card-label {
  top: 23px;
  left: 64px;
}
.console-grid {
  grid-template-columns: 1fr;
  padding: 15px;
}
.console-card.wide,.channel-row.wide {
  grid-column: auto;
}
.console-card.wide {
  min-height: 250px;
  grid-template-columns: 1fr;
  gap: 18px;
}
.console-bar {
  grid-template-columns: 1fr auto;
}
.console-bar b {
  display: none;
}
.content-image img {
  height: 430px;
}
.audience-grid,.offer-grid,.deliverables {
  grid-template-columns: 1fr;
}
.cta-card {
  padding: 50px 22px;
}
.footer-grid {
  grid-template-columns: 1fr;
}
.footer-brand,.footer-bottom {
  grid-column: auto;
}
.footer-bottom {
  flex-direction: column!important;
}
.page-hero,.contact-hero {
  padding: 70px 0;
}
.page-hero h1,.contact-hero h1 {
  font-size: 49px;
}
.detail-card {
  grid-template-columns: 1fr;
  gap: 8px;
}
.detail-card>.tag-list {
  grid-column: auto;
}
.production-hero img {
  height: 420px;
}
.production-copy h1 {
  font-size: 49px;
}
}
@media(prefers-reduced-motion:reduce){
html {
  scroll-behavior: auto;
}
.button,.service-card {
  transition: none;
}
}
