@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, 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: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --gold: #c8a96b;
  --gold-light: #e2c991;
  --cream: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.57);
  --line: rgba(226, 201, 145, 0.22);
  --panel: rgba(19, 18, 15, 0.72);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  min-width: 320px;
  background: #15130f;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(226, 201, 145, 0.16);
}

button,
input,
select,
textarea {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.hero-media,
.hero-media img,
.hero-shade,
.ambient-glow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #15130f;
}

.hero-media img {
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.78) contrast(1.04);
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.74) 0%, rgba(12, 11, 9, 0.49) 42%, rgba(10, 9, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 9, 7, 0.3), transparent 42%, rgba(10, 9, 7, 0.12));
}

.ambient-glow {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 14%, rgba(200, 169, 107, 0.13), transparent 29%),
    linear-gradient(115deg, transparent 32%, rgba(255, 247, 229, 0.045) 48%, transparent 62%);
}

.ambient-glow::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.info-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  background:
    linear-gradient(90deg, rgba(200, 169, 107, 0.035), transparent 25%, transparent 75%, rgba(200, 169, 107, 0.035)),
    rgba(16, 15, 12, 0.82);
  box-shadow: 0 8px 28px rgba(6, 5, 4, 0.14);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.info-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100%, 1400px);
  min-height: 72px;
  margin: 0 auto;
  padding: 9px 18px 8px;
  gap: 8px 18px;
}

.info-bar__item {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: rgba(246, 241, 232, 0.9);
  font-size: clamp(0.56rem, 2.5vw, 0.64rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.45;
  text-decoration: none;
}

.info-bar__item svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  fill: none;
  color: var(--gold);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.info-bar__location {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
}

.info-bar__contacts {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.info-bar__socials {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-left: 6px;
  border-left: 1px solid rgba(226, 201, 145, 0.18);
  gap: 6px;
}

.info-bar__socials a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 24px;
  color: var(--gold);
  text-decoration: none;
  transition: color 250ms ease, opacity 250ms ease, transform 300ms var(--ease);
}

.info-bar__socials svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.info-bar__socials .fill {
  fill: currentColor;
  stroke: none;
}

.info-bar__phone,
.info-bar__email {
  white-space: nowrap;
}

.info-bar__hours {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  color: rgba(246, 241, 232, 0.74);
  font-size: clamp(0.5rem, 2.25vw, 0.59rem);
  letter-spacing: 0.015em;
  text-align: center;
}

.info-bar__hours i {
  margin: 0 0.18em;
  color: rgba(200, 169, 107, 0.48);
  font-style: normal;
}

@media (max-width: 680px) {
  .landing {
    padding-top: max(96px, calc(env(safe-area-inset-top) + 84px));
  }
}

.info-bar a {
  transition: color 250ms ease;
}

.info-bar a:focus-visible {
  border-radius: 3px;
  outline: 1px solid var(--gold-light);
  outline-offset: 4px;
}

.site-menu-toggle {
  position: fixed;
  top: max(88px, calc(env(safe-area-inset-top) + 80px));
  right: max(18px, env(safe-area-inset-right));
  z-index: 70;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(226, 201, 145, 0.3);
  border-radius: 50%;
  color: var(--cream);
  background:
    radial-gradient(circle at 30% 20%, rgba(226, 201, 145, 0.13), transparent 44%),
    rgba(18, 16, 13, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 36px rgba(5, 4, 3, 0.22);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  cursor: pointer;
  transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease);
}

.site-menu-toggle__icon {
  position: relative;
  display: grid;
  width: 20px;
  height: 16px;
}

.site-menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: top 300ms var(--ease), opacity 180ms ease, transform 300ms var(--ease), width 300ms var(--ease);
}

.site-menu-toggle__icon span:nth-child(1) {
  top: 0;
}

.site-menu-toggle__icon span:nth-child(2) {
  top: 7px;
  width: 15px;
}

.site-menu-toggle__icon span:nth-child(3) {
  top: 14px;
}

.menu-open .site-menu-toggle__icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-open .site-menu-toggle__icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-open .site-menu-toggle__icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.site-menu-toggle:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  visibility: hidden;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(226, 201, 145, 0.24);
  border-radius: 50%;
  color: rgba(226, 201, 145, 0.86);
  background:
    radial-gradient(circle at 30% 20%, rgba(226, 201, 145, 0.09), transparent 48%),
    rgba(18, 16, 13, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 30px rgba(5, 4, 3, 0.2);
  opacity: 0;
  backdrop-filter: blur(14px) saturate(112%);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition: opacity 280ms ease, visibility 280ms ease, transform 300ms var(--ease), border-color 260ms ease, background-color 260ms ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-open .back-to-top {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  background: rgba(7, 6, 5, 0.58);
  opacity: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(100%, 410px);
  padding: max(92px, calc(env(safe-area-inset-top) + 76px)) max(26px, calc(env(safe-area-inset-right) + 22px)) max(28px, env(safe-area-inset-bottom)) 30px;
  overflow-y: auto;
  border-left: 1px solid rgba(226, 201, 145, 0.2);
  background:
    radial-gradient(circle at 82% 7%, rgba(226, 201, 145, 0.15), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    rgba(15, 14, 12, 0.9);
  box-shadow: -30px 0 90px rgba(4, 3, 3, 0.42), inset 1px 0 0 rgba(255, 255, 255, 0.035);
  opacity: 0;
  overscroll-behavior: contain;
  backdrop-filter: blur(30px) saturate(118%);
  -webkit-backdrop-filter: blur(30px) saturate(118%);
  transform: translateX(102%);
  transition: transform 320ms var(--ease), opacity 260ms ease;
}

.menu-open .site-menu-backdrop {
  visibility: visible;
  opacity: 1;
}

.menu-open .site-menu {
  opacity: 1;
  transform: translateX(0);
}

.site-menu__inner {
  width: 100%;
  padding-bottom: 70px;
}

.site-menu__eyebrow {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-menu__nav {
  display: grid;
}

.site-menu__nav a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 64px;
  padding: 10px 5px 10px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  color: rgba(246, 241, 232, 0.72);
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 260ms ease, padding-left 300ms var(--ease), border-color 260ms ease;
}

.site-menu__nav a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.08);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0.4);
  transition: opacity 260ms ease, transform 300ms var(--ease);
}

.site-menu__nav a svg {
  width: 17px;
  fill: none;
  color: rgba(246, 241, 232, 0.28);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: color 260ms ease, transform 300ms var(--ease);
}

.site-menu__nav a.is-current,
.site-menu__nav a[aria-current="location"] {
  border-color: rgba(226, 201, 145, 0.2);
  color: var(--gold-light);
}

.site-menu__nav a.is-current::before,
.site-menu__nav a[aria-current="location"]::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-menu__nav a:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .info-bar__socials a:hover {
    color: var(--gold-light);
    opacity: 0.88;
    transform: translateY(-1px);
  }

  .site-menu-toggle:hover {
    border-color: rgba(226, 201, 145, 0.58);
    background-color: rgba(200, 169, 107, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 18px 42px rgba(5, 4, 3, 0.28);
    transform: translateY(-2px) rotate(2deg);
  }

  .back-to-top:hover {
    border-color: rgba(226, 201, 145, 0.5);
    color: var(--gold-light);
    background-color: rgba(200, 169, 107, 0.11);
    transform: translateY(-3px) scale(1.03);
  }

  .site-menu__nav a:hover {
    border-color: rgba(226, 201, 145, 0.2);
    color: var(--gold-light);
    padding-left: 23px;
  }

  .site-menu__nav a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .site-menu__nav a:hover svg {
    color: var(--gold-light);
    transform: translateX(3px);
  }

}

@media (min-width: 1100px) {
  .site-menu-toggle {
    top: max(61px, calc(env(safe-area-inset-top) + 53px));
  }
}

@media (max-width: 680px) {
  .site-menu-toggle {
    top: max(86px, calc(env(safe-area-inset-top) + 76px));
  }

  .site-menu-toggle {
    right: max(14px, env(safe-area-inset-right));
  }

  .site-menu {
    width: min(100%, 380px);
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
  }
}

#menu-restauracji,
#lunch-dnia,
#eventy,
#o-nas,
#galeria {
  scroll-margin-top: 124px;
}

@media (max-width: 420px) {
  .site-menu {
    width: 100%;
    padding-right: max(22px, calc(env(safe-area-inset-right) + 18px));
    padding-left: max(22px, calc(env(safe-area-inset-left) + 18px));
  }

  .site-menu__nav a {
    min-height: 61px;
  }
}

.js .info-bar {
  opacity: 0;
  transform: translateY(-8px);
}

.js .is-ready .info-bar {
  animation: info-bar-reveal 750ms var(--ease) 40ms forwards;
}

@keyframes info-bar-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .hero-media img {
  object-position: 56% center;
  filter: saturate(0.9) contrast(1.03) brightness(1.02);
}

.home-page .hero-shade {
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.58) 0%, rgba(10, 9, 7, 0.22) 42%, rgba(10, 9, 7, 0.68) 100%),
    linear-gradient(90deg, rgba(10, 9, 7, 0.24), transparent 38%, rgba(10, 9, 7, 0.12));
}

.home-page .ambient-glow {
  background:
    radial-gradient(circle at 50% 38%, rgba(226, 201, 145, 0.08), transparent 30%),
    linear-gradient(115deg, transparent 32%, rgba(255, 247, 229, 0.035) 48%, transparent 62%);
}

.home-main {
  position: relative;
}

.home-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: max(100svh, 620px);
  padding: max(130px, calc(env(safe-area-inset-top) + 112px)) 22px 104px;
  overflow: hidden;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 10%, rgba(8, 7, 6, 0.12) 58%, rgba(8, 7, 6, 0.38) 100%);
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(13, 12, 10, 0.72));
  content: "";
  pointer-events: none;
}

.home-hero__content {
  display: grid;
  justify-items: center;
  transform: translateY(-6vh);
}

.hero-brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-brand img {
  display: block;
  width: clamp(190px, 24vw, 278px);
  height: auto;
  filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.3));
}

.hero-brand p {
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.9);
  font-size: clamp(0.68rem, 1.35vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.6;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.hero-brand p span {
  margin: 0 0.36em;
  color: var(--gold-light);
}

.hero-cta {
  display: grid;
  grid-template-columns: 1fr 18px;
  align-items: center;
  width: min(100%, 226px);
  min-height: 56px;
  margin-top: 34px;
  padding: 10px 18px 10px 25px;
  border: 1px solid rgba(246, 241, 232, 0.42);
  border-radius: 18px;
  color: #1a1711;
  background: linear-gradient(115deg, #ead49f, var(--gold));
  box-shadow: 0 18px 42px rgba(6, 5, 4, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: transform 350ms var(--ease), box-shadow 350ms ease, filter 300ms ease;
}

.hero-cta span {
  text-align: center;
}

.hero-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 350ms var(--ease);
}

.hero-cta:focus-visible,
.scroll-cue:focus-visible,
.home-nav__link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: max(30px, env(safe-area-inset-bottom));
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(226, 201, 145, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(15, 14, 11, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  animation: scroll-cue 2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, -2px);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 7px);
  }
}

.home-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(84px, 11vw, 132px) 20px max(52px, env(safe-area-inset-bottom));
  scroll-margin-top: 104px;
  border-top: 1px solid rgba(226, 201, 145, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 169, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.91), rgba(13, 12, 10, 0.97));
  box-shadow: 0 -30px 80px rgba(6, 5, 4, 0.28);
  backdrop-filter: blur(16px) saturate(108%);
  -webkit-backdrop-filter: blur(16px) saturate(108%);
}

.home-content::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 72%);
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}

.home-content__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.home-content__heading {
  margin-bottom: clamp(32px, 5vw, 50px);
  text-align: center;
}

.home-content__heading p {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-content__heading h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.home-nav {
  display: grid;
  gap: 11px;
}

.home-nav__link {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px 18px 12px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 45px rgba(5, 4, 3, 0.12);
  text-decoration: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 350ms var(--ease), border-color 300ms ease, background-color 300ms ease, box-shadow 350ms ease;
}

.home-nav__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 107, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 169, 107, 0.08);
  transition: color 300ms ease, background-color 300ms ease, transform 350ms var(--ease);
}

.home-nav__icon svg,
.home-nav__arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-nav__icon svg {
  width: 18px;
  stroke-width: 1.45;
}

.home-nav__link > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.home-nav__link strong {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.home-nav__link small {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.015em;
}

.home-nav__arrow {
  width: 17px;
  color: rgba(246, 241, 232, 0.48);
  stroke-width: 1.45;
  transition: color 300ms ease, transform 350ms var(--ease);
}

.home-content .site-footer {
  margin-top: clamp(52px, 8vw, 84px);
}

@media (hover: hover) and (pointer: fine) {
  .hero-cta:hover {
    box-shadow: 0 24px 52px rgba(6, 5, 4, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.06);
    transform: translateY(-2px);
  }

  .hero-cta:hover svg {
    transform: translateX(3px);
  }

  .scroll-cue:hover {
    border-color: rgba(226, 201, 145, 0.52);
    background: rgba(200, 169, 107, 0.12);
  }

  .home-nav__link:hover {
    z-index: 1;
    border-color: rgba(200, 169, 107, 0.38);
    background-color: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(5, 4, 3, 0.2);
    transform: translateY(-3px);
  }

  .home-nav__link:hover .home-nav__icon {
    color: #1a1711;
    background: var(--gold-light);
    transform: scale(1.05);
  }

  .home-nav__link:hover .home-nav__arrow {
    color: var(--gold-light);
    transform: translateX(3px);
  }
}

@media (min-width: 660px) {
  .home-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .home-nav__link {
    min-height: 86px;
    padding-right: 20px;
  }
}

@media (min-width: 1100px) {
  .home-hero {
    min-height: 100svh;
    padding-top: max(92px, calc(env(safe-area-inset-top) + 74px));
  }

  .home-content {
    scroll-margin-top: 56px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    min-height: max(100svh, 660px);
    padding-top: max(110px, calc(env(safe-area-inset-top) + 96px));
  }

  .hero-brand p {
    letter-spacing: 0.19em;
  }

  .home-content {
    scroll-margin-top: 80px;
  }
}

.landing {
  display: grid;
  align-content: center;
  width: min(100%, 700px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: max(104px, calc(env(safe-area-inset-top) + 92px)) 18px max(22px, env(safe-area-inset-bottom));
}

.offer-page .landing {
  width: min(100%, 520px);
}

.event-page .landing {
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 1132px);
}

.event-page .events-section {
  width: 100%;
}

.gallery-page .landing {
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 1132px);
}

.offer-page .brand {
  margin-bottom: clamp(28px, 5vh, 44px);
}

.offer-page .brand img {
  width: clamp(164px, 42vw, 226px);
}

.event-page .brand {
  margin-bottom: 0;
}

.event-page .brand img {
  width: clamp(164px, 42vw, 226px);
}

.gallery-page .brand {
  margin-bottom: 0;
}

.gallery-page .brand img {
  width: clamp(164px, 42vw, 226px);
}

.offer-page .link-card {
  padding: clamp(18px, 4vw, 26px);
}

.offer-page .link-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.offer-page .action-link {
  min-height: 66px;
}

.brand {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(20px, 3vh, 32px);
  text-align: center;
}

.brand img {
  display: block;
  width: clamp(132px, 35vw, 202px);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.brand-note {
  margin: 13px 0 0;
  color: rgba(246, 241, 232, 0.64);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.link-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 34%),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
}

.link-card::before {
  position: absolute;
  top: -1px;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  opacity: 0.75;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 3px 16px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-flourish {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.link-grid {
  display: grid;
  gap: 9px;
}

.action-link {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  min-height: 58px;
  padding: 8px 14px 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition:
    transform 350ms var(--ease),
    border-color 350ms ease,
    background-color 350ms ease,
    box-shadow 350ms ease;
}

.action-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.085) 50%, transparent 75%);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 300ms ease, transform 650ms var(--ease);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 169, 107, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 169, 107, 0.075);
  transition: background-color 300ms ease, color 300ms ease, transform 350ms var(--ease);
}

.icon-wrap svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.icon-wrap .fill {
  fill: currentColor;
  stroke: none;
}

.link-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.link-copy strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.link-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow {
  width: 15px;
  fill: none;
  stroke: rgba(246, 241, 232, 0.36);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: stroke 300ms ease, transform 350ms var(--ease);
}

.action-link--featured {
  min-height: 66px;
  border-color: rgba(246, 241, 232, 0.32);
  color: #1a1711;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 28px rgba(9, 8, 6, 0.22);
}

.action-link--featured .icon-wrap {
  color: #1a1711;
  border-color: rgba(26, 23, 17, 0.22);
  background: rgba(246, 241, 232, 0.22);
}

.action-link--featured .link-copy small {
  color: rgba(26, 23, 17, 0.68);
}

.action-link--featured .arrow {
  stroke: rgba(26, 23, 17, 0.58);
}

.events-section {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(calc(100vw - 32px), 1080px);
  margin-top: clamp(58px, 10vw, 104px);
  padding: clamp(30px, 6vw, 68px);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 15% 0%, rgba(226, 201, 145, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 24%),
    rgba(17, 16, 13, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 42px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px) saturate(115%);
  -webkit-backdrop-filter: blur(24px) saturate(115%);
  scroll-margin-top: 24px;
}

.events-section::before {
  position: absolute;
  top: -1px;
  left: 22%;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  opacity: 0.9;
}

.event-inquiry {
  position: relative;
  width: 100%;
  padding: clamp(22px, 4.5vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(226, 201, 145, 0.2);
  border-radius: clamp(22px, 3.5vw, 34px);
  background:
    radial-gradient(circle at 88% 0%, rgba(226, 201, 145, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 38%),
    rgba(11, 10, 8, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 28px 72px rgba(0, 0, 0, 0.24);
}

.event-inquiry::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(226, 201, 145, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.event-inquiry__heading {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin-bottom: clamp(24px, 4vw, 38px);
}

.event-inquiry__heading h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.event-inquiry__heading p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.65);
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  line-height: 1.72;
}

.event-form {
  position: relative;
  z-index: 1;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.event-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.form-field {
  display: grid;
  align-content: start;
  min-width: 0;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  margin: 0 0 9px 2px;
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  outline: none;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 0.78rem;
  transition: border-color 250ms ease, background-color 250ms ease, box-shadow 250ms ease, transform 250ms var(--ease);
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 138px;
  padding: 15px 16px;
  line-height: 1.65;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(246, 241, 232, 0.32);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(226, 201, 145, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(226, 201, 145, 0.66);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-field input[type="date"] {
  color-scheme: dark;
}

.form-field input[type="number"] {
  appearance: textfield;
}

.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.form-select {
  position: relative;
}

.form-select select {
  padding-right: 46px;
  appearance: none;
  cursor: pointer;
}

.form-select select:invalid {
  color: rgba(246, 241, 232, 0.42);
}

.form-select option {
  color: var(--cream);
  background: #1d1a15;
}

.form-select svg {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 17px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  pointer-events: none;
  transform: translateY(-50%);
}

.form-field__hint,
.form-field__error {
  min-height: 16px;
  margin: 6px 2px 0;
  font-size: 0.58rem;
  line-height: 1.4;
}

.form-field__hint {
  color: rgba(246, 241, 232, 0.42);
}

.form-field__error {
  display: none;
  color: #e7a895;
}

.form-field.is-invalid .form-field__hint {
  display: none;
}

.form-field.is-invalid .form-field__error {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: rgba(231, 168, 149, 0.7);
  background: rgba(142, 68, 50, 0.1);
  box-shadow: 0 0 0 3px rgba(142, 68, 50, 0.09);
}

.event-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 22px;
}

.event-form__footer > p {
  max-width: 460px;
  margin: 0;
  color: rgba(246, 241, 232, 0.4);
  font-size: 0.58rem;
  line-height: 1.55;
}

.event-form__submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 58px;
  padding: 12px 17px 12px 22px;
  border: 1px solid rgba(246, 241, 232, 0.34);
  border-radius: 16px;
  color: #1a1711;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(6, 5, 4, 0.28);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 300ms var(--ease), box-shadow 300ms ease, filter 250ms ease, opacity 250ms ease;
}

.event-form__submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 300ms var(--ease);
}

.event-form__submit-loading {
  display: none;
}

.event-form.is-submitting .event-form__submit {
  cursor: wait;
  opacity: 0.72;
}

.event-form.is-submitting .event-form__submit-label,
.event-form.is-submitting .event-form__submit svg {
  display: none;
}

.event-form.is-submitting .event-form__submit-loading {
  display: block;
  grid-column: 1 / -1;
  text-align: center;
}

.event-form__status {
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(231, 168, 149, 0.32);
  border-radius: 13px;
  color: #efc0b2;
  background: rgba(142, 68, 50, 0.12);
  font-size: 0.68rem;
  line-height: 1.5;
}

.event-form-success {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  max-width: 680px;
  padding: clamp(8px, 2vw, 18px) 0;
  animation: form-success-in 600ms var(--ease) both;
}

.event-inquiry.is-success .event-inquiry__heading,
.event-inquiry.is-success .event-form {
  display: none;
}

.event-form-success[hidden] {
  display: none;
}

.event-form-success__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(226, 201, 145, 0.38);
  border-radius: 50%;
  color: #1a1711;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(6, 5, 4, 0.28);
}

.event-form-success__icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.event-form-success h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.event-form-success p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.66);
  font-size: 0.84rem;
  line-height: 1.7;
}

.event-form-success button {
  margin-top: 28px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(226, 201, 145, 0.46);
  color: var(--gold-light);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.events-intro {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.events-intro h2 {
  margin: 0;
  font-size: clamp(2.7rem, 9vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.events-intro p {
  margin: 22px auto 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: clamp(0.82rem, 2vw, 1rem);
  line-height: 1.75;
}

.events-gallery {
  display: grid;
  width: 100%;
  gap: clamp(10px, 1.7vw, 18px);
}

.gallery-card {
  position: relative;
  display: block;
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(18px, 3vw, 30px);
  color: var(--cream);
  background: #242019;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
  isolation: isolate;
  text-decoration: none;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 9, 7, 0.38));
  content: "";
  pointer-events: none;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
  transition: transform 850ms var(--ease), filter 500ms ease;
}

.gallery-card video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 850ms var(--ease), filter 500ms ease;
}

.gallery-card--video {
  min-height: 0;
  aspect-ratio: 1;
  cursor: default;
}

.gallery-card--gallery {
  grid-column: 1 / -1;
  min-height: 0;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-card--gallery img {
  object-position: center 48%;
}

.gallery-card--tall img {
  object-position: 24% center;
}

.gallery-card--wide img {
  object-position: 76% center;
}

.gallery-card--detail img {
  object-position: 48% 38%;
  transform: scale(1.2);
}

.gallery-card--evening img {
  object-position: 88% 58%;
  filter: saturate(0.66) brightness(0.78) contrast(1.12);
  transform: scale(1.12);
}

.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(20, 18, 14, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 350ms var(--ease), background-color 300ms ease;
}

.gallery-label {
  position: absolute;
  bottom: 19px;
  left: 21px;
  z-index: 2;
  color: var(--cream);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.photo-gallery-section {
  position: relative;
  width: 100%;
  margin-top: clamp(58px, 10vw, 104px);
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 15% 0%, rgba(226, 201, 145, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 24%),
    rgba(17, 16, 13, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 42px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px) saturate(115%);
  -webkit-backdrop-filter: blur(24px) saturate(115%);
}

.photo-gallery-intro {
  width: min(100%, 680px);
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.photo-gallery-intro h1 {
  margin: 0;
  font-size: clamp(2.7rem, 9vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.photo-gallery-intro p {
  margin: 20px 0 0;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.82rem;
  line-height: 1.7;
}

.gallery-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-bottom: clamp(38px, 7vw, 72px);
  gap: clamp(12px, 2vw, 20px);
}

.gallery-category {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: end;
  min-height: clamp(240px, 32vw, 380px);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(22px, 3vw, 34px);
  color: var(--cream);
  background: #211d17;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform 450ms var(--ease), border-color 350ms ease, box-shadow 450ms ease;
}

.gallery-category > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) brightness(0.66) contrast(1.08);
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.gallery-category:nth-child(2) > img {
  object-position: center 52%;
}

.gallery-category__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.04) 18%, rgba(9, 8, 6, 0.88) 100%),
    linear-gradient(120deg, rgba(200, 169, 107, 0.12), transparent 48%);
}

.gallery-category::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(226, 201, 145, 0);
  border-radius: calc(clamp(22px, 3vw, 34px) - 8px);
  content: "";
  transition: border-color 350ms ease;
}

.gallery-category__copy {
  display: grid;
  align-self: end;
  gap: 8px;
}

.gallery-category__copy strong {
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.gallery-category__copy small {
  color: rgba(246, 241, 232, 0.66);
  font-size: clamp(0.65rem, 1.4vw, 0.76rem);
  line-height: 1.5;
}

.gallery-category__arrow {
  display: grid;
  place-items: center;
  align-self: end;
  width: 48px;
  height: 48px;
  margin-left: 18px;
  border: 1px solid rgba(226, 201, 145, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(18, 16, 13, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 350ms ease, background-color 350ms ease, transform 450ms var(--ease);
}

.gallery-category__arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.gallery-category.is-active {
  border-color: rgba(226, 201, 145, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(226, 201, 145, 0.08);
}

.gallery-category.is-active::after {
  border-color: rgba(226, 201, 145, 0.3);
}

.gallery-category.is-active > img {
  filter: saturate(0.82) brightness(0.72) contrast(1.06);
}

.gallery-category.is-active .gallery-category__arrow {
  color: #1a1711;
  background: var(--gold-light);
  transform: rotate(90deg);
}

.gallery-category:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.gallery-panels {
  min-width: 0;
}

.js .gallery-panel[hidden] {
  display: none;
}

.gallery-panel.is-entering {
  animation: gallery-panel-in 520ms var(--ease) both;
}

.gallery-panel.is-leaving {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-panel__heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1.28fr);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 38px);
  padding: 0 clamp(2px, 1vw, 10px);
  gap: clamp(24px, 5vw, 70px);
}

.gallery-panel__heading .section-kicker {
  margin-bottom: 10px;
}

.gallery-panel__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.gallery-panel__heading p {
  margin: 0;
  color: rgba(246, 241, 232, 0.62);
  font-size: clamp(0.74rem, 1.5vw, 0.86rem);
  line-height: 1.75;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  gap: clamp(10px, 1.7vw, 18px);
}

.photo-gallery-grid .gallery-card {
  grid-column: span 6;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  min-height: 280px;
  aspect-ratio: 3 / 2;
  justify-self: center;
}

.photo-gallery-grid .gallery-card--featured,
.photo-gallery-grid .gallery-card--wide {
  grid-column: span 7;
}

.photo-gallery-grid .gallery-card--portrait {
  grid-column: span 5;
}

.photo-gallery-grid--space .gallery-card--plan {
  grid-column: span 7;
  aspect-ratio: 1.4 / 1;
  background: #eeeae1;
}

.photo-gallery-grid--space .gallery-card--plan::after {
  background: linear-gradient(180deg, transparent 64%, rgba(10, 9, 7, 0.62));
}

.photo-gallery-grid--space .gallery-card--plan img {
  padding: clamp(12px, 2vw, 24px);
  object-fit: contain;
  filter: none;
}

.photo-gallery-grid--space .gallery-card--space-photo {
  grid-column: span 5;
  aspect-ratio: 0.95 / 1;
}

.photo-gallery-grid--space {
  grid-auto-flow: dense;
  align-items: stretch;
}

.photo-gallery-grid--space .gallery-card--space-wide {
  grid-column: span 7;
  aspect-ratio: 1.42 / 1;
}

.photo-gallery-grid--space .gallery-card--space-tall {
  grid-column: span 5;
  aspect-ratio: 0.92 / 1;
}

.photo-gallery-grid--space .gallery-card--space-room {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.photo-gallery-grid--space .gallery-card--space-tall img {
  object-position: center 42%;
}

.photo-gallery-grid--space .gallery-card--space-room img {
  object-position: center 48%;
}

.photo-gallery-grid--events {
  grid-auto-flow: dense;
  align-items: stretch;
}

.photo-gallery-grid--events .gallery-card--wide {
  aspect-ratio: 1.32 / 1;
}

.photo-gallery-grid--events .gallery-card--portrait {
  aspect-ratio: 0.95 / 1;
}

.photo-gallery-grid--events .gallery-card--event-tall {
  grid-column: span 5;
  aspect-ratio: 0.82 / 1;
}

.photo-gallery-grid--events .gallery-card--event-compact {
  grid-column: span 5;
  aspect-ratio: 1.02 / 1;
}

.photo-gallery-grid--events .gallery-card--event-half {
  grid-column: span 6;
  aspect-ratio: 1.35 / 1;
}

.photo-gallery-grid--events .gallery-card img {
  object-position: center;
}

.photo-gallery-grid--events .gallery-card--event-tall img {
  object-position: center 42%;
}

.photo-gallery-grid .gallery-card img {
  object-position: center;
}

.photo-gallery-grid .gallery-card picture {
  display: contents;
}

.photo-gallery-grid .gallery-card--portrait img {
  object-position: center 38%;
}

.photo-gallery-grid--space,
.photo-gallery-grid--events {
  align-items: start;
}

.photo-gallery-grid .gallery-card {
  min-height: 0;
  background: radial-gradient(circle at 50% 42%, #2a251d 0%, #17140f 78%);
}

.photo-gallery-grid .gallery-card img {
  object-fit: contain;
  object-position: center;
}

.photo-gallery-grid--space > .gallery-card:nth-child(1) {
  grid-column: span 6;
  aspect-ratio: 1.4 / 1;
}

.photo-gallery-grid--space > .gallery-card:nth-child(2) {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.photo-gallery-grid--space > .gallery-card:nth-child(3),
.photo-gallery-grid--space > .gallery-card:nth-child(5) {
  grid-column: span 8;
  aspect-ratio: 3 / 2;
}

.photo-gallery-grid--space > .gallery-card:nth-child(4) {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.photo-gallery-grid--space > .gallery-card:nth-child(6) {
  grid-column: span 4;
  aspect-ratio: 2 / 3;
}

.photo-gallery-grid--space > .gallery-card:nth-child(7) {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
}

.photo-gallery-grid--events > .gallery-card:nth-child(1),
.photo-gallery-grid--events > .gallery-card:nth-child(5),
.photo-gallery-grid--events > .gallery-card:nth-child(9),
.photo-gallery-grid--events > .gallery-card:nth-child(11) {
  grid-column: span 7;
  aspect-ratio: 3 / 2;
}

.photo-gallery-grid--events > .gallery-card:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 20 / 21;
}

.photo-gallery-grid--events > .gallery-card:nth-child(3) {
  grid-column: span 8;
  aspect-ratio: 4 / 3;
}

.photo-gallery-grid--events > .gallery-card:nth-child(4) {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.photo-gallery-grid--events > .gallery-card:nth-child(6),
.photo-gallery-grid--events > .gallery-card:nth-child(12) {
  grid-column: span 5;
  aspect-ratio: 5 / 4;
}

.photo-gallery-grid--events > .gallery-card:nth-child(7),
.photo-gallery-grid--events > .gallery-card:nth-child(8) {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.photo-gallery-grid--events > .gallery-card:nth-child(10) {
  grid-column: span 5;
  aspect-ratio: 4 / 3;
}

@media (min-width: 681px) {
  .photo-gallery-grid.is-masonry {
    grid-auto-rows: 8px;
  }

  .photo-gallery-grid.is-masonry .gallery-card {
    align-self: start;
  }
}

.gallery-card__caption {
  position: absolute;
  bottom: 19px;
  left: 21px;
  z-index: 2;
  max-width: calc(100% - 92px);
  color: var(--cream);
  font-size: clamp(0.72rem, 1.6vw, 0.86rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.65);
}

@keyframes gallery-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.gallery-zoom svg,
.dialog-close svg,
.event-type-icon svg,
.event-highlights svg,
.events-cta svg,
.contact-option-icon svg,
.contact-option-arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-zoom svg {
  width: 18px;
  stroke-width: 1.5;
}

.gallery-card:focus-visible,
.events-cta:focus-visible,
.dialog-close:focus-visible,
.lightbox-nav:focus-visible,
.contact-options a:focus-visible,
.event-form__submit:focus-visible,
.event-form-success button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(28px, 5vw, 46px);
  gap: 10px;
}

.event-type-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 128px;
  margin: 0;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  text-align: center;
  transition: transform 350ms var(--ease), border-color 300ms ease, background-color 300ms ease;
}

.event-type-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  border: 1px solid rgba(226, 201, 145, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 169, 107, 0.09);
}

.event-type-icon svg {
  width: 22px;
  stroke-width: 1.35;
}

.event-type-card h3 {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.35;
}

.event-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 820px);
  margin-top: clamp(22px, 4vw, 34px);
  padding: 18px;
  border: 1px solid rgba(226, 201, 145, 0.2);
  border-radius: 22px;
  background: rgba(200, 169, 107, 0.065);
  gap: 13px 16px;
}

.event-highlights span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 241, 232, 0.8);
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.4;
}

.event-highlights svg {
  flex: 0 0 auto;
  width: 17px;
  color: var(--gold-light);
  stroke-width: 1.8;
}

.events-cta {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  width: min(100%, 360px);
  min-height: 64px;
  margin-top: clamp(28px, 5vw, 42px);
  padding: 12px 18px 12px 24px;
  border: 1px solid rgba(246, 241, 232, 0.34);
  border-radius: 18px;
  color: #1a1711;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 38px rgba(6, 5, 4, 0.3);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 350ms var(--ease), box-shadow 350ms ease, filter 300ms ease;
}

.events-cta span {
  text-align: center;
}

.events-cta svg {
  width: 18px;
  stroke-width: 1.7;
  transition: transform 350ms var(--ease);
}

.event-inquiry-toggle.is-open svg {
  transform: rotate(90deg);
}

.event-inquiry-accordion {
  display: grid;
  grid-template-rows: 1fr;
  width: 100%;
  margin-top: clamp(16px, 2.5vw, 22px);
  margin-bottom: clamp(34px, 6vw, 54px);
}

.event-inquiry-accordion__inner {
  min-height: 0;
}

.js .event-inquiry-accordion {
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 650ms var(--ease),
    opacity 400ms ease,
    visibility 0s linear 650ms;
}

.js .event-inquiry-accordion__inner {
  overflow: hidden;
}

.js .event-inquiry-accordion .event-inquiry {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
  transform-origin: center top;
  transition: opacity 360ms ease, transform 600ms var(--ease);
}

.js .event-inquiry-accordion.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 650ms var(--ease),
    opacity 420ms ease 80ms,
    visibility 0s linear 0s;
}

.js .event-inquiry-accordion.is-open .event-inquiry {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 110ms;
}

dialog {
  color: var(--cream);
}

dialog::backdrop {
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: dialog-backdrop 300ms ease both;
}

.lightbox-dialog,
.contact-dialog {
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox-dialog[open],
.contact-dialog[open] {
  animation: dialog-enter 450ms var(--ease) both;
}

.lightbox-dialog {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  color: var(--cream);
  background: #0c0b09;
  overflow: hidden;
}

.lightbox-dialog[open] {
  display: block;
  animation: lightbox-dialog-enter 450ms var(--ease) both;
}

.lightbox-shell {
  position: relative;
  display: grid;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  width: 100%;
  height: 100%;
  padding: 0;
  isolation: isolate;
}

.lightbox-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(211, 181, 119, 0.07), transparent 42%),
    linear-gradient(180deg, #11100d 0%, #090806 100%);
  content: "";
  pointer-events: none;
}

.lightbox-topbar,
.lightbox-footer {
  position: relative;
  z-index: 3;
  display: flex;
  grid-area: 1 / 1;
  align-items: center;
  pointer-events: none;
}

.lightbox-topbar {
  align-self: start;
  justify-content: space-between;
  padding: max(16px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
}

.lightbox-topbar > *,
.lightbox-footer > * {
  pointer-events: auto;
}

.lightbox-category {
  color: rgba(226, 201, 145, 0.74);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lightbox-stage {
  position: relative;
  display: grid;
  grid-area: 1 / 1;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding-block: max(78px, calc(env(safe-area-inset-top) + 60px), calc(env(safe-area-inset-bottom) + 60px));
  padding-inline: max(clamp(18px, 7vw, 104px), env(safe-area-inset-left), env(safe-area-inset-right));
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-media {
  display: block;
  place-self: center;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  border: 1px solid rgba(226, 201, 145, 0.16);
  border-radius: clamp(12px, 1.4vw, 22px);
  object-fit: contain;
  object-position: center;
  background: #15130f;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  will-change: opacity, transform;
}

.lightbox-media:is(video) {
  width: min(100%, 1180px);
}

.lightbox-dialog [hidden] {
  display: none;
}

.lightbox-footer {
  align-self: end;
  justify-content: center;
  padding-block: 0 max(14px, env(safe-area-inset-bottom));
  padding-inline: max(18px, env(safe-area-inset-left), env(safe-area-inset-right));
}

.lightbox-counter {
  min-width: 74px;
  padding: 9px 15px;
  border: 1px solid rgba(226, 201, 145, 0.2);
  border-radius: 999px;
  color: rgba(246, 241, 232, 0.72);
  background: rgba(20, 18, 14, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(226, 201, 145, 0.24);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(19, 17, 13, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 300ms var(--ease);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-nav--prev {
  left: max(24px, env(safe-area-inset-left));
}

.lightbox-nav--next {
  right: max(24px, env(safe-area-inset-right));
}

.lightbox-nav svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(18, 16, 13, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 300ms var(--ease), background-color 300ms ease;
}

.lightbox-dialog .dialog-close {
  position: relative;
  top: auto;
  right: auto;
}

.dialog-close svg {
  width: 19px;
  stroke-width: 1.5;
}

.contact-dialog {
  width: min(calc(100vw - 28px), 590px);
  max-width: none;
}

.contact-modal-card {
  position: relative;
  padding: clamp(25px, 6vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: clamp(26px, 5vw, 38px);
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 201, 145, 0.15), transparent 36%),
    rgba(22, 20, 16, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 36px 100px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
}

.contact-modal-heading {
  padding-right: 38px;
}

.contact-modal-heading span {
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-modal-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(1.75rem, 7vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.contact-options {
  display: grid;
  margin-top: 28px;
  gap: 12px;
}

.contact-options a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 86px;
  padding: 13px 17px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: transform 350ms var(--ease), border-color 300ms ease, background-color 300ms ease;
}

.contact-option-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 201, 145, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 169, 107, 0.09);
}

.contact-option-icon svg {
  width: 20px;
  stroke-width: 1.4;
}

.contact-options a > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.contact-options strong {
  font-size: 0.88rem;
  font-weight: 650;
}

.contact-options small {
  overflow: hidden;
  color: rgba(246, 241, 232, 0.55);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-option-arrow {
  width: 16px;
  color: rgba(246, 241, 232, 0.4);
  stroke-width: 1.5;
  transition: transform 350ms var(--ease), color 300ms ease;
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.975);
  }
}

@keyframes lightbox-dialog-enter {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
}

@keyframes dialog-backdrop {
  from {
    opacity: 0;
  }
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: clamp(18px, 2.8vh, 30px);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 107, 0.32);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(19, 18, 15, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, transform 350ms var(--ease);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.social-links .fill {
  fill: currentColor;
  stroke: none;
}

.social-links a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 650px);
  gap: 14px;
  color: rgba(246, 241, 232, 0.46);
  text-align: center;
}

.footer-note p {
  width: min(100%, 520px);
  margin: 0;
  font-size: clamp(0.64rem, 1.7vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.75;
  text-transform: uppercase;
}

.footer-note span {
  flex: 0 0 auto;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.5));
}

.footer-note span:last-child {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .footer-note span {
    display: none;
  }
}

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

.js .is-ready .reveal {
  animation: reveal 900ms var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .event-form__submit:hover {
    box-shadow: 0 21px 44px rgba(6, 5, 4, 0.36);
    filter: brightness(1.06);
    transform: translateY(-2px);
  }

  .event-form__submit:hover svg {
    transform: translateX(3px);
  }

  .event-form-success button:hover {
    color: var(--cream);
    border-color: rgba(246, 241, 232, 0.72);
  }

  .info-bar a:hover {
    color: var(--gold-light);
  }

  .social-links a:hover {
    border-color: rgba(226, 201, 145, 0.62);
    color: #1a1711;
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .action-link:hover {
    z-index: 1;
    border-color: rgba(200, 169, 107, 0.46);
    background-color: rgba(255, 255, 255, 0.085);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
  }

  .action-link:hover::before {
    opacity: 1;
    transform: translateX(70%);
  }

  .action-link:hover .icon-wrap {
    color: #19160f;
    background: var(--gold-light);
    transform: scale(1.06);
  }

  .action-link:hover .arrow {
    stroke: var(--gold-light);
    transform: translateX(3px);
  }

  .action-link--featured:hover {
    border-color: rgba(246, 241, 232, 0.58);
    background: linear-gradient(115deg, #ead49f, #d1b171);
    box-shadow: 0 16px 34px rgba(9, 8, 6, 0.3);
  }

  .action-link--featured:hover .icon-wrap {
    color: #1a1711;
    background: rgba(246, 241, 232, 0.36);
  }

  .action-link--featured:hover .arrow {
    stroke: #1a1711;
  }

  .gallery-card:hover img {
    filter: saturate(0.95) contrast(1.06);
    transform: scale(1.055);
  }

  .gallery-card:hover video {
    filter: saturate(0.96) contrast(1.06);
    transform: scale(1.055);
  }

  .gallery-card--detail:hover img {
    transform: scale(1.27);
  }

  .gallery-card--evening:hover img {
    filter: saturate(0.78) brightness(0.86) contrast(1.1);
    transform: scale(1.18);
  }

  .gallery-card:hover .gallery-zoom {
    color: #1a1711;
    background: var(--gold-light);
    transform: scale(1.08);
  }

  .gallery-category:hover {
    border-color: rgba(226, 201, 145, 0.42);
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.36);
    transform: translateY(-4px);
  }

  .gallery-category:hover > img {
    filter: saturate(0.84) brightness(0.73) contrast(1.06);
    transform: scale(1.045);
  }

  .gallery-category:hover .gallery-category__arrow {
    transform: translateX(3px);
  }

  .gallery-category.is-active:hover .gallery-category__arrow {
    transform: rotate(90deg) translateX(3px);
  }

  .photo-gallery-grid--space .gallery-card--plan:hover img {
    filter: none;
    transform: scale(1.025);
  }

  .event-type-card:hover {
    border-color: rgba(226, 201, 145, 0.28);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-3px);
  }

  .events-cta:hover {
    box-shadow: 0 22px 46px rgba(6, 5, 4, 0.38);
    filter: brightness(1.06);
    transform: translateY(-2px);
  }

  .events-cta:hover svg {
    transform: translateX(3px);
  }

  .event-inquiry-toggle.is-open:hover svg {
    transform: rotate(90deg) translateY(-3px);
  }

  .dialog-close:hover {
    background: rgba(200, 169, 107, 0.3);
    transform: rotate(6deg) scale(1.05);
  }

  .lightbox-nav:hover {
    border-color: rgba(226, 201, 145, 0.54);
    color: #19160f;
    background: var(--gold-light);
  }

  .lightbox-nav--prev:hover {
    transform: translateY(-50%) translateX(-3px) scale(1.04);
  }

  .lightbox-nav--next:hover {
    transform: translateY(-50%) translateX(3px) scale(1.04);
  }

  .contact-options a:hover {
    border-color: rgba(226, 201, 145, 0.35);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-2px);
  }

  .contact-options a:hover .contact-option-arrow {
    color: var(--gold-light);
    transform: translateX(3px);
  }
}

.action-link:active {
  transform: scale(0.985);
}

.action-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (min-width: 540px) {
  .landing {
    padding-right: 26px;
    padding-left: 26px;
  }

  .link-card {
    padding: 25px;
    border-radius: 30px;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .action-link--featured {
    grid-column: 1 / -1;
  }

  .offer-page .link-grid {
    grid-template-columns: 1fr;
  }

  .events-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card--gallery {
    min-height: 230px;
    aspect-ratio: 16 / 6;
  }

  .gallery-card {
    min-height: 300px;
  }
}

@media (min-width: 760px) {
  .gallery-card {
    min-height: 320px;
  }

  .event-types {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .event-highlights {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 18px 22px;
  }

  .event-highlights span {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 1100px) {
  .info-bar__inner {
    grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
    min-height: 45px;
    padding: 0 32px;
    gap: 16px;
  }

  .info-bar__item {
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

  .info-bar__item svg {
    width: 15px;
    height: 15px;
  }

  .info-bar__socials svg {
    width: 15px;
    height: 15px;
  }

  .info-bar__hours {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.58rem;
    white-space: nowrap;
  }

  .info-bar__location {
    grid-column: 1;
    gap: 12px;
  }

  .info-bar__contacts {
    grid-column: 3;
    gap: 10px;
  }

  .landing {
    padding-top: max(76px, calc(env(safe-area-inset-top) + 65px));
  }
}

@media (min-width: 900px) and (min-height: 760px) {
  .hero-media img {
    object-position: center center;
  }

  .brand img {
    width: 210px;
  }

  .link-card {
    padding: 28px;
  }

  .action-link {
    min-height: 62px;
  }

  .link-copy strong {
    font-size: 0.86rem;
  }
}

@media (max-height: 720px) and (min-width: 540px) {
  .landing {
    align-content: start;
    padding-top: max(104px, calc(env(safe-area-inset-top) + 92px));
  }

  .brand {
    margin-bottom: 16px;
  }

  .brand img {
    width: 126px;
  }

  .brand-note {
    margin-top: 8px;
  }

  .link-card {
    padding: 17px;
  }

  .action-link {
    min-height: 52px;
  }

  .footer-note {
    margin-top: 14px;
  }
}

@media (max-height: 720px) and (min-width: 1100px) {
  .landing {
    padding-top: max(76px, calc(env(safe-area-inset-top) + 65px));
  }
}

@media (max-height: 720px) and (min-width: 540px) and (max-width: 680px) {
  .landing {
    padding-top: max(96px, calc(env(safe-area-inset-top) + 84px));
  }
}

@supports (height: 100dvh) {
  body,
  .landing {
    min-height: 100dvh;
  }

  .home-hero {
    min-height: max(100dvh, 620px);
  }

  .lightbox-dialog,
  .contact-dialog {
    max-height: calc(100dvh - max(24px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom)));
  }

  .lightbox-dialog {
    max-height: none;
  }
}

@media (max-width: 680px) {
  .event-form__grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .event-form__footer {
    display: grid;
  }

  .event-form__submit {
    width: 100%;
  }

  .info-bar__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: repeat(2, minmax(30px, auto));
    min-height: 68px;
    padding: 4px max(10px, env(safe-area-inset-right)) 4px max(10px, env(safe-area-inset-left));
    gap: 0 clamp(4px, 1.5vw, 9px);
  }

  .info-bar__location,
  .info-bar__contacts {
    display: contents;
  }

  .info-bar__item {
    min-height: 30px;
    gap: 5px;
    font-size: clamp(0.54rem, 2.3vw, 0.62rem);
    line-height: 1.15;
  }

  .info-bar__item svg,
  .info-bar__socials svg {
    width: 13px;
    height: 13px;
  }

  .info-bar__address {
    grid-row: 1;
    grid-column: 1 / 3;
    justify-self: start;
    white-space: nowrap;
  }

  .info-bar__phone {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  .info-bar__email {
    grid-row: 2;
    grid-column: 1;
    justify-self: start;
    font-size: clamp(0.49rem, 2.05vw, 0.56rem);
    letter-spacing: 0;
  }

  .info-bar__directions {
    grid-row: 2;
    grid-column: 2;
    justify-self: end;
    font-size: clamp(0.49rem, 2.05vw, 0.56rem);
    white-space: nowrap;
  }

  .info-bar__socials {
    grid-row: 2;
    grid-column: 3;
    justify-self: end;
    padding-left: 5px;
    border-left-color: rgba(226, 201, 145, 0.24);
    gap: 3px;
  }

  .info-bar__socials a {
    width: 17px;
    height: 30px;
  }

  .info-bar__hours {
    display: none;
  }

  .home-hero {
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .landing {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .action-link,
  .home-nav__link,
  .events-cta,
  .contact-options a {
    min-height: 64px;
  }

  .events-section,
  .photo-gallery-section {
    padding: clamp(24px, 7vw, 34px) clamp(16px, 5vw, 24px);
    border-radius: 26px;
  }

  .contact-dialog {
    width: calc(100vw - 20px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .lightbox-shell {
    padding: 0;
  }

  .lightbox-stage {
    padding-block: max(64px, calc(env(safe-area-inset-top) + 60px), calc(env(safe-area-inset-bottom) + 60px));
    padding-inline: max(8px, env(safe-area-inset-left), env(safe-area-inset-right));
  }

  .lightbox-media {
    border-radius: 12px;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-category {
    font-size: 0.61rem;
    letter-spacing: 0.18em;
  }

  .lightbox-counter {
    padding: 8px 13px;
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-dialog .dialog-close {
    top: auto;
    right: auto;
  }

  .contact-dialog {
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 26px;
  }

  .contact-modal-card {
    padding: 26px 18px 18px;
  }

  .contact-modal-heading {
    padding-right: 42px;
  }

  .contact-options {
    margin-top: 22px;
  }

  .contact-options a {
    grid-template-columns: 46px minmax(0, 1fr) 16px;
    padding-right: 14px;
  }
}

@media (max-width: 420px) {
  .event-inquiry {
    padding: 22px 16px;
  }

  .event-inquiry__heading h3,
  .events-intro h2 {
    font-size: 2.35rem;
  }

  .event-inquiry__heading p {
    font-size: 0.76rem;
  }

  .form-field input,
  .form-field select {
    min-height: 56px;
  }

  .event-form__footer > p {
    order: 2;
  }

  .info-bar__inner {
    min-height: 66px;
  }

  .home-hero {
    min-height: max(100svh, 610px);
    padding-top: max(104px, calc(env(safe-area-inset-top) + 90px));
    padding-bottom: max(88px, calc(env(safe-area-inset-bottom) + 74px));
  }

  .home-hero__content {
    transform: translateY(-3vh);
  }

  .hero-brand img {
    width: clamp(176px, 55vw, 210px);
  }

  .hero-brand p {
    margin-top: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero-brand p span {
    margin: 0 0.22em;
  }

  .hero-cta {
    width: min(100%, 238px);
    min-height: 58px;
    margin-top: 26px;
  }

  .home-content {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .home-nav__link {
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    padding: 10px 14px 10px 10px;
  }

  .home-nav__icon {
    width: 38px;
    height: 38px;
  }

  .landing {
    padding-top: max(92px, calc(env(safe-area-inset-top) + 80px));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .brand {
    margin-bottom: 22px;
  }

  .brand img,
  .offer-page .brand img,
  .event-page .brand img,
  .gallery-page .brand img {
    width: 150px;
  }

  .link-card {
    padding: 14px;
    border-radius: 22px;
  }

  .action-link {
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    padding: 9px 12px 9px 9px;
  }

  .events-gallery {
    gap: 10px;
  }

  .gallery-card {
    min-height: 230px;
  }

  .gallery-card--video,
  .gallery-card--gallery {
    min-height: 0;
  }

  .event-types {
    gap: 8px;
  }

  .event-type-card {
    min-height: 116px;
    padding: 15px 8px;
  }

  .event-type-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .event-highlights {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 11px;
  }

  .photo-gallery-section {
    margin-top: 26px;
    padding: 24px 10px 18px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 12% 0%, rgba(226, 201, 145, 0.1), transparent 28%),
      rgba(17, 16, 13, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .gallery-page .landing {
    padding-right: max(8px, env(safe-area-inset-right));
    padding-left: max(8px, env(safe-area-inset-left));
  }

  .photo-gallery-intro {
    margin-bottom: 22px;
    padding: 0 8px;
    text-align: left;
  }

  .photo-gallery-intro h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .photo-gallery-intro p {
    margin-top: 12px;
    font-size: 0.76rem;
    line-height: 1.62;
  }

  .gallery-categories {
    grid-template-columns: 1fr;
    margin-bottom: 26px;
    gap: 10px;
  }

  .gallery-category {
    min-height: 148px;
    aspect-ratio: 16 / 7;
    padding: 17px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  }

  .gallery-category::after {
    inset: 7px;
    border-radius: 12px;
  }

  .gallery-category__copy {
    gap: 5px;
  }

  .gallery-category__copy strong {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .gallery-category__copy small {
    max-width: 220px;
    font-size: 0.63rem;
  }

  .gallery-category__arrow {
    width: 48px;
    height: 48px;
    margin-left: 10px;
  }

  .gallery-panel__heading {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 18px;
    padding: 0 7px;
    gap: 8px;
  }

  .gallery-panel__heading .section-kicker {
    margin-bottom: 7px;
  }

  .gallery-panel__heading h2 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .gallery-panel__heading p {
    font-size: 0.71rem;
    line-height: 1.6;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-gallery-grid .gallery-card,
  .photo-gallery-grid .gallery-card--featured,
  .photo-gallery-grid .gallery-card--wide,
  .photo-gallery-grid .gallery-card--portrait,
  .photo-gallery-grid--events .gallery-card--event-tall,
  .photo-gallery-grid--events .gallery-card--event-compact,
  .photo-gallery-grid--events .gallery-card--event-half,
  .photo-gallery-grid--space .gallery-card--plan,
  .photo-gallery-grid--space .gallery-card--space-photo,
  .photo-gallery-grid--space .gallery-card--space-wide,
  .photo-gallery-grid--space .gallery-card--space-tall,
  .photo-gallery-grid--space .gallery-card--space-room {
    grid-column: 1;
    aspect-ratio: 3 / 2;
  }

  .photo-gallery-grid--space .gallery-card--plan {
    aspect-ratio: 1.4 / 1;
  }

  .photo-gallery-grid--space .gallery-card--space-photo,
  .photo-gallery-grid--events .gallery-card--event-compact {
    aspect-ratio: 4 / 3;
  }

  .photo-gallery-grid .gallery-card--portrait,
  .photo-gallery-grid--space .gallery-card--space-tall {
    aspect-ratio: 4 / 5;
  }

  .photo-gallery-grid--events .gallery-card--event-tall {
    aspect-ratio: 4 / 5;
  }

  .photo-gallery-grid--space > .gallery-card:nth-child(1) {
    aspect-ratio: 1.4 / 1;
  }

  .photo-gallery-grid--space > .gallery-card:nth-child(2),
  .photo-gallery-grid--space > .gallery-card:nth-child(3),
  .photo-gallery-grid--space > .gallery-card:nth-child(5),
  .photo-gallery-grid--space > .gallery-card:nth-child(7) {
    aspect-ratio: 3 / 2;
  }

  .photo-gallery-grid--space > .gallery-card:nth-child(4) {
    aspect-ratio: 3 / 4;
  }

  .photo-gallery-grid--space > .gallery-card:nth-child(6) {
    aspect-ratio: 2 / 3;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(1),
  .photo-gallery-grid--events > .gallery-card:nth-child(5),
  .photo-gallery-grid--events > .gallery-card:nth-child(7),
  .photo-gallery-grid--events > .gallery-card:nth-child(8),
  .photo-gallery-grid--events > .gallery-card:nth-child(9),
  .photo-gallery-grid--events > .gallery-card:nth-child(11) {
    aspect-ratio: 3 / 2;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(2) {
    aspect-ratio: 20 / 21;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(3),
  .photo-gallery-grid--events > .gallery-card:nth-child(10) {
    aspect-ratio: 4 / 3;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(4) {
    aspect-ratio: 3 / 4;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(6),
  .photo-gallery-grid--events > .gallery-card:nth-child(12) {
    aspect-ratio: 5 / 4;
  }

  .photo-gallery-grid .gallery-card {
    min-height: 0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    contain: layout paint;
  }

  .photo-gallery-grid .gallery-card img {
    transition-duration: 420ms;
  }

  .gallery-card__caption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 78px);
    font-size: 0.7rem;
  }

  .photo-gallery-grid .gallery-zoom {
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
  }

  .gallery-category:active,
  .photo-gallery-grid .gallery-card:active {
    transform: scale(0.985);
  }

  .lightbox-dialog .dialog-close {
    width: 48px;
    height: 48px;
  }

  .lightbox-footer {
    align-items: end;
  }

  .contact-options small {
    font-size: 0.59rem;
  }
}

@media (max-width: 680px) {
  .gallery-page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .gallery-page .landing {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .gallery-page .brand,
  .gallery-page .photo-gallery-section,
  .gallery-page .photo-gallery-intro,
  .gallery-page .gallery-categories,
  .gallery-page .gallery-panels,
  .gallery-page .gallery-panel,
  .gallery-page .gallery-panel__heading,
  .gallery-page .photo-gallery-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gallery-page .brand {
    margin-bottom: 18px;
  }

  .gallery-page .brand img {
    width: clamp(132px, 42vw, 164px);
    max-width: 100%;
  }

  .gallery-page .photo-gallery-section {
    margin-top: 0;
    padding: clamp(22px, 6vw, 30px) clamp(12px, 4vw, 18px) clamp(18px, 5vw, 24px);
    overflow: hidden;
    border-radius: clamp(22px, 7vw, 30px);
    background:
      radial-gradient(circle at 10% 0%, rgba(226, 201, 145, 0.12), transparent 30%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.055), transparent 28%),
      rgba(17, 16, 13, 0.94);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .gallery-page .photo-gallery-intro {
    margin: 0 0 clamp(24px, 7vw, 32px);
    padding: 0 clamp(4px, 1.5vw, 8px);
    text-align: left;
  }

  .gallery-page .photo-gallery-intro h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 14vw, 4rem);
    overflow-wrap: anywhere;
  }

  .gallery-page .photo-gallery-intro p {
    max-width: 34rem;
    margin-top: 14px;
    font-size: clamp(0.74rem, 3.4vw, 0.84rem);
    line-height: 1.65;
  }

  .gallery-page .gallery-categories {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: clamp(30px, 9vw, 42px);
    gap: 12px;
  }

  .gallery-page .gallery-category {
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: clamp(170px, 48vw, 208px);
    aspect-ratio: auto;
    padding: clamp(17px, 5vw, 22px);
    border-radius: 20px;
    gap: 12px;
  }

  .gallery-page .gallery-category::after {
    inset: 7px;
    border-radius: 14px;
  }

  .gallery-page .gallery-category__copy {
    min-width: 0;
    gap: 6px;
  }

  .gallery-page .gallery-category__copy strong,
  .gallery-page .gallery-category__copy small {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .gallery-page .gallery-category__copy strong {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .gallery-page .gallery-category__copy small {
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
    line-height: 1.45;
  }

  .gallery-page .gallery-category__arrow {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .gallery-page .gallery-panel__heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin-bottom: 20px;
    padding: 0 clamp(4px, 1.5vw, 8px);
    gap: 12px;
  }

  .gallery-page .gallery-panel__heading h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .gallery-page .gallery-panel__heading p {
    max-width: 36rem;
    font-size: clamp(0.7rem, 3.2vw, 0.8rem);
    line-height: 1.65;
  }

  .gallery-page .photo-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    align-items: start;
    gap: clamp(9px, 2.8vw, 12px);
  }

  .gallery-page .photo-gallery-grid > .gallery-card,
  .gallery-page .photo-gallery-grid > .gallery-card:nth-child(n) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    border-radius: clamp(16px, 5vw, 21px);
    contain: layout paint;
  }

  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(1) {
    aspect-ratio: 1.32 / 1;
  }

  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(2),
  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(3),
  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(5),
  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(7),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(1),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(5),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(7),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(8),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(9),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(11) {
    aspect-ratio: 3 / 2;
  }

  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(4),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(4) {
    aspect-ratio: 3 / 4;
  }

  .gallery-page .photo-gallery-grid--space > .gallery-card:nth-child(6) {
    aspect-ratio: 2 / 3;
  }

  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(2) {
    aspect-ratio: 20 / 21;
  }

  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(3),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(10) {
    aspect-ratio: 4 / 3;
  }

  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(6),
  .gallery-page .photo-gallery-grid--events > .gallery-card:nth-child(12) {
    aspect-ratio: 5 / 4;
  }

  .gallery-page .photo-gallery-grid .gallery-card img,
  .gallery-page .photo-gallery-grid .gallery-card picture {
    max-width: 100%;
  }

  .gallery-page .gallery-card__caption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 76px);
    font-size: clamp(0.66rem, 3vw, 0.74rem);
    line-height: 1.35;
  }

  .gallery-page .photo-gallery-grid .gallery-zoom {
    right: 10px;
    bottom: 10px;
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 681px) and (max-width: 1024px) {
  .lightbox-stage {
    padding-inline: max(72px, env(safe-area-inset-left), env(safe-area-inset-right));
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
  }

  .photo-gallery-grid > .gallery-card {
    grid-column: auto;
  }

  .photo-gallery-grid--space > .gallery-card:nth-child(1) { order: 1; }
  .photo-gallery-grid--space > .gallery-card:nth-child(2) { order: 2; }
  .photo-gallery-grid--space > .gallery-card:nth-child(3) { order: 3; }
  .photo-gallery-grid--space > .gallery-card:nth-child(5) { order: 4; }
  .photo-gallery-grid--space > .gallery-card:nth-child(4) { order: 5; }
  .photo-gallery-grid--space > .gallery-card:nth-child(6) { order: 6; }

  .photo-gallery-grid--space > .gallery-card:nth-child(7) {
    grid-column: 1 / -1;
    order: 7;
  }

  .photo-gallery-grid--events > .gallery-card:nth-child(1) { order: 1; }
  .photo-gallery-grid--events > .gallery-card:nth-child(5) { order: 2; }
  .photo-gallery-grid--events > .gallery-card:nth-child(3) { order: 3; }
  .photo-gallery-grid--events > .gallery-card:nth-child(10) { order: 4; }
  .photo-gallery-grid--events > .gallery-card:nth-child(7) { order: 5; }
  .photo-gallery-grid--events > .gallery-card:nth-child(8) { order: 6; }
  .photo-gallery-grid--events > .gallery-card:nth-child(9) { order: 7; }
  .photo-gallery-grid--events > .gallery-card:nth-child(11) { order: 8; }
  .photo-gallery-grid--events > .gallery-card:nth-child(2) { order: 9; }
  .photo-gallery-grid--events > .gallery-card:nth-child(4) { order: 10; }
  .photo-gallery-grid--events > .gallery-card:nth-child(6) { order: 11; }
  .photo-gallery-grid--events > .gallery-card:nth-child(12) { order: 12; }
}

@media (max-width: 360px) {
  .info-bar__inner {
    padding-right: 6px;
    padding-left: 6px;
    gap: 0 3px;
  }

  .info-bar__item svg,
  .info-bar__socials svg {
    width: 13px;
    height: 13px;
  }

  .info-bar__item {
    gap: 4px;
    font-size: 0.53rem;
  }

  .info-bar__email,
  .info-bar__directions {
    font-size: 0.48rem;
  }

  .home-content__heading h1 {
    font-size: 1.9rem;
  }

  .events-intro h2,
  .photo-gallery-intro h1 {
    font-size: 2.35rem;
  }

  .contact-options a {
    grid-template-columns: 42px minmax(0, 1fr) 14px;
    padding-left: 9px;
  }

  .contact-option-icon {
    width: 40px;
    height: 40px;
  }
}

.quote-section {
  position: relative;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  width: 100%;
  margin-top: clamp(82px, 12vw, 126px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 90% 8%, rgba(226, 201, 145, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 34%),
    rgba(18, 17, 14, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 38px 96px rgba(5, 4, 3, 0.32);
  backdrop-filter: blur(24px) saturate(114%);
  -webkit-backdrop-filter: blur(24px) saturate(114%);
}

.about-section::after {
  position: absolute;
  right: clamp(24px, 5vw, 52px);
  bottom: 0;
  width: min(34%, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 201, 145, 0.66));
  content: "";
  pointer-events: none;
}

.about-section__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.about-section__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 64%, rgba(15, 14, 12, 0.42)), linear-gradient(180deg, transparent 58%, rgba(10, 9, 7, 0.38));
  content: "";
  pointer-events: none;
}

.about-section__media picture,
.about-section__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-section__media picture {
  position: absolute;
  inset: 0;
}

.about-section__media img {
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(0.78) contrast(1.04) brightness(0.88);
  transition: transform 1000ms var(--ease), filter 600ms ease;
}

.about-section__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(42px, 7vw, 70px) clamp(30px, 6vw, 64px);
}

.about-section__content h2 {
  margin: 10px 0 0;
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.about-section__content p {
  margin: 17px 0 0;
  color: rgba(246, 241, 232, 0.64);
  font-size: clamp(0.75rem, 1.55vw, 0.88rem);
  line-height: 1.78;
}

.about-section__content .about-section__lead {
  margin-top: 26px;
  color: rgba(246, 241, 232, 0.88);
  font-size: clamp(0.9rem, 1.8vw, 1.06rem);
  line-height: 1.68;
}

.about-section__content .about-section__closing {
  padding-top: 18px;
  border-top: 1px solid rgba(226, 201, 145, 0.16);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.015em;
}

@media (hover: hover) and (pointer: fine) {
  .about-section:hover .about-section__media img {
    filter: saturate(0.88) contrast(1.05) brightness(0.94);
    transform: scale(1.035);
  }
}

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

  .about-section__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-section__media::after {
    background: linear-gradient(180deg, transparent 54%, rgba(10, 9, 7, 0.48));
  }

  .about-section__media img {
    object-position: center 30%;
  }

  .about-section__content {
    padding: clamp(30px, 8vw, 46px) clamp(22px, 7vw, 38px) clamp(38px, 9vw, 52px);
  }
}

@media (max-width: 420px) {
  .about-section {
    margin-top: 70px;
    border-radius: 26px;
  }

  .about-section__content h2 {
    font-size: 2.6rem;
  }
}

.home-reviews {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: clamp(82px, 12vw, 126px);
  padding: clamp(68px, 9vw, 96px) 0 clamp(126px, 15vw, 154px);
  scroll-margin-top: 104px;
  border-top: 1px solid rgba(226, 201, 145, 0.16);
}

.home-reviews::before,
.order-online__panel::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(62%, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 201, 145, 0.9), transparent);
  content: "";
  opacity: 0.72;
  transform: translateX(-50%);
}

.premium-heading {
  width: min(100%, 710px);
  text-align: center;
}

.premium-heading p {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.premium-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 580px);
  margin-top: clamp(28px, 4vw, 38px);
  padding: 17px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 52%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(5, 4, 3, 0.14);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  gap: 24px;
}

.reviews-rating__score {
  display: grid;
  flex: 0 0 auto;
  justify-items: center;
  gap: 2px;
}

.reviews-rating__stars,
.review-card__stars {
  color: var(--gold-light);
  letter-spacing: 0.16em;
  text-shadow: 0 6px 22px rgba(200, 169, 107, 0.18);
}

.reviews-rating__stars {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}

.reviews-rating strong {
  color: var(--cream);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.reviews-rating__divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, rgba(226, 201, 145, 0.36), transparent);
}

.reviews-rating__meta {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.google-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(226, 201, 145, 0.26);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 169, 107, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
}

.reviews-rating__meta p {
  display: grid;
  margin: 0;
  gap: 4px;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.7rem;
  font-weight: 550;
  line-height: 1.35;
}

.reviews-rating__meta p strong {
  color: var(--cream);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
}

.reviews-rating__meta small {
  color: rgba(246, 241, 232, 0.38);
  font-size: 0.54rem;
  letter-spacing: 0.04em;
}

.reviews-rating--integration-needed {
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.75rem;
  text-align: center;
}

.reviews-rating strong span {
  color: rgba(246, 241, 232, 0.48);
  font-size: 0.58em;
  letter-spacing: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(34px, 5vw, 48px);
  gap: 14px;
}

.review-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 258px;
  padding: clamp(23px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 26px;
  background:
    radial-gradient(circle at 15% 0%, rgba(226, 201, 145, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065), 0 24px 58px rgba(5, 4, 3, 0.16);
  backdrop-filter: blur(20px) saturate(112%);
  -webkit-backdrop-filter: blur(20px) saturate(112%);
  transition: transform 400ms var(--ease), border-color 300ms ease, background-color 300ms ease, box-shadow 400ms ease;
}

.review-card::after {
  position: absolute;
  right: 20px;
  bottom: -22px;
  color: rgba(226, 201, 145, 0.075);
  content: "”";
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.review-card__stars {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 0.78rem;
}

.review-card__stars span {
  color: rgba(246, 241, 232, 0.18);
  text-shadow: none;
}

.review-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.review-card__avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 201, 145, 0.25);
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(226, 201, 145, 0.14), rgba(200, 169, 107, 0.045));
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.review-card__identity {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.review-card__identity strong {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.73rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__identity small {
  color: rgba(246, 241, 232, 0.42);
  font-size: 0.53rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.88);
  font-size: clamp(0.79rem, 1.35vw, 0.9rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.72;
}

.premium-button {
  display: grid;
  grid-template-columns: 1fr 18px;
  align-items: center;
  width: min(100%, 330px);
  min-height: 62px;
  padding: 11px 18px 11px 24px;
  border: 1px solid rgba(246, 241, 232, 0.38);
  border-radius: 18px;
  color: #1a1711;
  background: linear-gradient(115deg, #ead49f, var(--gold));
  box-shadow: 0 18px 42px rgba(6, 5, 4, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 350ms var(--ease), box-shadow 350ms ease, filter 300ms ease;
}

.premium-button span {
  text-align: center;
}

.premium-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 350ms var(--ease);
}

.reviews-button {
  margin-top: clamp(32px, 5vw, 46px);
}

.premium-button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.reviews-scroll-cue {
  bottom: max(28px, env(safe-area-inset-bottom));
}

.order-online {
  padding: clamp(70px, 11vw, 112px) 0 max(36px, env(safe-area-inset-bottom));
  scroll-margin-top: 104px;
}

.order-online__panel {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(52px, 9vw, 88px) clamp(22px, 7vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(30px, 5vw, 46px);
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 201, 145, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 34%),
    rgba(17, 16, 13, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 42px 100px rgba(5, 4, 3, 0.32);
  backdrop-filter: blur(24px) saturate(112%);
  -webkit-backdrop-filter: blur(24px) saturate(112%);
}

.order-online__panel::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(226, 201, 145, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(226, 201, 145, 0.025), 0 0 0 80px rgba(226, 201, 145, 0.018);
  content: "";
  pointer-events: none;
}

.order-online__description {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  margin: 24px auto 0;
  color: rgba(246, 241, 232, 0.65);
  font-size: clamp(0.82rem, 1.8vw, 0.96rem);
  line-height: 1.75;
  text-align: center;
}

.order-online__button {
  position: relative;
  z-index: 1;
  width: min(100%, 290px);
  margin-top: clamp(28px, 5vw, 40px);
}

.js .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--scroll-delay, 0ms);
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    border-color: rgba(226, 201, 145, 0.32);
    background-color: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 30px 70px rgba(5, 4, 3, 0.23);
    transform: translateY(-5px);
  }

  .premium-button:hover {
    box-shadow: 0 24px 52px rgba(6, 5, 4, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.06);
    transform: translateY(-2px);
  }

  .premium-button:hover svg {
    transform: translateX(3px);
  }
}

@media (max-width: 760px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }

  .review-card {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .home-reviews {
    margin-top: 70px;
    padding-top: 58px;
    padding-bottom: 126px;
  }

  .premium-heading h2 {
    font-size: 2.18rem;
  }

  .reviews-rating {
    display: grid;
    justify-items: center;
    padding: 20px 16px;
    gap: 14px;
  }

  .reviews-rating__divider {
    width: min(100%, 210px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 201, 145, 0.32), transparent);
  }

  .reviews-rating__meta {
    text-align: left;
  }

  .review-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .premium-button {
    min-height: 60px;
    padding-left: 18px;
    font-size: 0.7rem;
  }

  .order-online {
    padding-top: 58px;
  }

  .order-online__panel {
    padding: 48px 18px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes form-success-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (prefers-reduced-transparency: reduce) {
  .info-bar,
  .home-content,
  .site-menu-toggle,
  .back-to-top,
  .site-menu,
  .home-nav__link,
  .scroll-cue,
  .social-links a,
  .review-card,
  .order-online__panel,
  .link-card,
  .events-section,
  .event-inquiry,
  .photo-gallery-section,
  .contact-modal-card {
    background: rgba(20, 19, 16, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-menu-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Cookie consent and privacy controls */
.privacy-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(226, 201, 145, 0.14);
  color: rgba(246, 241, 232, 0.5);
  background: #0d0c0a;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.privacy-footer a,
.privacy-footer button {
  padding: 0;
  border: 0;
  color: rgba(226, 201, 145, 0.84);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  text-transform: inherit;
  cursor: pointer;
  transition: color 220ms ease;
}

.privacy-footer a:hover,
.privacy-footer button:hover,
.privacy-footer a:focus-visible,
.privacy-footer button:focus-visible {
  color: #fff4d8;
}

.privacy-footer a:focus-visible,
.privacy-footer button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

.cookie-consent[hidden],
.cookie-consent [hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 3, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
  animation: cookie-fade-in 260ms ease both;
}

.cookie-consent__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: calc(100dvh - 20px);
  overflow: auto;
  border-top: 1px solid rgba(226, 201, 145, 0.42);
  color: #f6f1e8;
  background:
    radial-gradient(circle at 88% 0%, rgba(226, 201, 145, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(13, 12, 10, 0.985);
  box-shadow: 0 -30px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: auto;
  animation: cookie-panel-in 500ms var(--ease) both;
  overscroll-behavior: contain;
}

.cookie-consent__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  width: min(100%, 1280px);
  margin: auto;
  padding: clamp(28px, 4vw, 46px) clamp(22px, 5vw, 64px) max(28px, env(safe-area-inset-bottom));
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cookie-consent__eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.cookie-consent h2 {
  margin: 10px 0 12px;
  color: #fff9eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.cookie-consent__copy p,
.cookie-consent__intro {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  line-height: 1.72;
}

.cookie-consent a {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-button {
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(226, 201, 145, 0.34);
  border-radius: 2px;
  color: #f4ead4;
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.cookie-button--primary {
  border-color: #d9bc78;
  color: #18130b;
  background: linear-gradient(120deg, #f0d99f, #c89f50);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.cookie-button--text {
  grid-column: 1 / -1;
  min-height: 42px;
  border-color: transparent;
  color: rgba(246, 241, 232, 0.7);
  background: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(226, 201, 145, 0.35);
  text-underline-offset: 5px;
}

.cookie-button:hover {
  border-color: rgba(245, 220, 163, 0.74);
  background-color: rgba(226, 201, 145, 0.08);
  transform: translateY(-2px);
}

.cookie-button--primary:hover {
  background: linear-gradient(120deg, #f8e6b7, #d3aa58);
}

.cookie-button:focus-visible,
.cookie-consent__close:focus-visible,
.cookie-switch input:focus-visible + span {
  outline: 2px solid #f1d894;
  outline-offset: 3px;
}

.cookie-consent__preferences {
  width: min(100%, 840px);
  margin: auto;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 6vw, 64px) max(28px, env(safe-area-inset-bottom));
}

.cookie-consent__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 201, 145, 0.24);
  border-radius: 50%;
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
}

.cookie-consent__close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.cookie-consent__intro {
  margin-bottom: 24px;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(226, 201, 145, 0.13);
}

.cookie-category strong,
.cookie-category span {
  display: block;
}

.cookie-category strong {
  margin-bottom: 5px;
  color: #fff5dc;
  font-size: 0.78rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.cookie-category div > span {
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.cookie-switch {
  position: relative;
  display: block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch input + span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 200ms ease, background 200ms ease;
}

.cookie-switch input + span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.68);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  content: "";
  transition: transform 220ms var(--ease), background 200ms ease;
}

.cookie-switch input:checked + span {
  border-color: #d6b86f;
  background: rgba(200, 159, 80, 0.36);
}

.cookie-switch input:checked + span::after {
  background: #f4d891;
  transform: translateX(22px);
}

.cookie-switch input:disabled + span {
  opacity: 0.62;
  cursor: not-allowed;
}

.cookie-consent__save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 201, 145, 0.13);
}

.cookie-consent__save-row a {
  font-size: 0.75rem;
}

.cookie-consent__save-row .cookie-button {
  min-width: 210px;
}

body.cookie-preferences-open {
  overflow: hidden;
}

@keyframes cookie-panel-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 780px) {
  .cookie-consent__banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .privacy-footer {
    padding: 20px;
  }

  .privacy-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .cookie-consent__panel {
    max-height: calc(100dvh - 8px);
    border-radius: 18px 18px 0 0;
  }

  .cookie-consent__banner {
    gap: 20px;
    padding: 24px 18px max(20px, env(safe-area-inset-bottom));
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-button--text {
    grid-column: auto;
  }

  .cookie-consent__preferences {
    padding: 24px 18px max(20px, env(safe-area-inset-bottom));
  }

  .cookie-category {
    gap: 16px;
  }

  .cookie-consent__save-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-consent__save-row .cookie-button {
    width: 100%;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .cookie-consent__backdrop {
    background: rgba(4, 4, 3, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cookie-consent__panel {
    background: #0d0c0a;
  }
}

/* Privacy policy */
.privacy-page {
  min-height: 100%;
  color: #f6f1e8;
  background:
    radial-gradient(circle at 78% 8%, rgba(200, 169, 107, 0.13), transparent 28%),
    linear-gradient(145deg, #17140f 0%, #0b0a08 46%, #12100c 100%);
}

.privacy-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.privacy-header,
.privacy-policy {
  position: relative;
  z-index: 1;
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), 980px);
  margin: auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(226, 201, 145, 0.16);
}

.privacy-header img {
  width: 92px;
  height: auto;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 201, 145, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.privacy-back-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.privacy-policy {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 110px) 0 clamp(80px, 12vw, 130px);
}

.privacy-policy__eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.privacy-policy h1 {
  margin: 14px 0 22px;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.privacy-policy__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(246, 241, 232, 0.66);
  font-size: clamp(0.94rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.privacy-policy__meta {
  display: inline-block;
  margin-top: 22px;
  color: rgba(226, 201, 145, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-policy__content {
  display: grid;
  gap: 44px;
  margin-top: clamp(58px, 9vw, 90px);
}

.privacy-policy section {
  padding-top: 30px;
  border-top: 1px solid rgba(226, 201, 145, 0.15);
}

.privacy-policy h2 {
  margin: 0 0 18px;
  color: #f4dfad;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
}

.privacy-policy h3 {
  margin: 26px 0 8px;
  color: #fff3d6;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-policy p,
.privacy-policy li {
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.88rem;
  line-height: 1.8;
}

.privacy-policy p {
  margin: 0 0 14px;
}

.privacy-policy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.privacy-policy li + li {
  margin-top: 8px;
}

.privacy-policy a {
  color: var(--gold-light);
  text-underline-offset: 4px;
}

.privacy-policy .cookie-button {
  margin-top: 8px;
}

@media (max-width: 520px) {
  .privacy-header {
    width: min(calc(100% - 32px), 980px);
    padding: 20px 0;
  }

  .privacy-header img {
    width: 72px;
  }

  .privacy-policy {
    width: min(calc(100% - 32px), 780px);
    padding-top: 54px;
  }
}
