:root {
  --ink: #101014;
  --ink-soft: #19191f;
  --muted: #5d5d67;
  --paper: #f4f2ef;
  --white: #ffffff;
  --red: #b43235;
  --red-bright: #c94549;
  --red-dark: #872427;
  --line: rgba(16, 16, 20, 0.14);
  --max: 1220px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; background: var(--white); padding: 12px 18px; border-radius: 6px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; color: var(--ink); transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 1px 0 rgba(0,0,0,.08); backdrop-filter: blur(15px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 210px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 25px; font-size: .77rem; font-weight: 750; letter-spacing: .085em; text-transform: uppercase; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid currentColor; padding: 12px 16px; transition: .2s ease; }
.nav-cta:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; color: var(--ink); -webkit-appearance: none; appearance: none; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: .2s ease; }

.hero { position: relative; min-height: 760px; height: 100svh; overflow: hidden; background: #efefef; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 60% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 25%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.54) 49%, rgba(255,255,255,.16) 60%, rgba(255,255,255,0) 70%), linear-gradient(0deg, rgba(255,255,255,.10), rgba(255,255,255,0) 34%); }
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 72px; }
.hero-copy { position: relative; z-index: 3; max-width: 580px; }
.hero-logo { width: min(490px, 90%); height: auto; margin-left: 0; }
.eyebrow { margin: 0 0 22px; color: var(--red); font-size: .74rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red-dark); }
.hero-intro { max-width: 22ch; margin: 26px 0 0; font-family: var(--serif); font-size: clamp(1.24rem, 1.75vw, 1.58rem); line-height: 1.44; text-wrap: balance; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 23px; border: 0; text-decoration: none; font-size: .76rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 35px rgba(180,50,53,.23); }
.button-primary:hover { background: var(--red-dark); }
.button-dark { background: var(--ink); color: var(--white); width: max-content; }
.button-dark:hover { background: var(--red); }
.button-light { background: var(--white); color: var(--ink); margin-top: 28px; }
.button-light:hover { background: var(--red-bright); color: var(--white); }
.text-link { font-size: .82rem; font-weight: 760; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 24px; width: 26px; height: 44px; border: 1px solid rgba(0,0,0,.3); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 4px; height: 8px; border-radius: 3px; background: var(--red); left: 10px; top: 8px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 80%,100% { transform: translateY(16px); opacity: 0; } }

.credibility-strip { background: var(--ink); color: var(--white); }
.credibility-grid { min-height: 122px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.credibility-grid > div { padding: 10px 28px; border-left: 1px solid rgba(255,255,255,.16); }
.credibility-grid > div:first-child { border-left: 0; padding-left: 0; }
.credibility-grid strong, .credibility-grid span { display: block; }
.credibility-grid strong { font-family: var(--serif); font-size: 1.25rem; }
.credibility-grid span { margin-top: 5px; color: rgba(255,255,255,.62); font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }

.section { padding: 120px 0; }
.section-intro { background: var(--paper); }
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10vw; align-items: start; }
.section-heading h2, .section-top h2, .feature-content h2, .contact-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.3rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.prose { padding-top: 48px; max-width: 610px; }
.prose p { color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.prose .lead { color: var(--ink); font-family: var(--serif); font-size: 1.5rem; line-height: 1.48; }

.show-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; background: var(--ink); color: var(--white); }
.show-graphic { min-height: 720px; overflow: hidden; }
.show-graphic picture, .show-graphic img { width: 100%; height: 100%; }
.show-graphic img { object-fit: cover; object-position: 52% center; }
.show-copy { padding: clamp(70px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #17171c 0%, #0d0d10 100%); }
.show-copy h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4rem, 7vw, 7.2rem); font-weight: 900; line-height: .78; letter-spacing: -.03em; }
.show-copy h2 span { display: inline-block; color: var(--white); background: var(--red); padding: .12em .13em .08em; margin-top: .14em; }
.show-lead { margin: 32px 0 20px; color: rgba(255,255,255,.95) !important; font-weight: 850; letter-spacing: .22em; text-transform: uppercase; }
.show-copy > p { max-width: 610px; color: rgba(255,255,255,.67); line-height: 1.75; }

.profile-section { background: var(--paper); }
.profile-heading { margin-bottom: 44px; }
.profile-shared { display: grid; grid-template-columns: .48fr 1.52fr; gap: 54px; align-items: start; padding: 34px 42px 38px; margin-bottom: 2px; background: var(--red); color: var(--white); }
.profile-shared-label { display: block; margin-bottom: 12px; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.profile-shared h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.profile-shared > p { max-width: 850px; margin: 0; color: rgba(255,255,255,.84); font-size: 1rem; line-height: 1.72; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--red); }
.profile-card { display: flex; flex-direction: column; background: var(--ink); color: var(--white); overflow: hidden; }
.profile-photo { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #27272e; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.profile-card:hover .profile-photo img { transform: scale(1.025); }
.profile-content { position: relative; flex: 1; padding: 38px 42px 44px; }
.profile-index { position: absolute; right: 42px; top: 42px; color: var(--red-bright); font-family: var(--serif); }
.profile-content h3 { margin: 0; padding-right: 46px; font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 4vw, 4.3rem); letter-spacing: -.04em; }
.profile-role { margin: 12px 0 26px !important; color: var(--red-bright) !important; font-size: .72rem !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.profile-content p { max-width: 56ch; color: rgba(255,255,255,.70); line-height: 1.75; }

.quote-section { position: relative; padding: 92px 0; background: var(--red); color: var(--white); overflow: hidden; }
.quote-section::before { content: "?"; position: absolute; right: 2vw; top: -170px; font-family: var(--serif); font-size: 34rem; line-height: 1; color: rgba(255,255,255,.055); transform: rotate(9deg); }
.quote-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 11vw; }
.quote-grid blockquote { margin: 0; position: relative; padding-left: 56px; }
.quote-mark { position: absolute; left: 0; top: -22px; font-family: var(--serif); font-size: 5rem; opacity: .45; }
.quote-grid p { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; }
.quote-grid cite { font-style: normal; font-size: .73rem; letter-spacing: .18em; text-transform: uppercase; }

.entertainment { background: #fff; }
.section-top { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; margin-bottom: 64px; }
.section-top > p { margin: 0; color: var(--muted); line-height: 1.75; max-width: 440px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; min-height: 465px; padding: 42px 36px 38px; border-left: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.service-card:first-child { border-left: 0; }
.service-card:hover { background: var(--paper); transform: translateY(-5px); }
.card-number { color: var(--red); font-family: var(--serif); font-size: 1.1rem; }
.service-card h3 { margin: 52px 0 22px; font-family: var(--serif); font-size: 2rem; line-height: 1.08; font-weight: 400; }
.service-card p { color: var(--muted); line-height: 1.65; }
.service-card ul { margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { margin: 11px 0; font-size: .83rem; font-weight: 650; }
.service-card li::before { content: "—"; color: var(--red); margin-right: 10px; }

.feature-banner { position: relative; min-height: 690px; display: flex; align-items: center; color: var(--white); background: var(--ink) url('assets/the-murbys-hero.webp') center center / cover no-repeat; }
.feature-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,15,.96), rgba(12,12,15,.88) 44%, rgba(12,12,15,.24)); }
.feature-content { position: relative; z-index: 2; }
.feature-content h2 { max-width: 760px; }
.credential-list { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; max-width: 840px; border-top: 1px solid rgba(255,255,255,.25); }
.credential-list p { margin: 0; padding: 21px 24px 21px 0; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.72); }
.credential-list p:nth-child(odd) { margin-right: 28px; }
.credential-list strong { color: var(--white); }

.contact-section { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy h2 { font-size: clamp(3rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; max-width: 540px; margin: 30px 0; }
.email-link { display: block; width: max-content; max-width: 100%; font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 2.1rem); text-decoration-color: var(--red); text-underline-offset: 8px; overflow-wrap: anywhere; }
.instagram-link { display: inline-block; margin-top: 23px; font-size: .83rem; font-weight: 750; text-decoration: none; }
.contact-form { background: var(--white); padding: clamp(28px, 4vw, 54px); box-shadow: 0 24px 80px rgba(15,15,18,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 23px; }
.contact-form label > span { display: block; margin-bottom: 9px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #c9c7c3; border-radius: 0; background: transparent; color: var(--ink); padding: 12px 2px; outline: none; }
.contact-form textarea { border: 1px solid #c9c7c3; padding: 15px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus { border-bottom-color: var(--red); }
.contact-form textarea:focus { border-color: var(--red); }
.form-note { color: var(--muted); font-size: .75rem; margin: 15px 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { background: var(--ink); color: var(--white); padding: 54px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; align-items: end; gap: 40px; }
.footer-brand { display: flex; align-items: center; width: max-content; max-width: 100%; }
.footer-brand img { width: min(300px, 100%); height: auto; }
.footer-grid > div:nth-child(2) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-grid p { margin: 0; text-align: right; color: rgba(255,255,255,.45); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; font-size: .72rem; }
}
@media (max-width: 980px) {
  .site-nav { position: fixed; top: 82px; left: 16px; right: 16px; z-index: 999; background: rgba(16,16,20,.985); color: var(--white); display: grid; grid-template-columns: 1fr; gap: 0; padding: 14px 22px 22px; border-radius: 18px; box-shadow: 0 28px 80px rgba(0,0,0,.28); opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.985); transition: .22s ease; max-height: calc(100svh - 108px); overflow: auto; overscroll-behavior: contain; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .site-nav > a { display: block; padding: 16px 0; font-size: .98rem; text-align: center; letter-spacing: .12em; border-bottom: 1px solid rgba(255,255,255,.10); }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a:last-child { border-bottom: 0; }
  .site-nav .nav-cta { margin-top: 16px; padding: 15px 18px; border-color: rgba(255,255,255,.22); }
  .site-nav .nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
  .menu-toggle { display: block; position: relative; z-index: 1001; border-radius: 999px; }
  .menu-toggle.active { background: var(--ink); color: var(--white); }
  .menu-toggle.active > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active > span:nth-child(2) { opacity: 0; }
  .menu-toggle.active > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 45%, rgba(255,255,255,.28) 68%, rgba(255,255,255,0) 84%); }
  .credibility-grid { grid-template-columns: 1fr 1fr; padding: 24px 0; }
  .credibility-grid > div { min-height: 76px; display: flex; flex-direction: column; justify-content: center; }
  .credibility-grid > div:nth-child(3) { border-left: 0; }
  .split-layout, .section-top, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .show-section { grid-template-columns: 1fr; }
  .show-graphic { min-height: 520px; }
  .show-copy { padding: 80px 8vw; }
  .prose { padding-top: 0; }
  .section-top { align-items: start; }
  .cards { grid-template-columns: 1fr; }
  .service-card { min-height: auto; border-left: 0; border-top: 1px solid var(--line); }
  .service-card:first-child { border-top: 0; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid p { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
  .text-link { font-size: .92rem; }
  .hero-copy .text-link { display: inline-flex; align-items: center; }
  .hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 28% 70%, rgba(255,255,255,.58) 0%, rgba(255,255,255,.22) 22%, rgba(255,255,255,0) 46%); }

  .container { width: min(100% - 32px, var(--max)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 174px; }
  .hero { height: auto; min-height: 860px; }
  .hero-media img { object-position: 72% 18%; transform: scale(1.04); }
  .hero-shade { background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.97) 34%, rgba(255,255,255,.80) 55%, rgba(255,255,255,.28) 76%), linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.62) 32%, rgba(255,255,255,.08) 72%); }
  .hero-inner { align-items: flex-end; padding: 108px 0 56px; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-logo { width: min(360px, 88%); margin-left: 0; }
  .hero-intro { max-width: 14ch; font-size: 1rem; line-height: 1.38; margin-top: 16px; }
  .hero-actions { margin-top: 22px; gap: 16px; }
  .button-primary { width: 100%; min-height: 56px; }
  .eyebrow { margin: 0 0 14px; font-size: .66rem; letter-spacing: .13em; }
  .scroll-cue { display: none; }
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid > div { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-left: 0; }
  .credibility-grid > div:first-child { border-top: 0; }
  .section { padding: 74px 0; }
  .section-heading h2, .section-top h2, .feature-content h2, .contact-copy h2 { font-size: 2.75rem; }
  .show-graphic { min-height: 390px; }
  .show-graphic img { object-position: 51% center; }
  .show-copy { padding: 68px 24px 74px; }
  .show-copy h2 { font-size: clamp(4rem, 20vw, 6.4rem); }
  .profile-heading { margin-bottom: 36px; }
  .profile-shared { grid-template-columns: 1fr; gap: 18px; padding: 28px 26px 31px; }
  .profile-shared > p { font-size: .94rem; }
  .profile-grid { grid-template-columns: 1fr; gap: 2px; }
  .profile-content { padding: 30px 26px 34px; }
  .profile-index { right: 26px; top: 33px; }
  .profile-content h3 { font-size: 3rem; }
  .quote-section { padding: 70px 0; }
  .quote-grid { grid-template-columns: 1fr; gap: 62px; }
  .quote-grid p { font-size: 3rem; }
  .section-top { margin-bottom: 42px; }
  .service-card { padding: 34px 5px; }
  .service-card h3 { margin-top: 32px; }
  .feature-banner { min-height: 760px; background-position: 55% center; }
  .feature-overlay { background: linear-gradient(0deg, rgba(12,12,15,.98), rgba(12,12,15,.8) 64%, rgba(12,12,15,.25)); }
  .feature-content { align-self: flex-end; padding-bottom: 70px; }
  .credential-list { grid-template-columns: 1fr; }
  .credential-list p:nth-child(odd) { margin-right: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { margin-inline: 0; padding: 26px 20px 30px; }
  .email-link { font-size: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

html, body { max-width: 100%; overflow-x: clip; }
main, section, .container, .hero-copy, .show-copy, .profile-card, .profile-content, .service-card, .contact-layout, .contact-form { min-width: 0; }
h1, h2, h3, a, span { overflow-wrap: normal; word-break: normal; }
p { overflow-wrap: break-word; }
.show-copy h2, .hero-logo, .profile-content h3, .section-heading h2, .section-top h2 { overflow-wrap: normal; word-break: normal; }
.shared-achievements { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 2px; background: var(--red); color: var(--white); }
.shared-achievements span { display: flex; align-items: center; min-height: 86px; padding: 18px 22px; border-left: 1px solid rgba(255,255,255,.23); font-size: .72rem; font-weight: 800; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.shared-achievements span:first-child { border-left: 0; }
.profile-photo img { object-position: center center; }

@media (max-width: 680px) {
  .container { width: calc(100% - 40px); }
  .site-header { background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(0,0,0,.06); backdrop-filter: blur(14px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 150px; }
  .menu-toggle { color: var(--ink); width: 40px; height: 40px; padding: 8px; }
  .site-nav { top: 76px; left: 12px; right: 12px; }

  .hero { height: auto; min-height: 820px; background: #fff; }
  .hero-media { inset: 68px 0 auto; height: 560px; }
  .hero-media img { object-fit: cover; object-position: center top; transform: none; }
  .hero-shade { inset: 68px 0 auto; height: 570px; background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,.98) 18%, rgba(255,255,255,.72) 39%, rgba(255,255,255,.08) 72%); }
  .hero::after { display: none; }
  .hero-inner { min-height: 820px; height: auto; align-items: flex-end; justify-content: center; padding: 470px 0 42px; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero .eyebrow { max-width: 100%; margin: 0 0 12px; font-size: .62rem; letter-spacing: .12em; white-space: normal; }
  .hero-logo { width: min(310px, 100%); margin-inline: auto; }
  .hero-intro { max-width: 19ch; margin: 15px auto 0; font-size: 1.05rem; line-height: 1.35; }
  .hero-actions { margin-top: 20px; gap: 0; justify-content: center; }
  .button-primary { width: 100%; min-height: 54px; padding: 13px 14px; font-size: .68rem; letter-spacing: .09em; }
  .hero-actions .text-link, .scroll-cue { display: none; }

  .credibility-grid { grid-template-columns: 1fr 1fr; padding: 0; }
  .credibility-grid > div { min-height: 82px; padding: 15px 12px; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
  .credibility-grid > div:nth-child(odd) { border-left: 0; }
  .credibility-grid > div:nth-child(-n+2) { border-top: 0; }
  .credibility-grid strong { font-size: 1.05rem; }
  .credibility-grid span { font-size: .58rem; letter-spacing: .07em; }

  .section { padding: 64px 0; }
  .split-layout, .section-top, .contact-layout { gap: 28px; }
  .section-heading h2, .section-top h2, .feature-content h2, .contact-copy h2 { max-width: 100%; font-size: clamp(2.25rem, 11vw, 3.05rem); line-height: 1.01; letter-spacing: -.04em; }
  .section-heading h2 { max-width: 7.4ch; }
  .section-top h2 { max-width: 100%; }
  .section-heading h2 br { display: block; }
  .section-top h2 br { display: none; }
  .prose { max-width: 100%; }
  .prose .lead { margin-top: 0; font-size: 1.22rem; line-height: 1.42; }
  .prose p { font-size: .96rem; line-height: 1.62; }
  .prose p:last-child { margin-bottom: 0; }

  .show-graphic { min-height: 300px; }
  .show-graphic img { object-position: center center; }
  .show-copy { padding: 50px 20px 56px; text-align: center; align-items: center; }
  .show-copy h2 { max-width: 100%; font-size: clamp(3.2rem, 16vw, 4.2rem); line-height: .84; letter-spacing: -.025em; }
  .show-lead { margin: 24px 0 16px; font-size: .65rem; letter-spacing: .16em; }
  .show-copy > p { margin: 8px auto; max-width: 28ch; font-size: .94rem; line-height: 1.55; }
  .button-light { width: 100%; margin-top: 22px; }

  .profile-heading { margin-bottom: 28px; }
  .section-top > p { max-width: 100%; font-size: .94rem; line-height: 1.55; }
  .shared-achievements { grid-template-columns: 1fr 1fr; margin-bottom: 12px; }
  .shared-achievements span { min-height: 76px; padding: 15px 14px; border-top: 1px solid rgba(255,255,255,.22); font-size: .61rem; letter-spacing: .06em; }
  .shared-achievements span:nth-child(odd) { border-left: 0; }
  .shared-achievements span:nth-child(-n+2) { border-top: 0; }
  .profile-grid { gap: 14px; }
  .profile-photo { aspect-ratio: 4 / 5; }
  .profile-photo img { object-fit: cover; object-position: center center; }
  .profile-content { padding: 26px 22px 30px; }
  .profile-index { right: 22px; top: 28px; font-size: .9rem; }
  .profile-content h3 { padding-right: 38px; font-size: clamp(2.15rem, 10vw, 2.75rem); line-height: 1; }
  .profile-role { margin: 10px 0 18px !important; font-size: .61rem !important; letter-spacing: .11em; }
  .profile-content p { margin-bottom: 0; font-size: .91rem; line-height: 1.55; }

  .quote-section { padding: 54px 0; }
  .quote-grid { gap: 38px; }
  .quote-grid blockquote { padding-left: 38px; }
  .quote-mark { top: -15px; font-size: 4rem; }
  .quote-grid p { font-size: 2.45rem; }

  .section-top { margin-bottom: 30px; }
  .cards { border-bottom: 0; }
  .service-card { padding: 28px 0; }
  .service-card h3 { margin: 22px 0 12px; font-size: 1.75rem; }
  .service-card p { margin: 0; font-size: .92rem; line-height: 1.5; }
  .service-card ul { margin-top: 18px; padding-top: 14px; }
  .service-card li { margin: 8px 0; font-size: .75rem; }

  .feature-banner { min-height: 540px; background-position: 54% center; }
  .feature-content { padding: 72px 0 52px; }
  .feature-content h2 br { display: none; }
  .credential-list { margin-top: 34px; }
  .credential-list p { padding: 16px 0; font-size: .86rem; line-height: 1.45; }

  .contact-copy h2 { font-size: clamp(2.35rem, 11vw, 3.05rem); }
  .contact-copy > p:not(.eyebrow) { margin: 20px 0; font-size: .94rem; line-height: 1.55; }
  .email-link { font-size: 1.13rem; }
  .contact-form { margin-inline: 0; padding: 24px 18px 28px; }
  .contact-form input, .contact-form select, .contact-form textarea { min-width: 0; font-size: 16px; }
  .button-dark { width: 100%; }
  .form-note { text-align: center; }

  .site-footer { padding: 42px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .footer-brand img { width: 210px; }
  .footer-grid p { grid-column: auto; text-align: left; }
}

@media (max-width: 370px) {
  .container { width: calc(100% - 32px); }
  .hero-logo { width: min(285px, 100%); }
  .hero .eyebrow { font-size: .57rem; }
  .button { letter-spacing: .07em; }
  .shared-achievements span { font-size: .56rem; }
}


/* v15 refinement pass */
.hero-intro-tight span { display: block; white-space: nowrap; }
.credibility-grid > div { min-height: 122px; display: flex; flex-direction: column; justify-content: center; }
.credibility-grid strong { line-height: 1.05; }
.stack-title span { display: block; }
.stack-title-intro { max-width: 8.2ch; }
.stack-title-duo { max-width: 7.8ch; }
.show-graphic img { object-position: 50% 18%; transform: scale(1.08); transform-origin: center; }
.quote-grid { align-items: start; }
.quote-grid blockquote { padding-left: 0; }
.quote-mark { display: none; }
.quote-grid p { white-space: nowrap; }
.quote-grid cite { display: inline-block; margin-top: 8px; }
.client-proof { background: #fff; padding-top: 92px; padding-bottom: 92px; overflow: hidden; }
.client-top { margin-bottom: 34px; }
.client-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.client-track { display: flex; gap: 14px; width: max-content; padding: 18px 0; animation: clientMarquee 42s linear infinite; }
.client-track span { display: inline-flex; align-items: center; justify-content: center; min-width: max-content; padding: 11px 16px; border: 1px solid rgba(16,16,20,.12); background: var(--paper); color: var(--ink); border-radius: 999px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@keyframes clientMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .client-track { animation: none; } }

@media (max-width: 1100px) {
  .show-section { grid-template-columns: 1fr; }
  .show-graphic { min-height: 420px; }
  .show-copy { padding: 62px 34px 68px; }
}

@media (max-width: 680px) {
  .hero-intro { max-width: none; font-size: 1rem; }
  .hero-intro-tight span { white-space: nowrap; }
  .credibility-grid > div { min-height: 94px; align-items: center; text-align: center; padding: 16px 10px; }
  .credibility-grid strong { font-size: 1.2rem; }
  .credibility-grid span { margin-top: 7px; font-size: .57rem; line-height: 1.3; }
  .stack-title-intro, .stack-title-duo { max-width: 100%; }
  .section-heading h2.stack-title-intro, .section-top h2.stack-title-duo { font-size: clamp(2.45rem, 12vw, 3.35rem); line-height: .96; }
  .section-heading h2.stack-title-intro span:first-child { margin-bottom: .12em; }
  .section-top h2.stack-title-duo span:first-child { margin-bottom: .08em; }
  .show-graphic { min-height: 420px; }
  .show-graphic img { object-position: 50% 22%; transform: scale(1.18); }
  .quote-grid { gap: 22px; }
  .quote-grid p { font-size: clamp(2.15rem, 12vw, 3rem); line-height: 1.04; white-space: nowrap; }
  .quote-grid blockquote { text-align: left; }
  .client-proof { padding-top: 68px; padding-bottom: 68px; }
  .client-top { margin-bottom: 26px; }
  .client-track { gap: 10px; padding: 14px 0; animation-duration: 34s; }
  .client-track span { padding: 10px 13px; font-size: .68rem; }
}

@media (max-width: 430px) {
  .hero-intro { font-size: .95rem; }
  .hero-intro-tight span { white-space: nowrap; }
  .section-heading h2.stack-title-intro, .section-top h2.stack-title-duo { font-size: clamp(2.25rem, 11vw, 3rem); }
  .quote-grid p { font-size: clamp(2rem, 11vw, 2.55rem); }
}


/* v16 client logos + credential title */
.credential-title { max-width: none !important; }
.credential-title span { display: block; white-space: nowrap; }
.client-proof { background: var(--ink); color: var(--white); }
.client-proof .eyebrow.dark { color: var(--red-bright); }
.client-proof .section-top h2 { color: var(--white); }
.client-proof .section-top > p { color: rgba(255,255,255,.62); }
.client-marquee { border-color: rgba(255,255,255,.10); background: var(--ink); }
.client-track { gap: 18px; padding: 24px 0; }
.client-logo-card { display: flex; align-items: center; justify-content: center; width: 220px; height: 94px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.10); background: #0b0b0e; border-radius: 12px; overflow: hidden; }
.client-logo-card img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) brightness(1.18) contrast(1.05); opacity: .78; transition: opacity .2s ease, transform .2s ease; }
.client-logo-card:hover img { opacity: 1; transform: scale(1.03); }

@media (max-width: 1100px) {
  .credential-title { font-size: clamp(3.5rem, 7vw, 5.6rem) !important; }
}

@media (max-width: 680px) {
  .credential-title { font-size: clamp(2.35rem, 11vw, 3.05rem) !important; line-height: 1.02 !important; }
  .credential-title span { white-space: nowrap; }
  .client-proof { padding-top: 64px; padding-bottom: 64px; }
  .client-track { gap: 12px; padding: 18px 0; }
  .client-logo-card { width: 176px; height: 78px; border-radius: 10px; }
}

@media (max-width: 390px) {
  .credential-title { font-size: clamp(2.1rem, 10vw, 2.65rem) !important; }
}


/* v17 sibling identity + show copy */
.sibling-title { max-width: 9.2ch; }
.sibling-title span:nth-child(1),
.sibling-title span:nth-child(2) { font-size: .76em; line-height: .95; }
.sibling-title span:nth-child(3) { margin-top: .18em; }
.show-description { max-width: 620px; }
.show-description p { margin: 0 0 14px; color: rgba(255,255,255,.70); line-height: 1.62; }
.show-description .show-intro { color: rgba(255,255,255,.92); font-size: 1.02rem; }
.show-description .show-finale { color: rgba(255,255,255,.86); font-weight: 650; }
.show-description em { color: var(--white); font-style: italic; }
.show-source { color: rgba(255,255,255,.48); white-space: nowrap; }

@media (max-width: 1100px) {
  .sibling-title { max-width: 11ch; }
  .show-description { max-width: 760px; }
}

@media (max-width: 680px) {
  .section-heading h2.sibling-title { max-width: 100%; font-size: clamp(2.5rem, 12vw, 3.25rem); line-height: .95; }
  .sibling-title span:nth-child(1),
  .sibling-title span:nth-child(2) { font-size: .78em; }
  .sibling-title span:nth-child(3) { margin-top: .16em; }
  .show-description { max-width: 32ch; margin-inline: auto; }
  .show-description p { margin-bottom: 12px; font-size: .91rem; line-height: 1.52; }
  .show-description .show-intro { font-size: .96rem; }
  .show-description .show-finale { margin-bottom: 0; }
}


/* v18 alignment and supplied-client-logo refinement */
@media (min-width: 681px) {
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { text-align: center; }
  .hero-logo { margin-inline: auto; }
  .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

.credibility-grid > div,
.credibility-grid > div:first-child {
  padding-left: 22px;
  padding-right: 22px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.credibility-grid strong,
.credibility-grid span { width: 100%; text-align: center; }
.credibility-grid strong { min-height: 1.15em; display: flex; align-items: center; justify-content: center; }
.credibility-grid span { min-height: 2.5em; display: flex; align-items: flex-start; justify-content: center; }

.client-top { grid-template-columns: 1fr; gap: 16px; text-align: center; align-items: center; }
.client-top > p { margin-inline: auto; max-width: 640px; }
.client-logo-card { padding: 10px 14px; background: #f1f0ed; border-color: rgba(255,255,255,.14); }
.client-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.08);
  opacity: .82;
}
.client-logo-card:hover img { opacity: 1; }

.feature-content { text-align: center; }
.feature-content .eyebrow { text-align: center; }
.credential-title {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(3.5rem, 6.2vw, 6.6rem) !important;
  line-height: .92 !important;
  letter-spacing: -.045em !important;
}
.credential-title span { display: block; white-space: nowrap; }
.credential-list { margin-left: auto; margin-right: auto; text-align: left; }

@media (max-width: 1100px) {
  .credential-title { font-size: clamp(3rem, 6.6vw, 5.1rem) !important; }
}

@media (max-width: 680px) {
  .hero-copy { text-align: center; }
  .hero-logo { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .credibility-grid > div,
  .credibility-grid > div:first-child { padding: 16px 10px; }
  .credibility-grid strong { min-height: 1.3em; }
  .credibility-grid span { min-height: 2.7em; }
  .credential-title {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
  }
  .client-logo-card { padding: 9px 12px; }
}

@media (max-width: 390px) {
  .credential-title { font-size: clamp(1.9rem, 9.2vw, 2.35rem) !important; }
}


/* v19 premium QC pass */
@media (min-width: 981px) {
  .hero-media img { object-position: 76% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.995) 28%, rgba(255,255,255,.97) 41%, rgba(255,255,255,.82) 52%, rgba(255,255,255,.38) 63%, rgba(255,255,255,0) 74%),
      linear-gradient(0deg, rgba(255,255,255,.12), rgba(255,255,255,0) 36%);
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 560px) 1fr;
    align-items: center;
  }
  .hero-copy {
    max-width: 520px;
    margin-left: 1.4rem;
  }
  .hero-logo { width: min(430px, 100%); }
}

.hero-copy { text-wrap: balance; }
.hero-intro {
  max-width: 24ch;
  margin-top: 30px;
  color: var(--ink-soft);
}
.hero-intro-tight span { display: block; }
.hero-actions { margin-top: 32px; }
.hero-actions .text-link { white-space: nowrap; }

.credibility-grid {
  min-height: 138px;
}
.credibility-grid > div,
.credibility-grid > div:first-child {
  min-height: 138px;
  padding: 22px 18px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.credibility-grid strong {
  min-height: 1.3em;
  font-size: clamp(1.32rem, 1.85vw, 1.9rem);
}
.credibility-grid span {
  min-height: auto;
  margin-top: 8px;
  font-size: .72rem;
  letter-spacing: .12em;
}

.section-heading h2.sibling-title,
.section-top h2.stack-title-duo {
  max-width: 12.2ch;
  font-size: clamp(3.1rem, 5.1vw, 5.35rem);
  line-height: .93;
  letter-spacing: -.048em;
}
.sibling-title span,
.stack-title-duo span {
  display: block;
  font-size: 1em !important;
  line-height: inherit;
  margin: 0;
}
.sibling-title span + span,
.stack-title-duo span + span {
  margin-top: .12em;
}

.prose .lead {
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.prose p:last-child { margin-bottom: 0; }

.show-copy {
  align-items: flex-start;
}
.show-copy .eyebrow,
.show-copy h2,
.show-copy .show-lead,
.show-copy .show-description,
.show-copy .button-light {
  max-width: 38rem;
}
.show-copy .show-description p,
.show-copy .show-description .show-source {
  color: rgba(255,255,255,.82) !important;
}
.show-copy .show-description .show-intro {
  color: rgba(255,255,255,.94) !important;
}
.show-copy .show-description .show-finale {
  color: rgba(255,255,255,.96) !important;
  font-weight: 700;
}
.show-copy .show-description em { color: var(--white); }
.show-copy .show-description p { max-width: 36ch; }

.quote-section {
  padding: 86px 0;
  background: linear-gradient(135deg, #b43336 0%, #b83539 58%, #ae3134 100%);
}
.quote-section::before { display: none; }
.quote-rotator {
  text-align: center;
}
.quote-eyebrow {
  color: rgba(255,255,255,.82);
  margin-bottom: 26px;
}
.quote-stage {
  position: relative;
  min-height: 180px;
  max-width: 1080px;
  margin: 0 auto;
}
.quote-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.quote-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}
.quote-slide p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.quote-slide cite {
  font-style: normal;
  letter-spacing: .18em;
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

.feature-banner {
  background-image: linear-gradient(135deg, rgba(12,12,15,.88), rgba(12,12,15,.9)), url('assets/the-murbys-hero.jpg');
  background-position: 50% 22%;
}
.feature-content {
  text-align: center;
}
.feature-content .credential-list {
  max-width: 760px;
  margin: 34px auto 0;
}
.feature-content .credential-list p {
  text-align: center;
}
.credential-title {
  font-size: clamp(3.5rem, 5.7vw, 5.9rem) !important;
  line-height: .95 !important;
}

@media (max-width: 1100px) {
  .hero-media img { object-position: 72% center; }
  .hero-logo { width: min(400px, 100%); }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo {
    font-size: clamp(2.9rem, 5vw, 4.5rem);
    max-width: 11.5ch;
  }
  .quote-stage { min-height: 164px; }
  .quote-slide p { white-space: normal; }
}

@media (max-width: 680px) {
  .hero { min-height: 860px; }
  .hero-media { height: 530px; }
  .hero-shade { height: 545px; }
  .hero-inner { min-height: 860px; padding-top: 452px; }
  .hero-logo { width: min(292px, 100%); }
  .hero-intro {
    max-width: 18ch;
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.38;
  }
  .credibility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credibility-grid > div,
  .credibility-grid > div:first-child {
    min-height: 100px;
  }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo {
    font-size: clamp(2.45rem, 10vw, 3.15rem) !important;
    line-height: .96 !important;
    max-width: 100%;
  }
  .show-copy {
    padding: 56px 22px 62px;
    align-items: center;
    text-align: center;
  }
  .show-copy .show-description {
    max-width: 31ch;
  }
  .show-copy .show-description p {
    max-width: none;
  }
  .quote-section { padding: 62px 0; }
  .quote-stage { min-height: 154px; }
  .quote-slide p {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.02;
    white-space: normal;
  }
  .quote-slide cite {
    font-size: .72rem;
    letter-spacing: .14em;
  }
  .feature-content .credential-list { margin-top: 28px; }
}


/* v20 clean hero / awards / quote polish */
@media (min-width: 981px) {
  .hero-media img { object-position: 62% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(255,255,255,.995) 0%, rgba(255,255,255,.992) 36%, rgba(255,255,255,.92) 52%, rgba(255,255,255,.56) 66%, rgba(255,255,255,0) 78%);
  }
  .hero-copy {
    max-width: 520px;
    margin-left: 1rem;
  }
  .hero-logo { width: min(420px, 100%); }
}
.hero-intro { max-width: 22ch; }
.hero-intro-tight span { display: block; }
.hero-actions { gap: 18px; }

.accolades-section {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-top: 78px;
  padding-bottom: 88px;
}
.accolades-top { margin-bottom: 34px; }
.accolade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.accolade-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 30px rgba(15,16,20,.05);
}
.accolade-kicker {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.accolade-card h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: .98;
}
.accolade-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-intro .split-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}
.section-heading h2.sibling-title {
  max-width: 11.2ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .92;
  letter-spacing: -.05em;
}
.section-heading h2.sibling-title span,
.section-top h2.stack-title-duo span {
  display: block;
  font-size: 1em !important;
  line-height: inherit;
}
.section-heading h2.sibling-title span + span { margin-top: .16em; }

.section-top h2.stack-title-duo {
  max-width: 10.4ch;
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.048em;
}
.section-top h2.stack-title-duo span + span { margin-top: .14em; }

.show-copy .show-description p,
.show-copy .show-description .show-source,
.show-copy .show-description .show-intro,
.show-copy .show-description .show-finale {
  color: rgba(255,255,255,.9) !important;
}
.show-copy .show-finale { font-weight: 700; color: rgba(255,255,255,.97) !important; }

.quote-section {
  padding: 74px 0;
  background: linear-gradient(135deg, #b23639 0%, #b53a3c 100%);
}
.quote-section::before { display: none; }
.quote-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 28px 42px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.quote-eyebrow {
  color: rgba(255,255,255,.84);
  margin-bottom: 24px;
  text-align: center;
}
.quote-stage {
  max-width: 720px;
  min-height: 132px;
  margin: 0 auto;
  position: relative;
}
.quote-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .65s ease, transform .65s ease;
  text-align: center;
}
.quote-slide.is-active { opacity: 1; transform: translateY(0); }
.quote-slide p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  white-space: normal;
}
.quote-slide cite {
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

@media (max-width: 980px) {
  .accolade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-intro .split-layout { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo { max-width: 12ch; }
}
@media (max-width: 680px) {
  .hero-media img { object-position: 62% top; }
  .hero-media { height: 520px; }
  .hero-shade { height: 545px; }
  .hero-inner { padding-top: 450px; min-height: 860px; }
  .hero-logo { width: min(292px, 100%); }
  .hero-intro { max-width: 18ch; }
  .accolades-section { padding-top: 58px; padding-bottom: 62px; }
  .accolade-grid { grid-template-columns: 1fr; }
  .accolade-card { min-height: auto; }
  .section-heading h2.sibling-title { font-size: clamp(2.65rem, 11vw, 3.5rem); max-width: 9.8ch; }
  .section-top h2.stack-title-duo { font-size: clamp(2.35rem, 10vw, 3.2rem); max-width: 9.6ch; }
  .quote-section { padding: 56px 0; }
  .quote-card { padding: 30px 18px 34px; }
  .quote-stage { min-height: 116px; }
  .quote-slide p { font-size: clamp(1.85rem, 10vw, 2.55rem); }
}


/* v21 final clean-up */
.hero-shade {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.90) 26%,
      rgba(255,255,255,.76) 41%,
      rgba(255,255,255,.46) 54%,
      rgba(255,255,255,.14) 67%,
      rgba(255,255,255,0) 78%),
    linear-gradient(0deg, rgba(255,255,255,.05), rgba(255,255,255,0) 34%);
}
.hero-copy { max-width: 520px; }
.hero-honours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}
.hero-honours span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(15,16,20,.14);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(4px);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hero-intro, .hero-intro-tight { display: none !important; }
.hero-logo { margin-top: 4px; }
.accolades-top { display: block; margin-bottom: 26px; }
.accolades-top > p { display: none !important; }
.accolades-top h2 { margin-top: 6px; }

.show-graphic img {
  object-fit: cover;
  object-position: center top;
  transform: none;
}
.show-copy {
  background: linear-gradient(145deg, #15161c 0%, #0c0c10 100%);
}
.show-copy .show-description p,
.show-copy .show-description .show-source,
.show-copy .show-description .show-intro,
.show-copy .show-description .show-finale,
.show-copy .show-description em {
  color: rgba(255,255,255,.92) !important;
}
.show-copy .show-description p { max-width: 38ch; }

@media (min-width: 981px) {
  .hero-media img { object-position: 61% center; }
  .hero-shade {
    background:
      linear-gradient(90deg,
        rgba(255,255,255,.955) 0%,
        rgba(255,255,255,.92) 28%,
        rgba(255,255,255,.82) 42%,
        rgba(255,255,255,.52) 55%,
        rgba(255,255,255,.16) 68%,
        rgba(255,255,255,0) 79%);
  }
  .show-graphic { min-height: 760px; }
  .show-graphic img { object-position: 50% 16%; }
}
@media (max-width: 980px) {
  .hero-honours { gap: 8px; margin-bottom: 16px; }
  .hero-honours span { font-size: .67rem; padding: 7px 10px; }
}
@media (max-width: 680px) {
  .hero-shade {
    background: linear-gradient(0deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.90) 32%,
      rgba(255,255,255,.62) 55%,
      rgba(255,255,255,.15) 75%,
      rgba(255,255,255,0) 100%);
    height: 535px;
  }
  .hero-honours {
    justify-content: center;
    margin: 14px auto 16px;
    max-width: 320px;
  }
  .hero-honours span { white-space: normal; text-align: center; justify-content: center; }
  .show-graphic { min-height: 420px; }
  .show-graphic img { object-position: center 12%; }
}


/* v22 laurels, hero scale, and title cleanup */
@media (min-width: 981px) {
  .hero-copy {
    max-width: 620px;
    margin-left: 1.25rem;
  }
  .hero-logo { width: min(560px, 100%); }
}
.hero-honours {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 16px;
  margin: 10px 0 24px;
}
.hero-honours img {
  display: block;
  height: 92px;
  width: auto;
  object-fit: contain;
  opacity: .98;
  filter: saturate(0%) contrast(106%);
}
.hero-honours img:last-child { height: 86px; }

.accolades-section {
  background: #fff;
  padding-top: 74px;
  padding-bottom: 88px;
}
.accolade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.accolade-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: auto;
  padding: 0;
  display: block;
  text-align: center;
}
.accolade-card img {
  width: min(240px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: saturate(0%) contrast(105%);
}
.accolade-kicker, .accolade-card h3, .accolade-card p { display: none !important; }

.section-heading h2.sibling-title,
.section-top h2.stack-title-duo {
  max-width: none !important;
}
.section-heading h2.sibling-title span,
.section-top h2.stack-title-duo span {
  white-space: nowrap;
}
.section-heading h2.sibling-title {
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  line-height: .94;
}
.section-top h2.stack-title-duo {
  font-size: clamp(2.8rem, 4.2vw, 4.7rem);
  line-height: .95;
}

.quote-card {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-inline: 0 !important;
}

@media (max-width: 1100px) {
  .hero-logo { width: min(500px, 100%); }
  .hero-honours img { height: 84px; }
}
@media (max-width: 980px) {
  .accolade-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo {
    font-size: clamp(2.7rem, 5.8vw, 4rem) !important;
  }
}
@media (max-width: 680px) {
  .hero-logo { width: min(330px, 100%) !important; }
  .hero-honours {
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .hero-honours img { height: 64px; }
  .hero-honours img:last-child { height: 60px; }
  .accolade-grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .accolade-card img { width: min(180px, 100%); }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo {
    font-size: clamp(2.15rem, 7.8vw, 3rem) !important;
    line-height: .97 !important;
  }
  .section-heading h2.sibling-title span,
  .section-top h2.stack-title-duo span {
    white-space: normal;
  }
}


/* v23 clean hero, uniform laurels, and final title structure */
.hero-honours { display: none !important; }

.hero-media img {
  opacity: 1;
  filter: none;
}
.hero-shade {
  background: linear-gradient(90deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 31%,
    rgba(255,255,255,.92) 38%,
    rgba(255,255,255,.48) 47%,
    rgba(255,255,255,.12) 54%,
    rgba(255,255,255,0) 59%);
}
.hero::after { display: none !important; }
.hero-copy { max-width: 650px; }
.hero-logo {
  width: min(590px, 100%);
  margin-top: 0;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-actions { margin-top: 34px; }

.accolade-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}
.accolade-card {
  display: grid;
  place-items: center;
  min-height: 260px;
}
.accolade-card img {
  width: min(245px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  filter: saturate(0%) contrast(106%);
}

.section-heading h2.sibling-title {
  max-width: 8ch !important;
  font-size: clamp(3.45rem, 5.4vw, 5.9rem) !important;
  line-height: .83 !important;
  letter-spacing: -.055em;
}
.section-heading h2.sibling-title span {
  display: block;
  white-space: nowrap;
  margin: 0 !important;
  font-size: 1em !important;
  line-height: inherit;
}
.section-heading h2.sibling-title span + span { margin-top: .16em !important; }

.section-top h2.stack-title-duo {
  max-width: 11.2ch !important;
  font-size: clamp(2.85rem, 4.2vw, 4.65rem) !important;
  line-height: .93 !important;
}
.section-top h2.stack-title-duo span {
  display: block;
  white-space: nowrap;
  margin: 0 !important;
  font-size: 1em !important;
}
.section-top h2.stack-title-duo span + span { margin-top: .12em !important; }

@media (min-width: 981px) {
  .hero-media img { object-position: 65% center; }
  .hero-inner {
    grid-template-columns: minmax(0, 650px) 1fr;
  }
  .hero-copy { margin-left: .75rem; }
}

@media (max-width: 1100px) {
  .hero-logo { width: min(520px, 100%); }
  .section-heading h2.sibling-title {
    font-size: clamp(3.2rem, 5.6vw, 4.8rem) !important;
  }
}

@media (max-width: 980px) {
  .accolade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .accolade-card { min-height: 230px; }
  .section-heading h2.sibling-title,
  .section-top h2.stack-title-duo {
    max-width: 100% !important;
  }
}

@media (max-width: 680px) {
  .hero { min-height: 800px; }
  .hero-media { height: 500px; }
  .hero-media img {
    object-position: 61% top;
    transform: none !important;
  }
  .hero-shade {
    height: 500px;
    background: linear-gradient(0deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.92) 11%,
      rgba(255,255,255,.45) 25%,
      rgba(255,255,255,.08) 40%,
      rgba(255,255,255,0) 52%);
  }
  .hero-inner {
    min-height: 800px;
    padding-top: 430px;
  }
  .hero-logo { width: min(330px, 100%) !important; }
  .accolade-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }
  .accolade-card { min-height: 180px; }
  .accolade-card img { width: min(165px, 100%); }
  .section-heading h2.sibling-title {
    max-width: 8ch !important;
    font-size: clamp(2.65rem, 12vw, 3.55rem) !important;
    line-height: .84 !important;
  }
  .section-top h2.stack-title-duo {
    max-width: 100% !important;
    font-size: clamp(2rem, 8.5vw, 2.85rem) !important;
    line-height: .95 !important;
  }
  .section-top h2.stack-title-duo span { white-space: nowrap; }
}

@media (max-width: 370px) {
  .hero-logo { width: min(300px, 100%) !important; }
  .section-top h2.stack-title-duo {
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
  }
}

/* v24 mobile alignment and containment refinements */
@media (max-width: 680px) {
  .hero {
    min-height: 840px;
  }

  .hero-media {
    height: 540px;
  }

  .hero-media img {
    object-position: 72% top !important;
    transform: none !important;
  }

  .hero-shade {
    height: 540px;
    background: linear-gradient(
      0deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.95) 15%,
      rgba(255,255,255,.62) 32%,
      rgba(255,255,255,.20) 52%,
      rgba(255,255,255,.04) 68%,
      rgba(255,255,255,0) 82%
    ) !important;
  }

  .hero-inner {
    min-height: 840px;
    padding-top: 470px;
    padding-bottom: 42px;
  }

  .accolades-section .section-top,
  .accolades-section .section-top > div,
  .accolades-top {
    text-align: center;
    justify-items: center;
  }

  .accolades-top h2,
  .accolades-section h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .accolade-grid {
    justify-items: center;
    gap: 24px 18px;
  }

  .accolade-card {
    min-height: auto;
  }

  .accolade-card img {
    width: min(155px, 100%);
  }

  .profile-heading {
    text-align: center;
  }

  .profile-heading > p {
    max-width: 24ch;
    margin: 18px auto 0;
    text-align: center;
  }

  .section-top h2.stack-title-duo {
    font-size: clamp(2.1rem, 9.4vw, 2.8rem) !important;
    line-height: 1.02 !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-top h2.stack-title-duo span {
    white-space: normal !important;
  }

  .shared-achievements {
    margin-top: 22px;
  }

  .feature-banner {
    min-height: auto;
    padding: 84px 0 72px;
    background-position: 58% center;
  }

  .feature-content {
    overflow: hidden;
  }

  .credential-title {
    max-width: 100% !important;
    font-size: clamp(1.85rem, 8.6vw, 2.4rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.03em !important;
    text-align: center;
  }

  .credential-title span {
    white-space: normal !important;
    display: block;
  }

  .feature-content .credential-list {
    margin-top: 24px;
  }
}

@media (max-width: 430px) {
  .hero-media img {
    object-position: 74% top !important;
  }

  .hero-logo {
    width: min(316px, 100%) !important;
  }

  .credential-title {
    font-size: clamp(1.72rem, 8.4vw, 2.1rem) !important;
  }
}

/* v25 final QC pass: mobile hero alignment + alignment consistency */

/* Desktop / larger screens: keep section body copy consistently left-aligned */
@media (min-width: 681px) {
  .section-intro .prose,
  .section-intro .prose p,
  .section-top > p,
  .profile-heading > p,
  .contact-copy > p:not(.eyebrow),
  .contact-copy .email-link,
  .contact-copy .instagram-link,
  .entertainment .section-top > p,
  .client-top > p {
    text-align: left;
  }

  .section-top > p,
  .profile-heading > p,
  .contact-copy > p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Mobile / small screens: cleaner hero crop and centered section-intro copy */
@media (max-width: 680px) {
  .hero {
    min-height: 810px !important;
  }

  .hero-media {
    height: 520px !important;
  }

  .hero-media img {
    object-position: 82% 8% !important;
    transform: scale(1.065) !important;
    transform-origin: center top;
  }

  .hero-shade {
    height: 520px !important;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.02) 0%,
        rgba(255,255,255,.03) 48%,
        rgba(255,255,255,.18) 66%,
        rgba(255,255,255,.58) 82%,
        rgba(255,255,255,.96) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.82) 0%,
        rgba(255,255,255,.46) 18%,
        rgba(255,255,255,.12) 35%,
        rgba(255,255,255,0) 56%) !important;
  }

  .hero-inner {
    min-height: 810px !important;
    padding-top: 452px !important;
    padding-bottom: 40px !important;
  }

  .hero-copy,
  .hero-copy .eyebrow,
  .hero-actions {
    text-align: center;
  }

  /* Quality-control consistency: section intro copy centered on stacked mobile layout */
  .section-intro .section-heading,
  .section-intro .prose,
  .section-intro .prose p,
  .section-intro .prose .lead,
  .profile-heading,
  .profile-heading > p,
  .accolades-section .section-top,
  .accolades-top,
  .accolades-top > div,
  .entertainment .section-top,
  .entertainment .section-top > div,
  .entertainment .section-top > p,
  .client-top,
  .client-top > div,
  .client-top > p,
  .contact-copy,
  .contact-copy > p:not(.eyebrow),
  .contact-copy .email-link,
  .contact-copy .instagram-link {
    text-align: center !important;
  }

  .section-intro .prose,
  .section-intro .prose p,
  .section-intro .prose .lead,
  .profile-heading > p,
  .entertainment .section-top > p,
  .client-top > p,
  .contact-copy > p:not(.eyebrow) {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .accolades-top h2,
  .entertainment .section-top h2,
  .client-top h2,
  .contact-copy h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .feature-content {
    text-align: center !important;
  }

  .feature-content .credential-list {
    max-width: 31ch;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .feature-content .credential-list p {
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  .hero-media img {
    object-position: 84% 7% !important;
    transform: scale(1.08) !important;
  }

  .hero-media,
  .hero-shade {
    height: 515px !important;
  }

  .hero-inner {
    padding-top: 448px !important;
  }
}

/* v26 meticulous mobile QC: hero centering + heading alignment */
@media (max-width: 680px) {
  /* Hero image: recentre the duo and reduce the washed-out transition */
  .hero {
    min-height: 828px !important;
  }

  .hero-media,
  .hero-shade {
    height: 508px !important;
  }

  .hero-media img {
    object-position: 66% 8% !important;
    transform: scale(1.015) !important;
    transform-origin: center top !important;
  }

  .hero-shade {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.02) 54%,
        rgba(255,255,255,.12) 70%,
        rgba(255,255,255,.44) 84%,
        rgba(255,255,255,.88) 96%,
        rgba(255,255,255,1) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.84) 0%,
        rgba(255,255,255,.48) 18%,
        rgba(255,255,255,.14) 34%,
        rgba(255,255,255,0) 54%) !important;
  }

  .hero-inner {
    min-height: 828px !important;
    padding-top: 446px !important;
    padding-bottom: 42px !important;
  }

  /* Meet The Murbys section: force true centered heading block */
  .section-intro .split-layout {
    justify-items: center !important;
    text-align: center !important;
    gap: 26px !important;
  }

  .section-intro .section-heading {
    width: 100%;
    display: grid;
    justify-items: center;
    text-align: center !important;
  }

  .section-intro .section-heading .eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-heading h2.sibling-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-size: clamp(2.8rem, 12.2vw, 3.7rem) !important;
    line-height: .88 !important;
  }

  .section-heading h2.sibling-title span {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .section-heading h2.sibling-title span + span {
    margin-top: .11em !important;
  }

  .section-intro .prose,
  .section-intro .prose .lead,
  .section-intro .prose p {
    text-align: center !important;
    max-width: 30ch;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Meet the duo block: also keep it truly centered */
  .profile-heading {
    text-align: center !important;
    justify-items: center !important;
  }

  .profile-heading > div {
    width: 100%;
    display: grid;
    justify-items: center;
    text-align: center !important;
  }

  .section-top h2.stack-title-duo {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 430px) {
  .hero-media img {
    object-position: 68% 8% !important;
    transform: scale(1.02) !important;
  }

  .hero-media,
  .hero-shade {
    height: 500px !important;
  }

  .hero-inner {
    padding-top: 440px !important;
  }

  .section-heading h2.sibling-title {
    font-size: clamp(2.7rem, 11.8vw, 3.45rem) !important;
  }
}

/* v27 dedicated mobile hero asset — no CSS repositioning required */
@media (max-width: 680px) {
  .hero-media img {
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    transform-origin: center top !important;
  }
}

@media (max-width: 430px) {
  .hero-media img {
    object-position: center top !important;
    transform: none !important;
  }
}

/* v29 menu interaction and contact alignment polish */
@media (max-width: 980px) {
  .menu-toggle {
    border: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    outline: none;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }

  .menu-toggle.active {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
  }

  .site-nav > a {
    border-radius: 8px;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    outline: none;
  }
}

@media (max-width: 680px) {
  .contact-copy .email-link {
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

/* v30 mobile navigation full-row red interaction */
@media (max-width: 980px) {
  .site-nav > a {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border-radius: 8px;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a:active,
  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible,
  .site-nav .nav-cta:active {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
  }
}

/* v31 full-bleed mobile hero + reliable inline form feedback */
@media (max-width: 680px) {
  .hero {
    overflow: hidden;
  }

  .hero-media,
  .hero-shade {
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
  }

  .hero-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 50% 7% !important;
    transform: none !important;
  }
}

.form-status {
  min-height: 0;
  margin-top: 16px;
  padding: 0;
  font-size: .9rem;
  line-height: 1.55;
  text-align: center;
}

.form-status.is-visible {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(16,16,20,.12);
}

.form-status.is-success {
  background: #edf7ef;
  border-color: #a8cfaf;
  color: #1e5d2d;
}

.form-status.is-error {
  background: #fff1f1;
  border-color: #dfaaaa;
  color: #842c2c;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .68;
}

/* v34: centre the Good Company supporting copy on all screen sizes */
.client-top > p {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
