:root {
  color-scheme: light;

  --ink: #111820;
  --ink-soft: #37404a;
  --muted: #67717c;

  --paper: #f5f3ee;
  --panel: #fbfaf7;
  --white: #ffffff;

  --night: #06111b;
  --night-soft: #0b1722;

  --gold: #cbb07b;
  --gold-light: #e4d1aa;
  --gold-dark: #735b2f;

  --line: rgba(17, 24, 32, 0.14);
  --line-strong: rgba(17, 24, 32, 0.24);
  --line-dark: rgba(255, 255, 255, 0.14);

  --body-font:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --display-font:
    Georgia,
    "Times New Roman",
    Times,
    serif;

  --container: 90rem;
  --article-width: 48rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius: 0.2rem;

  --focus:
    0 0 0 0.2rem rgba(203, 176, 123, 0.45);
}

/* =========================================================
   Reset and defaults
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.7;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  margin-bottom: var(--space-6);
  font-size: clamp(2.55rem, 8vw, 5.25rem);
  letter-spacing: -0.045em;
}

h2 {
  max-width: 24ch;
  margin-bottom: var(--space-5);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  letter-spacing: -0.02em;
}

h4 {
  margin-bottom: var(--space-3);
  font-size: 1rem;
  font-weight: 650;
}

p {
  max-width: var(--article-width);
  margin-bottom: var(--space-5);
}

ul,
ol {
  padding-left: 1.35rem;
}

li + li {
  margin-top: var(--space-2);
}

a {
  color: currentColor;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-dark);
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 0.15rem solid var(--gold);
  outline-offset: 0.2rem;
  box-shadow: var(--focus);
}

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

blockquote {
  max-width: var(--article-width);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-8) 0;
  color: var(--ink);
  background: rgba(203, 176, 123, 0.1);
  border-left: 0.2rem solid var(--gold);
}

blockquote > :last-child {
  margin-bottom: 0;
}

hr {
  height: 1px;
  margin: var(--space-12) 0;
  background: var(--line);
  border: 0;
}

code {
  padding: 0.08rem 0.28rem;
  background: rgba(17, 24, 32, 0.07);
  border-radius: var(--radius);
  font-size: 0.92em;
}

pre {
  max-width: 100%;
  padding: var(--space-5);
  overflow-x: auto;
  color: #f5f3ee;
  background: var(--night);
  border: 1px solid var(--line-dark);
}

pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

strong {
  font-weight: 650;
}

[hidden] {
  display: none !important;
}

/* =========================================================
   Shared layout
   ========================================================= */

.site-container {
  width: min(
    calc(100% - clamp(2rem, 8vw, 7.5rem)),
    var(--container)
  );
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--gold-light);
  border: 0.125rem solid var(--night);
  transform: translateY(-200%);
}

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: rgba(255, 255, 255, 0.86);
  background: var(--night);
  border-bottom: 1px solid var(--line-dark);
}

.header-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 5rem;
  padding-block: var(--space-3);
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.75rem;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-brand:hover {
  color: var(--gold-light);
}

.site-brand__wordmark {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.site-brand__wordmark .registered-mark {
  position: static;
  display: inline;
  margin-left: 0.05em;
  font-family: var(--body-font);
  font-size: 0.34em;
  font-weight: 700;
  line-height: 0;
  vertical-align: super;
}

.navigation-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-width: 5.8rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.navigation-toggle:hover {
  border-color: var(--gold);
}

.navigation-toggle__icon {
  display: grid;
  gap: 0.2rem;
  width: 1rem;
}

.navigation-toggle__icon span {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.navigation-toggle[aria-expanded="true"]
  .navigation-toggle__icon
  span:nth-child(1) {
  transform: translateY(0.3rem) rotate(45deg);
}

.navigation-toggle[aria-expanded="true"]
  .navigation-toggle__icon
  span:nth-child(2) {
  opacity: 0;
}

.navigation-toggle[aria-expanded="true"]
  .navigation-toggle__icon
  span:nth-child(3) {
  transform: translateY(-0.3rem) rotate(-45deg);
}

.primary-navigation {
  width: 100%;
}

.primary-navigation ul {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  margin: 0;
  list-style: none;
}

.primary-navigation li {
  margin: 0;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"],
.primary-navigation a.is-active-section {
  color: var(--gold-light);
}

.primary-navigation .navigation-cta {
  justify-content: center;
  padding-inline: var(--space-4);
  border: 1px solid rgba(203, 176, 123, 0.7);
}

.js .navigation-toggle {
  display: inline-flex;
}

.js .primary-navigation[data-open="false"] {
  display: none;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.breadcrumbs {
  background: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.83rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: var(--space-2);
  color: var(--muted);
  content: "/";
}

.breadcrumbs a {
  color: var(--ink-soft);
}

/* =========================================================
   Home hero
   ========================================================= */

.home-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
  min-height: min(46rem, calc(100vh - 5rem));
  padding-block: clamp(var(--space-16), 10vw, 8rem);
}

.home-hero__copy {
  align-self: center;
  min-width: 0;
}

.home-hero h1 {
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.04;
}

.home-hero__copy > p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.home-hero__copy > p:first-of-type::before {
  display: block;
  width: 3.2rem;
  height: 0.15rem;
  margin-bottom: var(--space-6);
  background: var(--gold);
  content: "";
}

.abstract-landscape {
  align-self: center;
  min-height: 17rem;
  color: rgba(255, 255, 255, 0.54);
}

.abstract-landscape svg {
  width: 100%;
  height: auto;
}

.abstract-landscape .gold {
  color: var(--gold);
}

.abstract-landscape .faint {
  color: rgba(255, 255, 255, 0.14);
}

/* =========================================================
   Internal-page hero
   ========================================================= */

.page-hero {
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero__inner {
  display: grid;
  gap: var(--space-8);
  padding-block: clamp(var(--space-16), 9vw, 7rem);
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 400;
}

.page-hero__intro {
  max-width: var(--article-width);
}

.page-hero__intro > :last-child {
  margin-bottom: 0;
}

.page-hero__intro p {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.eyebrow {
  margin-bottom: var(--space-4);
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

/* =========================================================
   Main page content
   ========================================================= */

.page-shell {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.page-layout {
  display: grid;
  gap: clamp(var(--space-10), 7vw, 6rem);
}

.prose {
  min-width: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  padding-top: clamp(var(--space-10), 6vw, var(--space-16));
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  border-top: 1px solid var(--line);
}

.prose h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.prose h3 {
  margin-top: var(--space-10);
}

.prose h4 {
  margin-top: var(--space-8);
}

.prose p,
.prose li,
.prose dd {
  color: var(--ink-soft);
}

.prose a {
  color: var(--gold-dark);
  font-weight: 600;
}

.prose a:hover {
  color: var(--ink);
}

.prose img {
  height: auto;
  margin-block: var(--space-8);
  border: 1px solid var(--line);
}

.prose figcaption {
  margin-top: calc(var(--space-3) * -1);
  color: var(--muted);
  font-size: 0.85rem;
}

.prose > p:has(> strong:only-child) {
  margin-top: var(--space-8);
}

.prose > p:has(> strong:only-child) strong {
  display: inline-block;
  color: var(--ink);
  font-family: var(--body-font);
  letter-spacing: 0.01em;
}

/* =========================================================
   Generated CTA links
   ========================================================= */

.generated-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.78rem 1rem;
  color: var(--night) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 750 !important;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.generated-cta:hover {
  color: var(--night) !important;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* =========================================================
   Section navigation
   ========================================================= */

.section-navigation {
  align-self: start;
  min-width: 0;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
}

.section-navigation h2 {
  margin-bottom: var(--space-4);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-navigation li {
  margin: 0;
  border-top: 1px solid var(--line);
}

.section-navigation li:first-child {
  border-top: 0;
}

.section-navigation a {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding-block: var(--space-3);
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.section-navigation a:hover,
.section-navigation a[aria-current="page"] {
  color: var(--gold-dark);
}

/* =========================================================
   Tables
   ========================================================= */

.table-scroll {
  max-width: 100%;
  margin-block: var(--space-8);
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.42);
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

th:last-child,
td:last-child {
  border-right: 0;
}

tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--ink);
  background: rgba(203, 176, 123, 0.09);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

td {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* =========================================================
   Home body
   ========================================================= */

.home-body {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.home-body .prose {
  max-width: 72rem;
}

.home-body .prose > h2 {
  max-width: 32ch;
}

.home-body .prose > h3 {
  max-width: 34ch;
}


/* commercial-clarity:styles */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-8);
}

.hero-actions .generated-cta {
  margin: 0;
}

.generated-cta--secondary {
  color: var(--gold-dark) !important;
  background: transparent;
  border-color: rgba(115, 91, 47, 0.48);
}

.generated-cta--secondary:hover {
  color: var(--night) !important;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.home-hero .generated-cta--secondary,
.generated-cta--on-dark {
  color: var(--gold-light) !important;
  background: transparent;
  border-color: rgba(228, 209, 170, 0.58);
}

.home-hero .generated-cta--secondary:hover,
.generated-cta--on-dark:hover {
  color: var(--night) !important;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.featured-idea {
  position: relative;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 4.75rem);
  margin-block: clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(
      145deg,
      #06111b 0%,
      #0b1722 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-idea::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(203, 176, 123, 0.11),
      transparent 34%
    );
  content: "";
}

.featured-idea__copy,
.featured-idea__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.featured-idea h2 {
  max-width: 20ch;
  padding: 0;
  margin: 0 0 var(--space-6);
  color: var(--white);
  border: 0;
  font-size: clamp(1.8rem, 5vw, 3.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.featured-idea p {
  color: rgba(255, 255, 255, 0.65);
}

.featured-idea .eyebrow {
  margin-bottom: var(--space-5);
  color: var(--gold);
}

.featured-idea__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--gold-light) !important;
  font-size: 0.76rem;
  font-weight: 750 !important;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-idea__link:hover {
  color: var(--white) !important;
}

.featured-idea__visual {
  min-height: 13rem;
}

.featured-idea__visual svg {
  width: 100%;
  height: auto;
}

.distribution-axis {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
}

.distribution-fill {
  fill: rgba(255, 255, 255, 0.035);
}

.distribution-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2;
}

.distribution-tail {
  fill: rgba(203, 176, 123, 0.24);
}

.distribution-threshold {
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 5 6;
}

@media (min-width: 62rem) {
  .featured-idea {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(22rem, 1.1fr);
  }
}



/* home-hero-image-integration:start */

/*
 * Homepage hero image only.
 *
 * The original supplied image is used without image processing.
 * Text remains within the negative-space area on the left.
 */

.home-hero {
  isolation: isolate;
  background-color: var(--night);
  background-image:
    linear-gradient(
      90deg,
      rgba(6, 17, 27, 0.97) 0%,
      rgba(6, 17, 27, 0.94) 24%,
      rgba(6, 17, 27, 0.82) 42%,
      rgba(6, 17, 27, 0.46) 63%,
      rgba(6, 17, 27, 0.12) 84%,
      rgba(6, 17, 27, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 17, 27, 0.10) 0%,
      rgba(6, 17, 27, 0.22) 100%
    ),
    url("../content/media/vividrange-home-hero-1a56732a9c98.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 77% 50%;
}

.home-hero__grid {
  grid-template-columns:
    minmax(0, 42rem) !important;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.home-hero .abstract-landscape {
  display: none !important;
}

@media (max-width: 61.999rem) {
  .home-hero {
    background-position: 74% 50%;
    background-image:
      linear-gradient(
        90deg,
        rgba(6, 17, 27, 0.97) 0%,
        rgba(6, 17, 27, 0.93) 38%,
        rgba(6, 17, 27, 0.72) 66%,
        rgba(6, 17, 27, 0.30) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 17, 27, 0.12) 0%,
        rgba(6, 17, 27, 0.28) 100%
      ),
      url("../content/media/vividrange-home-hero-1a56732a9c98.png");
  }

  .home-hero__grid {
    min-height: 42rem;
  }
}

@media (max-width: 43.999rem) {
  .home-hero {
    background-position: 72% 50%;
    background-image:
      linear-gradient(
        90deg,
        rgba(6, 17, 27, 0.98) 0%,
        rgba(6, 17, 27, 0.94) 48%,
        rgba(6, 17, 27, 0.76) 76%,
        rgba(6, 17, 27, 0.52) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 17, 27, 0.08) 0%,
        rgba(6, 17, 27, 0.34) 100%
      ),
      url("../content/media/vividrange-home-hero-1a56732a9c98.png");
  }

  .home-hero__grid {
    min-height: 39rem;
    padding-block:
      clamp(
        var(--space-12),
        14vw,
        var(--space-20)
      );
  }
}

@media (min-width: 100rem) {
  .home-hero {
    background-position: 82% 50%;
  }
}

@media print {
  .home-hero {
    background-image: none;
  }
}

/* home-hero-image-integration:end */

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #040d15;
  border-top: 1px solid var(--line-dark);
}

.site-footer__main {
  display: grid;
  gap: var(--space-10);
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
}

.site-brand--footer {
  margin-bottom: var(--space-4);
  font-size: 1.45rem;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2) var(--space-6);
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-navigation li {
  margin: 0;
}

.footer-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-navigation a:hover {
  color: var(--gold-light);
}

.site-footer__bottom {
  padding-block: var(--space-5);
  border-top: 1px solid var(--line-dark);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (min-width: 44rem) {
  .footer-navigation {
    grid-template-columns: repeat(3, minmax(0, auto));
  }

  .page-hero__inner {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(18rem, 0.65fr);
    align-items: end;
  }
}

/* =========================================================
   Desktop
   ========================================================= */

@media (min-width: 62rem) {
  .header-layout {
    flex-wrap: nowrap;
  }

  .js .navigation-toggle {
    display: none;
  }

  .primary-navigation,
  .js .primary-navigation[data-open="false"],
  .js .primary-navigation[data-open="true"] {
    display: block;
    width: auto;
  }

  .primary-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(var(--space-5), 3vw, var(--space-10));
    padding: 0;
  }

  .primary-navigation .navigation-cta {
    min-height: 2.65rem;
    padding-inline: var(--space-6);
  }

  .home-hero__grid {
    grid-template-columns:
      minmax(24rem, 0.75fr)
      minmax(30rem, 1.25fr);
    align-items: center;
  }

  .page-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(15rem, 0.32fr);
  }

  .section-navigation {
    position: sticky;
    top: var(--space-8);
  }

  .site-footer__main {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(26rem, auto);
    align-items: start;
  }
}

/* =========================================================
   Wide desktop
   ========================================================= */

@media (min-width: 88rem) {
  .home-hero__grid {
    grid-template-columns:
      minmax(27rem, 0.72fr)
      minmax(40rem, 1.28fr);
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Forced colours
   ========================================================= */

@media (forced-colors: active) {
  .generated-cta,
  .navigation-toggle,
  .section-navigation,
  blockquote,
  .table-scroll {
    border: 1px solid CanvasText;
  }

  .generated-cta {
    color: ButtonText !important;
    background: ButtonFace;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  .site-header,
  .breadcrumbs,
  .section-navigation,
  .site-footer,
  .navigation-toggle,
  .abstract-landscape {
    display: none !important;
  }

  body,
  .home-hero,
  .page-hero {
    color: #000;
    background: #fff;
  }

  .home-hero h1,
  .page-hero h1 {
    color: #000;
  }

  .home-hero__copy > p,
  .page-hero__intro p {
    color: #000;
  }

  .home-hero__grid {
    display: block;
    min-height: 0;
    padding-block: 2rem;
  }

  .page-shell,
  .home-body {
    padding-block: 1.5rem;
  }
}
/* =========================================================
   Compact company footer
   ========================================================= */

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: 2rem;
}

.site-footer__identity,
.site-footer__registration,
.site-footer__contacts,
.site-footer__navigation {
  min-width: 0;
}

.site-footer__identity .site-brand {
  min-height: auto;
  margin-bottom: 0.9rem;
}

.site-footer__identity p,
.site-footer__registration p,
.site-footer__contacts p,
.site-footer address {
  max-width: none;
  margin: 0;
}

.site-footer__descriptor {
  margin-bottom: 0.65rem !important;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer__trading-name {
  max-width: 17rem !important;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.4;
}

.site-footer__section-title {
  max-width: none;
  margin: 0 0 0.8rem;
  color: var(--gold-light);
  font-family: var(--body-font);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer__registration,
.site-footer__contacts {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.site-footer__meta-group {
  min-width: 0;
}

.site-footer__label {
  margin-bottom: 0.15rem !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer__meta-group p:not(
  .site-footer__label
),
.site-footer__meta-group address {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  line-height: 1.38;
}

.site-footer address {
  font-style: normal;
}

.site-footer__contacts a[href^="mailto:"] {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.05em;
}

.site-footer__contacts a[href^="mailto:"]:hover {
  color: var(--gold-light);
}

.footer-navigation {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-navigation li {
  margin: 0;
}

.footer-navigation a {
  display: inline-flex;
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-navigation a:hover {
  color: var(--gold-light);
}

.site-footer__bottom {
  padding-block: 0.75rem;
  border-top: 1px solid var(--line-dark);
}

.site-footer__bottom p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  line-height: 1.35;
}

@media (min-width: 40rem) {
  .site-footer__main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 56rem) {
  .site-footer__main {
    grid-template-columns:
      minmax(10rem, 0.75fr)
      minmax(13rem, 0.95fr)
      minmax(15rem, 1.05fr)
      minmax(16rem, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    padding-block: 2.25rem 1.75rem;
  }

  .footer-navigation {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0.8rem;
  }
}
  /* =========================================================
   In-page email actions
   ========================================================= */

.prose a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 2.85rem;
  padding: 0.78rem 1rem;
  color: var(--night) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}

.prose a[href^="mailto:"]:hover {
  color: var(--night) !important;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.prose p:has(> a[href^="mailto:"]:only-child) {
  margin-block: var(--space-6);
}

@media (max-width: 30rem) {
  .prose a[href^="mailto:"] {
    width: 100%;
  }
}
