/* ==========================================================================
   Site Lantern — site.css
   Brand palette (SIL001 Brand Strategy): orange #FA9C19, ink #1D1613,
   charcoal #414042, light grey #E3E3E3. Supporting tints taken from the
   current site: paper #F8F6F3, pale yellow #FFEF98.
   Typeface: Gotham SSm served by cloud.typography.com (see <link> in <head>).
   ========================================================================== */

:root {
  --orange: #FA9C19;
  --orange-dark: #D9820C;
  --ink: #1D1613;
  --charcoal: #414042;
  --slate: #6B6A6D;
  --grey: #E3E3E3;
  --grey-light: #F1F0EE;
  --paper: #F8F6F3;
  --yellow: #FFEF98;
  --white: #FFFFFF;

  --font: "Gotham SSm A", "Gotham SSm B", "Gotham SSm", "Gotham A", "Gotham B", "Gotham",
          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(29, 22, 19, 0.08);
  --shadow-lg: 0 20px 50px rgba(29, 22, 19, 0.14);
  --header-h: 76px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 500; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
strong { font-weight: 700; color: var(--ink); }
.small { font-size: .9rem; }
.muted { color: var(--slate); }
.center { text-align: center; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 1000; border-radius: 6px; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }

/* Section spacing */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--ink); color: #D9D5D0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--yellow { background: var(--yellow); }

/* Orange accent bar that precedes headings (from the current site) */
.bar { display: block; width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin: 0 0 1.1rem; }
.bar--center { margin-inline: auto; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: .8rem; }
.section--dark .eyebrow { color: var(--orange); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--charcoal); }
.section--dark .lead { color: #E8E4DE; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid var(--orange);
  font-weight: 700; font-size: .95rem; letter-spacing: .02em; line-height: 1;
  background: var(--orange); color: var(--ink); cursor: pointer;
  transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s, box-shadow .18s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(250,156,25,.35); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--orange); color: var(--ink); }
.btn--light { background: transparent; color: #fff; border-color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn svg { width: 1.05em; height: 1.05em; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); /* no backdrop-filter: it would turn the header into the containing block for the fixed mobile menu */
  border-bottom: 1px solid rgba(29,22,19,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.nav > li { position: relative; }
.nav a, .nav button {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .9rem; border-radius: 8px; font: inherit; font-size: .95rem; font-weight: 500;
  color: var(--ink); background: none; border: 0; cursor: pointer; text-decoration: none;
}
.nav a:hover, .nav button:hover, .nav a[aria-current="page"] { background: var(--paper); color: var(--ink); text-decoration: none; }
.nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--orange); border-radius: 8px 8px 0 0; }
.nav .chev { width: .8em; height: .8em; transition: transform .2s; }
.nav > li.open > button .chev { transform: rotate(180deg); }
.nav-cta { margin-left: .5rem; }
.nav .nav-cta a.btn { padding: .7rem 1.3rem; border-radius: 999px; background: var(--orange); border: 2px solid var(--orange); font-weight: 700; }
.nav .nav-cta a.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.nav .nav-cta a.btn--ghost { background: transparent; }
.nav .nav-cta a.btn--ghost:hover { background: var(--orange); color: var(--ink); }

.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); padding: .5rem; margin: 0; list-style: none;
  border: 1px solid rgba(29,22,19,.06);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.nav > li.open > .submenu, .nav > li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (hover:hover) { .nav > li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); } .nav > li:hover > button .chev { transform: rotate(180deg); } }
.submenu a { display: block; padding: .6rem .8rem; border-radius: 8px; font-weight: 500; }
.submenu a:hover { background: var(--paper); }
.submenu a[aria-current="page"] { background: var(--paper); box-shadow: inset 3px 0 0 var(--orange); border-radius: 8px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; border-radius: 10px; cursor: pointer; padding: 0; align-items: center; justify-content: center; }
.nav-toggle:hover { background: var(--paper); }
.nav-toggle .bars { position: relative; width: 22px; height: 2px; background: var(--ink); display: block; transition: background .2s; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .2s, top .2s; }
.nav-toggle .bars::before { top: -7px; } .nav-toggle .bars::after { top: 7px; }
body.nav-open .nav-toggle .bars { background: transparent; }
body.nav-open .nav-toggle .bars::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-wrap {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff; overflow-y: auto; padding: .75rem var(--gutter) 2rem;
    opacity: 0; transform: translateY(-10px); visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  body.nav-open .nav-wrap { opacity: 1; transform: none; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > li { border-bottom: 1px solid var(--grey); }
  .nav a, .nav button { width: 100%; justify-content: space-between; padding: 1rem .25rem; font-size: 1.05rem; border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--orange); padding-left: .75rem; background: var(--paper); }
  .nav a:hover, .nav button:hover { background: none; }
  .submenu { position: static; min-width: 0; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 .5rem .75rem; transform: none; display: none; opacity: 1; visibility: visible; }
  .nav > li.open > .submenu { display: block; }
  .nav > li:focus-within > .submenu { display: block; }
  .submenu a { padding: .7rem .5rem; font-weight: 400; color: var(--charcoal); }
  .nav-cta { margin: 1.25rem 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Hero blocks
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; color: #fff; background: var(--ink);
  display: grid; align-items: center; min-height: min(78vh, 720px);
  padding-block: clamp(4rem, 10vw, 7.5rem);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(29,22,19,.92) 0%, rgba(29,22,19,.75) 45%, rgba(29,22,19,.35) 100%); }
.hero__content { max-width: 680px; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero .lead { color: #E8E4DE; margin-bottom: 1.8rem; }
.hero .bar { margin-bottom: 1.4rem; }

.hero--page { min-height: 0; padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.hero--page::before { background: linear-gradient(90deg, rgba(29,22,19,.92) 0%, rgba(29,22,19,.7) 60%, rgba(29,22,19,.5) 100%); }
.hero--page h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.hero--page .lead { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-right { grid-template-columns: 5fr 7fr; } .split--wide-left { grid-template-columns: 7fr 5fr; } }
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--slate); }

/* Cards */
.card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow);
  border: 1px solid rgba(29,22,19,.05); position: relative; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { margin: 0; color: var(--slate); font-size: .97rem; }
a.card { color: inherit; text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(250,156,25,.5); text-decoration: none; }
a.card .arrow { margin-top: auto; padding-top: .8rem; color: var(--orange-dark); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
a.card .arrow svg { width: 1em; height: 1em; transition: transform .2s; }
a.card:hover .arrow svg { transform: translateX(4px); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(250,156,25,.14); display: grid; place-items: center; color: var(--orange-dark); margin-bottom: .4rem; }
.card__icon svg { width: 24px; height: 24px; }
.card--dark { background: var(--charcoal); color: #E8E4DE; border-color: transparent; }
.card--dark h3 { color: #fff; } .card--dark p { color: #D9D5D0; }

/* Stat / highlight tiles */
.tiles { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.tile { background: #fff; border-radius: var(--radius); padding: 1.4rem 1.5rem; border-left: 4px solid var(--orange); box-shadow: var(--shadow); }
.tile__title { display: block; font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: .3rem; line-height: 1.3; }
.tile p { margin: 0; color: var(--slate); font-size: .95rem; }

/* Feature rows (industry pages) */
.feature { display: grid; gap: clamp(1.25rem, 3vw, 3rem); align-items: center; padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.feature + .feature { border-top: 1px solid var(--grey); }
@media (min-width: 800px) {
  .feature { grid-template-columns: 5fr 6fr; }
  .feature:nth-child(even) .feature__media { order: 2; }
}
.feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 2; background: var(--grey-light); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.feature ul { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .5rem; }
.feature li { position: relative; padding-left: 1.6rem; }
.feature li::before { content: ""; position: absolute; left: 0; top: .55em; width: .9rem; height: .9rem; border-radius: 50%; background: rgba(250,156,25,.2); box-shadow: inset 0 0 0 3px var(--orange); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: .5rem 0 1.2rem; display: grid; gap: .55rem; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .28em; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: var(--orange); }
.checklist li::after { content: ""; position: absolute; left: .34rem; top: .5em; width: .32rem; height: .55rem; border: solid var(--ink); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checklist--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

/* CTA band */
.cta-band { background: var(--ink); color: #D9D5D0; }
.cta-band .container { display: grid; gap: 1.5rem; align-items: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 800px) { .cta-band .container { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: #fff; margin: 0 0 .4em; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-band p { margin: 0; max-width: 60ch; }

/* Partners */
.partners { background: #2C2B2B; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.partners .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.partners a, .partners span { display: inline-flex; align-items: center; opacity: .95; transition: opacity .2s, transform .2s; }
.partners a:hover { opacity: 1; transform: translateY(-2px); }
.partners img, .partners svg { height: clamp(44px, 6vw, 64px); width: auto; }

/* Video */
.video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Case-study pages
   -------------------------------------------------------------------------- */
.case-hero { background: var(--yellow); padding-block: clamp(3rem, 7vw, 5rem); }
.case-hero .container { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 800px) { .case-hero .container { grid-template-columns: 1.1fr .9fr; } }
.case-hero h1 { margin-bottom: .4em; }
.case-hero .lead { color: var(--charcoal); }
.quote-card { background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; box-shadow: var(--shadow-lg); }
.quote-card blockquote { margin: 0; font-size: 1.15rem; font-weight: 500; line-height: 1.4; }
.quote-card cite { display: block; font-style: normal; color: var(--orange); font-size: .85rem; margin-top: .6rem; font-weight: 700; }
.quote-card img { width: 72px; height: auto; }
.case-body { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px) { .case-body { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } .case-body__aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.case-body__aside img { margin-inline: auto; max-height: 720px; width: auto; }
.case-section + .case-section { margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(1.5rem, 3vw, 2.5rem); border-top: 1px solid var(--grey); }
.case-section h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); display: flex; align-items: center; gap: .7rem; }
.case-section h2::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex: none; }
.case-section--result h2 { color: var(--orange-dark); }
.case-question { background: var(--paper); border-left: 4px solid var(--orange); padding: 1.1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 500; color: var(--ink); font-size: 1.1rem; margin: 0 0 2rem; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(29,22,19,.05); display: flex; flex-direction: column; gap: 1rem; }
.testimonial .mark { width: 40px; height: 40px; color: var(--orange); }
.testimonial blockquote { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--charcoal); flex: 1; }
.testimonial footer { display: flex; align-items: center; gap: .9rem; padding-top: .5rem; border-top: 1px solid var(--grey); }
.testimonial .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: var(--ink); font-weight: 700; display: grid; place-items: center; flex: none; }
.testimonial .who strong { display: block; color: var(--ink); }
.testimonial .who span { color: var(--slate); font-size: .9rem; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2.5rem); border-top: 5px solid var(--orange); }
.contact-card .email { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 500; color: var(--ink); word-break: break-all; display: inline-flex; align-items: center; gap: .6rem; }
.contact-card .email svg { width: 1.1em; height: 1.1em; color: var(--orange-dark); flex: none; }
.contact-card .btn-row { margin-top: 1.25rem; }
.copy-status { font-size: .9rem; color: var(--orange-dark); font-weight: 700; min-height: 1.4em; margin-top: .6rem; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: start; }
.info-list .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(250,156,25,.14); color: var(--orange-dark); display: grid; place-items: center; }
.info-list .ico svg { width: 22px; height: 22px; }
.info-list strong { display: block; color: var(--ink); margin-bottom: .15rem; }
.info-list p { margin: 0; color: var(--slate); font-size: .97rem; }
address { font-style: normal; }

/* --------------------------------------------------------------------------
   Prose (privacy policy etc.)
   -------------------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose ul li { margin-bottom: .35rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #BDB8B2; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .95rem; }
.site-footer a { color: #E8E4DE; }
.site-footer a:hover { color: var(--orange); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-brand { grid-column: span 1; }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { margin: 0; color: #fff; font-weight: 500; }
.site-footer .footer-heading { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: #8F8A84; }
.footer-bottom a { color: #BDB8B2; }

/* Back to top */
.to-top { position: fixed; right: 1rem; bottom: 1rem; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--ink); border: 0; display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* 404 */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-page .code { font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: .2em; }

/* Print */
@media print { .site-header, .site-footer, .to-top, .cta-band, .video { display: none !important; } body { color: #000; } a::after { content: " (" attr(href) ")"; font-size: .8em; } }
