/* ==========================================================================
   aace.gr — basalte-inspired
   Pure black · thin geometric type · champagne accent · vast negative space
   ========================================================================== */

@font-face {
  font-family: "CenturyGothic";
  src: url("https://www.aace.gr/assets/fonts/gothic-webfont.woff2") format("woff2"),
       url("https://www.aace.gr/assets/fonts/gothic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --panel: #101010;
  --line: #1e1e1e;
  --white: #fff;
  --text: #c9c9c9;
  --muted: #8f8f8f;
  --faint: #5a5a5a;
  --gold: #a6915a;
  --gold-bright: #c2ab6e;
  --red: #c2272d;
  --max: 1280px;
  --font: "CenturyGothic", "Century Gothic", AppleGothic, "Trebuchet MS",
    Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover,
a:focus-visible {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1.2em;
}

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

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.kicker {
  display: block;
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.4rem;
}

.dot {
  color: var(--gold);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 300;
}

.skip-link:focus {
  left: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   ESPA banner
   ========================================================================== */
.espa-strip {
  background: #fff;
  text-align: center;
  padding: 0.3rem 1rem;
}

.espa-strip img {
  max-height: 48px;
  width: auto;
}

/* ==========================================================================
   Header — tiny wordmark, whisper-quiet nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
  align-self: center;
}

.brand .brand-mark {
  height: 40px;
  width: 40px;
  display: block;
  align-self: center;
  flex-shrink: 0;
}

.brand .tagline {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

@media (max-width: 640px) {
  .brand .tagline {
    display: none;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle svg {
  display: block;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 1.5rem;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav .subnav {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  margin-left: 0.75rem;
}

.lang-switch {
  color: var(--faint) !important;
}

.lang-switch:hover {
  color: #fff !important;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
  }

  .site-nav a {
    padding: 0.5rem 0.2rem;
  }

  .site-nav li {
    position: relative;
  }

  .site-nav .has-sub > .subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid var(--line);
    padding: 0.6rem 0.5rem;
    margin: 0;
  }

  .site-nav .has-sub:hover > .subnav,
  .site-nav .has-sub:focus-within > .subnav {
    display: block;
  }
}

/* ==========================================================================
   Hero — full-screen video, statement low-left, like basalte
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #000;
  background-image: url("../img/hero.jpg"),
    url("https://images.unsplash.com/photo-1762811054947-605b20298615?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -72px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(6rem, 14vh, 10rem);
}

.hero h1 {
  max-width: 16em;
  margin-bottom: 0.5em;
}

.hero p {
  color: #bdbdbd;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

/* ==========================================================================
   Links — champagne "discover more →"
   ========================================================================== */
.arrow-link {
  display: inline-block;
  color: var(--gold);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.arrow-link::after {
  content: "\00a0\00a0\2192";
  transition: transform 0.25s;
  display: inline-block;
}

.arrow-link:hover {
  color: var(--gold-bright);
}

.arrow-link:hover::after {
  transform: translateX(6px);
}

.btn,
.btn-primary,
.btn-ghost {
  display: inline-block;
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  transition: border-color 0.25s, color 0.25s;
}

.btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: center;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding-block: clamp(5rem, 12vw, 10rem);
}

.section-alt {
  background: var(--bg);
}

.section-head {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

/* manifesto */
.manifesto .statement {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #ececec;
  max-width: 58rem;
  margin: 0 0 2rem;
}

.manifesto .statement strong {
  color: #fff;
  font-weight: 300;
}

.manifesto .sub {
  color: var(--muted);
  max-width: 44rem;
}

/* ==========================================================================
   Story blocks — narrow text column + huge photography (basalte signature)
   ========================================================================== */
.story {
  display: grid;
  min-height: 92vh;
}

.story .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
}

.story .text h3 {
  margin-bottom: 0.7em;
}

.story .text p {
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 2rem;
}

.story .visual {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 5fr 7fr;
  }

  .story.flip .text {
    order: 2;
  }

  .story.flip .visual {
    order: 1;
  }

  .story .text {
    padding-left: clamp(2rem, 6vw, 7rem);
  }
}

/* New basalte-spirit photography (Unsplash, free license, hand-picked).
   A local file in img/ with the story-* name automatically overrides the CDN photo. */
/* full-bleed photo band (inner pages) */
.photo-band {
  margin: 0;
  position: relative;
}

.photo-band img {
  display: block;
  width: 100%;
  height: auto;
}

/* reserve space while natural-height band images load (prevents layout shift) */
.photo-band:not(.cropped) img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  max-height: 85vh;
}

.photo-band.cropped {
  height: 46vh;
  min-height: 300px;
  overflow: hidden;
}

.photo-band.cropped img {
  height: 100%;
  object-fit: cover;
}

.photo-band.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.photo-band figcaption {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  bottom: 1.6rem;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: lowercase;
}

.photo-band figcaption .dot {
  color: var(--gold);
}

.visual-residential {
  background-image: url("../img/basalte-fibonacci.jpg"),
    url("https://images.unsplash.com/photo-1680416124510-5eae1beca412?q=80&w=1600&auto=format&fit=crop");
}
.visual-hospitality {
  background-image: url("../img/kalesma-mykonos-3.jpg"),
    url("https://images.unsplash.com/photo-1552858725-2758b5fb1286?q=80&w=1600&auto=format&fit=crop");
}
.visual-commercial {
  background-image: url("../img/story-commercial.jpg"),
    url("https://images.unsplash.com/photo-1680416124510-5eae1beca412?q=80&w=1600&auto=format&fit=crop");
}
.visual-mdu {
  background-image: url("../img/story-mdu.jpg"),
    url("https://images.unsplash.com/photo-1762811054947-605b20298615?q=80&w=1600&auto=format&fit=crop");
}
.visual-custom {
  background-image: url("../img/matisse-knx-bronze.jpg"),
    url("https://images.unsplash.com/photo-1740139638070-a238b3d74e31?q=80&w=1600&auto=format&fit=crop");
}

/* ==========================================================================
   Video lightbox — YouTube player on demand
   ========================================================================== */
.video-modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(92vw, 1100px);
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
  font-family: var(--font);
}

.video-modal-close:hover {
  color: var(--gold-bright);
}

/* ==========================================================================
   Index list — quiet rows with hairlines and arrows
   ========================================================================== */
.index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.index-list li {
  border-bottom: 1px solid var(--line);
}

.index-list li:first-child {
  border-top: 1px solid var(--line);
}

.index-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0.25rem;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  letter-spacing: -0.01em;
  transition: padding-left 0.3s, color 0.25s;
}

.index-list a:hover {
  color: var(--gold-bright);
  padding-left: 1rem;
}

.index-list .no {
  color: var(--faint);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  min-width: 3.5rem;
}

.index-list .go {
  color: var(--faint);
  font-size: 1.1rem;
}

.index-list a:hover .go {
  color: var(--gold-bright);
}

.index-list a .label {
  flex: 1;
}

/* ==========================================================================
   Logo strip — whisper-ghosted
   ========================================================================== */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.6rem 3.6rem;
}

.logo-strip img {
  height: 52px;
  width: 190px;
  object-fit: contain;
  transition: filter 0.3s;
}

.logo-strip img[src*="martinlogan"] {
  height: 88px;
}

.logo-strip img[src*="anthem"] {
  height: 64px;
}

.logo-strip a:hover img,
.logo-strip img:hover {
  filter: brightness(1.4);
}

.section.tight-bottom {
  padding-bottom: 2.5rem;
}

.section.tight-top {
  padding-top: 2.5rem;
}

/* ==========================================================================
   Cards (inner pages)
   ========================================================================== */
.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg);
  padding: 2.2rem 1.8rem;
  transition: background 0.3s;
}

.card:hover {
  background: var(--panel);
}

.card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-top: 1.1rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.card .icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.card .icon svg {
  width: 24px;
  height: 24px;
}

.card-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.card-link:hover {
  color: var(--gold-bright);
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Inner-page hero
   ========================================================================== */
.page-hero {
  padding-block: clamp(7rem, 14vw, 10rem) clamp(3rem, 6vw, 5rem);
}

/* hero with photographic background */
.page-hero.with-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
}

.page-hero.with-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.page-hero.with-photo .wrap {
  position: relative;
  width: 100%;
}

.hero-photo-home {
  background-image: url("../img/21_BASALTE_HOME_LR_TLR_Ellie_Sentido_Wide-0040_fin.jpg");
}

.hero-photo-hotel {
  background-image: url("../img/hotel-mykonos.jpg");
}

.hero-photo-sauter {
  background-image: url("../img/sauter.jpg");
}

.hero-photo-mdu {
  background-image: url("../img/mdu_view.jpg");
}

.hero-photo-bespoke {
  background-image: url("../img/bespoke_taylor.jpg");
}

/* softer variants — a little more light through the overlay */
.page-hero.with-photo.darker.soft::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.44) 0%,
    rgba(0, 0, 0, 0.24) 45%,
    rgba(0, 0, 0, 0.54) 100%
  );
}

.photo-band.dark.soft::after {
  background: rgba(0, 0, 0, 0.29);
}

.page-hero.with-photo.darker::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.32) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.page-hero h1::after {
  content: ".";
  color: var(--gold);
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--faint);
  margin-bottom: 1.8rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.6rem;
  color: #2c2c2c;
}

.breadcrumb a {
  color: var(--faint);
}

.breadcrumb a:hover {
  color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: #fff;
  padding: 1.4rem 3rem 1.4rem 0;
  list-style: none;
  position: relative;
  font-size: 1.08rem;
  font-weight: 300;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: 1.2rem;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.25s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 0 1.5rem;
  color: var(--muted);
  margin: 0;
  max-width: 46rem;
}

/* ==========================================================================
   Quotes
   ========================================================================== */
blockquote {
  margin: 0 0 1rem;
  padding: 1.6rem 0 1.6rem 1.8rem;
  border-left: 1px solid var(--gold);
  color: #e2e2e2;
  font-size: 1.15rem;
  font-weight: 300;
}

blockquote footer {
  color: var(--faint);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-top: 0.6rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  padding-block: clamp(6rem, 14vw, 11rem);
}

.cta-band h2 {
  margin-bottom: 0.4em;
}

.cta-band p {
  color: var(--muted);
  max-width: 38rem;
}

.cta-band .btn-row {
  margin-top: 2.4rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li strong {
  display: inline-block;
  min-width: 7.5rem;
  color: var(--faint);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
}

.contact-list a {
  color: #fff;
}

form.contact-form label {
  display: block;
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  margin: 1.6rem 0 0.4rem;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #2a2a2a;
  border-radius: 0;
  color: #fff;
  padding: 0.6rem 0;
  font: inherit;
  font-weight: 300;
  transition: border-color 0.25s;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

form.contact-form button {
  margin-top: 2.2rem;
  cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  padding-block: 4.5rem 2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 2.8rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.4fr;
  }
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--faint);
  margin-bottom: 1.4rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: #fff;
}

.footer-nap {
  font-style: normal;
  color: var(--muted);
}

.footer-nap a {
  color: var(--gold);
}

.footer-nap a:hover {
  color: var(--gold-bright);
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}

.social-row img {
  height: 22px;
  width: 22px;
  filter: grayscale(1) invert(0.9);
  opacity: 0.5;
  transition: opacity 0.25s;
}

.social-row a:hover img {
  opacity: 1;
}

.social-row svg {
  height: 22px;
  width: 22px;
  fill: #e6e6e6;
  opacity: 0.5;
  transition: opacity 0.25s;
  display: block;
}

.social-row a:hover svg {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--faint);
  font-size: 0.78rem;
}

.footer-bottom img {
  max-height: 40px;
  width: auto;
  background: #fff;
  padding: 3px 6px;
}

/* ==========================================================================
   Utility / 404
   ========================================================================== */
.center {
  text-align: center;
}

.page-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 6rem;
}
