/*
Theme Name: The Jockey Club
Theme URI: https://thejockeyclub.rs
Author: The Jockey Club
Description: Luxury event venue theme
Version: 1.0.0
Text Domain: thejockeyclub
*/

/*
 * ─── Custom Fonts ───
 * Font files are served from assets/fonts/ when available.
 * Google Fonts fallbacks (Cormorant Garamond, DM Sans) are loaded via
 * functions.php until the commercial font files are uploaded to the server.
 *
 * To restore branded fonts, upload these files to assets/fonts/ :
 *   CanelaCondensed-Light.woff2, CanelaCondensed-Regular.woff2
 *   ScalaSansPro-Light.woff2, ScalaSansPro-Regular.woff2, ScalaSansPro-Bold.woff2
 *   ScalaSansCond-Regular.woff2
 * Then uncomment the @font-face blocks below and remove Google Fonts from functions.php.
 */


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

:root {
  --gold: #C9A96E;
  --gold-dim: rgba(201, 169, 110, 0.45);
  --gold-faint: rgba(201, 169, 110, 0.18);
  --cream: #f2ece0;
  --cream-dim: rgba(242, 236, 224, 0.55);
  --dark: #0e0e0a;
  --dark2: #141410;
  --off-white: #f8f5ef;
  --text-dark: #1c1a14;
  --text-mid: #5a5446;
  --text-light: #9a8f7a;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--dark);
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'ScalaSansPro', 'DM Sans', sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.5s, padding 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(14, 14, 10, 0.94);
  padding: 18px 60px;
  border-bottom: 0.5px solid var(--gold-faint);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  opacity: 1;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-burger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #e8dcc8;
  transition: width 0.3s, opacity 0.3s, transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}

.nav-burger span:last-child {
  width: 18px;
}

.nav-burger:hover span {
  width: 28px;
  opacity: 1;
}

.nav-logo a {
  display: block;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

@property --chase-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.nav-contact {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(232, 220, 200, 0.9);
  text-transform: uppercase;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
  border: 1.5px solid transparent;
  border-image: conic-gradient(
    from var(--chase-angle),
    rgba(0,0,0,0)          0deg  55deg,
    rgba(201,169,110,0.15) 55deg,
    rgba(201,169,110,0.95) 80deg,
    rgba(201,169,110,0.15) 105deg,
    rgba(0,0,0,0)          105deg 235deg,
    rgba(201,169,110,0.15) 235deg,
    rgba(201,169,110,0.95) 260deg,
    rgba(201,169,110,0.15) 285deg,
    rgba(0,0,0,0)          285deg 360deg
  ) 1;
  animation: nav-border-chase 2.2s linear infinite;
}
@keyframes nav-border-chase {
  to { --chase-angle: 360deg; }
}

/* Burger → X */
.nav-burger.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  width: 28px;
}
.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  width: 28px;
}

/* Nav state when menu is open */
body.menu-open nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
}
body.menu-open .nav-contact {
  opacity: 0;
  pointer-events: none;
}
body.menu-open {
  overflow: hidden;
}

/* ─── MENU OVERLAY ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.menu-overlay.is-open {
  pointer-events: all;
}
.menu-overlay__bg {
  position: absolute;
  inset: 0;
  background: #080806;
}
.menu-overlay__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0 60px 0 60px;
}
.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  gap: 0;
}
.menu-nav__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(201, 169, 110, 0.1);
  text-decoration: none;
  position: relative;
  overflow: visible;
}
.menu-nav__item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5px;
  width: 0;
  height: 0.5px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-nav__item:hover::after {
  width: 100%;
}
.menu-nav__num {
  font-family: 'ScalaSansPro', 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--gold);
  opacity: 0.45;
  min-width: 22px;
  padding-bottom: 6px;
}
.menu-nav__label {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color 0.3s, transform 0.3s;
  overflow: visible;
}
.menu-nav__item:hover .menu-nav__label {
  color: var(--gold);
  transform: translateX(6px);
}
.menu-nav__sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(242, 236, 224, 0.55);
  text-transform: uppercase;
  margin-left: auto;
  align-self: center;
  white-space: nowrap;
}
.menu-nav__cta-wrap {
  margin-top: 44px;
  display: none;
}
.menu-nav__cta {
  display: inline-block;
  font-family: 'ScalaSansPro', 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.menu-nav__cta:hover {
  background: var(--cream);
}

/* Right aside */
.menu-overlay__aside {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0 80px 60px;
  border-left: 0.5px solid rgba(201, 169, 110, 0.1);
}
.menu-aside__deco {
  width: 0.5px;
  height: 0;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.35), transparent);
  flex: 1;
  max-height: 200px;
}
.menu-aside__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  align-self: flex-end;
}
.menu-aside__info span {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(242, 236, 224, 0.55);
  text-transform: uppercase;
  display: block;
}

.menu-aside__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(242, 236, 224, 0.55);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-aside__link:hover {
  color: var(--gold);
}

.menu-aside__link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.menu-aside__link:hover svg {
  opacity: 1;
}

/* Mobile contact strip in overlay */
.menu-mobile-contact {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(201, 169, 110, 0.1);
}

.menu-mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(242, 236, 224, 0.55);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-mobile-contact a:hover {
  color: var(--gold);
}

.menu-mobile-contact svg {
  flex-shrink: 0;
  opacity: 0.55;
}

@media (max-width: 768px) {
  .menu-mobile-contact {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .menu-nav__sub { display: none; }
}
@media (max-width: 768px) {
  .menu-overlay {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-overlay__inner {
    height: auto;
    min-height: 100svh;
    padding: 0 32px;
  }

  .menu-overlay__aside {
    display: none;
  }

  .menu-overlay__nav {
    justify-content: flex-start;
    min-height: 100svh;
    padding: calc(92px + env(safe-area-inset-top)) 0 calc(36px + env(safe-area-inset-bottom));
  }

  .menu-nav__item {
    align-items: center;
    overflow: visible;
    padding: 12px 0;
  }

  .menu-nav__num {
    padding-bottom: 0;
  }

  .menu-nav__label {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.2;
    padding-top: 0.06em;
    padding-bottom: 0.06em;
  }

  .menu-nav__cta-wrap {
    display: block;
    margin-top: 28px;
  }
}
@media (max-width: 390px) {
  .menu-overlay__inner {
    padding: 0 24px;
  }

  .menu-overlay__nav {
    padding-top: calc(84px + env(safe-area-inset-top));
  }

  .menu-nav__label {
    font-size: clamp(30px, 10.5vw, 44px);
    line-height: 1.2;
  }
}

@media (max-width: 768px) and (max-height: 700px) {
  .menu-overlay__nav {
    padding-top: calc(74px + env(safe-area-inset-top));
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .menu-nav__item {
    padding: 8px 0;
  }

  .menu-nav__label {
    font-size: clamp(28px, 9.4vw, 42px);
    line-height: 1.2;
    padding-top: 0.05em;
    padding-bottom: 0.05em;
  }

  .menu-mobile-contact {
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--dark2);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.52;
  display: block;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 15%, rgba(10, 10, 7, 0.65) 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  z-index: 2;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
}

.hero-title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(88px, 13vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: #e0d4b8;
}

.hero-dots {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: rgba(201, 169, 110, 0.9);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-btns {
  margin-top: 38px;
  display: flex;
  gap: 14px;
}

.btn-gold {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.9);
  background: rgba(14, 14, 10, 0.25);
  border: 1px solid rgba(201, 169, 110, 0.6);
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.hero-bottom {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 60px;
}

.hero-quote {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.4);
  line-height: 1.6;
  max-width: 260px;
}

.scroll-ind {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 30px;
  height: 0.5px;
  background: var(--gold-dim);
}

.scroll-txt {
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.32em;
  color: rgba(201, 169, 110, 0.4);
  text-transform: uppercase;
}

/* ─── SHARED ─── */
.section-label {
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
}

/* ─── INTRO ─── */
.intro {
  background: var(--dark);
  padding: 130px 80px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}

.intro-heading {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.intro-heading em {
  font-style: italic;
  color: #d4c49a;
  display: block;
  margin-top: 12px;
}

.intro-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: rgba(242, 236, 224, 0.7);
  max-width: 460px;
}

.intro-stat {
  margin-top: 52px;
  display: flex;
  gap: 52px;
}

.stat-num {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.45);
  margin-top: 8px;
}

.intro-right {
  position: relative;
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark2);
  opacity: 0.88;
  display: block;
}

.intro-img--empty {
  background: var(--dark2);
  border: 0.5px solid var(--gold-faint);
}

.intro-img--video {
  object-fit: cover;
  object-position: center;
}

.intro-img--video-wrap {
  position: relative;
  cursor: pointer;
  display: block;
}

.intro-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: rgba(14, 14, 10, 0.45);
  border: 0.5px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.intro-play-btn svg {
  width: 32px;
  height: 32px;
}
.intro-img--video-wrap:hover .intro-play-btn {
  background: rgba(201, 169, 110, 0.18);
  transform: scale(1.08);
}

/* ── Intro video modal ── */
.intro-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.intro-video-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.intro-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 6, 0.92);
}
.intro-video-modal__inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.intro-video-modal__close {
  align-self: flex-end;
  margin-bottom: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0.5px solid rgba(201, 169, 110, 0.3);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.intro-video-modal__close svg {
  width: 18px;
  height: 18px;
}
.intro-video-modal__close:hover {
  border-color: var(--gold);
}
.intro-video-modal__video {
  width: 100%;
  max-height: calc(90vh - 60px);
  outline: none;
  display: block;
}

.intro-img-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--dark2);
  border: 0.5px solid var(--gold-faint);
  padding: 20px 24px;
}

.badge-line {
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
}

.badge-val {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-top: 4px;
}

/* ─── SERVICES INTRO ─── */
.services-intro {
  background: var(--dark);
  text-align: center;
  padding: 100px 60px 60px;
  max-width: 780px;
  margin: 0 auto;
}

.services-intro-title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.services-intro-title em {
  font-style: italic;
  color: #d4c49a;
}

.services-intro-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 236, 224, 0.5);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── SERVICES ─── */
.services-section {
  background-color: var(--dark);
  padding: 0;
  font-family: 'ScalaSansPro', 'DM Sans', sans-serif;
}

.services-container {
  width: 100%;
  max-width: 100%;
}

.service-item {
  width: 100%;
  padding: 15px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  gap: 15px;
}

.service-text-column {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  background-color: var(--dark2);
  display: flex;
  align-items: stretch;
}

.service-text-content {
  padding: 70px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-text-content h2 {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 24px 0;
  line-height: 1.2;
  color: var(--cream);
}

.service-text-content p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242, 236, 224, 0.65);
}

.service-text-content p:last-of-type {
  margin-bottom: 30px;
}

.service-btn {
  display: inline-block;
  padding: 13px 28px;
  background-color: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold-dim);
  text-decoration: none;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.service-btn:hover {
  background-color: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.service-image-column {
  flex: 0 0 calc(66.667% - 5px);
  max-width: calc(66.667% - 5px);
  overflow: hidden; /* zadržano za hover zoom */
  will-change: transform, opacity;
}

.service-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-item:hover .service-image-wrapper img {
  transform: scale(1.04);
}

.service-item[data-layout="text-left"] .service-grid { flex-direction: row; }
.service-item[data-layout="text-left"] .service-text-column { order: 1; }
.service-item[data-layout="text-left"] .service-image-column { order: 2; }
.service-item[data-layout="image-left"] .service-grid { flex-direction: row; }
.service-item[data-layout="image-left"] .service-text-column { order: 2; }
.service-item[data-layout="image-left"] .service-image-column { order: 1; }

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  nav {
    padding: 24px 40px;
  }

  nav.scrolled {
    padding: 16px 40px;
  }

  .hero-bottom {
    padding: 0 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: calc(14px + env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 14px max(20px, env(safe-area-inset-left));
    min-height: 76px;
  }

  nav.scrolled {
    padding: calc(10px + env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 10px max(20px, env(safe-area-inset-left));
  }

  .nav-contact {
    display: none;
  }

  .nav-logo img {
    height: clamp(62px, 18vw, 84px);
    max-width: 44vw;
    object-fit: contain;
  }

  /* Hero mobile */
  .hero {
    height: 100svh; /* safe area aware na iOS */
    min-height: 500px;
  }

  .hero-center {
    padding: 0 20px;
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(68px, 18vw, 96px);
  }

  .hero-dots {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 32px;
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .hero-bottom {
    padding: 0 20px;
    bottom: 28px;
  }

  .hero-quote {
    font-size: 13px;
    max-width: 180px;
  }

  /* Intro mobile */
  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px 72px;
  }

  .intro-heading {
    font-size: clamp(36px, 9vw, 52px);
    margin-bottom: 20px;
  }

  .intro-body {
    font-size: 15px;
    line-height: 1.85;
    max-width: 100%;
  }

  .intro-stat {
    margin-top: 36px;
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .stat-item {
    flex: 1;
    min-width: 0;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .intro-right {
    max-width: 100%;
    padding-bottom: 32px;
  }

  .intro-img {
    aspect-ratio: 4/3;
    min-height: 260px;
  }

  .intro-img-badge {
    bottom: -4px;
    left: 12px;
    padding: 14px 18px;
  }

  .badge-val {
    font-size: 18px;
  }

  .intro-stat {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 42px;
  }
}

/* Services intro mobile */
@media (max-width: 768px) {
  .services-intro {
    padding: 72px 24px 48px;
  }
}

/* Services tablet */
@media (max-width: 1199px) {
  .service-text-column,
  .service-image-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-grid {
    min-height: auto;
  }

  .service-image-wrapper {
    min-height: auto;
    height: auto;
    aspect-ratio: 16/10;
  }

  .service-item[data-layout="text-left"] .service-grid,
  .service-item[data-layout="image-left"] .service-grid {
    flex-direction: column;
  }

  .service-item[data-layout="text-left"] .service-text-column { order: 2; }
  .service-item[data-layout="text-left"] .service-image-column { order: 1; }
  .service-item[data-layout="image-left"] .service-text-column { order: 1; }
  .service-item[data-layout="image-left"] .service-image-column { order: 2; }
}

/* Services mobile */
@media (max-width: 640px) {
  .service-item {
    padding: 0 0 32px 0;
  }

  .service-grid {
    flex-direction: column !important;
    gap: 0;
  }

  .service-text-column,
  .service-image-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-image-column {
    padding: 0 24px;
  }

  .service-image-wrapper {
    aspect-ratio: 4/3;
    min-height: unset;
  }

  .service-text-content {
    padding: 28px 24px 32px;
  }

  .service-text-content h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .service-eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .service-text-content p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .service-btn {
    padding: 12px 24px;
    font-size: 9px;
  }
}

/* ─── REVEAL BANNER ─── */
.reveal-banner {
  background: var(--dark);
}

.reveal-banner__frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.reveal-banner__inner {
  position: absolute;
  inset: 0;
  transform: scale(0.36);
  transform-origin: center center;
  will-change: transform;
}

.reveal-banner__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.reveal-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8%;
  background: rgba(10, 10, 7, 0.38);
  opacity: 0;
  pointer-events: none;
}

.reveal-banner__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.85);
  margin-bottom: 28px;
  order: 2;
}

.reveal-banner__title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6.5vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 40px;
  order: 1;
}

.reveal-banner__cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(242, 236, 224, 0.5);
  padding-bottom: 4px;
  transition: border-color 0.3s;
  pointer-events: auto;
  order: 3;
}

.reveal-banner__cta:hover {
  border-color: var(--cream);
}

@media (max-width: 1024px) {
  /* Tablet */
  .reveal-banner__frame {
    height: 100svh;
  }

  .reveal-banner__inner {
    /* Početni scale manji na tabletu da se vidi efekat */
    transform: scale(0.42);
  }
}

@media (max-width: 768px) {
  /* Mobilni */
  .reveal-banner__frame {
    height: 100svh;
  }

  .reveal-banner__inner {
    /* Na mobilnom portrait ekranu slika mora da pokrije visinu */
    transform: scale(0.45);
  }

  .reveal-banner__inner img {
    /* Na portrait ekranima fokus na sredinu */
    object-position: center 40%;
  }

  .reveal-banner__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    margin-bottom: 20px;
  }

  .reveal-banner__overlay {
    padding: 0 6% 10%;
  }
}

/* ─── DUAL SWAP ─── */
.dual-swap {
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.dual-swap__frame {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dual-swap__side {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.dual-swap__side--right {
  background: var(--dark);
}

.dual-swap__inner {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform-origin: center center;
}

.dual-swap__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .dual-swap__frame {
    flex-direction: column;
    height: 100svh;
  }

  .dual-swap__side {
    width: 100%;
    height: 50%;
    flex-shrink: 0;
  }

  .dual-swap__side--right { order: 1; }
  .dual-swap__side--left  { order: 2; }
}

/* ─── TEXT BANNER ─── */
.text-banner {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72vh;
  padding: 96px 24px;
}

.text-banner__inner {
  text-align: center;
  max-width: 820px;
}

.text-banner__title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.4vw, 98px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0;
  text-transform: none;
  line-height: 0.98;
  margin-bottom: 34px;
}

.text-banner__body {
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 300;
  color: rgba(242, 236, 224, 0.68);
  line-height: 1.85;
  letter-spacing: 0.01em;
  max-width: 700px;
  margin: 0 auto 42px;
}

.text-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  text-decoration: none;
  border: 0.5px solid var(--gold);
  padding: 0 34px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.text-banner__cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .text-banner {
    min-height: auto;
    padding: 82px 28px;
  }

  .text-banner__inner {
    text-align: left;
  }

  .text-banner__title {
    font-size: clamp(44px, 14vw, 68px);
    margin-bottom: 28px;
  }

  .text-banner__body {
    margin-bottom: 34px;
  }

  .text-banner__cta {
    width: 100%;
    max-width: 320px;
  }
}

/* ─── HOME GALLERY ─── */
.home-gallery {
  background: var(--dark);
  padding: 120px 0 110px;
  border-top: 0.5px solid var(--gold-faint);
  overflow: hidden;
}

.home-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 0 60px;
  margin-bottom: 56px;
}

.home-gallery__title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}

.home-gallery__title em {
  font-style: italic;
  color: #d4c49a;
}

.home-gallery__cta {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.62);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(201, 169, 110, 0.36);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}

.home-gallery__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.home-gallery__cta-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 0 60px 34px;
}

.home-gallery__track-wrap {
  overflow: hidden;
  padding-left: 60px;
  cursor: grab;
  user-select: none;
}

.home-gallery__track-wrap:active {
  cursor: grabbing;
}

.home-gallery__track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-gallery__slide {
  flex: 0 0 min(72vw, 860px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.home-gallery__img {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-gallery__slide:hover .home-gallery__img {
  transform: scale(1.04);
}

.home-gallery__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 36px 60px 0;
}

.home-gallery__btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0.5px solid rgba(201, 169, 110, 0.28);
  color: rgba(242, 236, 224, 0.45);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  -webkit-appearance: none;
}

.home-gallery__btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}

.home-gallery__btn:disabled {
  opacity: 0.2;
  cursor: default;
}

.home-gallery__counter {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.22em;
  color: rgba(242, 236, 224, 0.28);
  min-width: 52px;
  text-align: center;
}

.home-gallery__counter strong {
  font-weight: 300;
  color: rgba(242, 236, 224, 0.65);
}

@media (max-width: 768px) {
  .home-gallery {
    padding: 84px 0 76px;
  }

  .home-gallery__header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 28px;
    margin-bottom: 40px;
  }

  .home-gallery__cta-wrap {
    justify-content: flex-start;
    padding: 0 28px 28px;
  }

  .home-gallery__cta {
    font-size: 9px;
    letter-spacing: 0.26em;
  }

  .home-gallery__track-wrap {
    padding-left: 28px;
  }

  .home-gallery__slide {
    flex: 0 0 min(88vw, 520px);
  }

  .home-gallery__nav {
    padding: 28px 28px 0;
  }
}

/* ─── KONTAKT ─── */
.kontakt {
  background: var(--dark);
  padding: 120px 24px;
}

.kontakt__inner {
  max-width: 880px;
  margin: 0 auto;
}

.kontakt__header {
  margin-bottom: 64px;
}

.kontakt__eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.kontakt__title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}

.kontakt__title em {
  font-style: italic;
  color: var(--gold);
}

.kontakt__row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.kontakt__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt__field--full {
  margin-bottom: 24px;
}

.kontakt__field label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.5);
}

.kontakt__field input,
.kontakt__field select,
.kontakt__field textarea {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(242, 236, 224, 0.2);
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.kontakt__field input::placeholder,
.kontakt__field textarea::placeholder {
  color: rgba(242, 236, 224, 0.25);
}

.kontakt__field input:focus,
.kontakt__field select:focus,
.kontakt__field textarea:focus {
  border-bottom-color: var(--gold);
}

/* Custom select */
.k-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.k-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(242, 236, 224, 0.2);
  transition: border-color 0.3s;
  color: rgba(242, 236, 224, 0.25);
  font-size: 14px;
  font-weight: 300;
}

.k-select.is-open .k-select__trigger,
.k-select.has-val .k-select__trigger {
  border-bottom-color: var(--gold);
}

.k-select.has-val .k-select__val {
  color: var(--cream);
}

.k-select__arrow {
  color: rgba(242, 236, 224, 0.4);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.k-select.is-open .k-select__arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.k-select__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1a1a16;
  border: 0.5px solid rgba(201, 169, 110, 0.25);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.k-select.is-open .k-select__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.k-select__list li {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.7);
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.k-select__list li:hover,
.k-select__list li.is-active {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

.kontakt__field textarea {
  resize: none;
}

.kontakt__submit {
  margin-top: 48px;
}

.kontakt__btn {
  display: inline-block;
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--cream);
  font-family: inherit;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  padding: 18px 48px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.kontakt__btn:hover {
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 768px) {
  .kontakt {
    padding: 80px 24px;
  }

  .kontakt__row {
    flex-direction: column;
    gap: 0;
  }

  .kontakt__field {
    margin-bottom: 24px;
  }
}

/* Small phones */
@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(58px, 16vw, 80px);
  }

  .hero-dots {
    font-size: 9px;
    font-weight: 700;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  margin-top: 0;
  padding: 56px 24px 22px;
  border-top: 0.5px solid var(--gold-faint);
  background:
    radial-gradient(circle at top center, rgba(201,169,110,0.08), transparent 34%),
    linear-gradient(180deg, rgba(18,18,14,0.98) 0%, rgba(10,10,8,1) 100%);
}

.site-footer__inner {
  display: grid;
  gap: 36px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__eyebrow {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.56);
  margin-bottom: 18px;
}

.site-footer__title {
  font-family: 'CanelaCondensed', 'Cormorant Garamond', serif;
  font-size: clamp(36px, 11vw, 76px);
  line-height: 0.96;
  font-weight: 300;
  color: var(--cream);
}

.site-footer__title em {
  font-style: italic;
  color: #d4c49a;
}

.site-footer__logo {
  width: min(168px, 40.6vw);
  height: auto;
  display: block;
  opacity: 0.95;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 18px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__label {
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.56);
}

.site-footer__col a,
.site-footer__col span {
  color: rgba(242,236,224,0.58);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.25s;
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer__contact-link svg {
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.25s;
}

.site-footer__contact-link:hover svg {
  opacity: 0.85;
}

.site-footer__bottom {
  max-width: 1440px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 0.5px solid rgba(201,169,110,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__bottom span,
.site-footer__bottom a {
  color: rgba(242,236,224,0.34);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__bottom a:hover {
  color: var(--gold);
}

@media (min-width: 900px) {
  .site-footer {
    padding: 76px 60px 24px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 40px;
  }

  .site-footer__logo {
    width: min(196px, 15.4vw);
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    justify-self: end;
    width: min(100%, 420px);
  }

  .site-footer__bottom {
    margin-top: 44px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
