/* [project]/frontend/components/StickyNav/StickyNav.module.css [app-client] (css) */
.StickyNav-module__QZKIUa__stickyNav {
  z-index: 100;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fafaf8f5;
  border-bottom: 1px solid #c9a84c33;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  height: 52px;
  padding: 0 1.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.StickyNav-module__QZKIUa__stickyNav a {
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .75rem;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}

.StickyNav-module__QZKIUa__stickyNav a:hover {
  color: var(--gold);
  background: #c9a84c12;
  border-color: #c9a84c66;
}

.StickyNav-module__QZKIUa__stickyNav .StickyNav-module__QZKIUa__active {
  color: var(--gold);
  border-color: #c9a84c66;
}

.StickyNav-module__QZKIUa__navDivider {
  background: #c9a84c33;
  width: 1px;
  height: 14px;
}

.StickyNav-module__QZKIUa__navHamburger {
  z-index: 600;
  cursor: pointer;
  width: 52px;
  height: 52px;
  color: var(--text);
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}

.StickyNav-module__QZKIUa__navHamburger span {
  background: currentColor;
  width: 24px;
  height: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}

.StickyNav-module__QZKIUa__navOpen .StickyNav-module__QZKIUa__navHamburger span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.StickyNav-module__QZKIUa__navOpen .StickyNav-module__QZKIUa__navHamburger span:nth-child(2) {
  opacity: 0;
}

.StickyNav-module__QZKIUa__navOpen .StickyNav-module__QZKIUa__navHamburger span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

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

  .StickyNav-module__QZKIUa__stickyNav {
    display: none !important;
  }
}

/* [project]/frontend/components/BottomNav/BottomNav.module.css [app-client] (css) */
.BottomNav-module__CiZOsW__btmNav, .BottomNav-module__CiZOsW__btmDrawer, .BottomNav-module__CiZOsW__btmOverlay {
  display: none;
}

@media (max-width: 768px) {
  .BottomNav-module__CiZOsW__btmNav {
    -webkit-backdrop-filter: blur(12px);
    z-index: 600;
    background: #fafaf8f7;
    border-top: 1px solid #c9a84c40;
    border-radius: 20px 20px 0 0;
    align-items: stretch;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 24px #00000014;
  }

  .BottomNav-module__CiZOsW__btmNavItem {
    color: #0006;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    outline: none;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding: 0 2px;
    font-family: inherit;
    font-size: 9px;
    text-decoration: none;
    transition: color .18s;
    display: flex;
  }

  .BottomNav-module__CiZOsW__btmNavItem svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
  }

  .BottomNav-module__CiZOsW__btmNavItem.BottomNav-module__CiZOsW__active {
    color: #c9a84c;
  }

  .BottomNav-module__CiZOsW__btmNavItem.BottomNav-module__CiZOsW__active svg {
    filter: drop-shadow(0 0 6px #c9a84c80);
  }

  .BottomNav-module__CiZOsW__btmNavItem:active {
    color: #c9a84c;
  }

  .BottomNav-module__CiZOsW__btmDrawer {
    z-index: 599;
    background: #fafaf8fc;
    border-top: 1px solid #c9a84c2e;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: block;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    transform: translateY(102%);
  }

  .BottomNav-module__CiZOsW__btmDrawer.BottomNav-module__CiZOsW__open {
    transform: translateY(0);
  }

  .BottomNav-module__CiZOsW__btmDrawerTitle {
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c9a84c99;
    padding: .7rem 1.2rem .35rem;
    font-size: 9px;
  }

  .BottomNav-module__CiZOsW__btmDrawerGrid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .BottomNav-module__CiZOsW__btmDrawerItem {
    color: #00000073;
    letter-spacing: .1em;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid #c9a84c1f;
    border-right: 1px solid #c9a84c1f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 1rem .5rem;
    font-size: 10px;
    text-decoration: none;
    transition: color .18s, background .18s;
    display: flex;
  }

  .BottomNav-module__CiZOsW__btmDrawerItem:nth-child(2n) {
    border-right: none;
  }

  .BottomNav-module__CiZOsW__btmDrawerItem.BottomNav-module__CiZOsW__active, .BottomNav-module__CiZOsW__btmDrawerItem:active {
    color: #c9a84c;
    background: #c9a84c12;
  }

  .BottomNav-module__CiZOsW__btmDrawerItem svg {
    width: 28px;
    height: 28px;
  }

  .BottomNav-module__CiZOsW__btmOverlay {
    z-index: 598;
    background: #0000004d;
    display: none;
    position: fixed;
    inset: 0 0 60px;
  }

  .BottomNav-module__CiZOsW__btmOverlay.BottomNav-module__CiZOsW__open {
    display: block;
  }
}

/* [project]/frontend/app/about-ritz/about.module.css [app-client] (css) */
.about-module__3zMata__wrap {
  background: var(--dark);
  width: 100%;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-inter), "Inter", sans-serif;
  position: relative;
}

.about-module__3zMata__page {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  position: relative;
}

.about-module__3zMata__stickyNav {
  z-index: 200;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #0e0c09f2;
  border-bottom: 1px solid #c9a84c2e;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 50px;
  display: flex;
  position: sticky;
  top: 0;
}

.about-module__3zMata__stickyNav a {
  color: #c9a84c99;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid #c9a84c1f;
  align-items: center;
  height: 50px;
  padding: 0 1.1rem;
  font-size: .7rem;
  text-decoration: none;
  transition: color .2s, background .2s;
  display: flex;
}

.about-module__3zMata__stickyNav a:first-of-type {
  border-left: 1px solid #c9a84c1f;
}

.about-module__3zMata__stickyNav a:hover {
  color: #c9a84c;
  background: #c9a84c12;
}

.about-module__3zMata__stickyNav a.about-module__3zMata__active {
  color: var(--gold2);
}

.about-module__3zMata__navHamburger {
  z-index: 600;
  cursor: pointer;
  color: #c9a84ccc;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}

.about-module__3zMata__navHamburger span {
  background: currentColor;
  width: 24px;
  height: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}

.about-module__3zMata__topBar {
  border-bottom: 1px solid #c9a84c1f;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding: 1.8rem 0;
  display: flex;
}

.about-module__3zMata__backLink {
  color: var(--muted);
  letter-spacing: .1em;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.about-module__3zMata__backLink:hover {
  color: var(--gold);
}

.about-module__3zMata__topBar h1 {
  font-family: var(--font-playfair), serif;
  color: var(--gold);
  letter-spacing: .12em;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.about-module__3zMata__sub {
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  font-size: .75rem;
}

.about-module__3zMata__aboutHero {
  aspect-ratio: 21 / 9;
  background: var(--card);
  border: 1px solid #c9a84c1a;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 3.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-module__3zMata__placeholder {
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.about-module__3zMata__placeholder svg {
  opacity: .2;
}

.about-module__3zMata__storySection {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  display: grid;
}

.about-module__3zMata__storySectionFlip {
  direction: rtl;
}

.about-module__3zMata__storySectionFlip > * {
  direction: ltr;
}

.about-module__3zMata__storyImg {
  aspect-ratio: 4 / 3;
  background: var(--card);
  border: 1px solid #c9a84c1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-module__3zMata__placeholderSmall {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  display: flex;
}

.about-module__3zMata__placeholderSmall svg {
  opacity: .2;
}

.about-module__3zMata__eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-size: .72rem;
}

.about-module__3zMata__storyText h2 {
  font-family: var(--font-playfair), serif;
  color: var(--gold2);
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.about-module__3zMata__storyText p {
  color: var(--muted);
  margin-bottom: .8rem;
  font-size: .9rem;
  line-height: 1.8;
}

.about-module__3zMata__divider {
  border: none;
  border-top: 1px solid #c9a84c1a;
  margin: 3rem 0;
}

.about-module__3zMata__values {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
  display: grid;
}

.about-module__3zMata__valueCard {
  background: var(--card);
  text-align: center;
  border: 1px solid #c9a84c1a;
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
}

.about-module__3zMata__valueCard svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}

.about-module__3zMata__valueCard h3 {
  font-family: var(--font-playfair), serif;
  color: var(--gold2);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.about-module__3zMata__valueCard p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-module__3zMata__stickyNav {
    display: none !important;
  }

  .about-module__3zMata__navHamburger {
    display: flex;
  }
}

@media (max-width: 700px) {
  .about-module__3zMata__storySection, .about-module__3zMata__values {
    grid-template-columns: 1fr;
  }

  .about-module__3zMata__storySectionFlip {
    direction: ltr;
  }

  .about-module__3zMata__page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/*# sourceMappingURL=frontend_0t3_3wz._.css.map*/