/* -------------------- Design Tokens -------------------- */
:root {
  --bg: #fff;
  --bg-brand: #192945;
  --brand: #192945;
  --brand-transparent: rgba(25, 41, 69, 0.5);
  --brand-logo: #e9e9e9;
  /* define an inverted ink colour for dark backgrounds */
  --ink-invert: #192945;
  --ink: #fff;
  --muted: #475569;
  --surface: #f1f5f9;
  --surface-transparent: #f1f5f9a6;
  --card: #192945;
  --ring: 0 0 0 3px rgba(44, 62, 80, 0.35);
  --radius: 1.2rem;
  --radius-sm: 1rem;
  --radius-xs: 0.4rem;
  --container: 1200px;
  --section-spacing: clamp(1.5rem, 6vw, 3rem);
  --shadow-sm: 0 10px 30px rgba(2, 8, 23, 0.05);
  --shadow-lg: 0 16px 40px rgba(2, 8, 23, 0.12);
  --font-brand: "Claro", sans-serif;
  --nav-desktop-hover-bg: color-mix(in srgb, var(--brand) 6%, transparent);
  /* Stable header/nav heights for layout calcs (not updated on scroll) */
  --header-expanded-h: 72px;
  --site-nav-h: 0px;
}

/* -------------------- Fonts -------------------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-700-800.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-700-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Claro";
  src: url("../fonts/Claro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Claro-Light";
  src: url("../fonts/Claro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Claro-Italic";
  src: url("../fonts/Claro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: optional;
}

@font-face {
  font-family: "Claro-Light-Italic";
  src: url("../fonts/Claro-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: optional;
}

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

html {
  scroll-padding-top: 84.45px;
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: calc(84.45px + 48px);
  }
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  background: var(--bg);
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

h1,
h2,
h3 {
  font-family: Montserrat, system-ui;
}

/* -------------------- Section Headings -------------------- */
.section-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.section-title {
  margin: 0;
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2.1rem);
  line-height: 1.2;
  color: var(--brand);
}
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* -------------------- Hero Background Media -------------------- */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  display: block;
  pointer-events: none;
}

/* -------------------- Eyebrow Label -------------------- */
.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  opacity: 0.9;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--brand);
  will-change: padding; /* helps avoid jank during shrink/expand */
}

/* When the page is scrolled, we’ll toggle this class from JS */
.site-header.is-shrunk {
  --header-pad-y: 0.25rem; /* tighter top/bottom padding */
  --logo-w: 31px; /* 48px → ~65% */
  --brand-line1: 1.17rem; /* 1.8rem → ~65% */
  --brand-line2: 0.65rem; /* 1rem → ~65% */
}

.site-header.is-shrunk .header-actions {
  font-size: 0.8rem; /* 80% of the baseline */
  gap: 0.5rem; /* slightly tighter spacing */
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: var(--header-pad-y, 0.75rem);
  transition: padding 0.25s ease;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo,
.company-line1,
.company-line2 {
  will-change: width, font-size;
}

.logo {
  width: var(--logo-w, 48px); /* was: 48px */
  height: auto;
  aspect-ratio: 1440 / 1814;
  color: var(--brand-logo);
  display: block;
  transition: width 0.25s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  color: var(--brand-logo);
}

.company-line1 {
  font-size: var(--brand-line1, 1.8rem); /* was: 1.8rem */
  font-family: var(--font-brand);
  transition: font-size 0.25s ease;
}
.company-line2 {
  font-size: var(--brand-line2, 1rem); /* was: 1rem */
  font-family: var(--font-brand);
  transition: font-size 0.25s ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem; /* will tighten when shrunk */
  font-size: 1rem; /* baseline so children can scale with em */
}

.header-actions svg {
  width: 1.2em; /* icon scales with font-size */
  height: 1.2em;
}

.header-actions a {
  text-decoration: none;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*width: 42px;*/
  /*height: 42px;*/
  border-radius: 999px;
  border: 1px solid var(--brand-logo);
  color: var(--brand-logo);
  width: 2.5em; /* icon scales with font-size */
  height: 2.5em;
}

/* Header phone pill link (scales with header font-size) */
.header-actions a.header-tel-desktop {
  display: none; /* hide on mobile view */

  /* override the generic square size used for icon-only links */
  width: auto;
  height: auto;

  align-items: center;
  gap: 0.5em; /* space between icon and text; scales with font-size */

  padding: 0.55em 0.9em; /* inner left/right padding; scales with font-size */
  border: 1px solid var(--brand-logo);
  border-radius: 999px;
  color: var(--brand-logo);
  text-decoration: none;
  font: inherit; /* keep in sync with header-actions scaling */
  line-height: 1.1;
}

.header-actions a:hover,
.header-actions a:focus-visible {
  background: var(--brand-logo);
  color: var(--brand);
  outline: none;
}

/* -------------------- Navigation -------------------- */
/* Mobile-first: full-screen overlay is the primary experience. Desktop styles kick in at 900px */

.site-nav {
  position: sticky;
  top: var(--header-current-h, 72px); /* JS keeps this in sync */
  z-index: 80;
  background: var(--surface);
  color: var(--ink-invert);
  box-shadow: 0 14px 30px -14px rgb(0 0 0 / 55%), 0 2px 0 rgb(0 0 0 / 8%);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

/* Desktop list hidden by default (mobile-first) */
.nav__list {
  display: none;
  margin: 0;
  padding: 0;
}

/* Burger button (mobile) */
.nav__toggle {
  display: grid;
  place-items: center;
  height: auto;
  line-height: 0;
  margin-left: auto;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  /*padding: 0.4rem;*/
  border-radius: 10px;
  color: var(--ink);
}
.nav__toggle:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 35%, #9ec5fe);
  outline-offset: 2px;
}

.nav__burger {
  display: grid;
  gap: 4px;
  /* optional: fixes tiny optical offset on some devices */
  align-content: center;
}
.nav__burger i {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
}

/* ---------- Mobile full-screen menu ---------- */
.mobile-menu {
  position: fixed;
  z-index: 900; /* above .site-header */
  inset: 0;
  background: var(--brand);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

/* Mobile menu header brand */
.mobile-menu__header .brand--mobile {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit; /* inherit var(--ink) context if used */
}

.mobile-menu__header .brand--mobile .logo {
  width: 40px; /* tidy size for mobile header */
  height: auto;
  color: var(--brand-logo); /* matches header brand colour */
}

.mobile-menu__header .brand--mobile .brand-text {
  line-height: 1.05;
  color: var(--brand-logo); /* readable on var(--brand) background */
}

.mobile-menu__header .brand--mobile .company-line1 {
  font-size: 1.6rem;
  font-family: var(--font-brand);
}
.mobile-menu__header .brand--mobile .company-line2 {
  font-size: 0.85rem;
  font-family: var(--font-brand);
  opacity: 0.95;
}
/* End of mobile menu header brand */

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-menu__inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}
.mobile-menu__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.4rem;
  border-radius: 10px;
  cursor: pointer;
}
.mobile-menu__close:focus-visible {
  outline: 3px solid #74c0fc;
  outline-offset: 2px;
}

.mobile-menu__nav {
  overflow-y: auto;
}
.m-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem 2rem;
  display: grid;
  gap: 0.25rem;
}

.m-summary {
  appearance: none;
  -webkit-appearance: none; /* Safari/iOS */
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.m-item a,
.m-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
}
.m-item a:focus-visible,
.m-summary:focus-visible {
  outline: 3px solid #74c0fc;
  outline-offset: 2px;
}

.m-item.has-children .chevron {
  transition: transform 0.2s ease;
}
.m-summary[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.m-panel {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.75rem;
  display: grid;
  gap: 0.2rem;
}
.m-panel[hidden] {
  display: none !important;
}
.m-panel a {
  font-weight: 500;
  opacity: 0.95;
  padding: 0.7rem 0.2rem;
}

/* ===== Mobile hover effect (only on devices that actually support hover) ===== */
@media (any-hover: hover) {
  .m-item a,
  .m-summary,
  .m-panel a {
    position: relative;
    transition: background 0.18s ease;
  }
  .m-item a:hover,
  .m-summary:hover,
  .m-panel a:hover {
    background: color-mix(in srgb, var(--ink) 10%, transparent);
  }
  /* left accent bar on hover */
  .m-item a::before,
  .m-summary::before,
  .m-panel a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ink);
    opacity: 0;
    transform: scaleY(0.6);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .m-item a:hover::before,
  .m-summary:hover::before,
  .m-panel a:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Prevent page scroll when menu is open */
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 360px) {
  .header-actions {
    display: none;
  }
}

/* Mobile layout - hides desktop nav bar (under 900px) */
@media (max-width: 899px) {
  :root {
    --site-nav-h: 0px;
  }

  /* Hide desktop nav bar */
  .site-nav {
    display: none;
  }

  /* 3 columns: brand (left), actions (center), burger (right) */
  .header-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 0;
  }

  .site-header {
    /* subtle, bottom-only shadow */
    /*box-shadow: 0 10px 18px -12px color-mix(in srgb, #000 30%, transparent);*/
    box-shadow: 0 14px 30px -14px rgb(0 0 0 / 55%), 0 2px 0 rgb(0 0 0 / 8%);
  }

  /* Brand stays left */
  .brand {
    justify-self: start;
  }

  /* Only the contact icons group centered */
  .header-actions {
    justify-self: center;
    justify-content: center;
    width: auto; /* override previous 100% */
    gap: 0.75rem;
  }

  /* Burger on the far right + visible color on dark header */
  .nav__toggle {
    justify-self: end;
    color: var(--brand-logo); /* light icon on dark header */
    margin-left: 0; /* neutralize any old rule */
  }
}

/* ---------- Desktop nav (>=900px) ---------- */

@media (min-width: 900px) {
  :root {
    --site-nav-h: 48px;
  }

  /* Show header tel with text */
  .header-actions a.header-tel-desktop {
    display: inline-flex;
  }

  .header-actions a.header-tel-mobile {
    display: none; /* hide small header tell icon in desktop view */
  }

  /* hide mobile UI */
  .nav__toggle,
  .mobile-menu {
    display: none;
  }

  /* equal-width items */
  .nav__list {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav__item {
    position: relative;
    flex: 1 1 0;
    display: flex;
  }

  /* link is a flex container so text and chevron sit together and center */
  .nav__link {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* centers text + arrow as a unit */
    gap: 0.4rem; /* space between text and arrow */
    min-height: 48px;
    padding-inline: 0.8rem; /* no extra right padding */
    white-space: nowrap;
    text-decoration: none;
    color: var(--ink-invert);
    cursor: pointer; /* keep hand cursor even when no href */
    font-weight: 400;
    position: relative;
  }
  .nav__link:hover,
  .nav__link:focus-visible {
    background: var(--nav-desktop-hover-bg);
    outline: none;
  }

  /* don’t use the separate button on desktop */
  .nav__item .nav__arrow {
    display: none !important;
  }

  /* draw the chevron inside the link so it hovers/clicks with the text */
  .nav__item.has-children .nav__link::after {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor; /* inherits link color */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center/contain no-repeat;
    pointer-events: none; /* clicks go to the link */
  }

  /* Dropdown */
  .nav__submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--surface);
    color: var(--ink-invert);
    border: 1px solid #e2e8f0;
    border-radius: 0; /* square corners per spec */
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    min-width: 220px;
    padding: 0;
    display: none;
    z-index: 60; /* overlays <main> */
  }
  .submenu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
  }
  .submenu__list li {
    margin: 0;
  }
  .submenu__list a {
    display: block;
    padding: 0.6rem 0.7rem;
    text-decoration: none;
    color: var(--ink-invert);
    border-radius: 0; /* square corners */
    line-height: 1.4;
  }
  .submenu__list li:not(:last-child) a {
    border-bottom: 1px solid #e9eef5; /* row separation without gaps */
  }
  .submenu__list a:hover,
  .submenu__list a:focus-visible {
    /*background: #f8fafc;*/
    background: var(--nav-desktop-hover-bg);
    outline: none;
  }

  /* Reveal dropdown aligned to its parent */
  .nav__item:hover > .nav__submenu,
  .nav__item:focus-within > .nav__submenu {
    display: block;
  }
}

/* -------------------- Buttons -------------------- */

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  transition: translate 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  outline-offset: 3px;
}
.btn--primary {
  background: var(--brand);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--primary:hover {
  translate: 0 -1px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn:focus-visible {
  outline: 3px solid #74c0fc;
}

/* Buttons for light sections */
.btn--brand {
  background: var(--brand);
  color: #fff;
}
.btn--brand:hover {
  translate: 0 -1px;
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(25, 41, 69, 0.25);
}
.btn--outline:hover {
  background: #f8fafc;
}

/* -------------------- Accent Rule Between Sections -------------------- */
.rule-accent {
  --rule-color: color-mix(in srgb, var(--brand, #2c3e50) 16%, transparent);
  border: 0;
  height: 14px;
  background: linear-gradient(
        to right,
        transparent,
        var(--rule-color),
        transparent
      )
      center/100% 2px no-repeat,
    radial-gradient(circle, var(--brand, #2c3e50) 0 4px, transparent 5px)
      center/8px 8px no-repeat;
  margin: clamp(1rem, 4vw, 2rem) 0;
  opacity: 0.9;
}

/* -------------------- Footer -------------------- */

/* Utility for accessible-only heading */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 0.65rem 0.9rem;
  background: #fff;
  color: #111827;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-footer {
  /*margin-top: clamp(2rem, 7vw, 4rem);*/
  background: var(--brand);
  color: var(--brand-logo);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  padding-block: clamp(2rem, 6vw, 3rem);
}
@media (max-width: 699px) {
  .footer-grid {
    justify-items: center;
    text-align: center;
  }
  .footer-list {
    justify-items: center;
  }
  .footer-nav + .footer-nav {
    margin-top: 1rem;
  }
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Brand block */
.brand--footer .logo {
  width: 44px;
}
.footer-brand .brand-text {
  color: var(--brand-logo);
}
.footer-tagline {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Footer telephone */
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--brand-logo);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}
.footer-tel:hover {
  background: var(--brand-logo);
  color: var(--brand);
}

.footer-tel svg {
  width: 1.2em; /* icon scales with font-size */
  height: 1.2em;
}

/* Link columns */
.footer-heading {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-list a {
  color: var(--brand-logo);
  text-decoration: none;
  opacity: 0.95;
}
.footer-list a:hover,
.footer-list a:focus-visible {
  text-decoration: underline;
  opacity: 1;
  outline: none;
}

/* Subfooter */
.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: color-mix(in srgb, var(--brand) 92%, black);
}
.subfooter-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem 1rem;
  padding-block: 0.9rem;
  font-size: 0.92rem;
}
.subfooter-grid > p {
  margin: 0;
  grid-column: 1;
}
.footer-registration {
  max-width: none;
  font-size: 0.75rem;
}
.subfooter-grid .to-top {
  grid-column: 2;
  align-self: start;
  justify-self: end;
}
@media (max-width: 600px) {
  .subfooter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .subfooter-grid .to-top {
    grid-column: 1;
    justify-self: start;
  }
}
.to-top {
  color: var(--brand-logo);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
.to-top:hover {
  border-bottom-style: solid;
}
