/* -------------------------------------------------------------
   LUXE BILLIARD N CAFE — STYLESHEET
   Theme: KOCA Redesign (Dark, Gold, Editorial, Cinematic)
   ------------------------------------------------------------- */

/* --- Custom Variables & Tokens --- */
:root {
  --color-background: #0E0E0E;
  --color-surface: #171717;
  --color-surface-light: #242424;
  --color-foreground: #F3EFE0;
  --color-gold: #C9A84C;
  --color-gold-light: #DFCD9F;
  --color-border: rgba(201, 168, 76, 0.15);
  --color-border-hover: rgba(201, 168, 76, 0.35);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  --header-height: 80px;
}

/* --- Base & Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-background);
}

/* --- Custom Cursor Followers --- */
.cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--color-gold);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  display: none;
}

.cursor-follower {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gold);
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1), height 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s;
  display: none;
}

@media (min-width: 768px) {
  .cursor-dot,
  .cursor-follower {
    display: block;
  }
  
  body:hover .cursor-dot,
  body:hover .cursor-follower {
    opacity: 1;
  }
}

/* Hover active state for links/buttons */
.cursor-active {
  width: 40px;
  height: 40px;
  background-color: rgba(201, 168, 76, 0.08);
  border-color: var(--color-gold);
}

/* --- Typography --- */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  color: var(--color-foreground);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--color-foreground);
}

h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-foreground);
}

p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 239, 224, 0.75);
}

.italic-serif {
  font-style: italic;
  font-family: var(--font-serif);
}

.text-gold-light {
  color: var(--color-gold-light);
}

.text-light {
  color: var(--color-foreground);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* --- Common Components --- */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 4% 120px 4%;
}

.section-tag-koca {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.divider-thin {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: 30px 0;
}

.divider-thin.border-light {
  background-color: rgba(243, 239, 224, 0.1);
}

/* --- Buttons --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  background-color: transparent;
  color: var(--color-gold-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cta-button:hover {
  background-color: var(--color-gold);
  color: #0E0E0E;
}

.cta-button.secondary {
  border-color: rgba(243, 239, 224, 0.3);
  color: rgba(243, 239, 224, 0.85);
  margin-left: 15px;
}

.cta-button.secondary:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

/* --- Fixed Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  flex-direction: column;
}

.logo-text-large {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--color-foreground);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
  font-weight: 500;
}

.desktop-nav {
  display: none;
}

.desktop-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin: 0 16px;
  color: rgba(243, 239, 224, 0.75);
  position: relative;
  padding-bottom: 4px;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.desktop-nav .nav-link:hover {
  color: var(--color-gold-light);
}

.desktop-nav .nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  z-index: 101;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-foreground);
  transition: var(--transition-fast);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Mobile Drawer Menu --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-background);
  border-left: 1px solid var(--color-border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-foreground);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin: 60px 0;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 12px 0;
  color: var(--color-foreground);
}

.mobile-link:hover {
  color: var(--color-gold);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4%;
  color: var(--color-foreground);
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 14, 14, 0.4) 0%, rgba(14, 14, 14, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(243, 239, 224, 0.8);
  max-width: 600px;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Side vertical Claim button */
.side-cta-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 10;
  display: none;
  background-color: transparent;
  border: none;
  border-left: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--color-gold-light);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 12px 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.side-cta-button:hover {
  color: var(--color-foreground);
  background-color: rgba(201, 168, 76, 0.08);
}

@media (min-width: 1024px) {
  .side-cta-button {
    display: block;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(201, 168, 76, 0.7);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color-gold);
  animation: scrollDown 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* --- Story Section --- */
.story-section {
  background-color: var(--color-background);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.story-image-column {
  position: relative;
}

.image-wrapper.ring-border {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.editorial-image.grayscale-gold {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .editorial-image {
  transform: scale(1.02);
  filter: grayscale(0.2) contrast(1.05);
}

.img-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.7) 0%, transparent 40%);
}

.image-sub-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(243, 239, 224, 0.5);
  text-transform: uppercase;
  margin-top: 15px;
  text-align: center;
}

.story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--color-gold-light);
  margin-top: 20px;
  margin-bottom: 25px;
  max-width: 480px;
}

.story-body {
  margin-bottom: 35px;
}

.signature-block {
  display: flex;
  flex-direction: column;
}

.sig-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-foreground);
  line-height: 1;
}

.sig-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* --- Spaces Section (The Stage Split) --- */
.spaces-section {
  padding-top: 100px;
  border-top: 1px solid var(--color-border);
}

.spaces-header {
  text-align: center;
  margin-bottom: 60px;
}

.spaces-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.spaces-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.space-col-link {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border-bottom: 1px solid var(--color-border);
}

.space-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, rgba(14, 14, 14, 0.3) 100%);
  transition: var(--transition-fast);
}

.space-col-link:hover .space-img {
  transform: scale(1.03);
}

.space-col-link:hover .space-overlay {
  background: linear-gradient(to top, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.15) 100%);
}

.space-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.space-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.space-name {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.space-desc {
  max-width: 400px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.space-cta-arrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.space-col-link:hover .space-cta-arrow {
  opacity: 1;
  padding-left: 5px;
}

/* --- The Chapter (Signature Menu Horizontal Slider) --- */
.menu-section-koca {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.menu-koca-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 4%;
}

.menu-koca-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.menu-italic-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(243, 239, 224, 0.6);
  margin-top: 10px;
}

.horizontal-slider-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 30px;
}

.horizontal-slider-wrapper::-webkit-scrollbar {
  height: 4px;
}
.horizontal-slider-wrapper::-webkit-scrollbar-track {
  background: rgba(201, 168, 76, 0.05);
}
.horizontal-slider-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

.horizontal-slider {
  display: flex;
  gap: 24px;
  width: max-content;
}

.slider-card {
  width: 290px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, rgba(14, 14, 14, 0.15) 100%);
  transition: var(--transition-fast);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.6rem;
  color: var(--color-foreground);
  margin-bottom: 10px;
  transform: translateY(10px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(243, 239, 224, 0.65);
  opacity: 0;
  transition: opacity 0.5s ease;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slider-card:hover .card-title {
  transform: translateY(0);
}

.slider-card:hover .card-desc {
  opacity: 1;
}

.menu-koca-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  align-items: center;
}

.cuisines-list {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-gold-light);
  margin-top: 5px;
}

/* --- What's New Section --- */
.whats-new-section {
  background-color: var(--color-background);
}

.new-header {
  margin-bottom: 60px;
  text-align: center;
}

.whats-new-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.new-card {
  padding: 40px;
  background-color: rgba(23, 23, 23, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: var(--transition-smooth);
}

.new-card:hover {
  border-color: var(--color-border-hover);
  background-color: rgba(23, 23, 23, 0.6);
}

.card-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 12px;
  margin-bottom: 25px;
}

.new-card-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.new-card-desc {
  font-size: 0.92rem;
  margin-bottom: 25px;
}

.card-arrow-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  margin-top: auto;
}

/* --- The Schedule Section --- */
.schedule-section {
  border-top: 1px solid var(--color-border);
}

.schedule-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.event-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 30px;
}

.event-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-item:hover .event-img {
  transform: scale(1.02);
}

.event-date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.event-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.event-desc {
  font-size: 0.95rem;
}

/* --- Gallery Section --- */
.gallery-section-koca {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery-koca-header {
  margin-bottom: 60px;
  text-align: center;
}

.gallery-koca-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(243, 239, 224, 0.6);
  margin-top: 10px;
}

.gallery-columns {
  columns: 1;
  column-gap: 20px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}

.gallery-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-card-hover h4 {
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-bottom: 5px;
}

.gallery-card-hover p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold-light);
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.gallery-card:hover .gallery-card-hover {
  opacity: 1;
}

/* --- Guest Journals (Reviews) --- */
.reviews-grid-koca {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-box {
  padding: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.review-stars-koca {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.review-text-koca {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--color-foreground);
  margin-bottom: 30px;
}

.review-author-koca {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(243, 239, 224, 0.5);
}

/* --- Visit Section --- */
.visit-section-koca {
  border-top: 1px solid var(--color-border);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.visit-detail-item {
  margin-bottom: 30px;
}

.visit-detail-item h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.visit-detail-item p {
  font-size: 0.95rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.map-wrapper-koca {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  filter: grayscale(1) invert(0.9) contrast(1.1);
  transition: var(--transition-smooth);
}

.map-wrapper-koca:hover {
  filter: grayscale(0.2) invert(0) contrast(1);
}

/* --- Footer --- */
.site-footer {
  background-color: #080808;
  border-top: 1px solid var(--color-border);
  padding: 80px 0;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(243, 239, 224, 0.6);
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 239, 224, 0.7);
  font-size: 0.85rem;
}

.footer-social-links a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.footer-nav-col a,
.footer-legal-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(243, 239, 224, 0.55);
}

.footer-nav-col a:hover {
  color: var(--color-foreground);
  padding-left: 3px;
}

/* --- Table Reservation Modal --- */
.reservation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 20px;
  overflow-y: auto;
}

.reservation-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.reservation-modal {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 650px;
  padding: 50px 40px;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.reservation-modal-overlay.active .reservation-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--color-foreground);
  line-height: 1;
}

.modal-header-koca {
  text-align: center;
  margin-bottom: 35px;
}

.modal-tag-koca {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 10px;
}

.modal-header-koca h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.modal-header-koca p {
  font-size: 0.9rem;
  color: rgba(243, 239, 224, 0.6);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
  border-radius: 0;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.modal-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

.modal-success-state.hide {
  display: none;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.modal-success-state h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-success-state p {
  max-width: 450px;
  margin-bottom: 30px;
  color: rgba(243, 239, 224, 0.7);
}

.hide {
  display: none !important;
}

/* --- Reveal Scroll Animations --- */
.scroll-reveal-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(15px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.scroll-reveal-text {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Media Queries (Tablet & Desktop Breakpoints) --- */

@media (min-width: 768px) {
  .editorial-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .spaces-split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-col-link {
    aspect-ratio: 16/18;
    padding: 60px;
    border-bottom: none;
  }
  
  .space-col-link:first-child {
    border-right: 1px solid var(--color-border);
  }

  .menu-koca-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .slider-card {
    width: 320px;
  }

  .menu-koca-footer {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
  }

  .whats-new-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .reviews-grid-koca {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .gallery-columns {
    columns: 2;
    column-gap: 30px;
  }

  .gallery-card {
    margin-bottom: 30px;
  }

  .footer-main-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
  }
}

/* --- Mobile Specific Modal Optimization --- */
@media (max-width: 767px) {
  .reservation-modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow-y: hidden;
  }

  .reservation-modal {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px 15px 15px 15px;
    transform: translateY(0) !important;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    font-size: 1.5rem;
  }

  .modal-header-koca {
    margin-bottom: 12px;
  }

  .modal-tag-koca {
    font-size: 0.55rem;
    margin-bottom: 4px;
  }

  .modal-header-koca h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }

  .modal-header-koca p {
    font-size: 0.78rem;
  }

  .modal-form {
    gap: 8px;
  }

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

  .form-group {
    gap: 2px;
  }

  .form-group label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .form-group textarea {
    height: 40px;
    rows: 1;
    resize: none;
  }

  .modal-form button[type="submit"] {
    margin-top: 5px;
    padding: 10px 16px;
    font-size: 0.7rem;
  }
}
