/* ========================================================================
   3some Hookah Shop Bali — shared styles
   Palette: matte black, safety orange (#F26B1F), oak warmth, off-white
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --line: #262626;
  --line-soft: #1f1f1f;
  --ink: #ffffff;
  --ink-mute: #a8a39a;
  --ink-faint: #6b6760;
  --orange: #ff5f00;
  --orange-bright: #ff7a2a;
  --oak: #c4a484;
  --oak-deep: #8a6f4f;
  --oak-soft: #d8c4a4;

  --display: 'Montserrat', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', 'Montserrat', system-ui, sans-serif;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--orange); color: #fff; }

/* ---------- HEADER ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
  padding: 12px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  height: clamp(56px, 8vw, 80px);
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* language switcher */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  margin-left: 12px;
}
.lang-switch button {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-mute);
  transition: background 0.2s, color 0.2s;
}
.lang-switch button.active {
  background: var(--orange);
  color: #fff;
}
.lang-switch button:hover:not(.active) { color: var(--ink); }
@media (max-width: 860px) { .lang-switch { margin-left: 0; } }



.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after, .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] { color: var(--orange); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 32px var(--gutter) 120px;
    gap: 8px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(.7,.05,.3,1), opacity 0.4s ease;
    border-top: 1px solid var(--line-soft);
    z-index: -1;
    overflow-y: auto;
  }
  .nav.open { 
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { font-size: 22px; padding: 14px 0; letter-spacing: 3px; }
  .nav a::after { display: none; }
}

/* ---------- TYPE ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.eyebrow.center::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.display-xl { font-size: clamp(54px, 9vw, 148px); line-height: 0.88; }
.display-lg { font-size: clamp(44px, 7vw, 110px); line-height: 0.9; }
.display-md { font-size: clamp(36px, 5vw, 72px); }
.display-sm { font-size: clamp(28px, 3.6vw, 52px); }

.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-mute); max-width: 60ch; line-height: 1.65; }

/* ---------- LAYOUT ---------- */

.section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}

.section.tight { padding-block: clamp(60px, 7vw, 100px); }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 80px);
  max-width: 900px;
}

@media (min-width: 900px) {
  .section-head.split {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 60px;
    max-width: none;
  }
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-2px); }

.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- FOOTER ---------- */

.site-footer {
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line-soft);
  background: #050505;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

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

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

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink); font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }

.footer-about p { color: var(--ink-mute); font-size: 14px; line-height: 1.7; max-width: 36ch; }

.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 1px;
}

/* ---------- UTILS ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

.divider-orange {
  width: 56px;
  height: 2px;
  background: var(--orange);
  border: 0;
  margin: 0;
}

/* simple icons */
.ic { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* prevent layout shift while video loads */
.video-cover { background: #000; }
