/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --green-deep: #1f3d2e;
  --green-deep-dark: #14281e;
  --parchment: #f4ecda;
  --parchment-2: #eadfc5;
  --brass: #b8894f;
  --brass-light: #d9b98a;
  --oxblood: #6e2a32;
  --oxblood-dark: #5a2129;
  --ink: #23201a;
  --muted: #5a5346;
  --white: #fffcf6;
  --line: #23201a24;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--green-deep);
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
}

p {
  margin: 0;
}

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

button {
  font: inherit;
}

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

.skip-link {
  background: var(--white);
  color: var(--green-deep);
  z-index: 100;
  border-radius: 4px;
  padding: .6rem 1rem;
  font-weight: 600;
  transition: top .15s;
  position: absolute;
  top: -3rem;
  left: 1rem;
}

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

.visually-hidden {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 600;
  display: inline-flex;
}

.eyebrow:before, .eyebrow:after {
  content: "";
  background: var(--brass);
  width: 22px;
  height: 1px;
}

.fold {
  --size: 34px;
  width: var(--size);
  height: var(--size);
  flex-shrink: 0;
  position: relative;
}

.fold:before {
  content: "";
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  inset: 0;
  box-shadow: -3px 3px 6px #14281e40;
}

.fold:after {
  content: "";
  background: var(--parchment-2);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  inset: 0;
}

.fold.brass:before {
  background: var(--brass-light);
}

.fold.brass:after {
  background: var(--brass);
}

.site-header {
  z-index: 40;
  background: var(--green-deep);
  border-bottom: 1px solid #ffffff14;
  position: sticky;
  top: 0;
}

.site-header .wrap {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.brand {
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: .01em;
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.brand em {
  color: var(--brass-light);
  font-style: italic;
}

.site-nav {
  gap: 28px;
  display: none;
}

.site-nav a {
  color: var(--parchment);
  opacity: .88;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--brass-light);
}

.btn {
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  background: var(--oxblood);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--oxblood-dark);
}

.btn-small {
  padding: 9px 16px;
  font-size: .85rem;
}

.btn-ghost {
  border-color: var(--brass-light);
  color: var(--white);
  background: none;
}

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

.hero {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-deep-dark) 100%);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background-image: repeating-linear-gradient(135deg, #ffffff09 0 1px, #0000 1px 14px);
  position: absolute;
  inset: 0;
}

.hero .wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 76px 20px 84px;
  display: flex;
  position: relative;
}

.hero .fold {
  --size: 46px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  max-width: 16ch;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

.hero .tagline {
  font-family: var(--font-heading);
  color: var(--brass-light);
  margin-top: 16px;
  font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
}

.hero .sub {
  color: #f4ecdad1;
  max-width: 42ch;
  margin-top: 18px;
  font-size: 1.02rem;
}

.hero .cta-row {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  display: flex;
}

.hero .phone-line {
  color: #f4ecdab8;
  font-size: .92rem;
}

.hero .phone-line strong {
  color: var(--parchment);
  font-weight: 600;
}

.section {
  padding: 72px 0;
}

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
}

.about-grid {
  align-items: center;
  gap: 40px;
  display: grid;
}

.about-copy p {
  color: var(--ink);
  font-size: 1.05rem;
}

.about-copy p + p {
  margin-top: 16px;
}

.stat-rail {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  display: grid;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
}

.stat .num {
  font-family: var(--font-heading);
  color: var(--green-deep);
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

.stat .label {
  color: var(--muted);
  margin-top: 2px;
  font-size: .82rem;
  display: block;
}

.menu-grid {
  grid-template-columns: 1fr;
  gap: 28px 24px;
  display: grid;
}

.ticket {
  background: var(--white);
  border-radius: 2px;
  padding: 30px 22px 24px;
  position: relative;
  box-shadow: 0 14px 30px #14281e1f;
}

.ticket:before {
  content: "";
  background-image: radial-gradient(circle at 10px 0px, var(--parchment-2) 7px, transparent 7.5px);
  background-position: top;
  background-repeat: repeat-x;
  background-size: 22px 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.ticket-no {
  letter-spacing: .08em;
  color: var(--brass);
  text-transform: uppercase;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: .72rem;
}

.ticket h3 {
  margin-top: 8px;
  font-size: 1.28rem;
}

.ticket .desc {
  color: var(--muted);
  margin-top: 8px;
  font-size: .96rem;
}

.ticket-foot {
  border-top: 1px dashed var(--line);
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
}

.ticket-price {
  color: var(--oxblood);
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: 1.05rem;
  font-weight: 600;
}

.ticket-stamp {
  font-family: var(--font-heading);
  letter-spacing: .05em;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  opacity: .85;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .72rem;
  font-style: italic;
  transform: rotate(-6deg);
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  display: grid;
}

.photo-slot {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg,
      #b8894f17 0px,
      #b8894f17 2px,
      transparent 2px,
      transparent 12px),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.photo-slot.wide {
  aspect-ratio: 16 / 10;
  grid-column: span 2;
}

.photo-slot .cap {
  width: 100%;
  color: var(--parchment);
  background: linear-gradient(0deg, #1f3d2ed1, #0000);
  padding: 10px 12px;
  font-size: .82rem;
  font-style: italic;
}

.rating-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 44px;
  display: flex;
}

.stars {
  letter-spacing: 4px;
  font-size: 1.9rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.stars-back {
  color: var(--line);
}

.stars-front {
  white-space: nowrap;
  color: var(--brass);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating-num {
  font-family: var(--font-heading);
  color: var(--green-deep);
  font-size: 1.6rem;
  font-weight: 600;
}

.rating-count {
  color: var(--muted);
  font-size: .92rem;
}

.review-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  display: grid;
}

.review-grid .ticket p.desc {
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 1.05rem;
  font-style: italic;
}

.review-name {
  color: var(--brass);
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
}

.visit-grid {
  gap: 32px;
  display: grid;
}

.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}

.visit-row {
  border-bottom: 1px solid var(--line);
  gap: 14px;
  padding: 14px 0;
  display: flex;
}

.visit-row:last-child {
  border-bottom: none;
}

.visit-row .k {
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 92px;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 2px;
  font-size: .78rem;
  font-weight: 600;
}

.visit-row .v {
  color: var(--ink);
  font-size: .98rem;
}

.visit-row a {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--brass-light);
  text-decoration-color: var(--brass-light);
  text-underline-offset: 3px;
}

.map-frame {
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  background: var(--green-deep-dark);
  color: #f4ecdabf;
  padding: 44px 0 28px;
}

.footer-grid {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  display: flex;
}

.footer-brand {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.2rem;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: .9rem;
  display: flex;
}

.footer-links a {
  color: #f4ecdad9;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-fine {
  color: #f4ecda73;
  font-size: .78rem;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 1.1fr .9fr;
  }

  .menu-grid, .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero .wrap {
    padding: 108px 20px 116px;
  }

  .ticket:nth-child(3n+1) {
    transform: rotate(-1deg);
  }

  .ticket:nth-child(3n+2) {
    transform: rotate(.6deg);
  }

  .ticket:nth-child(3n+3) {
    transform: rotate(-.4deg);
  }
}

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

/* [next]/internal/font/google/fraunces_83794749.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_83794749-module__7adVKa__className {
  font-family: Fraunces, Fraunces Fallback;
}

.fraunces_83794749-module__7adVKa__variable {
  --font-heading: "Fraunces", "Fraunces Fallback";
}

/* [next]/internal/font/google/inter_64ec53c6.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_64ec53c6-module__Auc9ha__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

.inter_64ec53c6-module__Auc9ha__variable {
  --font-body: "Inter", "Inter Fallback";
}

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