/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --sand: #f4f0eb;
  --sand-deep: #ece4d8;
  --cream: #fbf7f1;
  --ink: #3a322c;
  --ink-soft: #5a4f46;
  --muted: #8a7d70;
  --accent: #0e5573;
  --accent-dark: #093c51;
  --accent-soft: #e3edf1;
  --gold: #c69a6d;
  --line: #ded2bf;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Montserrat", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
  --shadow-soft: 0 20px 45px -25px #3a322c59;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-full: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--sand);
  color: var(--ink);
  font-family: var(--font-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"), radial-gradient(65% 50% at 12% -5%, #c69a6d3d 0%, #0000 60%), radial-gradient(55% 45% at 92% 8%, #c69a6d29 0%, #0000 55%), radial-gradient(50% 40% at 50% 65%, #211b160f 0%, #0000 60%);
  background-position: 0 0, 12% -5%, 92% 8%, 50% 65%;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 180px 180px, 140% 140%, 140% 140%, 140% 140%;
  margin: 0;
  animation: 28s ease-in-out infinite auraDrift;
}

@keyframes auraDrift {
  0%, 100% {
    background-position: 0 0, 12% -5%, 92% 8%, 50% 65%;
  }

  50% {
    background-position: 0 0, 18% 2%, 86% 15%, 45% 70%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif), serif;
  color: var(--ink);
  letter-spacing: .01em;
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
}

p {
  margin: 0;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .9s cubic-bezier(.16, .8, .24, 1), transform .9s cubic-bezier(.16, .8, .24, 1);
  transform: translateY(34px);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transition: none;
    transform: none;
  }
}

.wave-divider {
  line-height: 0;
  position: relative;
}

.wave-divider svg {
  width: 100%;
  height: 64px;
  display: block;
}

@media (max-width: 760px) {
  .wave-divider svg {
    height: 36px;
  }
}

.section {
  padding: 96px 0;
}

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

.eyebrow {
  font-family: var(--font-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--gold);
  width: 28px;
  height: 1px;
  display: inline-block;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.script {
  font-family: var(--font-script), cursive;
  color: var(--accent-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
}

.btn {
  border-radius: var(--radius-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: .86rem;
  font-weight: 600;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, background .3s, color .3s, border-color .3s, letter-spacing .3s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, #0000 30%, #ffffff73 48%, #0000 66%);
  transition: transform .7s;
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
}

.btn:hover:before {
  transform: translateX(130%);
}

.btn-primary {
  background: var(--accent);
  color: #fbf7f1;
  box-shadow: 0 14px 30px -12px #0e55738c;
}

.btn-primary:hover {
  background: var(--accent-dark);
  letter-spacing: .07em;
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 18px 40px -14px #c69a6d80, 0 10px 24px -12px #0e557399;
}

.btn-outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: none;
}

.btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fbf7f1;
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.site-header {
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: #f4f0ebd1;
  position: sticky;
  top: 0;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  display: flex;
}

.brand {
  align-items: center;
  display: flex;
}

.brand-logo {
  border-radius: 10px;
  width: auto;
  height: 46px;
}

.nav-links {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-items: center;
  gap: 34px;
  font-size: .86rem;
  font-weight: 500;
  display: flex;
}

.nav-links a {
  padding-bottom: 4px;
  transition: color .2s;
  position: relative;
}

.nav-links a:after {
  content: "";
  background: var(--gold);
  width: 0;
  height: 1px;
  transition: width .3s cubic-bezier(.2, .8, .2, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.nav-links a:hover:after {
  width: 100%;
}

.nav-cta {
  align-items: center;
  gap: 20px;
  display: flex;
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  cursor: pointer;
  background: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 22px;
  display: none;
}

.mobile-nav a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-size: .95rem;
}

.mobile-nav.open {
  display: flex;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

.hero {
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 38%, #e8ae7066 0%, #0000 65%), radial-gradient(75% 60% at 50% 68%, #c68c5a33 0%, #0000 70%);
  position: absolute;
  inset: 0;
}

.hero-inner {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-copy {
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  display: flex;
  position: relative;
}

.hero-backdrop-word {
  font-family: var(--font-serif);
  color: #3a322c0f;
  letter-spacing: .02em;
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  font-size: clamp(5.5rem, 15vw, 11.5rem);
  font-weight: 700;
  position: absolute;
  top: -.5em;
  left: 50%;
  transform: translateX(-50%);
}

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px #fbf7f1e6;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 600;
  display: block;
}

.hero-title {
  letter-spacing: -.01em;
  text-shadow: 0 4px 30px #fbf7f1bf;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-text {
  color: var(--ink-soft);
  text-shadow: 0 2px 20px #fbf7f1b3;
  max-width: 34rem;
  margin: 0 auto 34px;
  font-size: 1.15rem;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  display: flex;
}

.hero-scene {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-float {
  will-change: transform;
  position: absolute;
}

.hero-float-inner {
  animation: idleFloat var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-float-inner img {
  display: block;
}

@keyframes idleFloat {
  0%, 100% {
    transform: translate(0)rotate(0);
  }

  50% {
    transform: translate(var(--dx, 10px), var(--dy, -14px)) rotate(var(--rot, 3deg));
  }
}

.hero-float.tier-far {
  z-index: 1;
  filter: blur(2.5px);
  opacity: .75;
}

.hero-float.tier-mid {
  z-index: 2;
}

.hero-float.tier-near {
  z-index: 3;
  filter: drop-shadow(0 20px 34px #3a281952);
}

.hero-float.accent-sm {
  display: none;
}

@media (min-width: 640px) {
  .hero-float.accent-sm {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-inner {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 60px;
  }
}

.icon-circle {
  background: var(--accent-soft);
  width: 52px;
  height: 52px;
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.philosophy {
  background: var(--cream);
}

.philosophy-inner {
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 56px;
  display: grid;
}

.philosophy-visual {
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, #f1e2c8 0%, #e0b988 45%, #b9835a 100%);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  animation: 14s ease-in-out infinite blobMorph;
  position: relative;
  overflow: hidden;
}

.philosophy-visual:after {
  content: "";
  border-radius: inherit;
  border: 1px solid #fbf7f18c;
  position: absolute;
  inset: 14px;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  }

  50% {
    border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-visual {
    animation: none;
  }
}

.philosophy-list {
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.philosophy-list li {
  color: var(--ink-soft);
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.philosophy-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .philosophy-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  gap: 20px;
  padding: 22px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
  display: flex;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 26px 54px -22px #c69a6d8c, var(--shadow-soft);
  transform: translateY(-6px);
}

.service-photo {
  border-radius: var(--radius-md);
  color: #fbf7f1e6;
  justify-content: center;
  align-items: center;
  width: 108px;
  min-width: 108px;
  height: 108px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-photo:after {
  content: "";
  background: linear-gradient(115deg, #0000 25%, #ffffff80 48%, #0000 70%);
  transition: transform .8s;
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
}

.service-card:hover .service-photo:after {
  transform: translateX(130%);
}

.service-photo svg {
  z-index: 1;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}

.service-card:hover .service-photo svg {
  transform: scale(1.15)rotate(-6deg);
}

.service-body {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.service-title {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.service-desc {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: .88rem;
}

.service-meta {
  color: var(--ink-soft);
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: .82rem;
  display: flex;
}

.service-meta .price {
  font-family: var(--font-serif);
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.service-meta .dot {
  background: var(--line);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.service-card .btn {
  align-self: flex-start;
  padding: 11px 24px;
  font-size: .72rem;
}

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

  .service-card {
    flex-direction: column;
  }

  .service-photo {
    width: 100%;
    height: 160px;
  }
}

.steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  display: grid;
}

.step-card {
  text-align: center;
  padding: 8px 16px;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  color: #0000;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 6px;
  font-size: 2.4rem;
  display: block;
}

.step-title {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.step-text {
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  box-shadow: 0 26px 54px -20px #c69a6d80, var(--shadow-soft);
}

.gallery-item-bg {
  z-index: 0;
  justify-content: center;
  align-items: center;
  padding: 16%;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s;
  display: flex;
  position: absolute;
  inset: -6%;
}

.gallery-item:hover .gallery-item-bg {
  filter: brightness(1.08) saturate(1.05);
  transform: scale(1.14);
}

.gallery-item span {
  z-index: 2;
  color: #fbf7f1;
  font-family: var(--font-serif);
  font-size: .95rem;
  transition: transform .35s;
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
}

.gallery-item:hover span {
  transform: translateY(-4px);
}

.gallery-item:before {
  content: "";
  z-index: 1;
  background: linear-gradient(0deg, #3a28198c 0%, #0000 55%);
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  display: grid;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 26px 54px -24px #c69a6d80, var(--shadow-soft);
  transform: translateY(-6px);
}

.stars {
  color: var(--gold);
  gap: 4px;
  margin-bottom: 16px;
  display: flex;
}

.testimonial-text {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: .95rem;
}

.testimonial-name {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1rem;
}

.testimonial-role {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
}

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

.contact-section {
  background: var(--cream);
}

.contact-inner {
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  display: grid;
}

.contact-info {
  flex-direction: column;
  gap: 22px;
  display: flex;
}

.contact-row {
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.contact-row h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-row p {
  color: var(--ink-soft);
  font-size: .92rem;
}

.social-row {
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.social-row a {
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.social-row a:hover {
  background: var(--accent);
  color: #fbf7f1;
  border-color: var(--accent);
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 34px;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.form-field {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  display: flex;
}

.form-field label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
}

.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--sand);
  border-radius: 12px;
  outline: none;
  padding: 13px 16px;
  font-size: .95rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px #c69a6d38;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: .86rem;
}

.form-note.success {
  color: #2f6f4f;
}

.form-note.error {
  color: #a4453a;
}

@media (max-width: 900px) {
  .contact-inner, .form-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--ink);
  color: #efe7dc;
  padding: 64px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  display: grid;
}

.footer-brand {
  font-family: var(--font-serif);
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.footer-brand span {
  color: var(--gold);
}

.footer-text {
  color: #cbbfae;
  max-width: 30rem;
  font-size: .9rem;
}

.footer-heading {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 600;
}

.footer-links {
  color: #d7cdbf;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: .9rem;
  list-style: none;
  display: grid;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  color: #a99c8a;
  border-top: 1px solid #efe7dc26;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: .8rem;
  display: flex;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

/* [next]/internal/font/google/playfair_display_8034cedd.module.css [app-client] (css) */
@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/65c558afe41e89d6-s.3jppgd0xzx-0d.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/14e23f9b59180572-s.0t8ljjjn9wtsx.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: Playfair Display;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/b49b0d9b851e4899-s.2zyohmvb-ks7f.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: Playfair Display;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2a65768255d6b625-s.p.3u4lli0-axodc.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: Playfair Display;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/65c558afe41e89d6-s.3jppgd0xzx-0d.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/14e23f9b59180572-s.0t8ljjjn9wtsx.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: Playfair Display;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/b49b0d9b851e4899-s.2zyohmvb-ks7f.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: Playfair Display;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2a65768255d6b625-s.p.3u4lli0-axodc.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: Playfair Display;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/65c558afe41e89d6-s.3jppgd0xzx-0d.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/14e23f9b59180572-s.0t8ljjjn9wtsx.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: Playfair Display;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b49b0d9b851e4899-s.2zyohmvb-ks7f.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: Playfair Display;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2a65768255d6b625-s.p.3u4lli0-axodc.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: Playfair Display;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/65c558afe41e89d6-s.3jppgd0xzx-0d.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/14e23f9b59180572-s.0t8ljjjn9wtsx.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: Playfair Display;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b49b0d9b851e4899-s.2zyohmvb-ks7f.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: Playfair Display;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/2a65768255d6b625-s.p.3u4lli0-axodc.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: Playfair Display Fallback;
  src: local(Times New Roman);
  ascent-override: 97.25%;
  descent-override: 22.56%;
  line-gap-override: 0.0%;
  size-adjust: 111.26%;
}

.playfair_display_8034cedd-module__MzGkoW__className {
  font-family: Playfair Display, Playfair Display Fallback;
  font-style: normal;
}

.playfair_display_8034cedd-module__MzGkoW__variable {
  --font-serif: "Playfair Display", "Playfair Display Fallback";
}

/* [next]/internal/font/google/montserrat_b02aa550.module.css [app-client] (css) */
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/8298327da6d5bcce-s.3q4n78m6muld7.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: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/44fac91e6f2d2b1b-s.1d_6dtvtn9g3_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/2b402d8aebffd579-s.16nfeub7ja6ze.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: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/a88409fdd7dc121c-s.1mvr14jy3vxq7.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: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/e8f2fbee2754df70-s.p.1dqa_6e_ad4sj.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: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/8298327da6d5bcce-s.3q4n78m6muld7.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: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/44fac91e6f2d2b1b-s.1d_6dtvtn9g3_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2b402d8aebffd579-s.16nfeub7ja6ze.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: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a88409fdd7dc121c-s.1mvr14jy3vxq7.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: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/e8f2fbee2754df70-s.p.1dqa_6e_ad4sj.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: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/8298327da6d5bcce-s.3q4n78m6muld7.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: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/44fac91e6f2d2b1b-s.1d_6dtvtn9g3_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2b402d8aebffd579-s.16nfeub7ja6ze.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: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a88409fdd7dc121c-s.1mvr14jy3vxq7.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: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/e8f2fbee2754df70-s.p.1dqa_6e_ad4sj.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: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/8298327da6d5bcce-s.3q4n78m6muld7.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: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/44fac91e6f2d2b1b-s.1d_6dtvtn9g3_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2b402d8aebffd579-s.16nfeub7ja6ze.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: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a88409fdd7dc121c-s.1mvr14jy3vxq7.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: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/e8f2fbee2754df70-s.p.1dqa_6e_ad4sj.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: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/8298327da6d5bcce-s.3q4n78m6muld7.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: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/44fac91e6f2d2b1b-s.1d_6dtvtn9g3_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/2b402d8aebffd579-s.16nfeub7ja6ze.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: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a88409fdd7dc121c-s.1mvr14jy3vxq7.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: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/e8f2fbee2754df70-s.p.1dqa_6e_ad4sj.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: Montserrat Fallback;
  src: local(Arial);
  ascent-override: 85.79%;
  descent-override: 22.25%;
  line-gap-override: 0.0%;
  size-adjust: 112.83%;
}

.montserrat_b02aa550-module__VT3NgW__className {
  font-family: Montserrat, Montserrat Fallback;
  font-style: normal;
}

.montserrat_b02aa550-module__VT3NgW__variable {
  --font-sans: "Montserrat", "Montserrat Fallback";
}

/* [next]/internal/font/google/great_vibes_37355ed1.module.css [app-client] (css) */
@font-face {
  font-family: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a1e5f881e1ca6a9a-s.3r71i8beaaw7i.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: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2efc0c479abd2474-s.02-h3o5cqnryq.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/70963ccca14000df-s.3dxjtj6-bs-2c.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/9a146d0fd3ff96e4-s.3pzgmnk57caz1.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: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0474ff9f7224a0da-s.0_mk8de7o781e.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: Great Vibes;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/f48d461c03e0a8ec-s.p.3rqg0w444aekk.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: Great Vibes Fallback;
  src: local(Arial);
  ascent-override: 124.79%;
  descent-override: 58.8%;
  line-gap-override: 0.0%;
  size-adjust: 68.19%;
}

.great_vibes_37355ed1-module__8qUnuq__className {
  font-family: Great Vibes, Great Vibes Fallback;
  font-style: normal;
  font-weight: 400;
}

.great_vibes_37355ed1-module__8qUnuq__variable {
  --font-script: "Great Vibes", "Great Vibes Fallback";
}

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