/* ============================================
   HENSHIN JAKARTA - MAIN STYLESHEET
   ============================================ */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #b5974a;
  --gold-light: #c9ab6b;
  --dark-bg: #0a0a0a;
  --medium-bg: #111111;
  --text-muted: #888888;
  --border: rgba(255,255,255,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.35s ease;
  --header-h: 90px;
  --topbar-h: 36px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-reserve {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 22px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-reserve:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  transition: var(--transition);
  margin-top: 24px;
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 11px 24px;
  transition: var(--transition);
  margin-top: 20px;
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-bar-social a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.top-bar-social a:hover {
  color: var(--gold);
}

.top-bar-phone {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.top-bar-phone a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.top-bar-phone a:hover {
  color: var(--gold);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8,8,8,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 0;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.header-reserve {
  z-index: 10;
}

/* NAV */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: #0c0c0c;
  border-right: 1px solid var(--border);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 50px;
  overflow-y: auto;
}
.main-nav.open {
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.nav-close:hover { opacity: 1; }

.main-nav ul {
  margin-bottom: auto;
}
.main-nav ul li {
  border-bottom: 1px solid var(--border);
}
.main-nav ul li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--gold);
}

.nav-social {
  display: flex;
  gap: 16px;
  margin: 32px 0 20px;
  align-items: center;
}
.nav-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
}
.nav-social a:hover { color: var(--gold); }

.nav-reserve {
  align-self: flex-start;
}

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--header-h));
}

@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - var(--topbar-h) - var(--header-h));
  }
}

.slider-wrapper {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.slider-controls button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  cursor: pointer;
  transition: color var(--transition);
  padding: 6px;
}
.slider-controls button:hover { color: var(--gold); }

.slider-count {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

.slider-play-pause {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
}
.slider-play-pause button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 13px;
  transition: color var(--transition);
}
.slider-play-pause button:hover { color: var(--gold); }

/* ============================================
   CONFLUENCE SECTION
   ============================================ */
.confluence-section {
  background: var(--dark-bg);
  padding: 100px 32px;
}
.confluence-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.confluence-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.confluence-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
}
.confluence-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

/* ============================================
   CHEF SECTION
   ============================================ */
.chef-section {
  background: var(--medium-bg);
  padding: 100px 32px;
}
.chef-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chef-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.chef-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.chef-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.chef-text ul li {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  padding-left: 18px;
  position: relative;
}
.chef-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.chef-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
}

/* ============================================
   FEATURED OFFERS
   ============================================ */
.offers-section {
  background: var(--dark-bg);
  padding: 90px 0;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 32px;
}

.offers-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.offers-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.offer-card {
  min-width: calc((100vw - 64px) / 3);
  max-width: calc((100vw - 64px) / 3);
  margin: 0 16px;
  background: var(--white);
  color: var(--black);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .offer-card {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
  }
}

.offer-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.offer-body {
  padding: 28px 28px 32px;
}
.offer-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.offer-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--black);
}
.offer-body p {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}
.offer-body strong {
  color: var(--black);
}

.offers-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px 0;
}
.offers-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.offers-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   PRIVATE DINING
   ============================================ */
.private-section {
  background: var(--medium-bg);
  padding: 100px 32px;
}
.private-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.private-image-wrap {
  position: relative;
}
.private-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.private-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border: 4px solid var(--medium-bg);
}

.private-text {
  padding-top: 20px;
}
.private-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  margin-bottom: 10px;
}
.private-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}
.private-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  padding: 70px 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.footer-address-col h4,
.footer-hours-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 24px;
}
.footer-address-col h4:first-child,
.footer-hours-col h4:first-child { margin-top: 0; }

.footer-address-col p,
.footer-hours-col p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-address-col a,
.footer-hours-col a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-address-col a:hover,
.footer-hours-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* ============================================
   STICKY BOTTOM BAR
   ============================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.sticky-bar-time {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.sticky-bar-phone {
  padding: 4px 16px 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid var(--border);
}
.sticky-bar-phone a {
  color: rgba(255,255,255,0.5);
}

.sticky-bar-links {
  display: flex;
  border-top: none;
}
.sticky-link {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.sticky-link:last-child { border-right: none; }
.sticky-link:hover { color: var(--gold); }
.sticky-link.highlight {
  background: var(--gold);
  color: var(--white);
}
.sticky-link.highlight:hover {
  background: var(--gold-light);
}

/* ============================================
   HOURS MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: #111;
  border: 1px solid var(--border);
  padding: 50px 48px;
  max-width: 420px;
  width: 90%;
  position: relative;
}
.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}
.modal-box p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .confluence-inner,
  .chef-inner,
  .private-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chef-image { order: -1; }
  .confluence-image img,
  .chef-image img { height: 380px; }
  .private-img-secondary { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
    --topbar-h: 32px;
  }

  .top-bar-social { display: none; }

  .header-reserve { display: none; }

  .menu-toggle { display: flex; }

  .logo img { height: 44px; }

  .confluence-section,
  .chef-section,
  .private-section { padding: 60px 20px; }

  .offers-section { padding: 60px 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .sticky-bar { display: block; }

  body { padding-bottom: 100px; }
}

@media (max-width: 480px) {
  .confluence-image img,
  .chef-image img { height: 260px; }
  .section-title { font-size: 26px; }
  .header-inner { padding: 0 20px; }
  .top-bar-inner { padding: 0 20px; }
}
