@font-face {
  font-family: 'Fraunces';
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/Fraunces--latin_basic.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/Fraunces--latin_ext.woff2') format('woff2');
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: 'Fraunces';
  font-display: swap;
  font-weight: 100 900;
  font-style: italic;
  src: url('fonts/Fraunces-Italic--latin_basic.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
:root {
  --grid-max-width: 77.50rem;
  --grid-gutter: var(--space-s-l, clamp(1.13rem, calc(0.65rem + 2.39vw), 2.50rem));
  --grid-columns: 12;
  --live-columns: 12;
  --live-content: 9;
  --live-sidebar: 3;
  --live-sidebar: clamp(3, calc(1 + 2.39vw), 12);
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;

}

@media only screen and (max-width: 600px) {
 :root {
    --live-columns: 9;
  }
}

.u-container {
  max-width: var(--grid-max-width);
  padding-inline: var(--grid-gutter);
  margin-inline: auto;
}

.u-grid {
  display: grid;
  gap: var(--grid-gutter);
  grid-column: --live-columns: 12;
  grid-template-columns: repeat(var(--live-columns),1fr);
  
}

.live-grid__content {grid-column: 1 / span var(--live-content)}

.live-grid__sidebar {
  grid-column: calc(var(--live-content) + 1) / span var(--live-sidebar);
  /* grid-column: var(--live-sidebar); */
  
}

/* Default */
:root {
  --primary-color: #f7f6f5;
  --background-color: #1e1e1e;
  --link:  #003d76;
  --link-hover:  #8cc7fd;
  --ornament: rgba(0, 0, 0, 0.03);
}

@media (prefers-color-scheme: light) {
  :root{
    --primary-color: #222222;
    --background-color: #f7f6f5;
    --link:  #003d76;
    --link-hover:  #0062be;
    --ornament: rgba(0, 0, 0, 0.03);
    
  }
}

@media (prefers-color-scheme: dark) {
 :root {
    --primary-color: #f7f6f5;
    --background-color: #1e1e1e;
    --link:  #559bdd;
    --link-hover:  #8cc7fd;
    --ornament: rgba(255, 255, 255, 0.03);
  }
}


:root {
  --text-xs: clamp(0.87rem, calc(0.72rem + 0.72vw), 1.28rem);
  --text-sm: clamp(1.04rem, calc(0.85rem + 0.97vw), 1.6rem);
  --text-md: clamp(1.25rem, calc(0.99rem + 1.3vw), 2rem);
  --text-lg: clamp(1.5rem, calc(1.15rem + 1.74vw), 2.5rem);
  --text-xl: clamp(1.8rem, calc(1.34rem + 2.3vw), 3.13rem);
  --text-2xl: clamp(2.16rem, calc(1.55rem + 3.04vw), 3.91rem);
  --text-3xl: clamp(2.59rem, calc(1.79rem + 3.98vw), 4.88rem);
  --text-4xl: clamp(3.11rem, calc(2.07rem + 5.21vw), 6.1rem);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5, ul {
  font-size: var(--text-lg);
}

p {
  font-size: var(--text-md);
}

h6 {
  font-size: var(--text-sm);
}

caption {
  font-size: var(--text-xs);
}

footer, ul {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
  Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-family: 'Fraunces';
  color: var(--primary-color);
  font-variation-settings: "opsz" 0, "wght" 600, "SOFT" 28, "WONK" 1
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 1rem 0;
  padding: 0;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
  Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-family: 'Fraunces';
  color: var(--primary-color);
  font-variation-settings: "opsz" 0, "wght" 600, "SOFT" 28, "WONK" 1
  
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: none var(--link) 1px;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--link-hover);
  border-bottom: solid var(--link-hover) 1px;
}

#social svg {
  width: 24px;
  height: 24px; 
  margin: 0.3rem;
}

#social a  {
  fill: var(--primary-color);
  border-bottom: none var(--link) 1px;
  transition: all 0.3s ease-in-out;
}

a:hover svg {
  text-decoration: none;
  fill: var(--link-hover);
}

body {
  text-rendering: geometricPrecision;
  margin: 10vh auto;
}

@keyframes wacky  {
0%   {font-variation-settings: "wght" 100, "wdth" 50 ; }
25%   {font-variation-settings: "wght" 100, "wdth" 200; }
50%   {font-variation-settings: "wght" 900, "wdth" 200; }
75%   {font-variation-settings: "wght" 900, "wdth" 50;  }
100% {font-variation-settings: "wght" 100, "wdth" 50 ;}
  }

em {
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 188, "WONK" 1;
  font-style: normal;

}

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

@keyframes wow  {

0%   {font-variation-settings: "wght" 100, "wdth" 50 ; }

100%   {font-variation-settings: "wght" 900, "wdth" 200; }
  }

.wow {
  font-variation-settings: "wght" 700, "SOFT" 100;
  
}


.m-it {
    font-variation-settings: "wght" 100, "wdth" 50 ;
    font-size: 12vh;
    line-height: 1;
    text-align: center;
    display: block;
    position: fixed;
    left: 5vw;
    top: 10vh;
    z-index: 0;
    color: rgba(255, 255, 255, 0.06);
    transition: all 3s ease-in-out;

  }

h2#bgtitle {
  font-variation-settings: "wght" 100, "wdth" 50 ;
  font-size: calc(var(--text-3xl) + 1rem);
  text-align: center;
  opacity: 60%;
  /* transition: all 3s ease-in-out; */
  margin: 4rem 0 4rem 0
}

.big.anima span {
  font-variation-settings: "wght" 600, "wdth" 200;
  transition: all 3s ease-in-out;
}
  
.m-it.anima, .big.anima abbr span {
    font-variation-settings: "wght" 900, "wdth" 200;
    transition: all 6s ease-in-out;
  }
  
#ornament {
  --circle-size: 300vw;
  background-color: var(--ornament);
  border-radius: 50%;
  width: var(--circle-size);
  height: var(--circle-size);
  position: fixed;
  top: 10%;
  left: calc(var(--circle-size) / -2);
  /* left: -150vw; */
  z-index: -1;
  transition: all 6s ease-in-out;
}

#ornament.anima {
  top: 50%;
  --circle-size: 600vw;
}

abbr[title] {
  border-bottom: none !important;
  cursor: inherit !important;
  text-decoration: none !important;
}

#customers {
  margin-top: 4rem;
}

#customers ul {
  padding: 0;
  margin: 0;
}

#customers li {
  color: var(--background-color);
  font-size: var(--text-xs);
  display: inline-block;
  padding: 0.3rem;
  background-color: color-mix(in srgb, var(--primary-color) 50%, transparent);
  
}

footer {
  border-top: 2px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  padding: clamp(1rem, calc(0.72rem + 0.72vw), 3rem);
  margin-top: 4rem;
  text-align: center;  
}

footer span {
  margin: 0 0.3rem 0 0.3rem
}

footer div {
  margin-top: 0.5rem;
}

#cookies {
  font-size: 0.6rem;
  opacity: 60%;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
}

.wwn {
  word-break: break-word;
}