:root {
  --bg: #040404;
  --panel: #050505;
  --line: rgba(215, 169, 145, 0.14);
  --accent: #d7a991;
  --accent-soft: #e8c2ab;
  --accent-deep: #ba806b;
  --text: #eedfd8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);

  /* Font Families */
  --font-serif-display: "Cinzel", "Times New Roman", Georgia, serif;
  --font-serif-body: "Cormorant Garamond", "Didot", "Bodoni MT", "Baskerville Old Face",
    Baskerville, Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

html {
  overflow-y: scroll;
}

body {
  background:
    radial-gradient(circle at top right, rgba(199, 151, 136, 0.04), transparent 24%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: var(--text);
  font-family: var(--font-serif-body);
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
}

.section-shell {
  min-height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.section-inner {
  width: min(100%, 1120px);
  min-height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-feature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 112%, rgba(200, 141, 120, 0.1), transparent 30%),
    #050403;
}

.section-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(230, 184, 164, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.section-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 5, 4, 0) 0%, rgba(7, 5, 4, 0.32) 100%);
  pointer-events: none;
  z-index: 0;
}

.section-feature-inner {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.25rem, 9vw, 7.5rem) clamp(1.8rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.section-feature-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 141, 120, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-feature-rings::before,
.section-feature-rings::after {
  content: "";
  position: absolute;
}

.section-feature-rings::before {
  inset: 13%;
  border: 1px solid rgba(200, 141, 120, 0.06);
  border-radius: 50%;
}

.section-feature-rings::after {
  left: 50%;
  bottom: 1.1rem;
  width: 1px;
  height: 5rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(232, 184, 164, 0), rgba(232, 184, 164, 0.55), rgba(232, 184, 164, 0));
}

.section-feature-copy {
  max-width: 40rem;
  color: #eedfd8;
  text-align: center;
}

.section-feature-kicker {
  margin: 0 0 1.2rem;
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.92;
}

.section-feature-title {
  margin: 0;
  font-family: var(--font-serif-body);
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0.01em;
}

.section-feature-title-main,
.section-feature-title-accent {
  display: block;
}

.section-feature-title-main {
  color: #f2e6de;
}

.section-feature-title-accent {
  margin-top: -0.15em;
  color: #d8a084;
  font-style: italic;
}

.section-feature-body {
  max-width: 31rem;
  margin: 1.8rem auto 0;
  color: rgba(224, 206, 198, 0.66);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.95;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-feature-line {
  display: block;
  width: 1px;
  height: 3.8rem;
  margin: 1.9rem auto 0;
  background: linear-gradient(180deg, rgba(232, 184, 164, 0.72), rgba(232, 184, 164, 0));
}

.section-feature-button {
  margin-top: -2.5rem;
  background: transparent;
  position: relative;
  z-index: 2;
}

.section-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Homepage-specific hero styles (moved from inline) */
.hero--home {
  position: relative;
  overflow: hidden;
}
.hero--home .section-background-video {
  filter: brightness(1.18) contrast(1.05);
}
.hero-frame--home {
  z-index: 100;
}

/* End homepage-specific styles */

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.42) 52%, rgba(5, 5, 5, 0.74) 100%),
    rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: clamp(820px, calc(105vh), 960px);
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-frame {
  width: min(100%, 1120px);
  min-height: clamp(820px, calc(105vh), 960px);
  position: relative;
  padding-top: 76px;
  overflow: visible;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 0 26px;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: none;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  background: rgba(4, 4, 4, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

.topbar-brand,
.topbar-language,
.menu-button {
  color: var(--accent);
}

.topbar-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-brand img {
  width: auto;
  height: 42px;
  display: block;
  opacity: 0.94;
  filter: drop-shadow(0 0 8px rgba(214, 178, 167, 0.08));
}

.topbar-language {
  justify-self: end;
  font-size: 0.96rem;
  text-decoration: none;
}

.menu-button {
  width: 42px;
  height: 32px;
  display: inline-grid;
  align-content: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 8;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(310px, 100vw);
  min-height: 100vh;
  padding: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 212, 199, 0.12), transparent 54%),
    linear-gradient(
      180deg,
      rgba(191, 129, 109, 0.98) 0%,
      rgba(191, 129, 109, 0.98) 96px,
      rgba(186, 126, 107, 0.975) 116px,
      rgba(176, 119, 101, 0.97) 138px,
      rgba(161, 108, 92, 0.968) 162px,
      rgba(141, 95, 81, 0.97) 190px,
      rgba(116, 78, 66, 0.974) 220px,
      rgba(87, 58, 48, 0.98) 252px,
      rgba(55, 36, 29, 0.986) 286px,
      rgba(24, 16, 13, 0.992) 322px,
      rgba(8, 6, 6, 0.995) 360px,
      rgba(2, 2, 2, 0.995) 100%
    ),
    rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateX(-24px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 9;
}

.menu-panel-inner {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.4rem 2.4rem 1.8rem;
  background: transparent;
}

.menu-toprow {
  min-height: 88px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 0;
  background: transparent;
}

.menu-close-helper {
  width: 28px;
  height: 28px;
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: #f3d4c7;
  opacity: 0;
  pointer-events: none;
}

.menu-close-helper span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-close-helper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-helper span:nth-child(2) {
  opacity: 0;
}

.menu-close-helper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-languages {
  display: flex;
  gap: 0.8rem;
}

.menu-language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 0.7rem;
  border: 1px solid rgba(243, 212, 199, 0.2);
  border-radius: 6px;
  background: rgba(243, 212, 199, 0.06);
  color: #f3d4c7;
  font-size: 0.74rem;
  font-family: "Times New Roman", Georgia, serif; /* Kept specific for unique style */
  letter-spacing: 0.08em;
  text-decoration: none;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.7rem 0.6rem;
  border: 1px solid transparent;
  color: #dcb29f;  
  font-family: var(--font-serif-body);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.menu-link:hover,
.menu-link.is-active {
  color: #f3d4c7;
  border-color: transparent;
  background: transparent;
}

.menu-link-mark {
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
  flex: 0 0 auto;
}

body.menu-open .menu-backdrop,
body.menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .topbar {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

body.menu-open .menu-close-helper {
  opacity: 1;
  pointer-events: auto;
}

.menu-button {
  transition: transform 220ms ease;
}

.menu-button span {
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  transform-origin: center;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-content {
  min-height: clamp(744px, calc(105vh - 76px), 884px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 5rem);
}
/* Homepage-specific hero styles (moved from inline) */
.hero-content--home {
  grid-template-columns: 1fr;
}

.hero-smoke-stage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  width: min(100%, 34rem);
  max-width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5rem;
}

.hero-title-block {
  display: inline-grid;
  gap: 0.45rem;
  justify-items: center;
  width: min(100%, 34rem);
  max-width: 100%;
}

.hero-brand {
  margin: 0;
  color: #e6b8a4;
  background: linear-gradient(180deg, #f3d4c7 0%, #e6b8a4 38%, #c88d78 72%, #9f6857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-serif-display);
  font-size: clamp(4rem, 8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 0.92;
  text-shadow: 0 0 16px rgba(232, 184, 164, 0.12);
}

.hero-subtitle {
  margin: 0;
  color: #e2b09c;
  background: linear-gradient(180deg, #f0d0c2 0%, #e2b09c 34%, #bf816d 72%, #935d4f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-serif-display);
  font-size: clamp(2.5rem, 5vw, 3.35rem);
  width: 100%;
  letter-spacing: 0.18em;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 0 14px rgba(232, 176, 156, 0.1);
}

.hero-tagline {
  margin: 2.1rem auto 0;
  color: #e6d4c2;
  display: block;
  width: 100%;
  max-width: none;
  transform: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(214, 178, 167, 0.04);
}

/* =========
   Hero intro text animation (HUMO / CATERING)
   Driven by body.hero-text-intro and per-letter spans created in app.js
   ========= */

@keyframes heroLetterIn {
  0% {
    opacity: 0;
    transform: translateY(0.55em) scale(0.98);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-0.06em) scale(1);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

body.hero-text-intro [data-hero-text-title] .hero-letter,
body.hero-text-intro [data-hero-text-subtitle] .hero-letter {
  display: inline-block;
  opacity: 0; /* pre-animation state; animation brings it to 1 */
  transform: translateY(0.55em) scale(0.98);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  animation: heroLetterIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}

/* Important: the hero headline gradient uses background-clip:text on the parent.
   After splitting into spans, the spans must carry the same gradient+clip to stay visible. */
body.hero-text-intro [data-hero-text-title] .hero-letter {
  background: linear-gradient(180deg, #f3d4c7 0%, #e6b8a4 38%, #c88d78 72%, #9f6857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px rgba(232, 184, 164, 0.12);
}

body.hero-text-intro [data-hero-text-subtitle] .hero-letter {
  background: linear-gradient(180deg, #f0d0c2 0%, #e2b09c 34%, #bf816d 72%, #935d4f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(232, 176, 156, 0.1);

  animation-duration: 820ms;
  animation-delay: calc(var(--i, 0) * 38ms);
}

@media (prefers-reduced-motion: reduce) {
  body.hero-text-intro [data-hero-text-title] .hero-letter,
  body.hero-text-intro [data-hero-text-subtitle] .hero-letter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1280px), (max-height: 860px) {
  .hero-frame {
    width: min(100%, 1160px);
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: clamp(1.75rem, 3.2vw, 3.5rem);
  }

  .hero-copy {
    width: min(100%, 31rem);
    padding-bottom: 4rem;
  }

  .hero-brand {
    font-size: clamp(3.4rem, 6.4vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: clamp(2.2rem, 4.2vw, 3.05rem);
    letter-spacing: 0.14em;
  }

  .hero-tagline {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .shisha-image {
    right: 2%;
    width: min(52vw, 640px);
  }

  .smoke-layer-ambient {
    right: 15%;
    width: min(62vw, 780px);
  }
}

@media (max-width: 1120px), (max-height: 760px) {
  .hero-frame {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: clamp(1.5rem, 2.4vw, 2.4rem);
  }

  .hero-copy {
    width: min(100%, 28rem);
    padding-bottom: 3.4rem;
  }

  .hero-brand {
    font-size: clamp(3rem, 5.8vw, 4.6rem);
  }

  .hero-subtitle {
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    letter-spacing: 0.12em;
  }

  .hero-tagline {
    white-space: normal;
    max-width: 26ch;
    line-height: 1.45;
  }

  .hero-visual {
    min-height: 700px;
  }

  .shisha-image {
    right: 1.5%;
    width: min(50vw, 560px);
  }

  .smoke-layer-ambient {
    right: 10%;
    width: min(60vw, 700px);
  }
}

.inner-page {
  min-height: 100vh;
}

.inner-shell {
  min-height: 100vh;
  padding: 140px 24px 48px;
  display: grid;
  place-items: center;
}

.content-card {
  width: min(100%, 960px);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(214, 181, 170, 0.11);
  background:
    radial-gradient(circle at top right, rgba(214, 181, 170, 0.04), transparent 28%),
    rgba(5, 5, 5, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.section-kicker {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.content-card h1 {
  margin: 0.75rem 0 0;
  color: var(--accent-soft);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 500;
}

.content-card p:last-child {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(238, 223, 216, 0.86);
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% 6% 22%;
  background:
    radial-gradient(ellipse at 64% 34%, rgba(255, 255, 255, 0.025), transparent 26%),
    radial-gradient(ellipse at 58% 56%, rgba(0, 0, 0, 0.22), transparent 58%);
  filter: blur(20px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.shisha-image {
  position: absolute;
  right: 2%;
  bottom: 0;
  top: auto;
  width: min(48vw, 620px);
  height: auto;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: bottom center;
  z-index: 2;
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.36))
    brightness(1.18)
    contrast(1.05);
}

.smoke-layer {
  position: absolute;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  filter: blur(0.8px) saturate(0.72) brightness(0.82) contrast(1.08);
  -webkit-mask-image: none;
  mask-image: none;
  z-index: 3;
  pointer-events: none;
  transition: opacity 2400ms ease;
}

.smoke-layer-intro {
  top: -8%;
  left: 0;
  width: min(168vw, 2200px);
  height: 118%;
  object-position: left center;
  opacity: 0.58;
  -webkit-mask-image: radial-gradient(
    ellipse at 32% 46%,
    rgba(0, 0, 0, 1) 0 30%,
    rgba(0, 0, 0, 0.96) 46%,
    rgba(0, 0, 0, 0.42) 64%,
    transparent 82%
  );
  mask-image: radial-gradient(
    ellipse at 32% 46%,
    rgba(0, 0, 0, 1) 0 30%,
    rgba(0, 0, 0, 0.96) 46%,
    rgba(0, 0, 0, 0.42) 64%,
    transparent 82%
  );
}

body.smoke-intro-fading .smoke-layer-intro {
  opacity: 0;
}

.smoke-layer-ambient {
  top: 0;
  right: calc(max((100vw - 1120px) / 2, 0px) + 34px);
  left: auto;
  width: clamp(560px, 38vw, 860px);
  height: 100%;
  object-position: center top;
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    ellipse at 48% 42%,
    rgba(0, 0, 0, 1) 0 24%,
    rgba(0, 0, 0, 0.94) 42%,
    rgba(0, 0, 0, 0.22) 60%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse at 48% 42%,
    rgba(0, 0, 0, 1) 0 24%,
    rgba(0, 0, 0, 0.94) 42%,
    rgba(0, 0, 0, 0.22) 60%,
    transparent 78%
  );
}

body.smoke-intro-complete .smoke-layer-intro {
  opacity: 0;
}

body.smoke-ambient-active .smoke-layer-ambient,
body.smoke-intro-complete .smoke-layer-ambient {
  opacity: 0.72;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 0;
  }

  .hero-frame {
    min-height: 100vh;
    padding-top: 64px;
  }

  .topbar {
    min-height: 62px;
    padding: 0 18px;
  }

  .menu-panel {
    width: min(300px, 100vw);
  }

  .hero-content {
    min-height: calc(100vh - 64px);
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-copy {
    padding: 0 2rem;
  }

  .hero-title-block {
    justify-items: center;
  }

  .hero-subtitle {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-smoke-stage {
    left: calc((100vw - 100%) / -2);
    width: 100vw;
    min-height: 100%;
  }

  .smoke-layer-intro {
    top: 0;
    left: -10vw;
    width: 120vw;
    height: 100%;
    object-position: center;
    opacity: 0.56;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 14px;
    min-height: 58px;
  }

  .menu-panel {
    width: min(290px, 100vw);
  }

  .menu-toprow {
    min-height: 76px;
    padding: 0.9rem 1rem;
  }

  .menu-link {
    font-size: 1.02rem;
  }

  .topbar-brand {
    min-height: 20px;
  }

  .topbar-language {
    font-size: 0.74rem;
  }

  .hero-copy {
    padding: 0 1.4rem;
  }

  .hero-subtitle {
    letter-spacing: 0.08em;
  }

  .hero-tagline {
    line-height: 1.6;
  }

  .section-shell,
  .section-inner {
    min-height: auto;
  }

  .section-feature-inner {
    min-height: 28rem;
    padding: 3.5rem 1.4rem;
  }

  .section-feature-copy {
    max-width: 21rem;
  }

  .section-feature-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
  }

  .section-feature-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section-feature-body {
    max-width: 18.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    line-height: 1.85;
  }

  .section-feature-rings {
    width: min(86vw, 27rem);
  }

  .section-feature-rings::after {
    height: 4.2rem;
  }

  .section-feature-button {
    margin-top: -1.5rem;
  }
}

.home-links-band,
.home-cta-band,
.page-shell-block {
  position: relative;
  overflow: hidden;
  background: #040404;
}

.home-links-band::before,
.home-cta-band::before,
.page-shell-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(232, 184, 164, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 24%);
  pointer-events: none;
}

.home-links-inner,
.home-cta-inner,
.page-block-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: clamp(4.8rem, 7vw, 6.8rem) clamp(1.4rem, 4vw, 3rem);
}

.home-links-header,
.page-section-header {
  max-width: 34rem;
  margin-bottom: clamp(2.4rem, 4vw, 3.2rem);
}

.page-section-header--center {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-links-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}

.home-links-split .home-links-header {
  margin-bottom: 0;
}

.home-links-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  margin-bottom: 2.5rem; /* Space for the pagination dots */
  touch-action: pan-y; /* Prevents browser interference when swiping sideways on mobile */
}

.home-links-carousel .home-link-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
}

.home-links-carousel .home-link-card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 2;
  border-color: rgba(216, 160, 132, 0.55); /* 1px gold border on active card */
}

.carousel-pagination {
  position: absolute;
  bottom: -2.8rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 184, 164, 0.2);
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(232, 184, 164, 0.5);
}

.carousel-dot.is-active {
  background: transparent;
  border-color: #d8a084;
  transform: scale(1.4);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-headline {
  margin: 0;
  color: #eedfd8;
  font-family: var(--font-serif-body);
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.section-headline-main,
.section-headline-accent {
  display: block;
}

.section-headline-accent {
  margin-top: -0.15em;
  color: #d8a084;
  font-style: italic;
}

.section-copy {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: rgba(238, 223, 216, 0.78);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.home-link-card {
  min-height: 22rem;
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: 1.6rem;
  border: 1px solid rgba(232, 184, 164, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.06), rgba(10, 9, 7, 0.78)),
    radial-gradient(circle at top left, rgba(232, 184, 164, 0.08), transparent 34%),
    #0a0907;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.home-link-card-title {
  margin: 0;
  color: #f1ddd2;
  font-family: var(--font-serif-body);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 8px 20px rgba(0, 0, 0, 0.8);
}

.home-link-card-copy {
  margin: 0;
  color: rgba(238, 223, 216, 0.78);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 6px 14px rgba(0, 0, 0, 0.8);
}

.home-link-card-tag {
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 10px rgba(0, 0, 0, 0.8);
}

.home-link-card--service {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.7) 50%, rgba(4, 4, 4, 0.98) 100%),
    url("./assets/young-woman-vaping-from-hookah-bar.jpg") center / cover no-repeat;
}

.home-link-card--menu {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.7) 50%, rgba(4, 4, 4, 0.98) 100%),
    url("./assets/fruit-flavor-hookah-isolated.jpg") center / cover no-repeat;
}

.home-link-card--events {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.7) 50%, rgba(4, 4, 4, 0.98) 100%),
    url("./assets/event-wedding.png") center / cover no-repeat;
}

.home-cta-band {
  border-top: 1px solid rgba(232, 184, 164, 0.08);
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 1.6rem;
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  min-height: 3rem;
  padding: 0 1.8rem;
  border: 1px solid rgba(232, 184, 164, 0.54);
  background: rgba(18, 14, 11, 0.2);
  color: #f1ddd2;  
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.page-button:hover {
  transform: translateY(-1px);
  background: #d8a084;
  color: #050505;
  border-color: #d8a084;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #040404;
}

.page-hero-media,
.page-hero-overlay,
.page-hero-art {
  position: absolute;
  inset: 0;
}

.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(0.48) contrast(1.08);
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.72) 0%, rgba(4, 4, 4, 0.56) 32%, rgba(4, 4, 4, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 4, 4, 0.84) 0%, rgba(4, 4, 4, 0.5) 48%, rgba(4, 4, 4, 0.76) 100%);
}

.page-hero-art {
  background:
    radial-gradient(circle at 82% 22%, rgba(232, 184, 164, 0.1), transparent 18%),
    linear-gradient(120deg, transparent 0 64%, rgba(232, 184, 164, 0.08) 64.3%, transparent 65%);
}

.page-hero-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 9rem clamp(1.4rem, 4vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: end;
}

.page-hero-inner--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.page-hero-content {
  display: grid;
  gap: 2.5rem;
}

.page-hero-copy-wrap {
  max-width: 38rem;
}

.page-hero-kicker {
  margin: 0 0 1rem;
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-hero-title {
  margin: 0;
  color: #eedfd8;
  font-family: var(--font-serif-body);
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.9;
}

.page-hero-copy {
  margin: 1.4rem 0 0;
  max-width: 34rem;
  color: rgba(238, 223, 216, 0.82);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
}

.page-hero-stats,
.page-hero-stats--horizontal {
  display: grid;
  gap: 1.5rem;
  padding-left: 0;
  border-left: 0;
  border-top: 1px solid rgba(232, 184, 164, 0.16);
  padding-top: 1.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.hero-offer-grid {
  grid-column: 1 / -1;
  margin-top: clamp(1rem, 3vw, 2.5rem);
}

.page-hero-media-frame {
  position: relative;
  height: 100%;
  min-height: 28rem;
  border: 1px solid rgba(232, 184, 164, 0.12);
  background: rgba(7, 7, 7, 0.82);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.9) contrast(1.1);
}

.page-hero-stat {
  display: grid;
  gap: 0.15rem;
}

.page-hero-stat strong {
  color: #f1ddd2;
  font-family: var(--font-serif-body);
  font-size: 1.35rem;
  font-weight: 400;
}

.page-hero-stat span {
  color: rgba(238, 223, 216, 0.58);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.editorial-copy p,
.detail-list p {
  margin: 0;
  color: rgba(238, 223, 216, 0.8);  
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.8;
}

.detail-list {
  display: grid;
  gap: 1.1rem;
}

.accent-note {
  padding-left: 1rem;
  border-left: 2px solid rgba(232, 184, 164, 0.24);
}

.offer-grid,
.event-grid,
.menu-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.menu-grid--stacked {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.menu-grid--stacked .menu-column {
  text-align: center;
}

.menu-grid--stacked .menu-entry {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.contact-grid {
  grid-template-columns: 1fr !important;
}

.page-block-inner.contact-grid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(2rem, 6vw, 8rem) !important;
  padding-right: clamp(2rem, 6vw, 8rem) !important;
}

.offer-card,
.event-card,
.menu-column,
.contact-card,
.timeline-step,
.stat-card {
  border: 1px solid rgba(232, 184, 164, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 28%),
    rgba(7, 7, 7, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.offer-card,
.event-card,
.menu-column,
.contact-card {
  padding: 1.45rem;
}

.offer-card h3,
.event-card h3,
.menu-column h3,
.contact-card h3, 
.timeline-step h3 {
  margin: 0;
  color: #eedfd8;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.95;
}

.offer-card p,
.event-card p,
.menu-column p,
.contact-card p, 
.timeline-step p {
  margin: 0.85rem 0 0;
  color: rgba(238, 223, 216, 0.74);  
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
}

.offer-topline,
.menu-topline,
.event-topline {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #c88d78;  
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-strips,
.package-band,
.timeline {
  display: grid;
  gap: 1rem;
}

.service-strips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.2rem 1.3rem;
}

.stat-card strong {
  display: block;
  color: #f1ddd2;
  font-family: var(--font-serif-body);
  font-size: 1.8rem;
  font-weight: 400;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;  
  color: rgba(238, 223, 216, 0.62);  
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(232, 184, 164, 0.08);
}

.menu-entry:last-child {
  border-bottom: 0;
}

.menu-entry strong {
  color: #f1ddd2;
  font-family: var(--font-serif-body);
  font-size: 1.5rem;
  font-weight: 400;
}

.menu-entry span {
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-step {
  padding: 1.4rem;
}

.timeline-step-count {
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card a,
.contact-card strong {
  color: #f1ddd2;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-form .field:last-of-type {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.contact-form .page-button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 1rem;
}

#contact-submit-btn {
  justify-self: start;
  margin-top: 1rem;
  margin-left: 1.45rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: rgba(238, 223, 216, 0.66);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(232, 184, 164, 0.18);
  background: rgba(9, 9, 9, 0.7);
  color: #eedfd8;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.field textarea {
  min-height: 8rem;
  flex: 1;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(232, 184, 164, 0.42);
}

@media (max-width: 980px) {
  .home-links-grid,
  .offer-grid,
  .event-grid,
  .menu-grid,
  .timeline,
  .service-strips,
  .contact-grid,
  .contact-stack,
  .editorial-grid,
  .page-hero-inner,
  .page-hero-inner--split,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .page-button {
    justify-self: stretch;
  }

  #contact-submit-btn {
    justify-self: stretch;
    margin-right: 1.45rem;
  }

  .package-band.timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .home-links-split {
    grid-template-columns: 1fr;
  }
  
  .home-links-split .home-links-header {
    margin-bottom: 1.5rem;
  }

  .page-hero {
    min-height: 74vh;
  }

  .page-hero-inner {
    padding-top: 8rem;
  }

  .page-hero-stats {
    padding-left: 0;
    padding-top: 1.2rem;
    border-left: 0;
    border-top: 1px solid rgba(232, 184, 164, 0.16);
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .page-hero-stats--horizontal {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
  }

  .page-hero-media-frame {
    aspect-ratio: 4 / 5;
    height: auto;
    width: 100%;
    margin-top: 1.5rem;
  }

  .home-link-card {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .home-links-inner,
  .home-cta-inner,
  .page-block-inner {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .page-hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .section-headline {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .offer-card h3,
  .event-card h3,
  .menu-column h3,
  .contact-card h3,
  .timeline-step h3 {
    font-size: 1.7rem;
  }

  .package-band.timeline {
    gap: 0.4rem;
  }

  .package-band .timeline-step {
    padding: 0.8rem 0.5rem;
  }

  .package-band .timeline-step-count {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .package-band .timeline-step h3 {
    font-size: 1.1rem;
  }

  .package-band .timeline-step p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .menu-entry {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .menu-entry strong {
    font-size: 1.3rem;
  }

  .page-hero-stats,
  .page-hero-stats--horizontal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .page-hero-stat strong {
    font-size: 0.95rem;
  }

  .page-hero-stat span {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }
}

/* Page-specific hero styles */
.page-hero--shishas .page-hero-video {
  filter: saturate(0.8) brightness(0.55) contrast(1.08);
}

/* =========
   Photo Gallery Grid (Dedicated Page)
   ========= */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.photo-gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(232, 184, 164, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  background: rgba(7, 7, 7, 0.82);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
}

.photo-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* =========
   Split Layout Section (Text & Video)
   ========= */
.split-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.split-section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(4.8rem, 7vw, 6.8rem) clamp(1.4rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-grid--start {
  align-items: start;
}

.split-text .section-copy {
  margin-top: 0.85rem;
  line-height: 1.6;
}

.split-text .page-button {
  margin-top: 2.2rem;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(232, 184, 164, 0.12);
  background: rgba(7, 7, 7, 0.82);
  overflow: hidden;
}

.split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9) contrast(1.1);
}

/* =========
   Read More Accordion
   ========= */
.read-more-accordion summary {
  margin-top: 1.8rem;
  list-style: none;
  margin-left: 0;
}

.read-more-accordion summary::-webkit-details-marker {
  display: none;
}

.read-more-accordion[open] summary {
  display: none;
}

.read-more-content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 184, 164, 0.12);
  animation: fadeIn 0.5s ease-out;
}

.read-more-content h3 {
  color: #eedfd8;
  font-family: var(--font-serif-body);
  font-size: 1.5rem;
  margin: 1.8rem 0 0.6rem;
  font-weight: 500;
}

.read-more-content h3:first-child {
  margin-top: 0;
}

.read-more-list {
  color: rgba(238, 223, 216, 0.8);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.2rem;
  margin: 0 0 1.5rem;
}

.read-more-list li {
  margin-bottom: 0.4rem;
}

.read-more-list strong {
  color: #f1ddd2;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  
  .split-text {
    order: 1;
  }

  .split-media {
    order: 2;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* =========
   Brand Ticker
   ========= */
.brand-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(4, 4, 4, 0.9);
  border-top: 1px solid rgba(232, 184, 164, 0.08);
  border-bottom: 1px solid rgba(232, 184, 164, 0.08);
  padding: 1.25rem 0;
  z-index: 5;
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* 75s creates an even slower, cinematic crawl */
  animation: tickerScroll 75s linear infinite;
}

/* Pauses the whole track when the user hovers over it */
.ticker-track:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-content span,
.ticker-content a {
  color: rgba(238, 223, 216, 0.45);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  cursor: default;
  text-decoration: none;
}

.ticker-content a {
  cursor: pointer;
}

/* Glow gold on hover for specific brand names */
.ticker-content a:hover {
  color: #d8a084;
  text-shadow: 0 0 12px rgba(216, 160, 132, 0.5);
}

.ticker-dot {
  margin: 0 2.5rem;
  color: rgba(238, 223, 216, 0.15) !important;
  font-size: 1.2rem;
  line-height: 1;
  pointer-events: none;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =========
   Swipeable Image Gallery
   ========= */
.image-gallery-section {
  position: relative;
  background: var(--bg);
  padding: clamp(4rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.image-gallery-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 clamp(1.4rem, 4vw, 3rem);
  cursor: grab;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.image-gallery-track::-webkit-scrollbar {
  display: none;
}

.image-gallery-track.is-dragging {
  scroll-snap-type: none; /* disable snap while mouse dragging */
  scroll-behavior: auto; /* CRITICAL: disable smooth scroll so dragging is instantly responsive */
  cursor: grabbing;
}

.image-gallery-track.is-dragging .image-gallery-slide {
  pointer-events: none; /* prevent drag ghosting on images */
}

.image-gallery-slide {
  flex: 0 0 clamp(260px, 75vw, 360px);
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 164, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.image-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
  pointer-events: none; /* prevent native browser image drag behavior */
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
}

.image-gallery-slide:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* =========
   Footer
   ========= */
.site-footer {
  background: #020202;
  border-top: 1px solid rgba(232, 184, 164, 0.08);
  padding: 4rem 0 0;
  position: relative;
  z-index: 10;
}

.footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-col {
  max-width: 22rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(214, 178, 167, 0.08));
}

.footer-copy {
  color: rgba(238, 223, 216, 0.6);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-heading {
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-col a {
  color: rgba(238, 223, 216, 0.8);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

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

.footer-bottom {
  border-top: 1px solid rgba(232, 184, 164, 0.05);
  padding: 1.5rem clamp(1.4rem, 4vw, 3rem);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(238, 223, 216, 0.4);
  font-family: var(--font-sans);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =========
   FAQ Accordion (Contact Page)
   ========= */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(232, 184, 164, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(232, 184, 164, 0.12);
  padding: 1.5rem 0;
}

.faq-question {
  color: #eedfd8;
  font-family: var(--font-serif-body);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 300;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  color: rgba(238, 223, 216, 0.74);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 1rem;
  margin: 0;
  max-width: 90%;
}

/* =========
   WhatsApp Floating Button
   ========= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(37, 211, 102, 0.2);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 24px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =========
   Age Gate & Cookie Banner
   ========= */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 2, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.age-gate-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-modal {
  background: #050505;
  border: 1px solid rgba(232, 184, 164, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  padding: 3.5rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-gate-logo {
  height: 48px;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(214, 178, 167, 0.08));
}

.age-gate-title {
  color: #eedfd8;
  font-family: var(--font-serif-body);
  font-size: 2.2rem;
  margin: 0 0 1rem;
}

.age-gate-copy {
  color: rgba(238, 223, 216, 0.7);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 2.5rem;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-gate-btn-yes {
  background: #d8a084;
  color: #050505;
  border: none;
  padding: 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.age-gate-btn-yes:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.age-gate-btn-no {
  background: transparent;
  color: rgba(238, 223, 216, 0.5);
  border: 1px solid rgba(238, 223, 216, 0.2);
  padding: 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.age-gate-btn-no:hover {
  color: #eedfd8;
  border-color: rgba(238, 223, 216, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 120px); /* Leaves room for WhatsApp icon */
  max-width: 420px;
  background: rgba(10, 9, 7, 0.95);
  border: 1px solid rgba(232, 184, 164, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-text {
  color: rgba(238, 223, 216, 0.8);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: #d8a084;
  color: #050505;
  border: none;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.cookie-btn-accept:hover {
  filter: brightness(1.1);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(238, 223, 216, 0.6);
  border: 1px solid rgba(238, 223, 216, 0.2);
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-decline:hover {
  color: #eedfd8;
  border-color: rgba(238, 223, 216, 0.5);
}

.cookie-link {
  color: #c88d78;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}
