@charset "UTF-8";
/*!
Theme Name: SBC Template
Theme URI: https://squareintheair.com
Author: Square in the Air
Author URI: https://squareintheair.com
Description: Landing page template for SBC, built on Underscores.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sbc-template
*/
/* Colours
   Each is a CSS custom property with the original hex as its fallback,
   so every usage of $clr--x throughout the stylesheets compiles to e.g.
   `var(--clr-primary, #dc0b35)` — meaning client sites can override
   brand colours globally by defining --clr-primary/--clr-black/
   --clr-white on :root (see sbc_template_brand_colors() in functions.php,
   which does this from the "Brand Settings" ACF options page), with no
   per-file changes needed if a client just wants the defaults. */
/* Font families */
/* Font weights */
/* Font sizes */
/* Line heights */
/* Breakpoints */
/* Container Max-Widths (based on breakpoints) */
/* Container Padding */
/* Grid */
/* Border Radius */
/* Breakpoint Mixin: applies styles from the given breakpoint and up */
/* Border Radius Mixin - automatically handles mobile/desktop */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
Theme Name: SBC Template
Theme URI: https://squareintheair.com
Author: Square in the Air
Author URI: https://squareintheair.com
Description: Landing page template for SBC, built on Underscores.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sbc-template
*/
/* Visually hidden but available to screen readers (skip link, menu button label) */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*!
Theme Name: SBC Template
Theme URI: https://squareintheair.com
Author: Square in the Air
Author URI: https://squareintheair.com
Description: Landing page template for SBC, built on Underscores.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sbc-template
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
/* Base */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-black, #141414);
  background-color: var(--clr-white, #ffffff);
}

/* Headings */
h1 {
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 4vw, 5.75rem);
  line-height: 1.2;
  font-style: normal;
}

h2 {
  font-weight: 500;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3.5rem);
  line-height: 1.2;
  font-style: normal;
}

h3 {
  font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 2vw, 2.5rem);
  line-height: 1.2;
  font-style: normal;
}

h4 {
  font-weight: 500;
  font-size: clamp(1rem, 1rem + 1.5vw, 2rem);
  line-height: 1.2;
  font-style: normal;
}

/* Paragraphs */
p {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1rem, 0.875rem + 0.75vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
}

p.lg {
  font-size: clamp(1.125rem, 0.875rem + 1vw, 1.5rem);
}

.btn {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
}

.btn--dark {
  display: inline-flex;
  align-items: center;
  height: 55px;
  background-color: var(--clr-black, #141414);
  border: 2px solid var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0 1.5rem;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .btn--dark {
    border-radius: 4px;
  }
}
.btn--dark {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: var(--clr-primary, #dc0b35);
  border-color: var(--clr-primary, #dc0b35);
}
.btn--primary {
  display: inline-block;
  background-color: var(--clr-primary, #dc0b35);
  border: 2px solid var(--clr-white, #ffffff);
  color: var(--clr-white, #ffffff);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .btn--primary {
    border-radius: 4px;
  }
}
.btn--primary {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: var(--clr-black, #141414);
  border-color: var(--clr-black, #141414);
}
.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
}
.btn--icon .btn__label {
  font-weight: 600;
}

.btn__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  background-color: var(--clr-white, #ffffff);
  color: var(--clr-primary, #dc0b35);
  border-radius: 6px;
}
@media (min-width: 768px) {
  .btn__icon-box {
    border-radius: 8px;
  }
}
.btn__icon-box {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn__icon {
  display: block;
  width: 1rem;
  height: 1rem;
}

.btn--primary:hover .btn__icon-box,
.btn--primary:focus .btn__icon-box {
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}
.container {
  /* Variants */
}
.container--full {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container--fluid {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .container--fluid {
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .container--fluid {
    max-width: 100%;
  }
}
@media (min-width: 1920px) {
  .container--fluid {
    max-width: 1400px;
  }
}
@media (min-width: 768px) {
  .container--narrow {
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .container--narrow {
    max-width: 960px;
  }
}
.container--no-padding {
  padding-left: 0;
  padding-right: 0;
}
.container--no-left-padding {
  padding-left: 0;
}
.container--no-right-padding {
  padding-right: 0;
}

.grid {
  display: grid;
  gap: 1rem;
  /* Column Variants */
}
.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid--cols-12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid {
  /* Auto-fit grid - responsive without media queries */
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.grid {
  /* Gap Variants */
}
.grid--gap-none {
  gap: 0;
}
.grid--gap-xs {
  gap: 0.25rem;
}
.grid--gap-sm {
  gap: 0.5rem;
}
.grid--gap-md {
  gap: 1rem;
}
.grid--gap-lg {
  gap: 1.5rem;
}
.grid--gap-xl {
  gap: 2rem;
}
.grid--gap-2xl {
  gap: 3rem;
}
.grid {
  /* Responsive Grids */
}
.grid--responsive {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--responsive-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--responsive-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--responsive-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid {
  /* Alignment */
}
.grid--center {
  place-items: center;
}
.grid--start {
  place-items: start;
}
.grid--end {
  place-items: end;
}

/* Grid Item Utilities */
.grid-item {
  /* Column Spanning */
}
.grid-item--span-2 {
  grid-column: span 2;
}
.grid-item--span-3 {
  grid-column: span 3;
}
.grid-item--span-4 {
  grid-column: span 4;
}
.grid-item--span-6 {
  grid-column: span 6;
}
.grid-item--span-full {
  grid-column: 1/-1;
}
.grid-item {
  /* Row Spanning */
}
.grid-item--row-span-2 {
  grid-row: span 2;
}
.grid-item--row-span-3 {
  grid-row: span 3;
}

/* Margin Utilities */
.m-xs {
  margin: 0.25rem;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mr-xs {
  margin-right: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.ml-xs {
  margin-left: 0.25rem;
}

.mx-xs {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-xs {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.m-sm {
  margin: 0.5rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mr-sm {
  margin-right: 0.5rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.ml-sm {
  margin-left: 0.5rem;
}

.mx-sm {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-sm {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.m-md {
  margin: 1rem;
}

.mt-md {
  margin-top: 1rem;
}

.mr-md {
  margin-right: 1rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.ml-md {
  margin-left: 1rem;
}

.mx-md {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-md {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.m-lg {
  margin: 1.5rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mr-lg {
  margin-right: 1.5rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.ml-lg {
  margin-left: 1.5rem;
}

.mx-lg {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-lg {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.m-xl {
  margin: 2rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mr-xl {
  margin-right: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.ml-xl {
  margin-left: 2rem;
}

.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-xl {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.m-2xl {
  margin: 3rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mr-2xl {
  margin-right: 3rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.ml-2xl {
  margin-left: 3rem;
}

.mx-2xl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-2xl {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.m-3xl {
  margin: 4rem;
}

.mt-3xl {
  margin-top: 4rem;
}

.mr-3xl {
  margin-right: 4rem;
}

.mb-3xl {
  margin-bottom: 4rem;
}

.ml-3xl {
  margin-left: 4rem;
}

.mx-3xl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-3xl {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.m-4xl {
  margin: 6rem;
}

.mt-4xl {
  margin-top: 6rem;
}

.mr-4xl {
  margin-right: 6rem;
}

.mb-4xl {
  margin-bottom: 6rem;
}

.ml-4xl {
  margin-left: 6rem;
}

.mx-4xl {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-4xl {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.m-5xl {
  margin: 8rem;
}

.mt-5xl {
  margin-top: 8rem;
}

.mr-5xl {
  margin-right: 8rem;
}

.mb-5xl {
  margin-bottom: 8rem;
}

.ml-5xl {
  margin-left: 8rem;
}

.mx-5xl {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-5xl {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

/* Padding Utilities */
.p-xs {
  padding: 0.25rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pr-xs {
  padding-right: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.pl-xs {
  padding-left: 0.25rem;
}

.px-xs {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.p-sm {
  padding: 0.5rem;
}

.pt-sm {
  padding-top: 0.5rem;
}

.pr-sm {
  padding-right: 0.5rem;
}

.pb-sm {
  padding-bottom: 0.5rem;
}

.pl-sm {
  padding-left: 0.5rem;
}

.px-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.pt-md {
  padding-top: 1rem;
}

.pr-md {
  padding-right: 1rem;
}

.pb-md {
  padding-bottom: 1rem;
}

.pl-md {
  padding-left: 1rem;
}

.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pr-lg {
  padding-right: 1.5rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.pl-lg {
  padding-left: 1.5rem;
}

.px-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pr-xl {
  padding-right: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pl-xl {
  padding-left: 2rem;
}

.px-xl {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-2xl {
  padding: 3rem;
}

.pt-2xl {
  padding-top: 3rem;
}

.pr-2xl {
  padding-right: 3rem;
}

.pb-2xl {
  padding-bottom: 3rem;
}

.pl-2xl {
  padding-left: 3rem;
}

.px-2xl {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-2xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.p-3xl {
  padding: 4rem;
}

.pt-3xl {
  padding-top: 4rem;
}

.pr-3xl {
  padding-right: 4rem;
}

.pb-3xl {
  padding-bottom: 4rem;
}

.pl-3xl {
  padding-left: 4rem;
}

.px-3xl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-3xl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-4xl {
  padding: 6rem;
}

.pt-4xl {
  padding-top: 6rem;
}

.pr-4xl {
  padding-right: 6rem;
}

.pb-4xl {
  padding-bottom: 6rem;
}

.pl-4xl {
  padding-left: 6rem;
}

.px-4xl {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-4xl {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-5xl {
  padding: 8rem;
}

.pt-5xl {
  padding-top: 8rem;
}

.pr-5xl {
  padding-right: 8rem;
}

.pb-5xl {
  padding-bottom: 8rem;
}

.pl-5xl {
  padding-left: 8rem;
}

.px-5xl {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-5xl {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.flex {
  display: flex;
  /* Direction */
}
.flex--row {
  flex-direction: row;
}
.flex--row-reverse {
  flex-direction: row-reverse;
}
.flex--col {
  flex-direction: column;
}
.flex--col-reverse {
  flex-direction: column-reverse;
}
.flex {
  /* Justify Content */
}
.flex--justify-start {
  justify-content: flex-start;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-between {
  justify-content: space-between;
}
.flex--justify-around {
  justify-content: space-around;
}
.flex--justify-evenly {
  justify-content: space-evenly;
}
.flex {
  /* Align Items */
}
.flex--items-start {
  align-items: flex-start;
}
.flex--items-end {
  align-items: flex-end;
}
.flex--items-center {
  align-items: center;
}
.flex--items-baseline {
  align-items: baseline;
}
.flex--items-stretch {
  align-items: stretch;
}
.flex {
  /* Wrap */
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--nowrap {
  flex-wrap: nowrap;
}
.flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex {
  /* Gap (for modern browsers) */
}
.flex--gap-xs {
  gap: 0.25rem;
}
.flex--gap-sm {
  gap: 0.5rem;
}
.flex--gap-md {
  gap: 1rem;
}
.flex--gap-lg {
  gap: 1.5rem;
}
.flex--gap-xl {
  gap: 2rem;
}

/* Flex Item Utilities */
.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

/* Section with padding top and bottom */
.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Section sizes - both top and bottom */
.section--xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.section--sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.section--md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section--lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section--xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section--2xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--3xl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section--4xl {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section--5xl {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Section top padding only */
.section--top-xs {
  padding-top: 0.25rem;
}

.section--top-sm {
  padding-top: 0.5rem;
}

.section--top-md {
  padding-top: 1rem;
}

.section--top-lg {
  padding-top: 1.5rem;
}

.section--top-xl {
  padding-top: 2rem;
}

.section--top-2xl {
  padding-top: 3rem;
}

.section--top-3xl {
  padding-top: 4rem;
}

.section--top-4xl {
  padding-top: 6rem;
}

.section--top-5xl {
  padding-top: 8rem;
}

/* Section bottom padding only */
.section--bottom-xs {
  padding-bottom: 0.25rem;
}

.section--bottom-sm {
  padding-bottom: 0.5rem;
}

.section--bottom-md {
  padding-bottom: 1rem;
}

.section--bottom-lg {
  padding-bottom: 1.5rem;
}

.section--bottom-xl {
  padding-bottom: 2rem;
}

.section--bottom-2xl {
  padding-bottom: 3rem;
}

.section--bottom-3xl {
  padding-bottom: 4rem;
}

.section--bottom-4xl {
  padding-bottom: 6rem;
}

.section--bottom-5xl {
  padding-bottom: 8rem;
}

/* Responsive section sizes */
.section--sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .section--sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.section--md {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section--md {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section--lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .section--lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section--xl {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 1024px) {
  .section--xl {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* No padding variants */
.section--no-top {
  padding-top: 0;
}

.section--no-bottom {
  padding-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 32px;
}
.site-branding a {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}
.site-branding .custom-logo {
  display: block;
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-branding {
    height: 50px;
  }
  .site-branding .custom-logo {
    max-width: 160px;
  }
}
.site-branding__fallback {
  color: var(--clr-white, #ffffff);
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(1.125rem, 0.875rem + 1vw, 1.5rem);
}

.menu-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 2px;
  background-color: var(--clr-white, #ffffff);
  transform: translate(-50%, -50%) translateY(-5px);
  transition: transform 0.3s ease;
}
.menu-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%) translateY(5px);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__nav-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  margin: 0.5rem 1rem;
  background-color: var(--clr-white, #ffffff);
  border-radius: 8px;
}
@media (min-width: 768px) {
  .site-header__nav-wrapper {
    border-radius: 12px;
  }
}
.site-header__nav-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.site-header__nav-wrapper.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-navigation {
  width: 100%;
}
.main-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation li {
  text-align: center;
}
.main-navigation a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--clr-black, #141414);
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .main-navigation a {
    border-radius: 4px;
  }
}
.main-navigation a {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.main-navigation a:hover, .main-navigation a:focus {
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
}

.site-header__cta a {
  display: inline-flex;
  align-items: center;
  height: 55px;
  background-color: var(--clr-black, #141414);
  border: 2px solid var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0 1.5rem;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .site-header__cta a {
    border-radius: 4px;
  }
}
.site-header__cta a {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.site-header__cta a:hover, .site-header__cta a:focus {
  background-color: var(--clr-primary, #dc0b35);
  border-color: var(--clr-primary, #dc0b35);
}

@media (min-width: 1024px) {
  .site-header__inner {
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .site-branding {
    grid-column: 1;
    justify-self: start;
  }
  .menu-toggle {
    display: none;
  }
  .site-header__nav-wrapper {
    display: contents;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-navigation {
    grid-column: 2;
    justify-self: center;
    width: auto;
  }
  .main-navigation ul {
    flex-direction: row;
    padding: 0 1.5rem;
    background-color: var(--clr-white, #ffffff);
    border-radius: 3px;
    transition: background-color 0.3s ease;
    height: 55px;
    display: flex;
    align-items: center;
    width: auto;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .main-navigation ul {
    border-radius: 4px;
  }
}
@media (min-width: 1024px) {
  .main-navigation a {
    color: var(--clr-black, #141414);
  }
  .main-navigation a:hover, .main-navigation a:focus {
    background-color: var(--clr-primary, #dc0b35);
    color: var(--clr-white, #ffffff);
  }
  .site-header__cta a {
    display: inline-flex;
    align-items: center;
    height: 55px;
    background-color: var(--clr-black, #141414);
    border: 2px solid var(--clr-primary, #dc0b35);
    color: var(--clr-white, #ffffff);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 0 1.5rem;
    border-radius: 3px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-family: "Instrument Sans", sans-serif;
    line-height: 1.2;
    font-style: normal;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .site-header__cta a {
    border-radius: 4px;
  }
}
@media (min-width: 1024px) {
  .site-header__cta a:hover, .site-header__cta a:focus {
    background-color: var(--clr-primary, #dc0b35);
    border-color: var(--clr-primary, #dc0b35);
  }
  .site-header__cta {
    grid-column: 3;
    justify-self: end;
  }
  .main-navigation.is-dark ul {
    background-color: var(--clr-black, #141414);
  }
  .main-navigation.is-dark a {
    color: var(--clr-white, #ffffff);
  }
  .main-navigation.is-dark a:hover, .main-navigation.is-dark a:focus {
    background-color: var(--clr-primary, #dc0b35);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--clr-black, #141414);
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(75vh + 2rem);
  margin-top: calc(-1 * var(--header-height, 72px));
}
@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh + 2rem);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  margin-bottom: 6rem;
}
.hero__heading {
  color: var(--clr-white, #ffffff);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .hero__heading {
    margin-bottom: 3rem;
  }
}
.hero__subheading {
  color: var(--clr-white, #ffffff);
  text-wrap: balance;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero__subheading {
    margin-bottom: 3rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  position: relative;
  z-index: 10;
  background-color: var(--clr-white, #ffffff);
  margin-top: -1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media (min-width: 1024px) {
  .gallery {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.gallery__lead {
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .gallery__lead {
    max-width: 60ch;
    margin-bottom: 6rem;
  }
}
@media (min-width: 1440px) {
  .gallery__lead {
    max-width: 80%;
  }
}
.gallery__lead .lead__highlight {
  color: var(--clr-primary, #dc0b35);
}
.gallery__video-wrap {
  position: relative;
  padding: 0 1rem;
}
.gallery__video-label {
  display: none;
}
.gallery__video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .gallery__video {
    border-radius: 12px;
  }
}
.gallery__video {
  overflow: hidden;
  transition: transform 0.4s ease;
}
.gallery__video iframe,
.gallery__video video {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .gallery__video-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery__video-wrap:hover .gallery__video-label--left {
    margin-right: 6rem;
    color: var(--clr-primary, #dc0b35);
    opacity: 1;
  }
  .gallery__video-wrap:hover .gallery__video-label--right {
    margin-left: 6rem;
    color: var(--clr-primary, #dc0b35);
    opacity: 1;
  }
  .gallery__video-wrap:hover .gallery__video {
    transform: scale(1.08);
  }
  .gallery__video-label {
    display: block;
    opacity: 0.2;
    font-size: clamp(1.8rem, 1.2rem + 3vw, 3.5rem);
    font-weight: 500;
    white-space: nowrap;
    transition: margin 0.4s ease;
  }
  .gallery__video-label--left {
    margin-right: 1.5rem;
  }
  .gallery__video-label--right {
    margin-left: 1.5rem;
  }
  .gallery__video {
    flex: 0 0 auto;
    width: 55%;
  }
}
.gallery__images {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .gallery__images {
    display: none;
  }
}
.gallery__image {
  position: relative;
  flex: 0 0 26%;
  aspect-ratio: 3/4;
  margin-left: -5%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #dfdfdf;
}
.gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__image:first-child {
  margin-left: 0;
}
.gallery__image:nth-child(1) {
  transform: rotate(-8deg);
  z-index: 4;
}
.gallery__image:nth-child(2) {
  transform: rotate(10deg);
  z-index: 3;
}
.gallery__image:nth-child(3) {
  transform: rotate(-12deg) translateY(-1rem);
  z-index: 2;
}
.gallery__image:nth-child(4) {
  transform: rotate(8deg);
  z-index: 1;
}

.gallery__ticker-wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .gallery__ticker-wrap {
    cursor: none;
  }
}

.gallery__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 7.5rem;
  height: 7.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, left 0.15s ease-out, top 0.15s ease-out;
}
@media (min-width: 1024px) {
  .gallery__cursor {
    display: flex;
  }
}
.gallery__cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery__cursor-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--clr-black, #141414);
  border-bottom: 1px solid var(--clr-black, #141414);
  padding: 1rem 0;
  margin-top: 1.5rem;
}

.ticker__track {
  display: inline-flex;
  width: max-content;
}

.ticker__item {
  display: inline-block;
  font-size: clamp(1.3rem, 1rem + 2vw, 2.5rem);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 1.5rem;
}

.gallery__hover-images {
  display: none;
}
@media (min-width: 1024px) {
  .gallery__hover-images {
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 5;
  }
}

.gallery__hover-zone {
  flex: 1 1 0;
  position: relative;
  height: 100%;
  pointer-events: auto;
}
.gallery__hover-zone:nth-child(1) {
  --hover-rotate: -8deg;
}
.gallery__hover-zone:nth-child(2) {
  --hover-rotate: 10deg;
}
.gallery__hover-zone:nth-child(3) {
  --hover-rotate: -12deg;
}
.gallery__hover-zone:nth-child(4) {
  --hover-rotate: 8deg;
}
.gallery__hover-zone:hover .gallery__hover-image {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--hover-rotate)) scale(1);
}

.gallery__hover-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(160px, 16vw, 240px);
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  background-color: #dfdfdf;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--hover-rotate)) scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery__hover-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbc-lisbon {
  background-color: var(--clr-white, #ffffff);
}
.sbc-lisbon__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .sbc-lisbon__grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}
.sbc-lisbon__box {
  border-radius: 8px;
}
@media (min-width: 768px) {
  .sbc-lisbon__box {
    border-radius: 12px;
  }
}
.sbc-lisbon__box {
  overflow: hidden;
}
.sbc-lisbon__box--cta {
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .sbc-lisbon__box--cta {
    padding: 1.5rem 3rem;
    grid-column: span 2;
  }
}
.sbc-lisbon__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .sbc-lisbon__cta-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.sbc-lisbon__heading {
  color: var(--clr-white, #ffffff);
  margin: 0;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .sbc-lisbon__heading {
    flex: 1;
    text-align: left;
  }
}
.sbc-lisbon .btn--icon {
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .sbc-lisbon .btn--icon {
    flex-shrink: 0;
  }
}
.sbc-lisbon__box--image {
  position: relative;
  aspect-ratio: 1/1;
}
.sbc-lisbon__box--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .sbc-lisbon__box--image {
    grid-column: span 1;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--clr-white, #ffffff);
  padding-bottom: 3rem;
}
.slider__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.slider__heading {
  color: var(--clr-black, #141414);
  max-width: 20ch;
  text-wrap: balance;
}
.slider__subtext {
  color: var(--clr-black, #141414);
  max-width: 50ch;
  margin: 0 auto;
}
.slider__stage {
  position: relative;
  overflow: hidden;
  height: 420px !important;
  margin-top: 1rem;
  user-select: none;
}
@media (min-width: 414px) {
  .slider__stage {
    height: 600px !important;
  }
}
@media (min-width: 1024px) {
  .slider__stage {
    height: 700px !important;
  }
}
.slider__wheel {
  position: absolute;
  inset: 0;
}
.slider__circle {
  position: absolute;
  inset: 0;
  display: block;
  overflow: visible;
}
.slider__circle-path {
  fill: none;
  stroke: #dfdfdf;
  stroke-width: 2;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
}
.slider__drag-surface {
  position: absolute;
  inset: 0;
  z-index: 7;
  cursor: grab;
}
.slider__drag-surface:active {
  cursor: grabbing;
}
@media (min-width: 1024px) {
  .slider__drag-surface {
    cursor: none;
  }
}
.slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 75vw;
  max-width: 440px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
@media (min-width: 1024px) {
  .slider__item {
    width: 36vw;
    max-width: 400px;
  }
}
.slider__card {
  background-color: var(--clr-white, #ffffff);
  border: 1px solid #dfdfdf;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .slider__card {
    border-radius: 12px;
  }
}
.slider__card {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  height: 360px;
  overflow: hidden;
}
@media (min-width: 414px) {
  .slider__card {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .slider__card {
    height: 440px;
  }
}
@media (min-width: 1024px) {
  .slider__card {
    height: 450px;
  }
}
.slider__image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .slider__image {
    border-radius: 8px;
  }
}
.slider__image {
  margin-bottom: 0.25rem;
}
.slider__item-heading {
  color: var(--clr-primary, #dc0b35);
  margin: 0;
  text-transform: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.slider__item-subtext {
  color: var(--clr-black, #141414);
  padding-bottom: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.slider__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, left 0.15s ease-out, top 0.15s ease-out;
}
@media (min-width: 1024px) {
  .slider__cursor {
    display: flex;
  }
}
.slider__cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slider__cursor-label {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* ==========================================================================
   About — one long horizontally-draggable strip: a big intro panel, then a
   trailing row of gallery photos. Dragging (see js/about.js) moves the
   whole track sideways; the page itself doesn't scroll with it. Same on
   mobile and desktop: the intro fills most of the viewport, leaving just
   enough of the first photo showing at the edge to hint there's more.
   ========================================================================== */
.about {
  position: relative;
  background-color: var(--clr-white, #ffffff);
  overflow: hidden;
  cursor: none;
}

.about__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, left 0.15s ease-out, top 0.15s ease-out;
}
.about__cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about__cursor-label {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.about__stage {
  position: relative;
}

.about__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  cursor: grab;
}
.about__track:active {
  cursor: grabbing;
}

.about__intro {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90vw;
  max-width: 1400px;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .about__intro {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about__intro {
    width: 80vw;
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}

.about__heading {
  margin: 0 0 1rem;
  color: var(--clr-black, #141414);
}
@media (min-width: 1024px) {
  .about__heading {
    margin: 0 0 3rem;
  }
}

.about__heading-highlight {
  color: var(--clr-primary, #dc0b35);
}

.about__subtext {
  margin: 0;
  max-width: 50ch;
  color: var(--clr-black, #141414);
  font-size: clamp(1.125rem, 0.875rem + 1vw, 1.5rem);
}

.about__gallery {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .about__gallery {
    gap: 1.5rem;
    padding-right: 3.2rem;
  }
}

.about__image {
  flex: 0 0 auto;
  width: 100vw;
  max-width: 480px;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #dfdfdf;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .about__image {
    border-radius: 24px;
  }
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}
.about__image:hover img {
  transform: scale(1.08);
}
@media (min-width: 1024px) {
  .about__image {
    width: 32vw;
    max-width: 520px;
  }
}

.back-to-top {
  position: relative;
  z-index: 2;
  background-color: var(--clr-white, #ffffff);
  margin-bottom: -2rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.back-to-top__inner {
  display: flex;
  justify-content: center;
}

.back-to-top__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--clr-black, #141414);
  font-weight: 600;
}

.back-to-top__label {
  white-space: nowrap;
}

.back-to-top__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--clr-white, #ffffff);
  color: var(--clr-black, #141414);
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .back-to-top__icon {
    border-radius: 9999px;
  }
}
.back-to-top__icon {
  transition: background-color 0.25s ease, color 0.25s ease;
}
.back-to-top__icon svg {
  display: block;
}
.back-to-top__icon path {
  fill: currentColor;
}

.back-to-top__btn:hover .back-to-top__icon {
  background-color: var(--clr-primary, #dc0b35);
  color: var(--clr-white, #ffffff);
}

.back-to-top__btn:hover {
  color: var(--clr-primary, #dc0b35);
}

.site-footer {
  background-color: var(--clr-black, #141414);
  color: var(--clr-white, #ffffff);
  padding-top: 2rem;
}

.footer-cta {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--clr-primary, #dc0b35);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.footer-cta__track {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  margin-left: 50%;
  transform: translateX(var(--footer-cta-default, -50%));
  transition: transform 0.5s ease;
}
.footer-cta:hover .footer-cta__track {
  transform: translateX(var(--footer-cta-hover, -50%));
}
.footer-cta:hover .footer-cta__bg {
  opacity: 1;
}
.footer-cta__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 1.5rem;
  color: var(--clr-white, #ffffff);
  font-weight: 500;
  font-size: clamp(2.5rem, 1.5rem + 7vw, 7rem);
  line-height: 1;
}
@media (min-width: 1024px) {
  .footer-cta__item {
    padding-right: 1rem;
  }
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .site-footer__bottom {
    border-top: 1px solid var(--clr-white, #ffffff);
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.site-footer__logo {
  min-width: 0;
}
.site-footer__logo .custom-logo {
  display: block;
  height: 32px;
  width: auto;
}

.site-footer__logo-fallback {
  color: var(--clr-white, #ffffff);
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(1.125rem, 0.875rem + 1vw, 1.5rem);
}

.site-footer__copyright-link {
  text-decoration: none;
}

.site-footer__copyright {
  margin: 0;
  color: var(--clr-white, #ffffff);
  opacity: 0.6;
  font-size: 0.875rem;
}

/*# sourceMappingURL=style.css.map */
