:root {
  --orange: #ff7a1a;
  --orange-bright: #ff9b48;
  --orange-deep: #d94f00;
  --ink: #070707;
  --panel: rgba(22, 22, 24, 0.88);
  --panel-soft: rgba(35, 35, 38, 0.78);
  --line: rgba(255, 255, 255, 0.11);
  --muted: #b6b6bb;
}

html {
  background: var(--ink);
}

.ck-booting #root > div > div:first-child {
  opacity: 0;
}

body {
  background:
    radial-gradient(circle at 80% 6%, rgba(255, 122, 26, 0.16), transparent 24rem),
    radial-gradient(circle at 10% 30%, rgba(217, 79, 0, 0.1), transparent 28rem),
    var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.7;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

section,
#root > div > div {
  position: relative;
}

button,
a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

button:hover,
a:hover {
  transform: translateY(-2px);
}

button:active,
a:active {
  transform: scale(0.98);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.bg-black {
  background-color: transparent;
}

.bg-gray-900,
.bg-gray-800 {
  background:
    linear-gradient(145deg, rgba(37, 37, 40, 0.96), rgba(14, 14, 15, 0.96));
}

.bg-gray-700 {
  background-color: var(--panel-soft);
}

.border-gray-800,
.border-gray-700,
.border-gray-600,
.border-white\/10 {
  border-color: var(--line);
}

.rounded-lg,
.rounded-xl,
.rounded-2xl,
.rounded-3xl {
  border-radius: 1.4rem;
}

.shadow-xl,
.shadow-2xl {
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.text-yellow-500,
.text-blue-600,
.text-blue-100 {
  color: var(--orange);
}

.bg-blue-600 {
  background-color: var(--orange);
}

.border-blue-600 {
  border-color: var(--orange);
}

.hover\:border-blue-400:hover {
  border-color: var(--orange-bright);
}

.hover\:bg-blue-50:hover {
  background-color: rgba(255, 122, 26, 0.12);
}

.hover\:text-blue-700:hover {
  color: var(--orange-bright);
}

.focus\:ring-blue-500:focus {
  --tw-ring-color: rgba(255, 122, 26, 0.52);
}

.bg-gradient-to-br.from-red-900\/20.to-orange-900\/20 {
  background-image: linear-gradient(135deg, rgba(217, 79, 0, 0.2), rgba(255, 122, 26, 0.17));
}

input,
textarea {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

input:hover,
textarea:hover {
  border-color: rgba(255, 122, 26, 0.56);
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 122, 26, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

button.bg-white {
  color: #111;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 12px 34px rgba(255, 122, 26, 0.24);
}

button.bg-white:hover {
  color: #111;
  background: linear-gradient(135deg, #ffb16d, var(--orange-bright));
  box-shadow: 0 16px 42px rgba(255, 122, 26, 0.34);
}

button.border-white,
button.border-black {
  border-color: var(--orange);
}

button.border-white:hover,
button.border-black:hover {
  border-color: var(--orange-bright);
  box-shadow: 0 10px 28px rgba(255, 122, 26, 0.16);
}

.fixed.bottom-6.right-6,
.fixed.bottom-8.right-8 {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {
  body::before {
    background-size: 22px 22px;
  }

  .rounded-lg,
  .rounded-xl,
  .rounded-2xl,
  .rounded-3xl {
    border-radius: 1.15rem;
  }
}

.blog-2026 {
  min-height: 100vh;
  padding: 0 24px 72px;
  color: #181715;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #f4f1ec;
  background-size: 52px 52px;
}

.blog-2026__nav,
.blog-2026__header,
.blog-2026__grid {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.blog-2026__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.blog-2026__cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #181715;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.2);
  font-size: 13px;
  font-weight: 600;
}

.blog-2026__header {
  padding: 56px 0 28px;
}

.blog-2026__header span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.blog-2026__header h1 {
  margin-top: 14px;
  color: #181715;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(72px, 12vw, 156px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.blog-2026__header em {
  color: var(--orange);
  font-style: normal;
}

.blog-2026__header p {
  width: min(100%, 620px);
  margin-top: 22px;
  color: #706b64;
  line-height: 1.7;
}

.blog-2026__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.blog-2026__card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(25, 22, 18, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.86);
}

.blog-2026__card:hover {
  border-color: rgba(255, 122, 26, 0.68);
  box-shadow: 0 18px 40px rgba(93, 57, 24, 0.12);
}

.blog-2026__card small {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.blog-2026__card h2 {
  margin-top: 16px;
  color: #181715;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
}

.blog-2026__card p {
  margin-top: 12px;
  color: #706b64;
  font-size: 14px;
  line-height: 1.65;
}

.blog-2026__card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.blog-2026__card time {
  color: #8b847b;
  font-size: 12px;
}

.blog-2026__card strong {
  color: var(--orange-deep);
  font-size: 13px;
}

@media (max-width: 767px) {
  .blog-2026 {
    padding-inline: 16px;
  }

  .blog-2026__header {
    padding-top: 40px;
  }

  .blog-2026__grid {
    grid-template-columns: 1fr;
  }
}

.editorial-hero {
  min-height: 720px;
  height: 100svh;
  color: #101010;
  background:
    radial-gradient(circle at 68% 32%, rgba(255, 142, 64, 0.2), transparent 22rem),
    #f4f1ec;
}

.editorial-hero__legacy {
  display: none;
}

.editorial-hero__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1480px, calc(100% - 48px));
  height: calc(100% - 48px);
  min-height: 672px;
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(17, 17, 17, 0.055) 50%, transparent 50.1%),
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    #f7f5f1;
  background-size: 100% 100%, 72px 72px, 72px 72px, auto;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.16);
  animation: hero-shell-enter 850ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.editorial-hero__nav,
.editorial-hero__foot {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
}

.editorial-hero__nav {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.editorial-hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.editorial-hero__brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.16);
}

.editorial-hero__nav-links {
  display: flex;
  gap: 30px;
  color: #4c4c4c;
  font-size: 13px;
}

.editorial-hero__nav-cta,
.editorial-hero__primary {
  color: #111;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.22);
}

.editorial-hero__nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.editorial-hero__body {
  position: relative;
  display: grid;
  flex: 1;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 0;
}

.editorial-hero__copy {
  z-index: 3;
  align-self: center;
  padding: 42px clamp(32px, 6vw, 92px);
  transform: translateY(-24px);
}

.editorial-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.editorial-hero h1 {
  margin: 0;
  color: #111;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(68px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.045em;
  animation: hero-copy-enter 820ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.editorial-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.editorial-hero__copy p {
  width: min(100%, 460px);
  margin-top: 24px;
  color: #525252;
  font-size: 15px;
  line-height: 1.7;
  animation: hero-soft-enter 700ms 420ms ease both;
}

.editorial-hero__primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 7px 8px 7px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  animation: hero-soft-enter 650ms 560ms ease both;
}

.editorial-hero__primary-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
}

.editorial-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.editorial-hero__visual img {
  position: relative;
  z-index: 2;
  width: min(800px, 104%);
  max-width: none;
  margin-right: -6%;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.2));
  transform-origin: 50% 100%;
  animation: hero-house-enter 1050ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.editorial-hero__halo {
  position: absolute;
  top: 13%;
  right: 7%;
  width: min(39vw, 560px);
  height: min(39vw, 560px);
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.92;
  animation: hero-halo-enter 900ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.editorial-hero__outline {
  position: absolute;
  top: 11%;
  right: -2%;
  color: transparent;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(92px, 13vw, 210px);
  letter-spacing: 0.06em;
  opacity: 0.12;
  -webkit-text-stroke: 2px #111;
}

.editorial-hero__visual-index {
  position: absolute;
  right: 32px;
  bottom: 12px;
  z-index: 3;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (min-width: 901px) {
  .editorial-hero__body {
    grid-template-columns: minmax(430px, 0.9fr) minmax(560px, 1.1fr);
    width: min(1240px, 100%);
    margin: 0 auto;
  }

  .editorial-hero__copy {
    padding-inline: 56px 18px;
    transform: translateY(-8px);
  }

  .editorial-hero h1 {
    font-size: clamp(78px, 6.8vw, 110px);
  }

  .editorial-hero__copy p {
    width: min(100%, 410px);
    margin-top: 18px;
  }

  .editorial-hero__visual img {
    width: min(980px, 132%);
    margin-right: -12%;
    margin-bottom: 5%;
  }

  .editorial-hero__halo {
    top: 7%;
    right: 3%;
    width: min(39vw, 540px);
    height: min(39vw, 540px);
  }

  .editorial-hero__outline {
    top: 9%;
    right: 0;
  }
}

.editorial-hero__foot {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  animation: hero-soft-enter 650ms 680ms ease both;
}

@keyframes hero-shell-enter {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(5deg) scale(0.975) translateY(22px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0) scale(1) translateY(0);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: perspective(900px) rotateY(-12deg) translate3d(-40px, 18px, -80px);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateY(0) translate3d(0, 0, 0);
  }
}

@keyframes hero-house-enter {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateX(9deg) translate3d(34px, 76px, -90px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-halo-enter {
  from {
    opacity: 0;
    transform: scale(0.62) rotate(-18deg);
  }
  to {
    opacity: 0.92;
    transform: scale(1) rotate(0);
  }
}

@keyframes hero-soft-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-hero__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.editorial-hero__metric strong {
  color: #111;
  font-size: 22px;
  font-weight: 500;
}

.editorial-hero__metric span,
.editorial-hero__feature {
  color: #666;
  font-size: 12px;
}

.editorial-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-weight: 500;
}

.editorial-hero__feature-line {
  display: block;
  width: 78px;
  height: 1px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .editorial-hero {
    min-height: 780px;
  }

  .editorial-hero__shell {
    width: min(100% - 24px, 680px);
    height: calc(100% - 24px);
    min-height: 756px;
    margin: 12px auto;
  }

  .editorial-hero__nav {
    padding: 18px;
  }

  .editorial-hero__nav-links {
    display: none;
  }

  .editorial-hero__body {
    display: block;
  }

  .editorial-hero__copy {
    position: relative;
    align-self: start;
    padding: 42px 24px 8px;
    transform: none;
  }

  .editorial-hero h1 {
    font-size: clamp(64px, 18vw, 112px);
  }

  .editorial-hero__copy p {
    width: min(94%, 470px);
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 12px;
    background: rgba(247, 245, 241, 0.78);
    backdrop-filter: blur(8px);
    font-size: 14px;
  }

  .editorial-hero__primary {
    margin-top: 14px;
  }

  .editorial-hero__visual img {
    position: absolute;
    right: -10%;
    bottom: -8px;
    width: min(760px, 122%);
    margin-right: 0;
  }

  .editorial-hero__visual {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
  }

  .editorial-hero__halo {
    top: 9%;
    right: -7%;
    width: 220px;
    height: 220px;
  }

  .editorial-hero__outline {
    top: 0;
    right: -6%;
    font-size: 126px;
  }

  .editorial-hero__foot {
    min-height: 68px;
    padding: 16px 18px;
  }

  .editorial-hero__metric strong {
    font-size: 17px;
  }

  .editorial-hero__feature {
    display: none;
  }
}

/* Light editorial palette for the original estimator and supporting sections. */
#root > div,
#root > div > div {
  color: #181715;
  background: #f4f1ec;
}

#root .bg-black,
#root .bg-gray-900,
#root .bg-gray-800 {
  color: #181715;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #f4f1ec;
  background-size: 52px 52px;
}

#root .bg-gray-700,
#root .bg-white\/5 {
  color: #181715;
  border-color: rgba(25, 22, 18, 0.12);
  background: rgba(255, 252, 247, 0.78);
}

#root .text-white,
#root .text-gray-200 {
  color: #181715;
}

#root .text-gray-300,
#root .text-gray-400,
#root .text-gray-500 {
  color: #706b64;
}

#root .border-gray-800,
#root .border-gray-700,
#root .border-gray-600,
#root .border-white\/10 {
  border-color: rgba(25, 22, 18, 0.12);
}

#root input,
#root textarea {
  color: #181715;
  border-color: rgba(25, 22, 18, 0.14);
  background: rgba(255, 252, 247, 0.86);
}

#root input::placeholder,
#root textarea::placeholder {
  color: #9b948a;
}

#estimator {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#estimator h2 {
  color: #181715;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

#estimator h2 svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

#estimator .font-light {
  font-weight: 450;
}

#estimator button {
  letter-spacing: -0.01em;
}

#estimator button.p-4.bg-white.border-white,
#estimator button.p-4.bg-blue-600 {
  color: #181715;
  border-color: rgba(220, 91, 0, 0.78);
  background: linear-gradient(135deg, #ffab63, var(--orange));
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.16);
}

#estimator button.p-4.bg-white:not(.border-white) {
  color: #302d29;
  border-color: rgba(25, 22, 18, 0.14);
  background: rgba(255, 252, 247, 0.76);
  box-shadow: none;
}

#estimator button.p-4.bg-gray-800,
#estimator button.p-4.bg-gray-700 {
  color: #302d29;
  border-color: rgba(25, 22, 18, 0.14);
  background: rgba(255, 252, 247, 0.76);
  box-shadow: none;
}

#estimator button.p-4.bg-gray-800:hover,
#estimator button.p-4.bg-gray-700:hover,
#estimator button.p-4.bg-white:not(.border-white):hover {
  border-color: rgba(255, 122, 26, 0.55);
  background: rgba(255, 248, 240, 0.96);
}

#estimator button.w-full.bg-white {
  color: #181715;
  background: linear-gradient(135deg, #ff9d50, var(--orange));
}

#estimator input {
  font-size: 16px;
  font-weight: 500;
}

#root button.border-white,
#root button.border-black,
#root button.bg-white {
  color: #181715;
  border-color: rgba(25, 22, 18, 0.16);
}

#root .bg-green-500,
#root .bg-green-600 {
  background-color: var(--orange);
}

#root .hover\:bg-green-600:hover,
#root .hover\:bg-green-700:hover {
  background-color: var(--orange-bright);
}

.seo-blog {
  padding: 72px 24px;
  color: #181715;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #f4f1ec;
  background-size: 52px 52px;
}

.seo-blog__head,
.seo-blog__grid {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.seo-blog__head span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.seo-blog__head h2 {
  margin-top: 12px;
  color: #181715;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.seo-blog__head p {
  margin-top: 14px;
  color: #706b64;
}

.seo-blog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.seo-blog__card {
  padding: 22px;
  border: 1px solid rgba(25, 22, 18, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.82);
}

.seo-blog__card:hover {
  border-color: rgba(255, 122, 26, 0.65);
  box-shadow: 0 18px 40px rgba(93, 57, 24, 0.12);
}

.seo-blog__card small {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.seo-blog__card h3 {
  margin-top: 14px;
  color: #181715;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.seo-blog__card p {
  margin-top: 10px;
  color: #706b64;
  font-size: 14px;
  line-height: 1.65;
}

.seo-blog__card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .editorial-hero {
    min-height: 760px;
    height: 100svh;
  }

  .editorial-hero__shell {
    min-height: 736px;
  }

  .editorial-hero__copy {
    z-index: auto;
    padding-top: 34px;
  }

  .editorial-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 90%;
    font-size: clamp(58px, 16vw, 94px);
    line-height: 0.86;
  }

  .editorial-hero__visual {
    z-index: 4;
    height: 36%;
  }

  .editorial-hero__visual img {
    right: -7%;
    bottom: 18px;
    width: min(500px, 82%);
    filter: drop-shadow(0 18px 20px rgba(87, 57, 30, 0.18));
  }

  .editorial-hero__halo {
    top: 3%;
    right: -3%;
    width: 210px;
    height: 210px;
  }

  .editorial-hero__visual-index {
    right: 24px;
    bottom: 16px;
  }

  .editorial-hero__copy p,
  .editorial-hero__primary {
    position: relative;
    z-index: 6;
  }

  .seo-blog {
    padding: 56px 16px;
  }

  .seo-blog__grid {
    grid-template-columns: 1fr;
  }

  #root > div > button.fixed.bottom-6.right-6 {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-hero__shell,
  .editorial-hero h1,
  .editorial-hero__copy p,
  .editorial-hero__primary,
  .editorial-hero__visual img,
  .editorial-hero__halo,
  .editorial-hero__foot {
    animation: none;
  }
}
