/* Fonts: Commissioner (flared display) + Piazzolla (text), self-hosted, Greek + Latin */

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/commissioner-normal-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/commissioner-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Piazzolla";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/piazzolla-normal-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Piazzolla";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/piazzolla-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Piazzolla";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/piazzolla-italic-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Piazzolla";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/piazzolla-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Aegean night: the dominant field */
  --sea-night: #0b2461;
  --sea-deep: #07184a;
  --sea-glow: #2f63e6;
  --sea-line: #7d9cf0;

  /* Chalk: lime-washed walls, ticket paper */
  --chalk: #f2f4f8;
  --chalk-dim: #bccaea;
  --paper: #eef1f7;
  --paper-stub: #e2e8f4;
  --ink: #0a1a3f;
  --ink-soft: #46557a;
  --ink-link: #1b44c8;

  /* The camper decal: the only warm colours on the page */
  --yolk: #ffc53a;
  --tangerine: #ff8b2b;
  --rust: #e5482b;

  --display: "Commissioner", "Trebuchet MS", sans-serif;
  --text: "Piazzolla", Georgia, serif;
  --flare: "FLAR" 100, "VOLM" 100;
  --flare-soft: "FLAR" 60, "VOLM" 0;

  --gutter: clamp(1rem, 4vw, 3.5rem);
  --max: 82rem;
  --decal-h: clamp(72px, 12vw, 180px);
  --band: clamp(5px, 0.95vw, 14px);
  --window-r: clamp(1.25rem, 2.6vw, 2.5rem);

  color-scheme: dark;
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--sea-deep);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--chalk);
  font-family: var(--text);
  font-size: 1.1875rem;
  line-height: 1.65;
  background-color: var(--sea-night);
  background-image:
    radial-gradient(70rem 42rem at 88% -6%, rgb(255 197 58 / 0.17), transparent 65%),
    radial-gradient(56rem 56rem at -8% 58%, rgb(47 99 230 / 0.32), transparent 70%),
    url("../img/contours.svg"),
    url("../img/contours.svg"),
    linear-gradient(180deg, #0c2766 0%, var(--sea-night) 45%, var(--sea-deep) 100%);
  background-size: auto, auto, max(1600px, 100%) auto, max(1600px, 100%) auto, auto;
  background-position: 0 0, 0 0, 50% 0, 15% 1500px, 0 0;
  background-repeat: no-repeat;
}

/* Film grain over everything, very faint */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--yolk);
  text-decoration-color: rgb(255 197 58 / 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s;
}

a:hover {
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 3px solid var(--yolk);
  outline-offset: 4px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: var(--gutter);
  top: -5rem;
  z-index: 60;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--yolk);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

/* Header */

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--chalk);
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1;
  text-decoration: none;
}

.mark {
  width: 2.6rem;
  height: auto;
  flex: none;
}

.lang {
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  border: 1px solid rgb(188 202 234 / 0.3);
  border-radius: 999px;
  font-family: var(--display);
  font-variation-settings: var(--flare-soft);
  font-weight: 700;
  font-size: 0.9375rem;
}

.lang a {
  display: block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  color: var(--chalk-dim);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}

.lang a:hover {
  color: var(--chalk);
  background: rgb(188 202 234 / 0.14);
}

.lang a[aria-current="page"] {
  color: var(--ink);
  background: var(--chalk);
}

/* Hero */

.hero {
  position: relative;
  padding-block: clamp(1.25rem, 3.5vw, 2.75rem) clamp(1rem, 3vw, 2rem);
}

.hero-head {
  position: relative;
}

.hero-title {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: clamp(2.45rem, 10vw, 8.25rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
}

.hero-title span {
  display: block;
}

.sun {
  position: absolute;
  z-index: 0;
  right: clamp(0rem, 6vw, 7rem);
  bottom: calc(-0.55 * var(--decal-h));
  width: clamp(7.5rem, 24vw, 22rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #ffd766, var(--yolk) 60%, #ffb21f);
  -webkit-mask-image: linear-gradient(#000 0 58%, transparent 58% 63%, #000 63% 72%, transparent 72% 77%, #000 77% 84%, transparent 84% 89%, #000 89%);
  mask-image: linear-gradient(#000 0 58%, transparent 58% 63%, #000 63% 72%, transparent 72% 77%, #000 77% 84%, transparent 84% 89%, #000 89%);
}

.decal {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: var(--decal-h);
  margin-top: clamp(0.75rem, 2.5vw, 2rem);
  overflow: visible;
}

.decal path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.decal .band-1 {
  stroke: var(--yolk);
  stroke-width: calc(var(--band) * 5);
}

.decal .band-2 {
  stroke: var(--tangerine);
  stroke-width: calc(var(--band) * 3);
}

.decal .band-3 {
  stroke: var(--rust);
  stroke-width: var(--band);
}

.hero-row {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.window {
  margin: 0;
  border: clamp(6px, 0.8vw, 12px) solid var(--sea-deep);
  border-radius: var(--window-r);
  overflow: hidden;
  background: var(--sea-deep);
  box-shadow:
    0 2.5rem 4rem -1.5rem rgb(3 10 34 / 0.75),
    inset 0 0 0 1px rgb(255 255 255 / 0.06);
  aspect-ratio: 1280 / 630;
}

.window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  border-radius: calc(var(--window-r) - 8px);
}

.hero-lead p {
  max-width: 24rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--chalk-dim);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yolk) 0 50%, var(--tangerine) 50% 100%) 0 0 / 200% 100%;
  color: var(--ink);
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  transition: background-position 0.35s ease;
}

.button:hover {
  background-position: 100% 0;
}

@media (max-width: 36rem) {
  .window {
    aspect-ratio: 5 / 4;
  }

  .sun {
    width: 5.75rem;
    bottom: calc(-0.85 * var(--decal-h));
  }
}

@media (min-width: 56rem) {
  .hero-row {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: clamp(2rem, 4vw, 4rem);
    margin-top: calc(-1 * var(--decal-h) + var(--band) * 3);
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-lead {
    grid-column: 1;
    grid-row: 1;
    padding-top: calc(var(--decal-h) - var(--band) * 1.5);
  }
}

/* The one orchestrated moment: sun rises, decal paints across, window opens */

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: fade 0.8s ease both;
  }

  .hero-title span {
    animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-title span:nth-child(1) { animation-delay: 0.1s; }
  .hero-title span:nth-child(2) { animation-delay: 0.22s; }
  .hero-title span:nth-child(3) { animation-delay: 0.34s; }

  .sun {
    animation: sunrise 1.6s cubic-bezier(0.2, 0.7, 0.1, 1) 0.2s both;
  }

  .decal {
    animation: paint 1.25s cubic-bezier(0.65, 0, 0.25, 1) 0.55s both;
  }

  .window {
    animation: open 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s both;
  }

  .hero-lead {
    animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 1.15s both;
  }

  @keyframes fade {
    from { opacity: 0; }
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(0.6em);
    }
  }

  @keyframes sunrise {
    from {
      opacity: 0;
      transform: translateY(45%);
    }
  }

  @keyframes paint {
    from { clip-path: inset(-50% 100% -50% 0); }
    to { clip-path: inset(-50% 0 -50% 0); }
  }

  @keyframes open {
    from {
      opacity: 0;
      clip-path: inset(10% 10% 10% 10% round var(--window-r));
    }
    to {
      opacity: 1;
      clip-path: inset(0 0 0 0 round var(--window-r));
    }
  }
}

/* Sections */

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}

.section-title {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

/* About */

.about {
  display: grid;
  gap: 1.5rem clamp(2rem, 5vw, 5rem);
}

.about-lead {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.38;
}

.about-more {
  max-width: 34rem;
  margin: 0;
  color: var(--chalk-dim);
}

@media (min-width: 56rem) {
  .about {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

  .about .section-title {
    grid-row: span 2;
  }

  .about-more {
    margin-left: clamp(0rem, 8vw, 8rem);
  }
}

/* Services: three words, three decal colours */

.services {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service {
  display: grid;
  grid-template-columns: auto minmax(2rem, 1fr);
  align-items: center;
  column-gap: clamp(1rem, 2.5vw, 2rem);
  padding-block: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgb(188 202 234 / 0.2);
}

.service:last-child {
  border-bottom: 1px solid rgb(188 202 234 / 0.2);
}

.service h3 {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
}

.service-bar {
  height: clamp(0.6rem, 1.4vw, 1.1rem);
  border-radius: 999px;
  background: var(--yolk);
}

.service:nth-child(2) .service-bar { background: var(--tangerine); }
.service:nth-child(3) .service-bar { background: var(--rust); }

.service p {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  color: var(--chalk-dim);
}

@media (min-width: 56rem) {
  .service {
    grid-template-columns: auto minmax(3rem, 1fr) 20rem;
  }

  .service p {
    grid-column: 3;
    margin: 0;
  }
}

/* Company details: a ferry-ticket card */

.company-intro {
  max-width: 36rem;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  color: var(--chalk-dim);
}

.ticket {
  --stub: 25rem;
  --notch: 1.1rem;
  display: grid;
  border-radius: 1.25rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 3rem 5rem -2rem rgb(3 10 34 / 0.8);
}

.ticket a {
  color: var(--ink-link);
  text-decoration-color: rgb(229 72 43 / 0.55);
}

.ticket a:hover {
  text-decoration-color: var(--rust);
}

.ticket :focus-visible {
  outline-color: var(--ink-link);
}

.ticket-stub {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.25rem 1.25rem 0 0;
  border-bottom: 2px dashed rgb(10 26 63 / 0.22);
  background:
    repeating-linear-gradient(-45deg, rgb(10 26 63 / 0.035) 0 2px, transparent 2px 9px),
    var(--paper-stub);
}

.ticket-name {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.ticket-name small {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--text);
  font-variation-settings: normal;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-soft);
}

.ticket-stub .registry-link {
  margin: auto 0 0;
  font-size: 1rem;
}

@media (min-width: 56rem) {
  .ticket {
    grid-template-columns: var(--stub) minmax(0, 1fr);
    -webkit-mask:
      radial-gradient(circle var(--notch) at var(--stub) 0, transparent 98%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--notch) at var(--stub) 100%, transparent 98%, #000) bottom / 100% 51% no-repeat;
    mask:
      radial-gradient(circle var(--notch) at var(--stub) 0, transparent 98%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--notch) at var(--stub) 100%, transparent 98%, #000) bottom / 100% 51% no-repeat;
  }

  .ticket-stub {
    border-radius: 1.25rem 0 0 1.25rem;
    border-bottom: 0;
    border-right: 2px dashed rgb(10 26 63 / 0.22);
  }
}

.plate {
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
  border: 3px solid #111;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
  overflow: hidden;
  box-shadow: 0 0.4rem 0 -0.1rem rgb(10 26 63 / 0.18);
}

.plate-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem 0.45rem;
  background: #039;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
}

.plate-band svg {
  width: 1.4rem;
  height: 1.4rem;
}

.plate-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.3rem 0.9rem 0.4rem;
}

.plate-label {
  font-family: var(--text);
  font-style: italic;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #555;
}

.plate-number {
  font-family: var(--display);
  font-variation-settings: "FLAR" 0, "VOLM" 0;
  font-weight: 800;
  font-size: clamp(1.25rem, 9.4cqi, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.details {
  display: grid;
  align-content: start;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.75rem);
}

.details div {
  padding-block: 0.9rem;
  border-bottom: 1px solid rgb(10 26 63 / 0.1);
}

.details dt {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: var(--ink-soft);
}

.details dd {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-variation-settings: var(--flare-soft);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.details dd small {
  display: block;
  font-family: var(--text);
  font-variation-settings: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (min-width: 44rem) {
  .details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
  }
}

@media (min-width: 44rem) {
  .details div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 43.99rem) {
  .details div:last-child {
    border-bottom: 0;
  }
}

/* Management and partners: a passenger manifest on the same ticket paper */

.manifest {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.manifest-title {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1;
}

.manifest-card {
  overflow: hidden;
  border-radius: 1.25rem;
  padding-top: calc(var(--band) * 1.2);
  background:
    linear-gradient(var(--yolk) 0 33.4%, var(--tangerine) 33.4% 66.7%, var(--rust) 66.7%) top / 100% calc(var(--band) * 1.2) no-repeat,
    var(--paper);
  color: var(--ink);
  box-shadow: 0 3rem 5rem -2rem rgb(3 10 34 / 0.8);
}

.people {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.people thead th {
  padding: 1.1rem clamp(1rem, 2.5vw, 2rem) 0.7rem;
  border-bottom: 2px dashed rgb(10 26 63 / 0.22);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.people tbody th,
.people tbody td {
  padding: 1.1rem clamp(1rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgb(10 26 63 / 0.1);
  vertical-align: top;
  font-family: var(--display);
  font-variation-settings: var(--flare-soft);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.35;
}

.people tbody th {
  font-variation-settings: var(--flare);
  font-weight: 800;
  font-size: 1.1875rem;
}

.people tbody tr:last-child > * {
  border-bottom: 0;
}

.people small {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--text);
  font-variation-settings: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (max-width: 47.99rem) {
  .people thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .people tr,
  .people tbody th,
  .people tbody td {
    display: block;
  }

  .people tbody tr {
    padding: 1.25rem clamp(1rem, 4vw, 1.5rem);
    border-bottom: 2px dashed rgb(10 26 63 / 0.22);
  }

  .people tbody tr:last-child {
    border-bottom: 0;
  }

  .people tbody th,
  .people tbody td {
    padding: 0.35rem 0;
    border-bottom: 0;
  }

  .people tbody th {
    padding-bottom: 0.6rem;
    font-size: 1.375rem;
  }

  .people tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--text);
    font-variation-settings: normal;
    font-style: italic;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--ink-soft);
  }
}

/* Footer */

.site-footer {
  position: relative;
  padding-block: 2.5rem 2rem;
  font-size: 0.9375rem;
  color: var(--chalk-dim);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--band) * 1.5);
  background: linear-gradient(var(--yolk) 0 33.4%, var(--tangerine) 33.4% 66.7%, var(--rust) 66.7%);
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
}

.site-footer p {
  margin: 0;
}
