/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --primary: #0a0a0a;
  --secondary: #1a1a1a;
  --accent: #9e824c;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --bg: #050505;
  --card-bg: #111;
  --border: #222;
  --glass: #ffffff08;
  --glass-border: #ffffff1a;
  --font-serif: "Outfit", "Inter", system-ui, sans-serif;
  --font-display: var(--font-serif-next), "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  letter-spacing: -.02em;
  color: var(--text);
  font-weight: 300;
}

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

.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.btn {
  border: 1px solid var(--db-border);
  background: var(--db-glass);
  color: var(--db-text);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
  box-shadow: 0 2px 5px #0003;
}

.btn:hover {
  background: #ffffff1a;
  border-color: #fff3;
  transform: translateY(-1px);
}

.btn-primary {
  color: #000;
  background: linear-gradient(135deg, #9e824c 0%, #d4be95 100%);
  border-color: #9e824c;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a88c52 0%, #e2cfab 100%);
  border-color: #a88c52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #9e824c4d;
}

.btn-icon {
  border: 1px solid var(--db-border);
  background: var(--db-glass);
  width: 36px;
  height: 36px;
  color: var(--db-muted);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-icon:hover {
  color: var(--db-text);
  border-color: var(--db-accent);
  background: #ffffff0d;
}

.btn-icon.edit:hover {
  color: #4ade80;
  border-color: #4ade80;
}

.btn-icon.delete:hover {
  color: #f87171;
  border-color: #f87171;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.nav {
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 4rem;
  transition: height .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(16px) !important;
  background: #050505cc !important;
  border-bottom: 1px solid #ffffff0f !important;
  border-radius: 0 !important;
}

.nav.scrolled {
  height: 68px;
  box-shadow: 0 10px 30px #0000004d;
  background: #050505f2 !important;
  border-bottom: 1px solid #ffffff1f !important;
}

.logo-container {
  align-items: center;
  width: 220px;
  height: 48px;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
}

.nav.scrolled .logo-container {
  width: 85px;
}

.logo {
  object-fit: contain;
  transition: opacity .4s cubic-bezier(.16, 1, .3, 1), transform .4s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.logo-full {
  opacity: 1;
  height: 38px;
  transform: translateY(-50%)scale(1);
}

.logo-collapsed {
  opacity: 0;
  pointer-events: none;
  height: 40px;
  transform: translateY(-50%)scale(.8)translateX(-10px);
}

.nav.scrolled .logo-full {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%)scale(.8)translateX(-10px);
}

.nav.scrolled .logo-collapsed {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%)scale(1)translateX(0);
}

.nav-links {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-dropdown-wrapper {
  display: inline-block;
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.dropdown-arrow {
  opacity: .7;
  font-size: .55rem;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
  color: var(--accent);
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  -webkit-backdrop-filter: blur(15px);
  background: #080808f5;
  border: 1px solid #c5a05933;
  flex-direction: column;
  min-width: 220px;
  padding: 10px 0;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%)translateY(12px);
  box-shadow: 0 15px 35px #0009;
}

.nav-dropdown-menu a {
  color: #ffffffb3;
  white-space: nowrap;
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s;
}

.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: #c5a05914;
  padding-left: 28px;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%)translateY(4px);
}

.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
  display: none;
}

.menu-toggle span {
  transform-origin: center;
  background-color: #fff;
  width: 100%;
  height: 1.5px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.menu-toggle.active span:first-child {
  background-color: var(--accent);
  transform: translateY(7px)rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  background-color: var(--accent);
  transform: translateY(-7px)rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    background: #050505f2 !important;
    border-bottom: 1px solid #ffffff14 !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
  }

  .nav.scrolled {
    height: 70px !important;
  }

  .logo-container {
    width: auto !important;
    height: 32px !important;
  }

  .logo-full {
    display: none !important;
  }

  .logo-collapsed {
    opacity: 1 !important;
    pointer-events: auto !important;
    height: 32px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .nav-links {
    -webkit-backdrop-filter: blur(25px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    background: #050505fc;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    width: 100vw;
    height: 100vh;
    padding: 100px 20px 40px;
    transition: opacity .4s, transform .4s cubic-bezier(.16, 1, .3, 1), visibility .4s;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transform: translateY(-30px);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    transition: color .3s;
  }

  .nav-links > a:hover {
    color: var(--accent);
  }

  .nav-dropdown-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .nav-dropdown-trigger {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 300;
  }

  .dropdown-arrow {
    display: none;
  }

  .nav-dropdown-menu {
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: .8rem;
    min-width: auto;
    padding: 15px 0 5px;
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
  }

  .nav-dropdown-menu a {
    color: #ffffff80;
    text-align: center;
    font-size: 1.05rem;
    font-family: var(--font-serif);
    letter-spacing: .05em;
    padding: 4px 0;
  }

  .nav-dropdown-menu a:hover {
    color: #fff;
    background: none;
    padding-left: 0;
  }

  .nav-links .btn {
    margin-top: 10px;
    width: 50px !important;
    height: 50px !important;
  }
}

.hero {
  text-align: center;
  background: linear-gradient(to bottom, #0006, var(--bg)), url("https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?q=80&w=2000") center/cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  display: flex;
}

.hero h1 {
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 1.5rem;
  font-size: 5rem;
}

.hero p {
  max-width: 600px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

.art-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  display: grid;
}

.art-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.art-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
}

.art-image {
  object-fit: contain;
  filter: grayscale(20%);
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.art-card:hover .art-image {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.art-info {
  padding: 24px;
}

.art-title {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.art-artist {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
}

.monograph-dropcap:first-letter {
  font-family: var(--font-serif);
  float: left;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
  margin-left: 2px;
  margin-right: 12px;
  font-size: 4.8rem;
  font-weight: 200;
  line-height: .8;
}

.museum-caption {
  border-left: 1px solid var(--accent);
  margin-bottom: 20px;
  padding-left: 20px;
}

.timeline-chronology {
  border-left: 1px solid #c5a05940;
  margin-left: 10px;
  padding-left: 30px;
  position: relative;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:before {
  content: "";
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 11px;
  height: 11px;
  transition: all .3s;
  position: absolute;
  top: 6px;
  left: -36px;
}

.timeline-item:hover:before {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transform: scale(1.3);
}

.timeline-year {
  font-family: var(--font-serif);
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: 5px;
  font-size: 1.15rem;
  font-weight: 500;
}

.spotlight-card {
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 8px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.spotlight-card:hover {
  background: #ffffff08;
  border-color: #c5a05966;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #0006;
}

.spotlight-image-container {
  background: #090909;
  flex: 1.2;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.spotlight-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.spotlight-card:hover .spotlight-image {
  transform: scale(1.03);
}

.spotlight-details {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 40px;
  display: flex;
}

@media (max-width: 960px) {
  .spotlight-card {
    flex-direction: column;
  }

  .spotlight-details {
    padding: 24px;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #ffffff03;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #c5a05933;
  border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #c5a05980;
}

.museum-artist-card {
  background: #ffffff03;
  border: 1px solid #ffffff0a;
  flex-direction: column;
  transition: all .6s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0006;
}

.museum-artist-card:hover {
  border-color: #c5a0594d;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #c5a0590d;
}

.museum-artist-image-wrapper {
  aspect-ratio: 3 / 4;
  background: #090909;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.museum-artist-image {
  object-fit: cover;
  filter: grayscale(35%) brightness(.9);
  width: 100%;
  height: 100%;
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.museum-artist-card:hover .museum-artist-image {
  filter: grayscale(0%) brightness();
  transform: scale(1.04);
}

.museum-artist-level-label {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 500;
  font-family: var(--font-outfit);
  background: #050505d9;
  border-top: 1px solid #c5a0594d;
  border-right: 1px solid #c5a0594d;
  padding: 6px 14px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.museum-artist-info {
  background: linear-gradient(#fff0 0%, #ffffff03 100%);
  flex-direction: column;
  flex: 1;
  padding: 35px;
  display: flex;
  position: relative;
}

.museum-artist-card-accent-line {
  background: var(--accent);
  width: 0;
  height: 2px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.museum-artist-card:hover .museum-artist-card-accent-line {
  width: 100%;
}

.museum-artist-name {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 300;
  font-family: var(--font-serif);
  margin: 0 0 8px;
  transition: color .3s;
}

.museum-artist-card:hover .museum-artist-name {
  color: var(--accent);
}

.museum-artist-years {
  color: var(--accent);
  letter-spacing: .15em;
  font-size: .85rem;
  font-family: var(--font-serif);
  margin-bottom: 20px;
  font-weight: 300;
}

.museum-artist-bio {
  color: #ffffffa6;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 80px;
  margin: 0;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
}

.museum-artist-footer {
  border-top: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
}

.museum-artist-explore-btn {
  text-transform: uppercase;
  color: #fff9;
  letter-spacing: .15em;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.museum-artist-card:hover .museum-artist-explore-btn {
  color: var(--accent);
}

@media (min-width: 992px) {
  .museum-artist-card:nth-child(3n-1) {
    transform: translateY(40px);
  }

  .museum-artist-card:nth-child(3n-1):hover {
    transform: translateY(32px);
  }

  .museum-artist-card:nth-child(3n) {
    transform: translateY(80px);
  }

  .museum-artist-card:nth-child(3n):hover {
    transform: translateY(72px);
  }
}

.editorial-hero-card {
  background: #ffffff03;
  border: 1px solid #ffffff0a;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  margin-bottom: 80px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  display: grid;
  overflow: hidden;
  box-shadow: 0 30px 60px #00000080;
}

.editorial-hero-card:hover {
  border-color: #c5a05940;
  box-shadow: 0 40px 80px #c5a05908;
}

.editorial-hero-image-wrapper {
  aspect-ratio: 16 / 10;
  background: #090909;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.editorial-hero-image {
  object-fit: cover;
  opacity: .85;
  width: 100%;
  height: 100%;
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.editorial-hero-card:hover .editorial-hero-image {
  opacity: 1;
  transform: scale(1.03);
}

.editorial-hero-content {
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  display: flex;
}

.editorial-news-card {
  background: none;
  border-bottom: 1px solid #ffffff0d;
  flex-direction: column;
  height: 100%;
  padding-bottom: 40px;
  transition: all .4s;
  display: flex;
  position: relative;
}

.editorial-news-image-wrapper {
  aspect-ratio: 16 / 9;
  background: #090909;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.editorial-news-image {
  object-fit: cover;
  opacity: .75;
  width: 100%;
  height: 100%;
  transition: all .6s cubic-bezier(.16, 1, .3, 1);
}

.editorial-news-card:hover .editorial-news-image {
  opacity: .95;
  transform: scale(1.04);
}

.editorial-news-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: var(--font-serif);
  margin: 0 0 12px;
  line-height: 1.4;
  transition: color .3s;
}

.editorial-news-card:hover .editorial-news-title {
  color: var(--accent);
}

@media (max-width: 992px) {
  .editorial-hero-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .editorial-hero-content {
    padding: 35px;
  }
}

.quill-content > p:first-of-type:first-letter {
  font-family: var(--font-serif);
  float: left;
  color: var(--accent);
  padding-top: 6px;
  padding-left: 2px;
  padding-right: 12px;
  font-size: 4rem;
  line-height: .85;
}

.artistic-artist-card {
  -webkit-backdrop-filter: blur(10px);
  background: #0c0c0c66;
  border: 1px solid #ffffff08;
  flex-direction: column;
  padding: 24px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.artistic-artist-card:after {
  content: "";
  pointer-events: none;
  border: 1px solid #0000;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  inset: 12px;
}

.artistic-artist-card:hover {
  background: #101010cc;
  border-color: #c5a05940;
  transform: translateY(-5px);
  box-shadow: 0 25px 50px #0009;
}

.artistic-artist-card:hover:after {
  border-color: #c5a05933;
  inset: 10px;
}

.artist-frame {
  aspect-ratio: 4 / 5;
  background: #080808;
  border: 1px solid #ffffff0d;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.artist-frame-image {
  object-fit: cover;
  filter: grayscale() contrast(1.1) brightness(.85);
  width: 100%;
  height: 100%;
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.artistic-artist-card:hover .artist-frame-image {
  filter: grayscale(0%) contrast() brightness(.95);
  transform: scale(1.04);
}

.artist-frame-overlay {
  pointer-events: none;
  background: linear-gradient(to top, #0006 0%, #0000 40%);
  position: absolute;
  inset: 0;
}

.artist-nationality-badge {
  color: var(--accent);
  letter-spacing: .15em;
  font-size: .65rem;
  font-weight: 500;
  font-family: var(--font-outfit);
  background: #050505d9;
  border: 1px solid #c5a05933;
  padding: 4px 10px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.artist-details {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.artist-title-name {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: .02em;
  margin: 20px 0 6px;
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.3;
  transition: color .3s;
}

.artistic-artist-card:hover .artist-title-name {
  color: var(--accent);
}

.artist-year-tag {
  color: var(--accent);
  font-size: .8rem;
  font-family: var(--font-serif);
  letter-spacing: .05em;
  margin-bottom: 16px;
  font-weight: 300;
}

.artist-excerpt-bio {
  color: #ffffff8c;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 72px;
  margin-bottom: 24px;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
}

.artist-card-footer {
  border-top: 1px solid #ffffff0a;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
}

.artist-medium-hint {
  color: #fff6;
  letter-spacing: .12em;
  font-size: .65rem;
  font-weight: 500;
  font-family: var(--font-outfit);
}

.explore-profile-link {
  text-transform: uppercase;
  color: #fff9;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-outfit);
  transition: all .3s;
}

.artistic-artist-card:hover .explore-profile-link {
  color: var(--accent);
  transform: translateX(4px);
}

.elegant-spinner {
  align-items: center;
  display: flex;
}

.spinner-dot {
  background-color: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  animation: 1.4s ease-in-out infinite both spinner-bounce;
  display: inline-block;
}

.spinner-dot:first-child {
  animation-delay: -.32s;
}

.spinner-dot:nth-child(2) {
  animation-delay: -.16s;
}

@keyframes spinner-bounce {
  0%, 80%, 100% {
    opacity: .3;
    transform: scale(0);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-item {
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards fadeInEffect;
}

@keyframes fadeInEffect {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .artists-artistic-grid .artistic-artist-card:nth-child(odd) {
    transform: translateY(20px);
  }

  .artists-artistic-grid .artistic-artist-card:nth-child(odd):hover {
    transform: translateY(15px);
  }
}

.sticky-search-container {
  z-index: 100;
  background: #050505;
  border-bottom: 1px solid #ffffff08;
  margin-bottom: 40px;
  padding: 20px 0;
  transition: top .4s cubic-bezier(.16, 1, .3, 1);
  position: sticky;
  top: 90px;
}

.nav.scrolled ~ main .sticky-search-container {
  top: 68px;
}

@media (max-width: 768px) {
  .sticky-search-container {
    margin-bottom: 30px;
    padding: 12px 0;
    top: 70px;
  }
}

.back-to-top {
  width: 50px;
  height: 50px;
  color: var(--accent);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(10px);
  background: #0a0a0ad9;
  border: 1px solid #c5a05940;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transform: translateY(20px);
  box-shadow: 0 10px 30px #00000080;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  color: #fff;
  background: #c5a0591a;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px #c5a05926;
}

.back-to-top svg {
  transition: transform .3s;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}

.chatbot-fab {
  width: 56px;
  height: 56px;
  color: var(--accent);
  cursor: pointer;
  z-index: 1001;
  -webkit-backdrop-filter: blur(12px);
  background: #0a0a0ae6;
  border: 1px solid #c5a05959;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  bottom: 100px;
  right: 30px;
  box-shadow: 0 8px 32px #00000080, 0 0 15px #9e824c26;
}

.chatbot-fab:hover {
  border-color: var(--accent);
  transform: scale(1.05)translateY(-3px);
  box-shadow: 0 12px 40px #0009, 0 0 25px #9e824c4d;
}

.chatbot-fab-inner {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.lotus-petals {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lotus-petal {
  opacity: 0;
  transform-origin: bottom;
  mix-blend-mode: screen;
  width: 16px;
  height: 24px;
  animation: 6s ease-in-out infinite float-petal;
  animation-delay: calc(var(--i) * 1.2s);
  background: radial-gradient(circle at bottom, #f3a6c2, #9e824c);
  border-radius: 50% / 60% 60% 40% 40%;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes float-petal {
  0% {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg)) translateY(0) scale(.5);
    opacity: 0;
  }

  20% {
    opacity: .8;
  }

  80% {
    opacity: .4;
  }

  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg + 45deg)) translateY(-40px) scale(1.2);
    opacity: 0;
  }
}

.chatbot-window {
  z-index: 1000;
  -webkit-backdrop-filter: blur(20px);
  background: #0a0a0af2;
  border: 1px solid #c5a05940;
  border-radius: 16px;
  flex-direction: column;
  width: 380px;
  height: 520px;
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards chatbot-show;
  display: flex;
  position: fixed;
  bottom: 170px;
  right: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px #0009, 0 0 30px #9e824c1a;
}

@keyframes chatbot-show {
  from {
    opacity: 0;
    transform: translateY(20px)scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #9e824c26 0%, #0a0a0af2 100%);
  border-bottom: 1px solid #c5a05926;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.chatbot-header-avatar {
  font-size: 1.5rem;
  animation: 3s ease-in-out infinite float-avatar;
}

@keyframes float-avatar {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.chatbot-header-title {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: .05em;
  font-size: 1.1rem;
  font-weight: 500;
}

.chatbot-header-sub {
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .75rem;
}

.chatbot-messages {
  flex-direction: column;
  flex: 1;
  gap: 16px;
  padding: 20px;
  display: flex;
  overflow-y: auto;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: none;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #c5a05926;
  border-radius: 2px;
}

.chatbot-msg {
  width: 100%;
  display: flex;
}

.chatbot-msg-user {
  justify-content: flex-end;
}

.chatbot-msg-bot {
  justify-content: flex-start;
}

.chatbot-msg-bubble {
  word-break: break-word;
  border-radius: 14px;
  max-width: 80%;
  padding: 12px 16px;
  font-size: .9rem;
  line-height: 1.5;
}

.chatbot-msg-user .chatbot-msg-bubble {
  background: var(--accent);
  color: #000;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chatbot-msg-bot .chatbot-msg-bubble {
  color: #f5f5f5;
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-bottom-left-radius: 2px;
}

.chatbot-links {
  border-top: 1px solid #ffffff0d;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  display: flex;
}

.chatbot-link {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.chatbot-link:hover {
  color: #fff;
}

.chatbot-typing {
  align-items: center;
  gap: 4px;
  display: flex;
  padding: 10px 14px !important;
}

.chatbot-typing span {
  background-color: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.4s ease-in-out infinite both chatbot-bounce;
  display: inline-block;
}

.chatbot-typing span:first-child {
  animation-delay: -.32s;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: -.16s;
}

@keyframes chatbot-bounce {
  0%, 80%, 100% {
    opacity: .3;
    transform: scale(0);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.chatbot-input-area {
  background: #080808f2;
  border-top: 1px solid #ffffff0d;
  gap: 10px;
  padding: 16px;
  display: flex;
}

.chatbot-input {
  color: #fff;
  background: #ffffff05;
  border: 1px solid #ffffff14;
  border-radius: 24px;
  outline: none;
  flex: 1;
  padding: 10px 18px;
  font-size: .9rem;
  transition: all .3s;
}

.chatbot-input:focus {
  border-color: var(--accent);
  background: #ffffff0a;
}

.chatbot-send {
  background: var(--accent);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.chatbot-send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 10px #9e824c4d;
}

.chatbot-send:disabled {
  color: #fff3;
  cursor: not-allowed;
  background: #ffffff0d;
}

@media (max-width: 768px) {
  .chatbot-fab {
    width: 48px;
    height: 48px;
    bottom: 95px;
    right: 16px;
  }

  .chatbot-window {
    width: calc(100% - 32px);
    height: 440px;
    bottom: 160px;
    right: 16px;
  }
}

.chatbot-suggestions {
  background: #08080899;
  border-top: 1px solid #ffffff08;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
  display: flex;
}

.chatbot-suggestions button {
  color: var(--accent);
  cursor: pointer;
  font-size: .8rem;
  font-family: var(--font-outfit);
  background: #9e824c0d;
  border: 1px solid #9e824c33;
  border-radius: 20px;
  outline: none;
  padding: 6px 14px;
  transition: all .2s cubic-bezier(.16, 1, .3, 1);
}

.chatbot-suggestions button:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* [next]/internal/font/google/outfit_ca35ecd4.module.css [app-client] (css) */
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/b2ea385cb5ae8625-s.0kjod.kaq1k69.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: Outfit;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1b99372b3eaef0c8-s.p.0gx2haw2tmll8.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: Outfit Fallback;
  src: local(Arial);
  ascent-override: 100.18%;
  descent-override: 26.05%;
  line-gap-override: 0.0%;
  size-adjust: 99.82%;
}

.outfit_ca35ecd4-module__VNkuCW__className {
  font-family: Outfit, Outfit Fallback;
  font-style: normal;
}

.outfit_ca35ecd4-module__VNkuCW__variable {
  --font-outfit: "Outfit", "Outfit Fallback";
}

/* [next]/internal/font/google/cormorant_garamond_1c20168c.module.css [app-client] (css) */
@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/d8cddd76dbfeaef0-s.0ilg37~12qzfz.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/591574edbe85c69b-s.0rbr02z3z6mfi.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/acf349172f10b359-s.p.056wj0-m8vpjn.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/0926c12c4384550f-s.0nas3qtlwu1e5.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/8bd76523131fa0fc-s.p.0jox806dnq5~c.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/d8cddd76dbfeaef0-s.0ilg37~12qzfz.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/591574edbe85c69b-s.0rbr02z3z6mfi.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/acf349172f10b359-s.p.056wj0-m8vpjn.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0926c12c4384550f-s.0nas3qtlwu1e5.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/8bd76523131fa0fc-s.p.0jox806dnq5~c.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/d8cddd76dbfeaef0-s.0ilg37~12qzfz.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/591574edbe85c69b-s.0rbr02z3z6mfi.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/acf349172f10b359-s.p.056wj0-m8vpjn.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/0926c12c4384550f-s.0nas3qtlwu1e5.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/8bd76523131fa0fc-s.p.0jox806dnq5~c.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/d8cddd76dbfeaef0-s.0ilg37~12qzfz.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/591574edbe85c69b-s.0rbr02z3z6mfi.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/acf349172f10b359-s.p.056wj0-m8vpjn.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/0926c12c4384550f-s.0nas3qtlwu1e5.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/8bd76523131fa0fc-s.p.0jox806dnq5~c.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/d8cddd76dbfeaef0-s.0ilg37~12qzfz.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/591574edbe85c69b-s.0rbr02z3z6mfi.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/acf349172f10b359-s.p.056wj0-m8vpjn.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/0926c12c4384550f-s.0nas3qtlwu1e5.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: Cormorant Garamond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/8bd76523131fa0fc-s.p.0jox806dnq5~c.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/9cc5c0547f229dea-s.00b2_ptq3xnpy.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/b0947914c9718a1e-s.0l.9lak812di~.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/d0b60be57f16ee32-s.p.0m2lc_66fsc~9.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/1f9e983605289f29-s.0~7_67muh398v.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/01e4147cff8141ee-s.p.10ked.7w885.g.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/9cc5c0547f229dea-s.00b2_ptq3xnpy.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/b0947914c9718a1e-s.0l.9lak812di~.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/d0b60be57f16ee32-s.p.0m2lc_66fsc~9.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/1f9e983605289f29-s.0~7_67muh398v.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/01e4147cff8141ee-s.p.10ked.7w885.g.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/9cc5c0547f229dea-s.00b2_ptq3xnpy.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/b0947914c9718a1e-s.0l.9lak812di~.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/d0b60be57f16ee32-s.p.0m2lc_66fsc~9.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/1f9e983605289f29-s.0~7_67muh398v.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/01e4147cff8141ee-s.p.10ked.7w885.g.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/9cc5c0547f229dea-s.00b2_ptq3xnpy.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b0947914c9718a1e-s.0l.9lak812di~.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/d0b60be57f16ee32-s.p.0m2lc_66fsc~9.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1f9e983605289f29-s.0~7_67muh398v.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/01e4147cff8141ee-s.p.10ked.7w885.g.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/9cc5c0547f229dea-s.00b2_ptq3xnpy.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b0947914c9718a1e-s.0l.9lak812di~.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/d0b60be57f16ee32-s.p.0m2lc_66fsc~9.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/1f9e983605289f29-s.0~7_67muh398v.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: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/01e4147cff8141ee-s.p.10ked.7w885.g.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: Cormorant Garamond Fallback;
  src: local(Times New Roman);
  ascent-override: 95.27%;
  descent-override: 29.59%;
  line-gap-override: 0.0%;
  size-adjust: 96.98%;
}

.cormorant_garamond_1c20168c-module__Xsp6OW__className {
  font-family: Cormorant Garamond, Cormorant Garamond Fallback;
}

.cormorant_garamond_1c20168c-module__Xsp6OW__variable {
  --font-serif-next: "Cormorant Garamond", "Cormorant Garamond Fallback";
}

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