/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --cream: #f3e8d6;
  --cream-deep: #e9dabd;
  --walnut: #4a3322;
  --walnut-deep: #382518;
  --charcoal: #221a14;
  --stripe-dark: #1c1712;
  --text-on-cream: #2c2015;
  --text-muted-on-cream: #6b5b46;
  --text-on-walnut: #f3e8d6;
  --text-muted-on-walnut: #f3e8d6ad;
  --line-on-cream: #2c201524;
  --line-on-walnut: #f3e8d62e;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-x: clamp(1.25rem, 6vw, 4rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--text-on-cream);
  font-family: var(--font-sans);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.on-walnut :focus-visible {
  outline-color: var(--cream);
}

.skip-link {
  background: var(--walnut);
  color: var(--text-on-walnut);
  z-index: 200;
  border-radius: 4px;
  padding: .75rem 1.25rem;
  font-size: .9rem;
  transition: top .2s;
  position: absolute;
  top: -4rem;
  left: 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.stripe-bar {
  background-image: repeating-linear-gradient(90deg,
    var(--stripe-dark) 0 12px,
    var(--cream) 12px 24px);
  border-radius: 2px;
  height: 10px;
}

.stripe-bar--wide {
  height: 14px;
}

.eyebrow {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted-on-cream);
  font-size: .78rem;
  font-weight: 700;
  display: inline-block;
}

.on-walnut .eyebrow {
  color: var(--text-muted-on-walnut);
}

.heading {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--text-on-cream);
  margin: .5rem 0 0;
  font-weight: 600;
  line-height: 1.08;
}

.on-walnut .heading {
  color: var(--text-on-walnut);
}

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
}

.site-header {
  z-index: 100;
  color: var(--text-on-walnut);
  background: #221a1400;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  transition: background-color .35s, padding .3s, box-shadow .35s;
  display: flex;
  position: fixed;
  inset: 0 0 auto;
}

.site-header.is-scrolled {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #221a14eb;
  padding-block: .75rem;
  box-shadow: 0 2px 12px #00000040;
}

.site-header .mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.site-nav a {
  padding-bottom: .4rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.site-nav a:after {
  content: "";
  transform-origin: 0;
  background-image: repeating-linear-gradient(90deg, currentColor 0 4px, #0000 4px 8px);
  height: 4px;
  transition: transform .25s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.site-nav a:hover:after, .site-nav a:focus-visible:after {
  transform: scaleX(1);
}

section {
  position: relative;
}

.on-walnut {
  background: var(--walnut);
  color: var(--text-on-walnut);
}

.on-cream {
  background: var(--cream);
  color: var(--text-on-cream);
}

.section-inner {
  max-width: 72rem;
  padding: var(--section-y) var(--section-x);
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 44rem;
}

.hero {
  align-items: flex-end;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-media {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-fit: cover;
}

.hero-scrim {
  z-index: 1;
  background: linear-gradient(to top, #1c130ceb 0%, #1c130c9e 38%, #1c130c47 65%, #1c130c4d 100%);
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 2;
  color: var(--text-on-walnut);
  max-width: 44rem;
  padding: 6rem clamp(1.25rem, 6vw, 4rem) 4rem;
  position: relative;
}

.hero .stripe-bar {
  width: 4.5rem;
  margin-bottom: 1.1rem;
}

.hero-title {
  color: var(--text-on-walnut);
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
}

.hero-lede {
  color: var(--text-muted-on-walnut);
  max-width: 32rem;
  margin: 1.25rem 0 2.25rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.btn {
  font-family: var(--font-sans);
  border: 2px solid;
  border-radius: 999px;
  align-items: center;
  gap: .6em;
  padding: .9rem 1.6rem;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, color .2s, transform .2s;
  display: inline-flex;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.btn-primary:hover {
  background: var(--cream-deep);
  border-color: var(--cream-deep);
}

.btn-ghost {
  color: var(--text-on-walnut);
}

.btn-ghost:hover {
  background: #f3e8d61f;
}

.on-cream .btn-primary {
  background: var(--walnut);
  color: var(--cream);
  border-color: var(--walnut);
}

.on-cream .btn-primary:hover {
  background: var(--walnut-deep);
  border-color: var(--walnut-deep);
}

.on-cream .btn-ghost {
  color: var(--walnut);
}

.on-cream .btn-ghost:hover {
  background: #4a332214;
}

.on-cream .on-walnut .btn-primary {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.on-cream .on-walnut .btn-primary:hover {
  background: var(--cream-deep);
  border-color: var(--cream-deep);
}

.on-cream .on-walnut .btn-ghost {
  color: var(--text-on-walnut);
}

.on-cream .on-walnut .btn-ghost:hover {
  background: #f3e8d61f;
}

.welcome {
  max-width: 42rem;
}

.welcome .heading {
  margin-top: .75rem;
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
}

.welcome p {
  color: var(--text-muted-on-cream);
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.8;
}

.wall-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.wall-head .heading {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
}

.wall-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
}

.frame {
  background: var(--cream);
  border: 9px solid var(--walnut);
  border-radius: 3px;
  padding: 0;
  box-shadow: 0 16px 28px #140e0947;
}

.frame-photo {
  grid-column: span 4;
}

.frame-photo .frame-media {
  aspect-ratio: 4 / 3;
  border-radius: 120px 120px 4px 4px / 60px 60px 4px 4px;
  position: relative;
  overflow: hidden;
}

.frame-photo .frame-media img {
  object-fit: cover;
}

.frame-tile {
  flex-direction: column;
  grid-column: span 2;
  display: flex;
}

.frame-tile .frame-media {
  aspect-ratio: 1;
  overflow: hidden;
}

.frame-tile:nth-child(2) {
  transform: rotate(-1.6deg);
}

.frame-tile:nth-child(3) {
  transform: rotate(1.4deg);
}

.tile-stripes {
  background-image: repeating-linear-gradient(90deg,
    var(--stripe-dark) 0 16px,
    var(--cream) 16px 32px);
}

.tile-wood {
  background-image: repeating-linear-gradient(0deg,
    var(--walnut) 0 10px,
    var(--walnut-deep) 10px 20px);
}

.frame-caption {
  color: var(--text-muted-on-cream);
  border-top: 1px solid var(--line-on-cream);
  padding: .85rem 1rem 1rem;
  font-size: .85rem;
  line-height: 1.5;
}

.frame-photo {
  transform: rotate(-.8deg);
}

.ardoise {
  border-radius: 14px;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.ardoise-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
}

.ardoise-head .heading {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
}

.ardoise-note {
  font-family: var(--font-hand);
  color: var(--text-on-walnut);
  margin-top: .75rem;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  line-height: 1.3;
}

.menu-columns {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
}

.menu-columns h3 {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted-on-walnut);
  border-bottom: 2px dashed var(--line-on-walnut);
  margin: 0 0 1rem;
  padding-bottom: .6rem;
  font-size: .78rem;
  font-weight: 700;
}

.menu-item {
  margin: 0 0 1.15rem;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.menu-item span {
  color: var(--text-muted-on-walnut);
  margin-top: .25rem;
  font-size: .88rem;
  font-weight: 400;
  display: block;
}

.ardoise-foot {
  text-align: center;
  color: var(--text-muted-on-walnut);
  margin: clamp(2rem, 5vw, 2.75rem) 0 0;
  font-size: .92rem;
}

.infos-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
}

.infos-item h3 {
  font-family: var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted-on-cream);
  margin: 0 0 .7rem;
  font-size: .78rem;
  font-weight: 700;
}

.infos-item p {
  margin: 0 0 .35rem;
  font-size: 1rem;
  line-height: 1.6;
}

.infos-item p.muted {
  color: var(--text-muted-on-cream);
  font-size: .88rem;
}

.infos-item a.plain {
  text-underline-offset: 3px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--line-on-cream);
  text-decoration-color: var(--line-on-cream);
}

.infos-item a.plain:hover {
  -webkit-text-decoration-color: var(--walnut);
  text-decoration-color: var(--walnut);
}

.rating-row {
  align-items: baseline;
  gap: .55rem;
  display: flex;
}

.rating-row strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.reserve-card {
  background: var(--walnut);
  color: var(--text-on-walnut);
  text-align: center;
  border-radius: 160px 160px 14px 14px / 70px 70px 14px 14px;
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
}

.reserve-card .heading {
  font-size: clamp(1.9rem, 4.6vw, 2.7rem);
}

.reserve-card p.lede {
  color: var(--text-muted-on-walnut);
  max-width: 32rem;
  margin: 1.1rem auto 2.25rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.75;
}

.reserve-details {
  text-align: left;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  display: grid;
}

.reserve-details h4 {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted-on-walnut);
  margin: 0 0 .4rem;
  font-size: .72rem;
  font-weight: 700;
}

.reserve-details p {
  margin: 0;
  font-size: .98rem;
}

.reserve-details .flag {
  color: var(--text-muted-on-walnut);
  margin-top: .3rem;
  font-size: .78rem;
  font-style: italic;
  display: inline-block;
}

.site-footer {
  background: var(--charcoal);
  color: var(--text-muted-on-walnut);
  padding: clamp(2.25rem, 6vw, 3rem) var(--section-x);
  text-align: center;
  font-size: .85rem;
  line-height: 1.7;
}

.site-footer .mark {
  font-family: var(--font-display);
  color: var(--text-on-walnut);
  margin-bottom: .6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transition: opacity .6s, transform .6s;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

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

  .site-header, .reveal {
    transition: none !important;
  }

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

@media (max-width: 780px) {
  .wall-grid {
    grid-template-columns: 1fr;
  }

  .frame-photo, .frame-tile {
    grid-column: span 1;
  }

  .frame-tile:nth-child(2), .frame-tile:nth-child(3), .frame-photo {
    transform: none;
  }

  .frame-tile .frame-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: .85rem;
  }

  .site-nav a {
    font-size: .78rem;
  }

  .reserve-card {
    border-radius: 80px 80px 14px 14px / 40px 40px 14px 14px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: initial;
    --lightningcss-dark: ;
    color-scheme: light;
  }
}

/* [next]/internal/font/google/fraunces_9519e873.module.css [app-client] (css) */
@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/50a3f1070da3c6cc-s.2xm1k7t3a0pcd.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/b887d91685b8c137-s.330vchwb4izzb.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/3c7c6164b2587822-s.p.16u3vygyjnhr0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/50a3f1070da3c6cc-s.2xm1k7t3a0pcd.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b887d91685b8c137-s.330vchwb4izzb.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/3c7c6164b2587822-s.p.16u3vygyjnhr0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/50a3f1070da3c6cc-s.2xm1k7t3a0pcd.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b887d91685b8c137-s.330vchwb4izzb.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/3c7c6164b2587822-s.p.16u3vygyjnhr0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.2qo5md4hn_gum.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.1d9rlgtqyj_-l.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.32sris142tqlb.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.2qo5md4hn_gum.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.1d9rlgtqyj_-l.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.32sris142tqlb.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.2qo5md4hn_gum.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.1d9rlgtqyj_-l.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.32sris142tqlb.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces Fallback;
  src: local(Times New Roman);
  ascent-override: 84.71%;
  descent-override: 22.09%;
  line-gap-override: 0.0%;
  size-adjust: 115.45%;
}

.fraunces_9519e873-module__YSvjEG__className {
  font-family: Fraunces, Fraunces Fallback;
}

.fraunces_9519e873-module__YSvjEG__variable {
  --font-display: "Fraunces", "Fraunces Fallback";
}

/* [next]/internal/font/google/caveat_837c6ffb.module.css [app-client] (css) */
@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/da4b870ab52b3094-s.2rv_b6cm3-gtx.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/86d70b7c76b6ec6e-s.43yn3v1dnm71_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/11cc37d7380d16b4-s.27riv1g955cgo.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Caveat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a85fe84266768609-s.p.0h6ig86gwutp4.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/da4b870ab52b3094-s.2rv_b6cm3-gtx.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/86d70b7c76b6ec6e-s.43yn3v1dnm71_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/11cc37d7380d16b4-s.27riv1g955cgo.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Caveat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a85fe84266768609-s.p.0h6ig86gwutp4.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/da4b870ab52b3094-s.2rv_b6cm3-gtx.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/86d70b7c76b6ec6e-s.43yn3v1dnm71_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Caveat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/11cc37d7380d16b4-s.27riv1g955cgo.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Caveat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a85fe84266768609-s.p.0h6ig86gwutp4.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Caveat Fallback;
  src: local(Arial);
  ascent-override: 124.77%;
  descent-override: 38.99%;
  line-gap-override: 0.0%;
  size-adjust: 76.94%;
}

.caveat_837c6ffb-module__jc7e6q__className {
  font-family: Caveat, Caveat Fallback;
  font-style: normal;
}

.caveat_837c6ffb-module__jc7e6q__variable {
  --font-hand: "Caveat", "Caveat Fallback";
}

/* [next]/internal/font/google/inter_a9dd00d3.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.0-dom-5bn10r2.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.1y4-pdgsjb-pw.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.3lvt2whj97whp.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.2uwcyprjm3xu3.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.0k62hbripvv8p.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.3-6t-g6q0vh0a.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.2bn3s6zvc0dyp.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.0-dom-5bn10r2.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.1y4-pdgsjb-pw.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.3lvt2whj97whp.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.2uwcyprjm3xu3.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.0k62hbripvv8p.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.3-6t-g6q0vh0a.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.2bn3s6zvc0dyp.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.0-dom-5bn10r2.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.1y4-pdgsjb-pw.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.3lvt2whj97whp.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.2uwcyprjm3xu3.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.0k62hbripvv8p.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.3-6t-g6q0vh0a.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.2bn3s6zvc0dyp.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.0-dom-5bn10r2.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.1y4-pdgsjb-pw.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.3lvt2whj97whp.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.2uwcyprjm3xu3.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.0k62hbripvv8p.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.3-6t-g6q0vh0a.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, 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: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.2bn3s6zvc0dyp.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_a9dd00d3-module__r1lI4G__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

.inter_a9dd00d3-module__r1lI4G__variable {
  --font-sans: "Inter", "Inter Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__02_ryd5._.css.map*/