html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  cursor: pointer;
}

figure {
  margin: 0;
  padding: 0;
}

        :root {
  --header-height: 64px;

  --color-white: #ffffff;
  --color-primary: #00679e;
  --color-text: #363636;
  --color-text-light: #8e8e8e;
  --color-background: #f7f7f7;
  --color-outline: #b5d3e3;

  --column-width: clamp(40px, 15%, 233px);
  --column-gap: clamp(12px, 1%, 24px);

  --padding-y: 1rem;
  --padding-x: 3rem;

  --z-index-hero-img: 1;
  --z-index-hero: 2;
  --z-index-nav: 3;
  --z-index-nav-button: 4;
  --z-index-skip-link: 4;
}

@media screen and (max-width: 578px) {
  :root {
    --padding-y: 1rem;
  }
}

        .flex {
  display: flex;
  gap: var(--flex-gap, var(--column-gap));
}

.flex.align-center {
  align-items: center;
}

.flex.center {
  justify-content: center;
}

.flex.between {
  justify-content: space-between;
}

.flex.end {
  justify-content: flex-end;
}

.flow > * + * {
  margin-top: var(--padding-y);
}

.contains-lists ul,
.contains-lists ol {
  padding-left: 1rem;
  list-style-type: revert-layer;
}

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
  Hides the list off screen, since these are links
  that are only useful for keyboard users, and do
  not require being consistently visible.
 */
.off-screen {
  left: -100vw;
  list-style: none;
  position: absolute;
}

/*
  Style the skip links to be fixed to the 
  top of the page, and have an initial 
  negative Y-axis value.
 */
.skip-link {
  background: var(--color-outline);
  color: var(--color-text);
  left: 0;
  padding: 0.75em;
  position: fixed;
  top: 0;
  transform: translateY(-10em);
  transition: transform 0.2s ease-in-out;
  background: var(--color-outline);
  z-index: var(--z-index-skip-link);
}

.skip-link.to-top {
  bottom: 0;
  top: auto;
  right: 0;
  left: auto;
  transform: translateY(10em);
}

/*
  Upon focus of the skip link, transition
  it into view by returning it's Y-axis to
  the default 0 value.
 */
.skip-link:focus {
  transform: translateY(0em);
}

/*
  Class to use for elements only shown on small screens
*/
@media screen and (min-width: 578px) {
  .mobile-only {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .tablet-only {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .desktop-only {
    display: none;
  }
}

body:has(nav[data-open]) {
  overflow: hidden;
}

        body {
  background: var(--color-background);
}

main {
  overflow-x: hidden;
}

header, main, footer, .contact {
  max-width: 2048px;
  margin: auto;
}

        * {
  font-family: "Georgia", ui-serif, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif;
  color: var(--color-text);
}

.font-display {
  font-size: 2.5rem;
  line-height: 3.125rem;
  max-width: 32ch;
}

.font-headline {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48ch;
  text-transform: uppercase;
  letter-spacing: .05rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.color.primary {
  color: var(--color-primary);
}

section h2 {
  text-align: center;
  padding: 4rem 0 2rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

p.intro {
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}

.text-muted {
  color: var(--color-text-light);
}

@media screen and (max-width: 578px) {
  .font-display {
    font-size: 1.875rem; /* 30px */
    line-height: 2.5rem; /* 40px */
  }

  .font-headline {
    font-size: 1.25rem; /* 20px */
  }
}

        body > header {
  width: 100%;
  position: sticky;
  top: -1px;
  z-index: var(--z-index-nav);
  background: var(--color-white);
}

body > header.stuck {
  box-shadow: 0 20px 20px 2px rgba(0,0,0,.25);
}

body > header a,
body > header a:visited,
body > header a *,
body > header a:visited * {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
}

body > header a:hover,
body > header a:focus-visible {
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary), 50% var(--color-white));
}

body > header aside {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: var(--flex-gap);
  --flex-gap: 2rem;
}

@media screen and (max-width: 768px) {
  body > header aside {
    --flex-gap: 0.5rem;
    justify-content: center;
  }
}

body > header .header-inner {
  padding: var(--padding-y) var(--padding-x);
  height: var(--header-height);
}

body > header .header-inner a strong {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  body > header .header-inner a strong {
    font-weight: revert;
  }
}

/* Separator between street and city */
body > header .header-inner .street:after {
  content: ",";
}

@media screen and (max-width: 768px) {
  body > header .header-inner .street {
    display: inline-block;
    position: relative;
    padding-right: 0.5rem;
    margin-right: 0.1rem;
  }

  body > header .header-inner .street:after {
    content: "";
    border-right: 1px solid var(--color-white);
    height: 1rem;
    position: absolute;
    top: 0rem;
    right: 0;
  }
}

@media screen and (max-width: 1024px) {
  body > header .header-inner {
    --padding-y: 0;
    --padding-x: 3rem;
    --header-height: 3rem;
  }
}

@media screen and (max-width: 768px) {
  body > header .header-inner {
    --padding-x: 1rem;
  }
}

body > header .header-inner a {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

@media screen and (max-width: 768px) {
  body > header .header-inner a {
    font-size: 3.75dvw;
    height: 1rem;
  }

  body > header .header-inner {
    /* Invert on smartphone */
    background: var(--color-primary);
    color: var(--color-white);
  }

  body > header .header-inner a:not(:last-of-type) {
    border-right: 1px solid var(--color-white);
    padding-right: 0.5rem;
  }

  body > header .header-inner a,
  body > header .header-inner strong,
  body > header .header-inner span {
    /* Invert on smartphone */
    color: var(--color-white);
  }

  body > header .header-inner a.desktop-only {
    display: none;
  }
}

body > header .header-inner a img {
  height: 1.4rem;
}

@media screen and (max-width: 768px) {
  body > header .header-inner a img {
    /* Invert on smartphone */
    filter: saturate(0) brightness(0) invert(1);
  }
}

@media screen and (max-width: 768px) {
  body > header .header-inner {
    padding: var(--padding-y) calc(var(--padding-x) / 2);
  }
}

        section.hero {
    width: 100%;
    padding: 1rem var(--padding-x);
    min-height: 40rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    section.hero {
        padding: 1rem calc(var(--padding-x) / 2)
    }
}

section.hero > *:not(picture) {
    z-index: var(--z-index-hero);
    position: relative;
}

.page-title {
    display: flex;
    flex-flow: column-reverse;
    width: 34rem;
    margin-top: 7rem;
    margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
    .page-title {
        width: 100%;
        margin-top: 4rem;
    }

    .page-title * {
        hyphens: auto;
    }
}

.page-title * {
    color: var(--color-white);
}

.page-title .names {
    display: block;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

@media screen and (max-width: 512px) {
    .page-title .names {
        max-width: 20ch;
    }
}

.page-title h1 {
    font-weight: 700;
    font-size: 2.75rem;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .page-title h1 {
        font-size: 2.3rem;
    }
}

section.hero a.button,
section.hero a.button:visited {
    background: var(--color-primary);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    padding: 1.2rem 1.2rem;
    font-size: 0.8rem;
}

section.hero img {
    background: color-mix(in srgb, var(--color-primary), 50% var(--color-text));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: var(--z-index-hero-img);
}

        section.hero .header-navigation {
    position: relative;
    z-index: var(--z-index-nav);
}

section.hero nav {
    padding: var(--padding-y) 0;
    --flex-gap: 2.75rem;
}

section.hero nav a,
section.hero nav a:visited {
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

section.hero nav a:hover,
section.hero nav a:focus-visible {
    border-bottom: 1px solid color-mix(in srgb, var(--color-white), 50% transparent);
}

@media screen and (max-width: 768px) {
    section.hero nav .nav.flex.end {
        justify-content: flex-start;
    }

    section.hero nav .nav {
        transition: opacity .3s ease;
        opacity: 0;
        flex-flow: column;
        gap: 2rem;
    }

    section.hero nav:not(.is-active) .nav {
        width: 0;
        height: 0;
        overflow: hidden;
    }

    section.hero nav.is-active .nav  {
        opacity: 1;
        background: var(--color-primary);
        max-height: 80dvh;
        position: fixed;
        right: 0;
        top: 2.8rem;
        width: 100dvw;
        flex-flow: column;
        padding: 2rem;
        min-width: 18rem;
        z-index: var(--z-index-nav);
        box-shadow: 0 20px 20px 2px rgba(0,0,0,.25);
    }
}

/**
    Nav Button
 */

.nav-button {
    background: none;
    z-index: var(--z-index-nav-button);
    border: 0;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease, opacity 0.4s ease;
    cursor: pointer;
    transform-origin: center;
    height: 2rem;
    min-height: 2rem;
    width: 1.5rem;
}

@media screen and (min-width: 768px) {
    .nav-button {
        display: none;
    }
}

.nav-button:hover {
    transform: scale(1.05);
    outline: none;
}

.nav-button.is-active .nav-button-caption {
    display: none;
}

.nav-button.is-active .nav-button-bar {
    background: transparent;
}

.nav-button.is-active .nav-button-bar:after {
    transform: rotate(45deg);
    top: 0;
}

.nav-button.is-active .nav-button-bar:before {
    transform: rotate(-45deg);
    top: 0;
}

.nav-button-link {
    display: block;
    position: absolute;
    right: 0;
    top: 0.75rem;
}

.nav-button-bar {
    width: 1.5rem;
    height: 0.1875rem;
    background: var(--color-white);
    position: absolute;
    left: 0;
    top: 0.8125rem;
    color: transparent;
    font-size: 0;
    text-indent: -999px;
    transition: background 0.5s ease;
}

.nav-button-bar:before,
.nav-button-bar:after {
    content: "";
    width: 1.5rem;
    height: 0.1875rem;
    background: var(--color-white);
    position: absolute;
    transition: transform 0.5s ease, top 0.5s ease;
    transform: rotate(0);
    overflow: hidden;
}

.nav-button-bar:before {
    top: -0.5rem;
    left: 0;
}

.nav-button-bar:after {
    top: 0.5rem;
    left: 0;
}

.nav-button-caption {
    display: block;
    color: var(--color-white);
    min-width: 7.5rem;
    text-align: left;
    margin-top: -0.3125rem;
    margin-left: -3.5rem;
}

.nav-button-containment {
    transition: transform 0.3s ease;
}

.nav-button .nav-button-containment:after {
    content: '';
    border: 1px solid var(--color-white);
    border-radius: 100%;
    width: 2.2rem;
    height: 2.2rem;
    display: block;
    position: absolute;
    top: -0.2rem;
    left: -0.3rem;
    transition: opacity .3s ease;
    opacity: 0;
}


.nav-button.is-active .nav-button-containment:after {
    opacity: 1;
}

        section.team:not(.solid) {
    max-width: 90rem;
    margin: -4rem auto auto;
    background: var(--color-white);
    padding: 4rem;
    z-index: var(--z-index-hero);
    position: relative;
}

section.team article.people {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
    section.team:not(.solid) {
        padding: 2rem;
    }

    section.team article.people {
        grid-template-columns: 1fr;
    }
}

section.team article.people figcaption h3 {
    margin: 2rem 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
}

@media screen and (max-width: 512px) {
    section.team article.people figcaption h3 {
        font-size: 1.3rem;
    }
}

section.team article.people figcaption p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
}

section.team article.people img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    object-position: top;
}

section.team.solid {
    background: var(--color-primary);
    padding: 4rem 0 ;
    position: relative;
}

section.team.solid:before {
    content: "";
    position: relative;
    width: 90rem;
    background: var(--color-white);
    height: 2rem;
    z-index: var(--z-index-hero);
    display: block;
    margin: auto;
    top: -4rem;
}

section.team.solid figure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 90rem;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media screen and (max-width: 768px) {
    section.team.solid figure {
        grid-template-columns: 1fr;
    }
}

section.team.solid figcaption h3 {
    max-width: 40ch;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: var(--color-white);
}

        section.areas {
    max-width: 90rem;
    padding: 6rem 4rem;
    margin: auto;
}

section.areas .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 4rem auto;
    gap: 1rem;
    max-width: 72rem;
}

@media screen and (max-width: 768px) {
    section.areas {
        padding: 6rem 2rem;
    }

    section.areas .list {
        grid-template-columns: 1fr;
        margin-left: -1rem;
        width: calc(100% + 2rem);
    }
}

section.areas details {
    height: 12rem;
    background: var(--color-white);
    position: relative;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

section.areas details summary {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 28ch;
    margin: auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8rem;
    list-style-type: none;
}

section.areas details summary::-webkit-details-marker {
    display: none;
}

@media screen and (max-width: 1024px) {
    section.areas details summary {
        hyphens: auto;
        padding: 0 1rem;
    }
}

section.areas details .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 1rem 3rem;
    background: var(--color-primary);
    box-sizing: border-box;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

section.areas details[open] .content {
    animation: appear .4s ease;
}

@media screen and (max-width: 1024px) {
    section.areas details .content {
        padding: 1rem;
    }
}

section.areas details .content ul li,
section.areas details .content dl dt,
section.areas details .content dl dd {
    color: var(--color-white);
    margin-top: 0.3rem;
}

@media screen and (max-width: 512px) {
    section.areas details .content ul li,
    section.areas details .content dl dt,
    section.areas details .content dl dd {
        hyphens: auto;
    }
}

section.areas details .content dl dt {
    font-weight: 700;
}

section.areas details .content dl dd {
    margin: 1rem 0;
}

section.areas details .content dl {
    margin: 0;
    max-width: 15ch;
}

@keyframes appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

        section.downloads {
    background: var(--color-white);
    width: 100%;
}

section.downloads .downloads-inner {
    max-width: 90rem;
    padding: 6rem 4rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

@media screen and (max-width: 1024px) {
    section.downloads .downloads-inner {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    section.downloads .downloads-inner {
        padding: 6rem 2rem;
    }

    section.downloads .downloads-inner ul {
        margin-left: -1rem;
        width: calc(100% + 2rem);
    }

    section.downloads .downloads-inner ul li {
        padding: 1.5rem;
    }
}

section.downloads article h2,
section.downloads article p.intro {
    text-align: left;
    margin-left: 0;
}

section.downloads ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 4rem;
}

@media screen and (max-width: 1024px) {
    section.downloads ul {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    section.downloads ul {
        grid-template-columns: 1fr;
    }
}

section.downloads ul li {
    padding: 2rem;
    background: var(--color-primary);
    display: grid;
    grid-template-columns: 1fr 1.5rem 1.5rem;
    gap: 2rem;
    align-items: center;
    min-height: 6rem;
}

section.downloads ul li p {
    color: var(--color-white);
}

section.downloads ul li img {
    width: 1.5rem;
    height: 1.5rem;
}

        section.contact {
    position: relative;
    max-width: 90rem;
}

/* Map */
section.contact > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    right: 0;
    mask: linear-gradient(0, var(--color-background) 20%, transparent, var(--color-background) 20%);
}

section.contact .map-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(90deg, var(--color-background) 0, transparent 40%, transparent 90%, var(--color-background) 100%);
}

section.contact .contact-inner {
    max-width: 90rem;
    margin: auto;
    position: relative;
    min-height: 42rem;
}

@media screen and (max-width: 768px) {
    section.contact .contact-inner {
        min-height: 24rem;
    }

    section.contact .map-overlay {
        display: none;
    }
}

section.contact .contact-inner .icon > img {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    object-fit: contain;
    object-position: center;
    margin-top: 0.25rem;
}

section.contact article {
    width: 30rem;
    background: var(--color-white);
    position: absolute;
    top: 2rem;
    left: 3rem;
    height: calc(100% - 2rem);
    padding: 3rem 2.5rem;
}

@media screen and (max-width: 768px) {
    section.contact article {
        left: 0;
        height: auto;
        top: auto;
        bottom: 0;
        width: 100%;
        padding: 3rem 2rem;
    }
}

section.contact ul li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    margin-bottom: .5rem;
    align-items: center;
}

section.contact ul li a,
section.contact ul li a:visited {
    text-decoration: none;
}

section.contact ul li a:hover,
section.contact ul li a:focus-visible {
    border-bottom: 1px solid color-mix(in srgb, var(--color-primary), 50% var(--color-white));
}

section.contact h2 {
    text-align: left;
    margin-left: 0;
}

section.contact h2:first-of-type {
    padding-top: 0;
}

section.contact dl {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

section.contact dl * {
    color: var(--color-text-light);
}

section.contact dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
    position: relative;
}

section.contact dt {
    position: relative;
}

section.contact dd,
section.contact dt {
    padding: 1rem 0;
}

section.contact dt:before,
section.contact dd:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--color-outline);
    top: 0;
    left: 0;
}

section.contact dt:last-of-type:after,
section.contact dd:last-of-type:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--color-outline);
    bottom: 0;
    left: 0;
}

        section.copytext {
    max-width: 90rem;
    margin: -4rem auto auto;
    background: var(--color-white);
    padding: 4rem;
    position: relative;
    z-index: var(--z-index-hero);
}

@media screen and (max-width: 768px) {
    section.copytext {
        padding: 1rem;
    }
}

section.copytext h3 {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin-top: 2rem;
}

section.copytext p,
section.copytext li {
    font-size: 1.1rem;
    line-height: 1.8rem;
    max-width: 84ch;
}

section.copytext p {
    margin: 1rem 0;
}

        form {
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    form {
        padding: 1rem;
    }
}

label {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

label:has(input[type="checkbox"]) {
    flex-flow: row;
    gap: 1rem;
    align-items: center;
}

label:has(input[type="checkbox"]) span {
    max-width: 60ch;
}

label:has(textarea) {
    margin-top: 5rem;
}

input,
textarea {
    padding: 0.9rem;
    border: 1px solid var(--color-primary);
    font-size: 1rem;
}

button {
    background: var(--color-primary);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    padding: 1.2rem 3.2rem;
    font-size: 0.9rem;
    border: 1px solid var(--color-primary);
    outline: 2px solid transparent;
    transition: outline .4s ease;
}

button:hover {
    cursor: pointer;
    outline: 2px solid var(--color-primary);
}

button[type="reset"] {
    background: var(--color-white);
    color: var(--color-primary);
}

fieldset {
    border: 0;
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}

@media screen and (max-width: 768px) {
    fieldset {
        flex-flow: column;
    }
}

        body > footer {
    background: var(--color-primary);
}

body > footer .cellar-inner,
body > footer .basement-inner {
    max-width: 80rem;
    margin: auto;
}

body > footer .cellar {
    padding: 3rem 0;
}

body > footer .cellar-inner {
    display: grid;
    grid-template-columns: 0.9fr auto 1.1fr 1fr;
    gap: 5rem;
}

@media screen and (max-width: 1280px) {
    body > footer .cellar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    body > footer .cellar-inner {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

body > footer .cellar-inner p {
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

body > footer .cellar-inner p.directions {
    margin-top: -0.75rem;
}

body > footer .cellar-inner ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

body > footer .cellar-inner dl {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 0.5rem;
}

body > footer .cellar-inner dd {
    margin-left: 0;
    font-size: 0.9rem;
    line-height: 1.4rem;
}

body > footer .cellar-inner dt,
body > footer .cellar-inner li {
    font-size: 0.9rem;
    line-height: 1.4rem;
}

body > footer .cellar {
    padding: 1rem;
}

body > footer .cellar .with-icon {
    display: grid;
    grid-template-columns: 1.2rem auto;
    gap: 0.5rem;
}

body > footer .cellar .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

body > footer .cellar .icon img {
    height: 1rem;
    /* Invert icons to white */
    filter: saturate(0) brightness(0) invert(1);
}

body > footer .basement {
    background: var(--color-text);
    min-height: 3rem;
    padding: 1rem;
}

body > footer .basement-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    body > footer .basement-inner {
        flex-flow: column;
        gap: 2rem;
    }
}

body > footer *,
body > footer a,
body > footer a:visited {
    color: var(--color-white);
    text-decoration: none;
}

body > footer a {
    border-bottom: 1px solid transparent;
}

body > footer a:hover,
body > footer a:focus-visible {
    border-bottom: 1px solid color-mix(in srgb, var(--color-white), 50% transparent);
}

body > footer .basement nav {
    display: flex;
    gap: 3rem;
}

        body {
  opacity: 0.5;
}

@supports at-rule(@view-transition) {
  body {
    opacity: 1;
  }
}

body {
  opacity: 1;
  transition: opacity 150ms ease-out;
}