:root {
  --bg-primary: #f7f6f2;
  --bg-secondary: #e7e3da;
  --bg-card: #ffffff;
  --bg-dark: #1c1c1c;
  --color-accent: #c8a97a;
  --color-accent-dark: #b89a6e;
  --color-accent-text: #8a683c;
  --color-oak: #c8a97a;
  --color-olive: #b89a6e;
  --text-primary: #1c1c1c;
  --text-secondary: #4e4a44;
  --text-muted: #5d5348;
  --text-light: #ffffff;
  --accent-red: #a6543f;
  --accent-green: #b89a6e;
  --border-line: rgba(28, 28, 28, 0.13);
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-ui:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-subtle: rgba(28, 28, 28, 0.09);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --glow-gold: 0 0 15px rgba(200, 169, 122, 0.4);
  --glow-subtle: 0 0 10px rgba(200, 169, 122, 0.15);
  --border-glow: 1px solid rgba(200, 169, 122, 0.3);
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
.skip-nav {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--bg-dark);
  color: #fff;
  padding: 12px 24px;
  z-index: 100001;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: top 0.3s ease;
}
.skip-nav:focus {
  top: 16px;
  color: #fff;
}
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
a {
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}
a:hover {
  color: var(--color-accent-text);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
}
h1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.01em;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 64px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
[onclick]:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 3px;
}
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: circle(150% at 50% 50%);
  pointer-events: none;
}
.page-curtain.active {
  clip-path: circle(0% at 50% 50%);
}
.curtain-logo {
  width: min(160px, 40vw);
  height: auto;
  object-fit: contain;
  animation: pulseLight 2.2s infinite ease-in-out;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 96px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar.scrolled {
  background: var(--bg-primary);
  border-bottom-color: var(--border-line);
  box-shadow: 0 4px 20px rgba(28, 28, 28, 0.07);
  height: 72px;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 64px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  flex: 0 0 auto;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-brand-logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  opacity: 0.9;
  object-fit: contain;
  transition:
    opacity 0.3s ease,
    width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar.scrolled .nav-brand-logo {
  width: 30px;
  height: 30px;
}
.nav-brand:hover .nav-brand-logo {
  opacity: 1;
}
.nav-brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-primary);
}
.nav-brand-sub {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}
.nav-links {
  flex: 1 1 auto;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.nav-links li {
  flex: 0 0 auto;
}
.nav-links a {
  display: block;
  padding: 10px 26px;
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.35s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--color-oak);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  opacity: 0.55;
  transform: translateY(0);
}
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a.active::after {
  opacity: 1;
  transform: translateY(0);
}
.nav-actions {
  flex: 0 0 auto;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-reserve {
  display: inline-block;
  padding: 12px 26px;
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--bg-dark);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-reserve:hover {
  background: 0 0;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.35s ease;
  transform-origin: center;
}
.mobile-toggle.open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-line);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-line);
  min-height: 88px;
}
.mobile-menu-title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-menu-close {
  background: 0 0;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close svg {
  width: 22px;
  height: 22px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 0;
  flex: 1;
}
.mobile-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}
.mobile-nav a:hover {
  color: var(--color-accent-text);
  padding-left: 8px;
}
.mobile-nav a.active {
  color: var(--color-accent-text);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav .mobile-reserve-btn {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  font-style: normal;
  border-bottom: none;
}
.mobile-nav .mobile-reserve-btn:hover {
  background: var(--color-accent);
  color: #fff;
  padding-left: 24px;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding: 140px 0 60px;
  flex-direction: column;
  text-align: center;
}
.hero h1 {
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 40px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  font-family: var(--font-display);
  color: var(--color-accent);
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-arch {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 400px 400px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  border: 1px solid var(--border-line);
}
.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 2s ease;
}
.hero-arch:hover img {
  transform: scale(1.04);
}
.editorial-section {
  border-top: 1px solid var(--border-line);
  padding: 120px 0;
  background: var(--bg-primary);
}
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
  position: relative;
}
.editorial-split::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-line);
}
.editorial-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.editorial-split-text .label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.editorial-split-text h2 {
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
}
.editorial-split-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-text);
}
.editorial-split-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 440px;
}
.editorial-split-text .discover-link {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 4px;
  align-self: flex-start;
}
.editorial-split-text .discover-link:hover {
  border-color: var(--color-accent-text);
  color: var(--color-accent-text);
}
.editorial-split-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}
.editorial-arch {
  width: 100%;
  max-width: 400px;
  border-radius: 250px 250px 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-line);
}
.editorial-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.editorial-arch:hover img {
  transform: scale(1.04);
}
.editorial-square-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 0 !important;
  background: var(--bg-card);
  padding: 16px;
  border: 1px solid var(--border-line);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
.editorial-square-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  transition: transform 1.5s ease;
}
.editorial-square-card:hover img {
  transform: scale(1.04);
}
.editorial-split.reverse .editorial-split-text {
  order: 2;
}
.editorial-split.reverse .editorial-split-img {
  order: 1;
}
.menu-circle-ring {
  position: absolute;
  inset: -35px;
  animation: rotateRing 40s linear infinite;
  pointer-events: none;
}
@keyframes rotateRing {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.menu-circle-ring svg {
  width: 100%;
  height: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 0;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--color-accent);
  color: #2b2118;
  border-color: var(--color-accent);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #2b2118;
  border-color: var(--color-accent-dark);
  box-shadow: var(--glow-gold);
}
.btn-primary:hover::before {
  animation: scanSheen 1.2s infinite ease-in-out;
}
.btn-outline {
  background: 0 0;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: transparent;
  color: var(--color-accent-text);
  border-color: var(--color-accent);
  box-shadow: var(--glow-subtle);
  letter-spacing: 3.5px;
}
.btn-olive {
  background: var(--color-olive);
  color: var(--text-light);
  border-color: var(--color-olive);
}
.btn-olive:hover {
  background: 0 0;
  color: var(--color-olive);
  border-color: var(--color-olive);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.6rem;
  letter-spacing: 2px;
}
.btn-lg {
  padding: 18px 48px;
  font-size: 0.72rem;
}
.section {
  padding: 120px 0;
  background: var(--bg-primary);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-badge {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}
.section-header h2 {
  margin-bottom: 20px;
  font-weight: 300;
}
.section-header p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
}
.section-divide {
  border-top: 1px solid var(--border-line);
}
.line-divider {
  width: 100%;
  height: 1px;
  background: var(--border-line);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-line);
  border: 1px solid var(--border-line);
}
.featured-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  background: var(--bg-secondary);
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.featured-card:hover img {
  transform: scale(1.05);
}
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.9) 0,
    rgba(28, 28, 28, 0.2) 60%,
    transparent 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}
.featured-card h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 6px;
}
.featured-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
}
.featured-price {
  color: var(--color-oak);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 10px;
  letter-spacing: 1px;
  font-family: var(--font-display);
}
.reel-section {
  padding: 120px 0;
  background: var(--bg-primary);
}
.reel-embed-wrap {
  display: flex;
  justify-content: center;
}
.reel-embed {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--border-line);
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.12);
  background: var(--bg-dark);
}
.reel-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.reel-cta {
  text-align: center;
  margin-top: 40px;
}
.reviews-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-line);
  padding: 120px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-line);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.review-stars {
  color: var(--color-oak);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(200, 169, 122, 0.2);
  transition: text-shadow 0.35s ease, color 0.35s ease;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.review-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}
.review-author-info span {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--border-line);
  cursor: pointer;
  background: var(--bg-secondary);
}
.gallery-item.tall {
  aspect-ratio: 3/4;
  grid-row: span 2;
}
.gallery-item.wide {
  aspect-ratio: 4/3;
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  width: 24px;
  height: 24px;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}
.lightbox-close svg {
  width: 30px;
  height: 30px;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 16px;
  transition: var(--transition);
}
.lightbox-prev {
  left: 40px;
}
.lightbox-next {
  right: 40px;
}
.lightbox-nav svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.lightbox-nav:hover svg {
  opacity: 1;
}
.form-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  min-height: 50vh;
}
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  padding: 60px;
  box-shadow: var(--shadow-soft);
}
.form-header-inner {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 20px;
}
.form-header-inner h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.form-header-inner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-line);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--text-primary);
  background: var(--bg-card);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.info-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
}
.info-block {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 30px;
}
.info-block:last-child {
  border: none;
  margin-bottom: 0;
}
.info-block h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.info-block p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
}
.info-block a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: underline;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-line);
  padding: 60px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.modal-icon {
  font-size: 3rem;
  color: var(--color-olive);
  margin-bottom: 20px;
}
.modal-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.modal-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-section-redesign {
  padding: 120px 0;
  background: var(--bg-primary);
}
.contact-grid-redesign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-card-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-line);
}
.contact-card-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-map-container-luxury {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(28, 28, 28, 0.08);
  border: 1px solid var(--border-line);
  height: 100%;
  min-height: 550px;
}
.contact-map-container-luxury iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: block;
  border: none;
}
.btn-premium-primary {
  height: 50px;
  padding: 0 32px;
  background: #c8a97a;
  color: #1c1c1c !important;
  border: 1px solid #c8a97a;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-premium-primary:hover {
  background: #b2905f;
  border-color: #b2905f;
  color: #1c1c1c !important;
}
.btn-premium-primary:focus-visible {
  outline: 2px solid #c8a97a;
  outline-offset: 2px;
}
.btn-premium-secondary {
  height: 50px;
  padding: 0 32px;
  background: 0 0;
  color: #1c1c1c !important;
  border: 1px solid #1c1c1c;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-premium-secondary:hover {
  background: #e7e3da;
  color: #1c1c1c !important;
}
.btn-premium-secondary:focus-visible {
  outline: 2px solid #1c1c1c;
  outline-offset: 2px;
}
.contact-action-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .contact-action-row {
    flex-direction: column;
    gap: 12px;
  }
  .contact-action-row .btn-premium-primary,
  .contact-action-row .btn-premium-secondary {
    width: 100%;
  }
}
.hours-editorial {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border-line);
  background: var(--bg-primary);
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
}
.hours-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border-line);
  text-align: center;
}
.hours-item:last-child {
  border-right: none;
}
.hours-item .day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.hours-item .day em {
  font-style: italic;
  color: var(--color-accent);
}
.hours-item .time {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
}
.hours-item .desc {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  font-family: var(--font-ui);
}
.footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: 48px 0 20px;
  border-top: 1px solid var(--border-line);
}
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color: var(--text-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.footer-grid > div {
  padding: 0 40px;
}
.footer-grid > div:first-child {
  padding-left: 0;
}
.footer-grid > div + div {
  border-left: 1px solid var(--border-line);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  display: block;
  color: var(--text-primary);
}
.footer-brand p {
  color: var(--text-secondary);
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 400;
}
.footer-brand a {
  color: inherit;
}
.footer .footer-col ul li span.footer-hours-time {
  color: var(--text-primary) !important;
  font-weight: 500;
}
.footer .footer-col ul li span.footer-hours-note {
  font-size: 0.75rem;
  color: var(--text-muted) !important;
}
.footer-newsletter-text {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 16px;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-oak);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-accent-text);
  padding-left: 4px;
}
.footer-col span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
  display: block;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.newsletter-input {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.25);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: 0;
  transition: var(--transition);
}
.newsletter-input:focus {
  border-color: var(--color-accent-text);
  background: #fff;
}
.newsletter-btn {
  background: var(--color-oak);
  color: #2b2118;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover {
  background: var(--color-accent-dark);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-muted);
}
.footer-bottom-links a:hover {
  color: var(--color-accent-text);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: var(--text-primary);
  transition: var(--transition);
}
.social-links a:hover {
  color: var(--color-accent-text);
  transform: translateY(-2px);
}
.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -480px;
  width: 440px;
  height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-line);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  right: 0;
}
.cart-sidebar-header {
  padding: 28px;
  border-bottom: 1px solid var(--border-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-sidebar-header h3 {
  font-size: 1.4rem;
  font-weight: 300;
}
.cart-close {
  background: 0 0;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
}
.cart-close svg {
  width: 22px;
  height: 22px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-line);
}
.cart-item-img {
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-line);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-item-price {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.9rem;
}
.cart-item-remove {
  background: 0 0;
  border: none;
  color: var(--accent-red);
  cursor: pointer;
  font-size: 0.65rem;
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-footer {
  padding: 28px;
  border-top: 1px solid var(--border-line);
  background: var(--bg-secondary);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-total .amount {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.3);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}
.cart-overlay.active {
  display: block;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-line);
  background: var(--bg-primary);
  margin-top: 4px;
}
.qty-btn {
  background: 0 0;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.8rem;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--border-line);
}
.qty-val {
  width: 32px;
  text-align: center;
  border: none;
  background: 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: 0;
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 28px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
@media (max-width: 1200px) {
  .nav-links a {
    padding: 8px 14px;
    font-size: 0.66rem;
    letter-spacing: 2px;
  }
  .nav-brand-name {
    font-size: 0.9rem;
  }
  .editorial-split-text {
    padding: 60px 50px;
  }
}
@media (max-width: 1024px) {
  .nav-links a {
    padding: 8px 10px;
    font-size: 0.6rem;
  }
  .navbar-home-theme .nav-links a::after {
    left: 10px;
    width: calc(100% - 20px);
  }
  .nav-brand-wordmark {
    display: none;
  }
  .btn-reserve {
    padding: 9px 18px;
    font-size: 0.58rem;
  }
  .editorial-split {
    grid-template-columns: 1fr;
  }
  .editorial-split::before {
    display: none;
  }
  .editorial-split.reverse .editorial-split-text {
    order: initial;
  }
  .editorial-split.reverse .editorial-split-img {
    order: initial;
  }
  .editorial-split-text {
    padding: 60px 40px;
  }
  .editorial-split-img {
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div {
    padding: 0 20px;
  }
  .footer-grid > div:first-child {
    padding-left: 20px;
  }
  .footer-grid > div + div {
    border-left: none;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    padding-top: 40px;
    margin-top: 40px;
  }
  .container {
    padding: 0 40px;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }
  .form-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-sidebar {
    order: 2;
    padding: 0;
  }
  .form-wrap {
    order: 1;
    padding: 40px;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .navbar {
    height: 76px;
  }
  .navbar.scrolled {
    height: 62px;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .nav-links {
    display: none !important;
  }
  .btn-reserve {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-brand-name {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }
  .nav-brand-sub {
    display: none;
  }
  .hero {
    padding: 110px 24px 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-arch {
    width: 85%;
  }
  .editorial-split-text {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  .editorial-split-text p {
    max-width: 100%;
  }
  .editorial-split-img {
    padding: 20px;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-card {
    height: 260px;
  }
  .featured-card h3 {
    font-size: 1.15rem;
  }
  .featured-card p {
    font-size: 0.7rem;
  }
  .contact-grid-redesign {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-map-container-luxury {
    min-height: 400px;
  }
  .contact-map-container-luxury iframe {
    min-height: 400px;
  }
  .info-blocks-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-grid > div {
    padding: 0 !important;
  }
  .footer-grid > div + div {
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    padding-top: 30px !important;
    margin-top: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-luxury .newsletter-btn {
    align-self: center;
  }
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .form-wrap {
    padding: 30px 20px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .info-sidebar {
    padding: 0;
  }
  .form-split {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 30px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-arch {
    width: 90%;
  }
  .container {
    padding: 0 20px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .hours-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-line) !important;
  }
  .hours-item:last-child {
    border-bottom: none !important;
  }
  .mobile-menu {
    width: 100%;
    border-left: none;
  }
  .nav-brand-logo {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1440px) {
  .hero-cinematic-bg {
    object-position: 75% 40%;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-cinematic-bg {
    object-position: 72% 45%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-cinematic {
    min-height: 640px;
  }
  .hero-cinematic-bg {
    object-position: 68% center;
  }
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-dark);
}
::selection {
  background: var(--bg-dark);
  color: #f7f6f2;
}
.text-accent {
  color: var(--color-accent);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 16px;
}
.mt-4 {
  margin-top: 32px;
}
.mb-2 {
  margin-bottom: 16px;
}
.flex {
  display: flex;
}
.gap-2 {
  gap: 16px;
}
.hidden {
  display: none !important;
}
.shadow {
  box-shadow: var(--shadow-soft);
}
.editorial-line {
  width: 60px;
  height: 1px;
  background: var(--border-line);
  margin: 48px auto 0;
}
.menu-item-animated {
  animation: menuCardFade 0.4s ease both;
}
@keyframes menuCardFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  font-size: 2.5rem;
  color: var(--text-muted);
}
.toast-success {
  background: var(--color-olive);
}
.toast-error {
  background: var(--accent-red);
}
.toast-info {
  background: var(--bg-dark);
}
@media (max-width: 768px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
}
@media (pointer: fine) {
  body,
  html {
    cursor: auto !important;
  }
  .carousel-arrow,
  .featured-card,
  .watch-story-btn,
  [role="button"],
  a,
  button,
  input[type="submit"],
  select {
    cursor: pointer !important;
  }
}
.custom-cursor {
  display: none !important;
}
.custom-cursor-follower {
  display: none !important;
}
.custom-cursor.hover {
  width: 12px;
  height: 12px;
  background: #fff;
}
.custom-cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}
.custom-cursor-follower.drag-state {
  width: 70px;
  height: 70px;
  border-color: var(--color-oak);
  background-color: rgba(200, 169, 122, 0.05);
}
.custom-cursor-follower.drag-state::after {
  content: "DRAG";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-ui);
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--color-oak);
  font-weight: 600;
}
#luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #0e0c0b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 1s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 1s;
}
#luxury-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  max-width: 320px;
  width: 100%;
}
.loader-logo-wrap {
  margin-bottom: 30px;
  position: relative;
}
.loader-logo-ring {
  width: 100px;
  height: 100px;
  border: 1px dashed rgba(200, 169, 122, 0.2);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  animation: rotate 20s linear infinite;
}
.loader-logo-svg {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: var(--color-oak);
  stroke-width: 2;
  animation: pulseLight 3s infinite ease-in-out;
}
.loader-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #e7e3da;
  margin-bottom: 8px;
}
.loader-sub {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.loader-progress-bg {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--color-oak);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar-home-theme {
  animation: navSlideDown 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.navbar-home-theme:not(.scrolled) {
  background: linear-gradient(
      180deg,
      rgba(247, 244, 238, 0.92) 0%,
      rgba(247, 244, 238, 0.55) 62%,
      rgba(247, 244, 238, 0) 100%
    )
    no-repeat;
}
@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar-home-theme:not(.scrolled) .nav-brand,
.navbar-home-theme:not(.scrolled) .nav-brand-logo,
.navbar-home-theme:not(.scrolled) .nav-brand-name {
  color: var(--text-primary);
}
.navbar-home-theme:not(.scrolled) .nav-brand-sub {
  color: var(--text-secondary);
}
.navbar-home-theme:not(.scrolled) .nav-links a {
  color: var(--text-secondary);
}
.navbar-home-theme .nav-links a {
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 10px 24px;
}
.navbar-home-theme:not(.scrolled) .nav-links a:hover,
.navbar-home-theme:not(.scrolled) .nav-links a.active {
  color: var(--text-primary);
}
.navbar-home-theme .nav-links a::after {
  left: 24px;
  bottom: 5px;
  width: calc(100% - 48px);
  height: 1px;
  margin-left: 0;
  border-radius: 0;
  background: var(--color-accent-dark);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}
.navbar-home-theme .nav-links a:hover::after {
  opacity: 0.65;
  transform: scaleX(1);
}
.navbar-home-theme .nav-links a.active::after {
  opacity: 1;
  transform: scaleX(0.55);
}
.navbar-home-theme:not(.scrolled) .btn-reserve {
  background: 0 0;
  color: var(--text-primary);
  border-color: rgba(28, 28, 28, 0.25);
}
.navbar-home-theme:not(.scrolled) .btn-reserve:hover {
  background: var(--text-primary);
  color: #f8f5f0;
  border-color: var(--text-primary);
}
.navbar-home-theme:not(.scrolled) .mobile-toggle span {
  background: var(--text-primary);
}
.btn-reserve {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f7f4ee;
  z-index: 5;
  animation: heroPageLoad 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-cinematic-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}
.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
  animation: heroImageSettle 2.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  filter: brightness(1.04) contrast(1.02) saturate(1.06);
  transform-origin: center;
  will-change: transform;
  display: block;
}
@keyframes heroImageSettle {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1);
  }
}
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(249, 246, 240, 0.97) 0%,
      rgba(249, 246, 240, 0.88) 22%,
      rgba(249, 246, 240, 0.42) 40%,
      rgba(249, 246, 240, 0) 56%
    ),
    linear-gradient(
      180deg,
      rgba(216, 186, 148, 0.05) 0%,
      rgba(216, 186, 148, 0.1) 100%
    );
  pointer-events: none;
}
.grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
}
.ambient-particles-container {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: rgba(200, 169, 122, 0.25);
  border-radius: 50%;
  filter: blur(1px);
  bottom: -10px;
  animation: floatSteam 14s infinite ease-in-out;
}
.leaf-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(184, 154, 110, 0.15);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: -20px;
  animation: driftLeaves 20s infinite ease-in-out;
}
.spotlight-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 122, 0.09) 0,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-cinematic .container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 72px;
}
.hero-cinematic-grid {
  display: grid;
  grid-template-columns: minmax(340px, 38%) 1fr;
  gap: 64px;
  align-items: center;
}
.hero-cinematic-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform-origin: left center;
  will-change: transform, opacity;
}
.hero-cinematic .hero-subtitle {
  color: var(--text-muted);
  letter-spacing: 6px;
  margin-bottom: 24px;
}
.hero-cinematic-text h1 {
  color: var(--text-primary);
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-cinematic-text h1 em {
  color: var(--color-accent-text);
  font-style: italic;
  font-weight: 300;
}
.hero-cinematic-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-cinematic-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.hero-cinematic-actions .btn-primary {
  background: var(--color-oak);
  color: #2b2118;
  border-color: var(--color-oak);
  border-radius: 999px;
  padding: 16px 40px;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(184, 154, 110, 0.24);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease,
    border-color 0.4s ease;
}
.hero-cinematic-actions .btn-primary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cinematic-actions .btn-primary:hover {
  background: var(--color-accent-dark);
  color: #2b2118;
  border-color: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(184, 154, 110, 0.4);
}
.hero-cinematic-actions .btn-primary:hover svg {
  transform: translateX(4px);
}
.hero-cinematic-actions .btn-primary:focus-visible {
  outline: 2px solid #a17d4a;
  outline-offset: 4px;
}
.btn-shine-effect::after,
.hero-cinematic-actions .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
}
.btn-shine-effect:hover::after,
.hero-cinematic-actions .btn-primary:hover::after {
  animation: buttonShine 1s forwards;
}
.hero-cinematic-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.hero-cinematic-actions .btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.watch-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #e7e3da;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: 0 0;
  border: none;
  padding: 8px 0;
  align-self: flex-start;
  transition: color 0.3s;
}
.watch-story-btn:hover {
  color: var(--color-oak);
}
.watch-story-circle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.4s,
    border-color 0.4s;
}
.watch-story-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-left: 2px;
  transition: transform 0.3s;
}
.watch-story-btn:hover .watch-story-circle {
  border-color: var(--color-oak);
  transform: scale(1.08);
}
.watch-story-btn:hover .watch-story-circle svg {
  transform: scale(1.15);
}
.watch-story-circle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px dashed transparent;
  border-radius: 50%;
  transition: border-color 0.4s;
}
.watch-story-btn:hover .watch-story-circle::after {
  border-color: rgba(200, 169, 122, 0.4);
  animation: rotate 10s linear infinite;
}
.specials-glass-card {
  background: rgba(18, 16, 14, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 169, 122, 0.22);
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  animation: borderPulse 8s infinite ease-in-out;
}
.specials-glass-card h2.specials-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-oak);
  border-bottom: 1px solid rgba(200, 169, 122, 0.15);
  padding-bottom: 16px;
  margin-bottom: 24px;
  font-weight: 300;
}
.specials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.specials-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.specials-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}
.specials-item-header svg {
  width: 12px;
  height: 12px;
  color: var(--color-oak);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.specials-item p {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 20px;
}
.hero-specials-social {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.hero-specials-social a {
  color: #4a3e30;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-specials-social a:hover {
  color: var(--color-accent-text);
  transform: translateY(-2px);
}
.hero-specials-social a:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 3px;
}
.hero-cinematic .hero-stagger,
.hero-cinematic .hero-stagger.animate {
  opacity: 0;
  animation: heroContentRise 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-cinematic h1.hero-stagger,
.hero-cinematic h1.hero-stagger.animate {
  opacity: 1;
  animation: none;
}
.hero-cinematic .hero-cinematic-actions.hero-stagger,
.hero-cinematic .hero-cinematic-actions.hero-stagger.animate {
  animation-name: heroCtaRise;
}
.hero-cinematic .hero-stagger:nth-child(1) {
  animation-delay: 0.3s;
}
.hero-cinematic .hero-stagger:nth-child(3) {
  animation-delay: 1.1s;
}
.hero-cinematic .hero-stagger:nth-child(4) {
  animation-delay: 1.3s;
}
@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroCtaRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-cinematic .hero-em-glow {
  animation: wordFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-specials-social svg {
  width: 18px;
  height: 18px;
}
.editorial-section-wrapper {
  background: var(--bg-primary);
}
.image-float-bob {
  animation: floatBobSlow 7s infinite ease-in-out;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.philosophy-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.philosophy-col.align-left {
  text-align: left;
  align-items: flex-start;
}
.philosophy-col.align-right {
  text-align: right;
  align-items: flex-end;
}
.philosophy-flourish {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-bottom: 24px;
  stroke-width: 1.5;
}
.philosophy-col h3 {
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.25;
}
.philosophy-col p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 380px;
}
.philosophy-media {
  position: relative;
  display: inline-block;
}
.philosophy-col .btn-shine-effect {
  position: relative;
  overflow: hidden;
}
.menu-circle-wrap {
  width: 320px;
  height: 320px;
  border: 1px solid var(--border-line);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-circle-wrap:hover {
  transform: scale(1.02);
}
.menu-circle-wrap:hover img {
  transform: scale(1.06);
}
.carousel-viewport-wrapper {
  position: relative;
  margin-top: 48px;
  padding: 0 40px;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-item {
  flex: 0 0 280px;
  width: 280px;
}
.featured-card {
  display: block;
  height: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #0e0c0b;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s;
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s;
  filter: brightness(0.9);
}
.featured-card-overlay-luxury {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  background: linear-gradient(
    to top,
    rgba(14, 12, 11, 0.95) 0,
    rgba(14, 12, 11, 0.4) 50%,
    transparent 100%
  );
  z-index: 5;
  transition: background 0.6s;
}
.featured-card-overlay-luxury h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
  transition: color 0.3s;
}
.featured-card-overlay-luxury p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #cfc4b8;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 16px;
  transition:
    transform 0.6s,
    opacity 0.6s;
}
.featured-price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}
.featured-price-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  transition: color 0.3s;
}
.featured-card-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.65);
  stroke-width: 2;
  transform: translateX(-4px);
  transition:
    transform 0.4s,
    color 0.4s;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 12, 11, 0.25);
  border-color: rgba(200, 169, 122, 0.3);
}
.featured-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.featured-card:hover .featured-card-overlay-luxury {
  background: linear-gradient(
    to top,
    rgba(14, 12, 11, 0.98) 0,
    rgba(14, 12, 11, 0.5) 45%,
    transparent 100%
  );
}
.featured-card:hover .featured-card-overlay-luxury h3 {
  color: var(--color-oak);
}
.featured-card:hover .featured-price-tag {
  color: var(--color-oak);
}
.featured-card:hover .featured-card-arrow {
  color: var(--color-oak);
  transform: translateX(2px);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  outline: 0;
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
  stroke-width: 1.5;
  transition: transform 0.3s;
}
.carousel-arrow.prev {
  left: -10px;
}
.carousel-arrow.next {
  right: -10px;
}
.carousel-arrow:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}
.carousel-arrow:hover svg {
  color: #fff;
}
.carousel-arrow.prev:hover svg {
  transform: translateX(-2px);
}
.carousel-arrow.next:hover svg {
  transform: translateX(2px);
}
.glass-review-card {
  background: var(--bg-card);
  border: 1px solid rgba(28, 28, 28, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(28, 28, 28, 0.04);
}
.glass-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 122, 0.4);
  box-shadow: 0 16px 36px rgba(28, 28, 28, 0.08);
}
.review-stars {
  color: var(--color-oak);
  letter-spacing: 2px;
}
.review-quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(200, 169, 122, 0.35);
  margin-bottom: 12px;
  fill: currentColor;
}
.footer-luxury {
  background: #1a120c !important;
  border-top: 1px solid rgba(200, 169, 122, 0.18);
  position: relative;
  overflow: hidden;
}
.footer-luxury-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(200, 169, 122, 0.03) 1px,
    transparent 0
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.footer-luxury .footer-brand .monogram-svg {
  color: var(--color-oak);
}
.footer-luxury .footer-brand span {
  color: #fff;
}
.footer-luxury .footer-col ul li a,
.footer-luxury .footer-col ul li span,
.footer-luxury p {
  color: #b5a89b !important;
}
.footer-luxury .footer-col ul li span.footer-hours-time {
  color: #f2ede4 !important;
}
.footer-luxury .footer-col ul li span.footer-hours-note {
  color: #b5a89b !important;
}
.footer-luxury .footer-col ul li a:hover {
  color: var(--color-oak) !important;
}
.footer-luxury .footer-col h4 {
  color: var(--color-oak);
}
.footer-luxury .footer-grid > div + div {
  border-left-color: rgba(255, 255, 255, 0.08);
}
.footer-luxury .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #8d8177;
}
.footer-luxury .footer-bottom-links a {
  color: #8d8177;
}
.footer-luxury .footer-bottom-links a:hover {
  color: var(--color-oak);
}
.footer-luxury .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-luxury .newsletter-input {
  background: 0 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: 0;
  transition: border-color 0.4s;
}
.footer-luxury .newsletter-input::placeholder {
  color: #8d8177;
}
.footer-luxury .newsletter-input:focus {
  border-color: var(--color-oak);
}
.footer-luxury .newsletter-btn {
  align-self: flex-start;
  background: var(--color-oak);
  color: #1a120c;
  border: 1px solid var(--color-oak);
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-luxury .newsletter-btn:hover {
  background: 0 0;
  color: #fff;
  border-color: #fff;
}
.footer-luxury .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-luxury .social-links a {
  color: rgba(248, 245, 240, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.footer-luxury .social-links a::after {
  content: attr(aria-label);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-luxury .social-links a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.footer-luxury .social-links a:hover {
  transform: scale(1.06) translateY(-3px);
  color: var(--color-oak);
  border-color: var(--color-oak);
  background: rgba(200, 169, 122, 0.08);
  box-shadow: 0 0 18px rgba(200, 169, 122, 0.2);
}
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-inner {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .hero-cinematic-grid {
    grid-template-columns: minmax(300px, 44%) 1fr;
    gap: 40px;
  }
  .hero-cinematic-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(249, 246, 240, 0.96) 0%,
        rgba(249, 246, 240, 0.88) 26%,
        rgba(249, 246, 240, 0.45) 46%,
        rgba(249, 246, 240, 0) 62%
      ),
      linear-gradient(
        180deg,
        rgba(216, 186, 148, 0.05) 0%,
        rgba(216, 186, 148, 0.1) 100%
      );
  }
  .watch-story-btn {
    align-self: center;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .philosophy-col.align-left,
  .philosophy-col.align-right {
    text-align: center;
    align-items: center;
  }
  .philosophy-col.align-left {
    order: 1;
  }
  .philosophy-col.align-center {
    order: 2;
  }
  .philosophy-col.align-right {
    order: 3;
  }
  .carousel-viewport-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .hero-cinematic {
    height: auto;
    min-height: 0;
    display: block;
    padding-bottom: 72px;
  }
  .hero-cinematic-bg-container {
    position: relative;
    height: 52vh;
    min-height: 340px;
  }
  .hero-cinematic-bg {
    object-position: 62% center;
  }
  .hero-cinematic-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(247, 244, 238, 0) 55%,
        rgba(247, 244, 238, 0.55) 82%,
        #f7f4ee 100%
      ),
      linear-gradient(
        180deg,
        rgba(214, 184, 146, 0.08) 0%,
        rgba(214, 184, 146, 0.14) 100%
      );
  }
  .navbar-home-theme:not(.scrolled) {
    background: linear-gradient(
      180deg,
      rgba(247, 244, 238, 0.94) 0%,
      rgba(247, 244, 238, 0) 100%
    );
  }
  .hero-cinematic .container {
    padding-top: 20px;
  }
  .hero-cinematic-grid {
    display: block;
  }
  .hero-cinematic-text h1 {
    font-size: clamp(2.1rem, 7.5vw, 2.6rem);
  }
  .hero-cinematic-text p {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-specials-social {
    right: 24px;
    bottom: 24px;
  }
}
@media (max-width: 480px) {
  .hero-cinematic-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero-cinematic-actions .btn {
    width: 100%;
  }
  .carousel-item {
    flex: 0 0 240px;
    width: 240px;
  }
  .featured-card {
    height: 330px;
  }
}
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-brand-logo,
.navbar.scrolled .nav-brand-name {
  color: var(--text-primary);
}
.navbar.scrolled .nav-brand-sub {
  color: var(--text-secondary);
}
.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--text-primary);
}
.navbar.scrolled .nav-links a::after {
  background: var(--color-accent-dark);
}
.navbar.scrolled .mobile-toggle span {
  background: var(--text-primary);
}
.navbar.scrolled .btn-reserve {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.navbar.scrolled .btn-reserve:hover {
  background: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.hero {
  background: var(--bg-primary);
  padding-top: 140px;
}
.hero .hero-subtitle {
  display: block;
  margin-bottom: 24px;
}
.editorial-line {
  width: 60px;
  height: 1px;
  background: var(--color-oak);
  margin: 32px auto;
  opacity: 0.6;
}
.gallery-grid {
  grid-auto-rows: 280px;
  align-items: start;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 2;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@keyframes menuCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-item-animated {
  animation: menuCardIn 0.5s ease-out forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .info-blocks-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .contact-grid-redesign {
    grid-template-columns: 1fr !important;
  }
  .contact-map-container-luxury {
    height: 320px !important;
  }
}
.editorial-split + .editorial-split {
  border-top: 1px solid var(--border-line);
}
@media (max-width: 1024px) {
  .section,
  .editorial-section,
  .reviews-section,
  .reel-section {
    padding: 88px 0;
  }
  .section-header {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .section,
  .editorial-section,
  .reviews-section,
  .reel-section {
    padding: 72px 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .container {
    padding: 0 24px;
  }
  .footer {
    padding-top: 64px;
  }
}
@media (max-width: 480px) {
  .menu-circle-wrap {
    width: 272px !important;
    height: 272px !important;
  }
  .menu-circle-ring {
    inset: -28px !important;
  }
}
.footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-line);
}
.footer h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul li a,
.footer ul li span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 400;
}
.footer ul li a:hover {
  color: var(--color-accent-text);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .hero-cinematic-bg {
    animation: none !important;
    transform: none !important;
  }
  .hero-cinematic-bg-container {
    transform: none !important;
  }
  .hero-cinematic .hero-stagger,
  .hero-cinematic .hero-stagger.animate,
  .hero-cinematic .word-reveal,
  .hero-cinematic .hero-em-glow {
    opacity: 1 !important;
    animation: none !important;
  }
  .menu-circle-ring {
    animation: none !important;
  }
}
@media (max-width: 768px) {
  .hero-specials-social {
    position: static;
    justify-content: flex-start;
    padding: 44px 24px 0;
  }
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.18s;
  animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}
::view-transition-old(root) {
  animation-name: cafePageOut;
}
::view-transition-new(root) {
  animation-name: cafePageIn;
}
@keyframes cafePageOut {
  from {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 0.96;
    filter: blur(2px);
  }
}
@keyframes cafePageIn {
  from {
    opacity: 0.98;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* ── 32. FUTURISTIC CYBER-LUXE REDESIGN STYLE OVERRIDES ──────── */

/* Monospace Indices on Section Badges & Hero Subtitles */
.section-badge,
.hero-subtitle {
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  letter-spacing: 4px !important;
  font-size: 0.65rem !important;
  color: var(--color-accent-text) !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.section-badge::before {
  content: "[ " !important;
}

.section-badge::after {
  content: " ]" !important;
}

.hero-subtitle::before {
  content: "[ // " !important;
}

.hero-subtitle::after {
  content: " ]" !important;
}

/* Cybernetic Glowing Card Transitions */
.menu-card,
.review-card,
.featured-card {
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s !important;
}

.menu-card:hover {
  border-color: var(--color-accent) !important;
  box-shadow: var(--glow-gold), var(--shadow-soft) !important;
  transform: translateY(-5px) !important;
}

.review-card:hover {
  border-color: var(--color-accent) !important;
  box-shadow: var(--glow-gold), var(--shadow-soft) !important;
  transform: translateY(-5px) !important;
}

.featured-card:hover {
  border-color: var(--color-accent) !important;
  box-shadow: var(--glow-gold) !important;
  transform: translateY(-5px) !important;
}

/* Page Curtain Laser Scanner Sweep */
.page-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  box-shadow: 0 0 15px var(--color-accent);
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
}

.page-curtain:not(.active)::after {
  opacity: 1;
  animation: laserSweep 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scrolled Navbar Glowing Border */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(28, 28, 28, 0.05), 0 2px 10px rgba(200, 169, 122, 0.15) !important;
  border-bottom: 1px solid rgba(200, 169, 122, 0.25) !important;
}

/* Futuristic Glowing Rating Stars */
.review-card:hover .review-stars,
.glass-review-card:hover .review-stars {
  color: var(--color-accent) !important;
  text-shadow: 0 0 8px rgba(200, 169, 122, 0.7), 0 0 16px rgba(200, 169, 122, 0.35) !important;
}

.reviews-summary-stars {
  text-shadow: 0 0 15px rgba(200, 169, 122, 0.65), 0 0 30px rgba(200, 169, 122, 0.3) !important;
  animation: pulseLight 3s infinite ease-in-out;
}
