@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/archivo-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: "Archivo";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/cormorant-garamond-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: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: dark;
  --ink: #f4f1ea;
  --ink-soft: rgba(244, 241, 234, 0.74);
  --ink-muted: rgba(239, 236, 229, 0.56);
  --gold: #eac57e;
  --gold-soft: rgba(234, 197, 126, 0.42);
  --surface: #030303;
  --footer-height: 5.5556vh;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Archivo", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: rgba(230, 211, 168, 0.25);
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #050505;
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #030303;
}

.site-header {
  position: absolute;
  z-index: 6;
  top: 4.8148vh;
  right: 5vw;
  left: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9375vw;
}

.brand-mark {
  width: min(4.0625vw, 7.2222vh);
  height: min(4.0625vw, 7.2222vh);
  opacity: 1;
  mix-blend-mode: screen;
}

.brand-name,
.studio-line,
.founder__eyebrow,
.work__heading,
.location,
.coming-soon {
  font-weight: 600;
  text-transform: uppercase;
}

.brand-name {
  color: rgba(244, 241, 234, 0.98);
  font-size: min(0.9896vw, 1.7593vh);
  letter-spacing: 0.32em;
}

.studio-line {
  margin: 0;
  color: rgba(239, 236, 229, 0.62);
  font-size: min(0.6771vw, 1.2037vh);
  letter-spacing: 0.3em;
}

.page-grid {
  position: relative;
  min-height: 100svh;
}

.scene-stage {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 36% 76% at 50% 36%, rgba(83, 62, 34, 0.34), transparent 64%),
    #030303;
}

.scene-stage::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse 72% 68% at 50% 46%, transparent 52%, rgba(0, 0, 0, 0.42) 82%, rgba(0, 0, 0, 0.72) 100%);
}

.scene-canvas,
.scene-canvas canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-canvas canvas {
  display: block;
}

.scene-poster {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0.74;
  transition: opacity 600ms ease;
  background: radial-gradient(ellipse 24% 54% at 50% 46%, rgba(109, 78, 37, 0.34), rgba(4, 4, 4, 0) 74%);
}

.scene-poster img {
  width: min(14vw, 220px);
  opacity: 0.3;
  filter: drop-shadow(0 0 68px rgba(255, 224, 173, 0.22));
  mix-blend-mode: screen;
}

.scene-poster__beam {
  position: absolute;
  top: -18%;
  bottom: 8%;
  left: 50%;
  width: min(38vw, 540px);
  opacity: 0.5;
  transform: translateX(-50%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(234, 197, 126, 0.32), rgba(234, 197, 126, 0.01));
}

.scene-stage.is-ready .scene-poster {
  opacity: 0;
}

.scene-loader {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease, visibility 600ms linear;
  background: radial-gradient(ellipse 42% 64% at 50% 42%, rgba(80, 58, 29, 0.58), rgba(5, 5, 5, 0.96) 64%, #030303 100%);
}

.scene-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.loader__spotlight {
  position: absolute;
  top: -12%;
  bottom: 8%;
  left: 50%;
  width: min(34vw, 480px);
  opacity: 0.56;
  transform: translateX(-50%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(243, 211, 153, 0.42), rgba(234, 197, 126, 0.01));
}

.loader__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(310px, calc(100vw - 48px));
  justify-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: "Archivo", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.loader__orbital {
  position: relative;
  display: grid;
  width: 124px;
  height: 124px;
  margin-bottom: 8px;
  place-items: center;
}

.loader__mark {
  width: 76px;
  height: 76px;
  object-fit: contain;
  opacity: 0.94;
  filter: drop-shadow(0 0 26px rgba(234, 197, 126, 0.3));
  mix-blend-mode: screen;
}

.loader__orbit {
  position: absolute;
  border: 1px solid rgba(234, 197, 126, 0.58);
  border-radius: 50%;
}

.loader__orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #f6d99f;
  box-shadow: 0 0 14px rgba(246, 217, 159, 0.86);
}

.loader__orbit--outer {
  inset: 0;
  animation: loader-orbit 5.8s linear infinite;
}

.loader__orbit--inner {
  inset: 15px;
  opacity: 0.58;
  animation: loader-orbit-reverse 4.1s linear infinite;
}

.loader__eyebrow,
.loader__status {
  margin: 0;
}

.loader__eyebrow {
  color: rgba(244, 241, 234, 0.86);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.loader__status {
  min-height: 1.5em;
  color: rgba(239, 236, 229, 0.62);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.loader__track {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(239, 236, 229, 0.15);
}

.loader__fill {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--loader-progress, 0));
  transform-origin: left center;
  transition: transform 160ms linear;
  background: linear-gradient(90deg, #9c773e, #f0cf91 72%, #fff0cb);
  box-shadow: 0 0 16px rgba(234, 197, 126, 0.65);
}

.loader__percent {
  min-width: 4ch;
  color: rgba(234, 197, 126, 0.86);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.16em;
}

@keyframes loader-orbit {
  to { transform: rotate(360deg); }
}

@keyframes loader-orbit-reverse {
  to { transform: rotate(-360deg); }
}

.founder,
.work {
  position: absolute;
  z-index: 3;
  top: 15.5556vh;
  bottom: 10.9259vh;
  display: flex;
  flex-direction: column;
}

.founder {
  left: 5vw;
  width: min(32.2917vw, 57.4074vh);
  align-items: flex-start;
  text-align: left;
}

.founder__portrait-link {
  flex: none;
  width: min(13.0208vw, 23.1481vh);
  height: min(13.0208vw, 23.1481vh);
  margin-top: 3.7037vh;
  border-radius: 50%;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.founder__portrait-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(234, 197, 126, 0.5), 0 18px 48px rgba(0, 0, 0, 0.34);
}

.founder__portrait {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(239, 236, 229, 0.22);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(0.25) contrast(1.04);
}

.founder__title {
  margin: 1.6667vh 0 0;
  color: #f4f1ea;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: min(1.5625vw, 2.7778vh);
  font-weight: 500;
  line-height: 1.15;
}

.founder__eyebrow {
  margin: 0.7407vh 0 0;
  color: rgba(239, 236, 229, 0.55);
  font-size: min(0.625vw, 1.1111vh);
  letter-spacing: 0.24em;
  line-height: 1.2;
}

.manifesto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5741vh;
  margin-top: 3.5185vh;
  color: rgba(244, 241, 234, 0.92);
  font-size: min(0.9115vw, 1.6204vh);
  font-weight: 600;
  line-height: 1.45;
}

.manifesto p {
  margin: 0;
  white-space: nowrap;
}

.manifesto strong {
  color: var(--gold);
  font-weight: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  max-width: min(29.1667vw, 51.8519vh);
  margin-top: auto;
  justify-content: flex-start;
  gap: min(0.5208vw, 0.9259vh);
}

.social-links a {
  display: inline-flex;
  width: min(2.3958vw, 4.2593vh);
  height: min(2.3958vw, 4.2593vh);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 236, 229, 0.16);
  border-radius: min(0.5208vw, 0.9259vh);
  color: rgba(239, 236, 229, 0.86);
  background: rgba(10, 10, 11, 0.55);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(234, 197, 126, 0.5);
  color: #fff;
  background: rgba(16, 15, 13, 0.82);
  transform: translateY(-2px);
}

.social-links img {
  width: min(1.0417vw, 1.8519vh);
  height: min(1.0417vw, 1.8519vh);
  opacity: 0.86;
}

.social-links__linkedin span {
  font-family: Georgia, serif;
  font-size: min(0.9896vw, 1.7593vh);
  font-weight: 700;
  line-height: 1;
}

.work {
  right: 5vw;
  width: min(28.125vw, 50vh);
}

.work__heading {
  margin: 0;
  color: rgba(239, 236, 229, 0.68);
  font-size: min(0.6771vw, 1.2037vh);
  letter-spacing: 0.3em;
  line-height: 1;
  text-align: right;
}

.product-grid {
  display: grid;
  height: 59.6296vh;
  margin-top: 2.4074vh;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-content: space-between;
  column-gap: min(0.9375vw, 1.6667vh);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.1111vh;
  color: inherit;
  text-decoration: none;
}

.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 236, 229, 0.1);
  border-radius: min(0.7292vw, 1.2963vh);
  background: rgba(10, 10, 11, 0.55);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover .product-card__media,
.product-card:focus-visible .product-card__media {
  border-color: rgba(234, 197, 126, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.product-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--soon .product-card__media {
  border-style: dashed;
  border-color: rgba(239, 236, 229, 0.14);
  background: rgba(8, 8, 9, 0.5);
}

.product-card--soon .product-card__media > img {
  opacity: 0.85;
  filter: grayscale(0.55) brightness(0.8);
}

.product-card__name {
  position: absolute;
  inset: 0;
  display: flex;
  width: fit-content;
  height: fit-content;
  max-width: calc(100% - 20px);
  margin: auto;
  align-items: center;
  justify-content: center;
  padding: min(1.0185vh, 0.5729vw) min(1.1458vw, 2.037vh);
  border: 1px solid rgba(234, 197, 126, 0.45);
  border-radius: min(0.8333vw, 1.4815vh);
  color: var(--gold);
  background: rgba(5, 4, 3, 0.68);
  backdrop-filter: blur(5px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: min(1.7708vw, 3.1481vh);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
}

.product-card__caption {
  display: block;
  min-height: 2.8em;
  color: rgba(239, 236, 229, 0.74);
  font-size: min(0.6771vw, 1.2037vh);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.coming-soon {
  display: inline-block;
  padding: min(0.3704vh, 0.2083vw) min(0.625vw, 1.1111vh);
  border: 1px solid rgba(234, 197, 126, 0.35);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(5, 4, 3, 0.55);
  font-size: min(0.5729vw, 1.0185vh);
  letter-spacing: 0.22em;
  line-height: 1.25;
}

.location {
  align-self: flex-end;
  margin: auto 0 0;
  color: rgba(239, 236, 229, 0.58);
  font-size: min(0.625vw, 1.1111vh);
  letter-spacing: 0.28em;
}

.site-footer {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: var(--footer-height);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: min(0.8333vw, 1.4815vh);
  border-top: 1px solid rgba(239, 236, 229, 0.08);
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(8px);
}

.site-footer img {
  width: min(1.7708vw, 3.1481vh);
  height: min(1.7708vw, 3.1481vh);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.site-footer p {
  margin: 0;
  color: rgba(239, 236, 229, 0.55);
  font-size: min(0.625vw, 1.1111vh);
  font-weight: 500;
  letter-spacing: 0.14em;
}

@media (max-width: 1199px) {
  :root {
    --footer-height: auto;
  }

  .site-shell {
    min-height: 100svh;
    overflow: visible;
    background:
      radial-gradient(circle at 50% 12%, rgba(77, 54, 26, 0.2), transparent 28rem),
      #030303;
  }

  .site-header {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 92px;
    padding: 20px clamp(24px, 5.2vw, 48px);
    border-bottom: 1px solid rgba(239, 236, 229, 0.08);
    pointer-events: auto;
    background: rgba(3, 3, 3, 0.92);
  }

  .brand-lockup {
    gap: 14px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: clamp(14px, 2.2vw, 17px);
    letter-spacing: 0.25em;
  }

  .studio-line {
    max-width: 260px;
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
  }

  .page-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .scene-stage {
    position: relative;
    order: 0;
    width: 100%;
    height: min(58svh, 560px);
    min-height: 430px;
    background:
      radial-gradient(ellipse 56% 80% at 50% 34%, rgba(99, 71, 35, 0.36), transparent 66%),
      #030303;
  }

  .scene-stage::after {
    background: radial-gradient(ellipse 96% 78% at 50% 48%, transparent 46%, rgba(0, 0, 0, 0.5) 84%, rgba(0, 0, 0, 0.72) 100%);
  }

  .scene-poster img {
    width: clamp(120px, 24vw, 190px);
  }

  .scene-poster__beam,
  .loader__spotlight {
    width: min(62vw, 460px);
  }

  .founder,
  .work {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }

  .founder {
    order: 1;
    display: grid;
    padding: 72px clamp(32px, 7vw, 72px) 64px;
    align-items: center;
    grid-template-columns: 220px minmax(0, 1fr);
    column-gap: clamp(32px, 6vw, 64px);
    text-align: left;
    background: linear-gradient(180deg, #050505 0%, #030303 100%);
  }

  .founder__portrait-link {
    width: 220px;
    height: 220px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .founder__title {
    align-self: end;
    margin: 0 0 10px;
    font-size: clamp(32px, 5vw, 42px);
    grid-column: 2;
    grid-row: 1;
  }

  .founder__eyebrow {
    align-self: start;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    grid-column: 2;
    grid-row: 2;
  }

  .manifesto {
    width: 100%;
    max-width: 760px;
    gap: 18px;
    margin-top: 48px;
    font-size: 16px;
    line-height: 1.58;
    grid-column: 1 / -1;
  }

  .manifesto p {
    white-space: normal;
  }

  .social-links {
    max-width: none;
    margin-top: 44px;
    gap: 12px;
    grid-column: 1 / -1;
  }

  .social-links a {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }

  .social-links__linkedin span {
    font-size: 19px;
  }

  .work {
    order: 2;
    padding: 72px clamp(32px, 7vw, 72px) 64px;
    border-top: 1px solid rgba(239, 236, 229, 0.08);
    background: #050505;
  }

  .work__heading {
    font-size: 13px;
  }

  .product-grid {
    height: auto;
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    align-content: normal;
    gap: 38px 20px;
  }

  .product-card {
    gap: 14px;
  }

  .product-card__media {
    border-radius: 14px;
  }

  .product-card__name {
    padding: 10px 20px;
    border-radius: 15px;
    font-size: clamp(30px, 5vw, 38px);
  }

  .product-card__caption {
    min-height: 2.8em;
    font-size: 14px;
  }

  .coming-soon {
    padding: 5px 13px;
    font-size: 11px;
  }

  .location {
    margin-top: 48px;
    font-size: 12px;
  }

  .site-footer {
    position: relative;
    min-height: 76px;
    padding: 16px 32px;
    gap: 14px;
  }

  .site-footer img {
    width: 34px;
    height: 34px;
  }

  .site-footer p {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 559px) {
  .site-header {
    min-height: 104px;
    padding: 16px 20px 18px;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 0;
  }

  .brand-lockup {
    width: 100%;
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .studio-line {
    width: 100%;
    max-width: none;
    margin-left: 60px;
    font-size: 10px;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-align: left;
  }

  .scene-stage {
    height: 480px;
    min-height: 480px;
  }

  .loader__panel {
    width: min(286px, calc(100vw - 40px));
  }

  .loader__orbital {
    width: 112px;
    height: 112px;
  }

  .loader__mark {
    width: 68px;
    height: 68px;
  }

  .loader__eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .loader__status,
  .loader__percent {
    font-size: 10px;
  }

  .scene-poster__beam,
  .loader__spotlight {
    width: 82vw;
  }

  .founder {
    display: flex;
    padding: 58px 20px 56px;
    align-items: stretch;
  }

  .founder__portrait-link {
    width: 190px;
    height: 190px;
    align-self: center;
  }

  .founder__title {
    align-self: center;
    margin: 20px 0 8px;
    font-size: 34px;
    text-align: center;
  }

  .founder__eyebrow {
    align-self: center;
    max-width: 280px;
    font-size: 11px;
    text-align: center;
  }

  .manifesto {
    gap: 18px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.58;
  }

  .social-links {
    display: grid;
    margin-top: 40px;
    align-self: center;
    grid-template-columns: repeat(5, 46px);
    gap: 12px;
  }

  .work {
    padding: 58px 20px 56px;
  }

  .work__heading {
    font-size: 12px;
  }

  .product-grid {
    margin-top: 26px;
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .product-card__name {
    max-width: calc(100% - 28px);
    padding: 11px 22px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .product-card__caption {
    min-height: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .location {
    margin-top: 44px;
    font-size: 11px;
  }

  .site-footer {
    min-height: 112px;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer p {
    max-width: 310px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
