/* ══════════════════════════════════════
   COUCHLINE — Premium CSS
══════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --ink:       #07060A;
  --ink-2:     #100F14;
  --ink-3:     #1A1820;
  --ink-4:     #0D0C10;
  --gold:      #C59B5F;
  --gold-l:    #E0C99A;
  --gold-dim:  rgba(197,155,95,.12);
  --gold-glow: rgba(197,155,95,.08);
  --cream:     #F0EAE0;
  --cream-2:   #D8CFC4;
  --muted:     #7A7269;
  --white:     #FDFCFA;
  --ease:      cubic-bezier(.76,0,.24,1);
  --ease-out:  cubic-bezier(.22,1,.36,1);
  --ease-in:   cubic-bezier(.55,0,1,.45);
  --dur:       .7s;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .5;
  mix-blend-mode: overlay;
}

/* ── CUSTOM CURSOR ── */
#cur-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); z-index: 10000; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .15s var(--ease), height .15s var(--ease), background .2s;
  will-change: transform;
}
#cur-ring {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(197,155,95,.45); z-index: 9999; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .45s var(--ease), height .45s var(--ease), opacity .3s, border-color .3s;
  will-change: transform;
}
#cur-label {
  position: fixed; z-index: 10001; pointer-events: none;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0;
  transform: translate(22px, -50%); transition: opacity .3s;
  white-space: nowrap;
}
body.cursor-hover #cur-dot { width: 0; height: 0; }
body.cursor-hover #cur-ring { width: 80px; height: 80px; border-color: var(--gold); }
body.cursor-hover #cur-label { opacity: 1; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 36px;
}
#preloader.done { opacity: 0; pointer-events: none; transition: opacity .9s var(--ease) .3s; }
.pre-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 78px); font-weight: 300;
  letter-spacing: 18px; color: var(--cream);
  overflow: hidden;
}
.pre-logo span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.pre-line { width: 0; height: 1px; background: var(--gold); transition: width 1.4s var(--ease) .5s; }
#preloader.active .pre-logo span { transform: translateY(0); }
#preloader.active .pre-line { width: 220px; }

/* ══════════════════════
   NAVIGATION
══════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 96px;
  transition: height .5s var(--ease), background .5s, border-color .5s;
}
nav.solid {
  height: 72px;
  background: rgba(7,6,10,.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(197,155,95,.12);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity .3s;
}
.nav-logo-img:hover { opacity: .8; }
.nav-right { display: flex; align-items: center; gap: 52px; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); padding: 11px 24px;
  border: 1px solid rgba(197,155,95,.38);
  transition: all .3s;
}
.nav-btn:hover { background: var(--gold); color: var(--ink); }

/* ══════════════════════
   HERO SLIDER
══════════════════════ */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #07060A 0%, #1A1520 100%);
}
.hero-slide-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .42;
  transform: scale(1.06);
  transition: transform 12s ease, opacity 1.4s;
}
.hero-slide.active .hero-slide-bg img { transform: scale(1.0); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,6,10,.88) 38%, rgba(7,6,10,.3) 80%, transparent 100%);
  pointer-events: none;
}
.hero-slide-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  pointer-events: none;
}
.hero-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 88px 100px;
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.hero-slide-left { max-width: 720px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 300; line-height: .95;
  color: var(--white); margin-bottom: 32px;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero-slide.active .hero-title .line-inner { transform: translateY(0); }
.hero-slide.active .hero-title .line-inner:nth-child(1) { transition-delay: .1s; }
.hero-slide.active .hero-title .line-inner:nth-child(2) { transition-delay: .22s; }
.hero-slide.active .hero-title .line-inner:nth-child(3) { transition-delay: .34s; }
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-title .thin { font-weight: 300; font-size: .68em; }
.hero-sub {
  font-size: 15px; line-height: 1.85; color: var(--cream-2);
  max-width: 440px; margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); transition-delay: .6s; }
.hero-actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); transition-delay: .78s; }
.hero-slide-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
  padding-bottom: 8px;
}
.hero-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; color: var(--muted); letter-spacing: 2px;
}
.hero-counter span { color: var(--gold); font-size: 22px; }
.hero-progress-wrap { display: flex; flex-direction: column; gap: 8px; }
.hero-prog-dot {
  width: 1px; height: 32px;
  background: rgba(197,155,95,.2);
  position: relative; overflow: hidden;
  cursor: pointer; transition: width .3s;
}
.hero-prog-dot:hover { width: 2px; }
.hero-prog-dot::after {
  content: ''; position: absolute; top: -32px; left: 0;
  width: 100%; height: 32px; background: var(--gold);
  transition: top .3s ease;
}
.hero-prog-dot.active::after { animation: dotFill 6s linear forwards; }
@keyframes dotFill { 0% { top: -32px; } 100% { top: 0; } }
.btn-hero { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; }
.btn-hero-fill { background: var(--gold); color: var(--ink); padding: 16px 38px; transition: background .3s, transform .2s; }
.btn-hero-fill:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-hero-ghost { color: var(--cream-2); border-bottom: 1px solid rgba(197,155,95,.3); padding-bottom: 3px; transition: color .3s, border-color .3s; }
.btn-hero-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-scroll {
  position: absolute; right: 64px; bottom: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-text {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl;
}
.hero-scroll-bar { width: 1px; height: 56px; background: rgba(197,155,95,.18); position: relative; overflow: hidden; }
.hero-scroll-bar::after {
  content: ''; position: absolute; top: -56px; left: 0;
  width: 100%; height: 56px; background: var(--gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -56px; } 60% { top: 56px; } 100% { top: 56px; } }
.hero-year {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 170px; font-weight: 300;
  color: rgba(197,155,95,.035); letter-spacing: -6px;
  user-select: none; z-index: 1; line-height: 1; pointer-events: none;
}

/* ══════════════════════
   MARQUEE
══════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(197,155,95,.1);
  border-bottom: 1px solid rgba(197,155,95,.1);
  background: var(--ink-2); padding: 20px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeRun 30s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 44px; padding: 0 44px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.6vw, 19px); font-weight: 300;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marqueeRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════
   SECTION LABELS
══════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 66px); font-weight: 300;
  line-height: 1.1; color: var(--white);
}
.section-h2 em { color: var(--gold); font-style: italic; }
.gold-line { display: block; width: 0; height: 1px; background: var(--gold); transition: width 1.2s var(--ease); margin: 18px 0; }
.gold-line.in { width: 80px; }

/* ══════════════════════
   STATEMENT
══════════════════════ */
.statement { padding: 160px 88px; position: relative; overflow: hidden; }
.statement-bg-num {
  position: absolute; left: -30px; top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 26vw, 360px); font-weight: 300; line-height: 1;
  color: rgba(197,155,95,.035); pointer-events: none; user-select: none; letter-spacing: -12px;
}
.statement-inner { max-width: 960px; position: relative; z-index: 1; }
.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.2vw, 60px); font-weight: 300; line-height: 1.35; color: var(--white);
}
.statement-text em { color: var(--gold); font-style: italic; }
.statement-text .accent { display: inline-block; border-bottom: 1px solid rgba(197,155,95,.4); padding-bottom: 2px; }
.statement-footer {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 0; margin-top: 90px; padding-top: 44px;
  border-top: 1px solid rgba(197,155,95,.1); flex-wrap: wrap;
}
.statement-stat { text-align: center; padding: 20px 60px; border-right: 1px solid rgba(197,155,95,.12); }
.statement-stat:first-child { padding-left: 0; }
.statement-stat:last-child { border-right: none; }
.statement-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 78px); font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.statement-stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 10px; display: block; }

/* ══════════════════════
   FIND YOUR SOFA SLIDER
══════════════════════ */
.collection { padding: 0 0 140px; position: relative; }
.collection-header {
  padding: 0 88px;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 70px; flex-wrap: wrap; gap: 24px;
}
.collection-header-right { font-size: 14px; line-height: 1.9; color: var(--muted); max-width: 300px; text-align: right; }
.col-slider-wrap { position: relative; overflow: hidden; padding: 0 88px; }
.col-slider {
  display: flex; gap: 28px;
  transition: transform .9s var(--ease);
  will-change: transform;
}
.col-card {
  flex: 0 0 calc(33.333% - 20px);
  position: relative; overflow: hidden;
  border: 1px solid rgba(197,155,95,.07);
  transition: border-color .4s; cursor: none;
}
.col-card:hover { border-color: rgba(197,155,95,.22); }
.col-card-img { height: clamp(360px, 50vh, 540px); overflow: hidden; position: relative; }
.col-card-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform .9s var(--ease); }
.col-card:hover .col-card-img img { transform: scale(1.12); }
.col-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,6,10,.92) 0%, rgba(7,6,10,.1) 55%);
  pointer-events: none; transition: opacity .4s;
}
.col-card-num { position: absolute; top: 22px; left: 22px; font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 2px; color: var(--gold); }
.col-card-badge { position: absolute; top: 20px; right: 20px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 5px 12px; }
.col-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; transform: translateY(72px); transition: transform .55s var(--ease); }
.col-card:hover .col-card-body { transform: translateY(0); }
.col-card-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.col-card-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 2.8vw, 34px); font-weight: 400; color: var(--white); margin-bottom: 14px; }
.col-card-desc { font-size: 13px; line-height: 1.75; color: var(--cream-2); opacity: 0; transition: opacity .4s ease .1s; }
.col-card:hover .col-card-desc { opacity: 1; }
.col-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; opacity: 0; transition: opacity .4s ease .15s; }
.col-card:hover .col-card-footer { opacity: 1; }
.col-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); transition: gap .3s; }
.col-card-link:hover { gap: 14px; }
.col-card-view-btn { width: 38px; height: 38px; border: 1px solid rgba(197,155,95,.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; transition: background .3s, border-color .3s; cursor: none; }
.col-card-view-btn:hover { background: var(--gold-dim); border-color: var(--gold); }
.col-controls { display: flex; align-items: center; justify-content: space-between; padding: 48px 88px 0; }
.col-controls-left { display: flex; align-items: center; gap: 16px; }
.col-dots { display: flex; gap: 10px; }
.col-dot { width: 28px; height: 2px; background: rgba(197,155,95,.2); transition: background .4s, width .4s var(--ease); cursor: pointer; }
.col-dot.active { background: var(--gold); width: 44px; }
.col-arrows { display: flex; gap: 8px; }
.col-arrow { width: 48px; height: 48px; border: 1px solid rgba(197,155,95,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; transition: background .3s, border-color .3s, transform .2s; cursor: none; }
.col-arrow:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }
.col-controls-right { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 2px; }
.col-controls-right span { color: var(--gold); }

/* ══════════════════════
   CRAFT SECTION
══════════════════════ */
.craft {
  padding: 160px 88px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 100px; align-items: center;
  background: var(--ink-2); position: relative; overflow: hidden;
}
.craft-bg-text {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 20vw, 290px); font-weight: 300;
  color: rgba(197,155,95,.025); letter-spacing: -10px;
  pointer-events: none; user-select: none; line-height: 1;
}
.craft-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; position: relative; }
.craft-img-main { grid-column: 1 / 3; height: clamp(260px, 36vh, 420px); overflow: hidden; border: 1px solid rgba(197,155,95,.08); }
.craft-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.craft-img-main:hover img { transform: scale(1.04); }
.craft-img-s { height: clamp(140px, 19vh, 210px); overflow: hidden; border: 1px solid rgba(197,155,95,.08); position: relative; cursor: none; }
.craft-img-s img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.craft-img-s:hover img { transform: scale(1.07); }
.craft-img-s .view-overlay { position: absolute; inset: 0; background: rgba(7,6,10,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; color: var(--gold); font-size: 22px; }
.craft-img-s:hover .view-overlay { opacity: 1; }
.craft-badge {
  position: absolute; bottom: -18px; right: -18px;
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  box-shadow: 0 20px 60px rgba(197,155,95,.28);
  z-index: 2; animation: badgeSpin 20s linear infinite;
}
@keyframes badgeSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.craft-badge-icon { font-size: 22px; margin-bottom: 4px; }
.craft-badge-text { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; line-height: 1.4; }
.craft-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 66px); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 28px; }
.craft-title em { color: var(--gold); font-style: italic; }
.craft-text { font-size: 15px; line-height: 1.95; color: var(--muted); margin-bottom: 44px; }
.craft-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.craft-feature { display: flex; gap: 22px; align-items: flex-start; padding: 22px; border: 1px solid rgba(197,155,95,.1); transition: border-color .3s, background .3s, transform .3s; }
.craft-feature:hover { border-color: rgba(197,155,95,.3); background: rgba(197,155,95,.04); transform: translateX(6px); }
.craft-feature-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid rgba(197,155,95,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; }
.craft-feature h4 { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 5px; }
.craft-feature p { font-size: 13px; line-height: 1.65; color: var(--muted); }
.btn-craft { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cream); padding-bottom: 12px; border-bottom: 1px solid rgba(197,155,95,.25); transition: color .3s, border-color .3s, gap .3s; }
.btn-craft:hover { color: var(--gold); border-color: var(--gold); gap: 22px; }

/* ══════════════════════
   STATS STRIP
══════════════════════ */
.stats-strip {
  padding: 100px 88px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(197,155,95,.1);
  border-bottom: 1px solid rgba(197,155,95,.1);
  background: var(--ink-4);
}
.stat-item { padding: 44px 40px; text-align: center; border-right: 1px solid rgba(197,155,95,.1); transition: background .3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(197,155,95,.04); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 90px); font-weight: 300; color: var(--gold); line-height: 1; display: block; margin-bottom: 18px; }
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); display: block; }
.stat-desc { font-size: 13px; color: rgba(197,155,95,.55); margin-top: 8px; display: block; }

/* ══════════════════════
   QUOTE SECTION
══════════════════════ */
.quote-section { padding: 180px 88px; position: relative; overflow: hidden; text-align: center; }
.quote-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); }
.quote-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .06; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 130px; font-weight: 300; color: var(--gold); line-height: .5; display: block; margin-bottom: 28px; position: relative; z-index: 1; }
.quote-text { position: relative; z-index: 1; font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 4vw, 54px); font-weight: 300; font-style: italic; line-height: 1.4; color: var(--white); max-width: 840px; margin: 0 auto 52px; }
.quote-author { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 18px; }
.quote-author-line { width: 44px; height: 1px; background: rgba(197,155,95,.4); }
.quote-author-name { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════
   TESTIMONIALS SLIDER
══════════════════════ */
.testimonials { padding: 140px 88px; background: var(--ink-2); }
.testi-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; flex-wrap: wrap; gap: 24px; }
.testi-slider-wrap { position: relative; overflow: hidden; }
.testi-slider { display: flex; gap: 28px; transition: transform .9s var(--ease); }
.testi-card { flex: 0 0 calc(33.333% - 20px); padding: 48px; background: var(--ink); border: 1px solid rgba(197,155,95,.07); transition: border-color .4s, background .4s; position: relative; overflow: hidden; }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height .5s var(--ease); }
.testi-card:hover { border-color: rgba(197,155,95,.2); background: rgba(197,155,95,.02); }
.testi-card:hover::before { height: 100%; }
.testi-stars { display: flex; gap: 5px; margin-bottom: 28px; }
.testi-stars span { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 300; font-style: italic; line-height: 1.75; color: var(--cream-2); margin-bottom: 36px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink-3); border: 1px solid rgba(197,155,95,.2); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold); }
.testi-name { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.testi-location { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.testi-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 52px; flex-wrap: wrap; gap: 20px; }
.testi-dots { display: flex; gap: 10px; }
.testi-dot { width: 28px; height: 2px; background: rgba(197,155,95,.2); cursor: pointer; transition: background .4s, width .4s var(--ease); }
.testi-dot.active { background: var(--gold); width: 44px; }
.testi-arrows { display: flex; gap: 8px; }
.testi-arrow { width: 48px; height: 48px; border: 1px solid rgba(197,155,95,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; transition: background .3s, border-color .3s, transform .2s; cursor: none; }
.testi-arrow:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }

/* ══════════════════════
   PROCESS
══════════════════════ */
.process { padding: 160px 88px; position: relative; }
.process-header { margin-bottom: 110px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 9%; right: 9%; height: 1px; background: linear-gradient(to right, transparent, rgba(197,155,95,.2) 20%, rgba(197,155,95,.2) 80%, transparent); }
.p-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 28px; }
.p-num { width: 58px; height: 58px; border: 1px solid rgba(197,155,95,.28); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--gold); position: relative; z-index: 1; background: var(--ink); margin-bottom: 36px; transition: background .4s, border-color .4s, transform .4s; }
.p-step:hover .p-num { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: scale(1.1); }
.p-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.p-step p { font-size: 13px; line-height: 1.75; color: var(--muted); }

/* ══════════════════════
   CONTACT
══════════════════════ */
.contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.contact-left { background: var(--gold); padding: 110px 88px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; right: -110px; top: -110px; width: 420px; height: 420px; border-radius: 50%; background: rgba(0,0,0,.07); }
.contact-left::after { content: ''; position: absolute; left: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(0,0,0,.05); }
.contact-left-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(7,6,10,.55); margin-bottom: 22px; }
.contact-left-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5.5vw, 74px); font-weight: 300; line-height: 1.1; color: var(--ink); position: relative; z-index: 1; }
.contact-left-items { display: flex; flex-direction: column; gap: 30px; }
.contact-left-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-left-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(7,6,10,.08); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink); }
.contact-left-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(7,6,10,.5); margin-bottom: 5px; }
.contact-left-value { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-left-value a { color: var(--ink); transition: opacity .2s; }
.contact-left-value a:hover { opacity: .65; }
.contact-wa { display: inline-flex; align-items: center; gap: 11px; background: var(--ink); color: var(--gold); padding: 15px 30px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: background .3s; margin-top: 5px; }
.contact-wa:hover { background: #1a1018; }
.contact-right { background: var(--ink-2); padding: 110px 88px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: var(--white); margin-bottom: 48px; }
.form-field { margin-bottom: 26px; }
.form-field label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 11px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 14px 0; background: transparent; border: none; border-bottom: 1px solid rgba(197,155,95,.2); color: var(--cream); font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .3s; -webkit-appearance: none; appearance: none;}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { height: 90px; resize: none; }
.form-field select { cursor: none; }
.form-field select option { background: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.btn-form { width: 100%; padding: 19px; background: var(--gold); color: var(--ink); border: none; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; cursor: none; transition: background .3s, transform .2s; margin-top: 14px; }
.btn-form:hover { background: var(--gold-l); transform: translateY(-2px); }

/* ══════════════════════
   FOOTER
══════════════════════ */
footer { background: var(--ink-4); border-top: 1px solid rgba(197,155,95,.1); padding: 90px 88px 56px; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(197,155,95,.08); margin-bottom: 44px; }
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 22px;
}
.footer-desc { font-size: 13px; line-height: 1.85; color: var(--muted); max-width: 290px; margin-bottom: 36px; }
.footer-socials { display: flex; gap: 12px; }
.f-social { width: 40px; height: 40px; border: 1px solid rgba(197,155,95,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); transition: all .3s; }
.f-social:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cream); margin-bottom: 26px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { font-size: 13px; color: var(--muted); transition: color .3s, padding-left .3s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(197,155,95,.32); letter-spacing: 1px; }
.footer-made { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: rgba(197,155,95,.22); }

/* ══════════════════════
   LIGHTBOX
══════════════════════ */
#lightbox { position: fixed; inset: 0; z-index: 15000; background: rgba(7,6,10,.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease); }
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; transform: scale(.92); transition: transform .5s var(--ease); }
#lightbox.open .lb-inner { transform: scale(1); }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 1px solid rgba(197,155,95,.12); }
.lb-close { position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border: 1px solid rgba(197,155,95,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; cursor: none; transition: background .3s, border-color .3s; }
.lb-close:hover { background: var(--gold-dim); border-color: var(--gold); }
.lb-caption { position: absolute; bottom: -52px; left: 0; right: 0; text-align: center; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.lb-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid rgba(197,155,95,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 15px; cursor: none; transition: background .3s, border-color .3s; }
.lb-nav-btn:hover { background: var(--gold-dim); border-color: var(--gold); }
.lb-prev { right: calc(100% + 20px); }
.lb-next { left: calc(100% + 20px); }

/* ══════════════════════
   REVEAL ANIMATIONS
══════════════════════ */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1200px) {
  .col-card { flex: 0 0 calc(50% - 14px); }
  .craft { grid-template-columns: 1fr; padding: 100px 48px; gap: 60px; }
  .craft-bg-text { display: none; }
}
@media (max-width: 1100px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(197,155,95,.1); }
  .testi-card { flex: 0 0 calc(50% - 14px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 56px; }
  .process-steps::before { display: none; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-right .nav-btn { display: none; }
  .hero-slide-content { padding: 0 28px 80px; flex-direction: column; gap: 24px; }
  .hero-slide-right { flex-direction: row; }
  .hero-year { display: none; }
  .statement, .process, .testimonials, .stats-strip { padding: 80px 28px; }
  .collection-header, .col-slider-wrap, .col-controls, .craft, .contact-left, .contact-right, footer { padding-left: 28px; padding-right: 28px; }
  .col-card { flex: 0 0 calc(100% - 0px); }
  .testi-card { flex: 0 0 100%; }
  .contact-left { padding: 70px 28px; }
  .contact-right { padding: 70px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { display: none; }
}

/* ══ NAV & FOOTER LOGO IMAGE ══ */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 28px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); transition: opacity .3s;
}
.nav-logo-img:hover { opacity: .75; }
.footer-logo-img {
  height: 34px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); display: block; margin-bottom: 24px;
}

/* ══ COLLECTION CARD — CLICK OVERLAY ══ */
.col-card { cursor: none; }
.col-card-click-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: rgba(7,6,10,0); transition: background .45s var(--ease); pointer-events: none;
}
.col-card-click-overlay i { font-size: 30px; color: var(--gold); opacity: 0; transform: scale(.7); transition: opacity .4s ease, transform .4s var(--ease-out); }
.col-card-click-overlay span { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream); opacity: 0; transform: translateY(8px); transition: opacity .4s ease .06s, transform .4s var(--ease-out) .06s; }
.col-card:hover .col-card-click-overlay { background: rgba(7,6,10,.42); pointer-events: all; }
.col-card:hover .col-card-click-overlay i { opacity: 1; transform: scale(1); }
.col-card:hover .col-card-click-overlay span { opacity: 1; transform: translateY(0); }

/* ══ COLLECTION SECTION — Premium spacing ══ */
#kolekcija { padding-top: 160px; padding-bottom: 100px; }
.collection-header { padding: 0 88px; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; flex-wrap: wrap; gap: 32px; }
.collection-header-left { max-width: 520px; }
.collection-header-right { font-size: 14px; line-height: 1.95; color: var(--muted); max-width: 300px; text-align: right; padding-bottom: 6px; }

/* ══ STATEMENT STATS — Fixed 4-column grid ══ */
.statement-footer { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; padding-top: 50px; border-top: 1px solid rgba(197,155,95,.1); gap: 0; }
.statement-stat { text-align: center; padding: 24px 32px; border-right: 1px solid rgba(197,155,95,.1); transition: background .3s; }
.statement-stat:last-child { border-right: none; }
.statement-stat:hover { background: rgba(197,155,95,.03); }

/* ══ LIGHTBOX — Premium ══ */
#lightbox { backdrop-filter: blur(14px) saturate(160%); }
.lb-img { box-shadow: 0 40px 120px rgba(0,0,0,.85); }

/* ══════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(197,155,95,.25);
  cursor: pointer;
  padding: 10px;
  transition: border-color .3s;
  flex-shrink: 0;
}
.nav-burger:hover { border-color: var(--gold); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s, width .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══ HAMBURGER BUTTON ══ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(197,155,95,.25);
  cursor: pointer;
  padding: 10px;
  transition: border-color .3s;
  flex-shrink: 0;
}
.nav-burger:hover { border-color: var(--gold); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s, width .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══ MOBILE MENU OVERLAY ══ */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5999;
  background: rgba(7,6,10,.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
  backdrop-filter: blur(4px);
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  z-index: 6000;
  background: var(--ink-2);
  border-left: 1px solid rgba(197,155,95,.12);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Top bar */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(197,155,95,.1);
  flex-shrink: 0;
}
.mobile-menu-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-menu-close {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(197,155,95,.2);
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.mobile-menu-close:hover { border-color: var(--gold); color: var(--gold); }

/* Nav links — flex grow fills space */
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 12px 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--cream-2);
  border-bottom: 1px solid rgba(197,155,95,.07);
  transition: color .3s, background .3s, padding-left .3s;
  position: relative;
}
.mobile-nav-link::before {
  content: attr(data-num);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(197,155,95,.5);
  width: 20px;
  flex-shrink: 0;
}
.mobile-nav-link:active,
.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(197,155,95,.04);
  padding-left: 36px;
}

/* Footer — pinned to bottom */
.mobile-menu-footer {
  flex-shrink: 0;
  padding: 24px 28px;
  border-top: 1px solid rgba(197,155,95,.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s;
}
.mobile-cta:hover { background: var(--gold-l); }
.mobile-socials { display: flex; gap: 10px; }

/* ══ MOBILE RESPONSIVE ══ */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  body.menu-open { overflow: hidden; }

  /* Mobile = full width panel */
  .mobile-menu { width: 100vw; border-left: none; }

  /* Nav solid background — logo ne viri kroz hero */
  nav {
    padding: 0 20px !important;
    height: 64px !important;
    background: rgba(7,6,10,.96) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(197,155,95,.12) !important;
  }
  .nav-logo-img { height: 20px; }

  /* Sakrij cursor elemente */
  #cur-dot, #cur-ring, #cur-label { display: none !important; }
  body { cursor: auto !important; }
  a, button { cursor: pointer !important; }

  /* Hero adjustments */
  .hero-scroll, .hero-year { display: none; }
}

/* Touch devices — sakrij cursor */
@media (hover: none) and (pointer: coarse) {
  #cur-dot, #cur-ring, #cur-label { display: none !important; }
  body { cursor: auto !important; }
}

/* ══════════════════════════════
   MOBILE FIXES
══════════════════════════════ */

/* 1. Sakrij custom cursor na touch uređajima */
@media (hover: none) and (pointer: coarse) {
  #cur-dot, #cur-ring, #cur-label { display: none !important; }
  body { cursor: auto !important; }
  a, button, [data-cursor], .col-card, .craft-feature, .btn-form { cursor: pointer !important; }
  .btn-form { cursor: pointer !important; }
}

/* 2. Nav — solid background na mobitelu da logo ne viri kroz hero */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 68px;
    background: rgba(7,6,10,.95) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197,155,95,.12);
  }
  nav.solid {
    height: 64px;
  }

  /* 3. Mobile menu — potpuni fix layouta */
  .mobile-menu {
    width: 100vw;
    border-left: none;
  }
  .mobile-menu-inner {
    height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  .mobile-menu-top {
    padding: 20px 24px;
  }
  .mobile-menu-nav {
    padding: 8px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mobile-nav-link {
    padding: 20px 24px;
    font-size: 36px;
  }
  .mobile-nav-link:hover {
    padding-left: 36px;
  }
  .mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(197,155,95,.12);
  }
  .mobile-cta {
    width: 100%;
    padding: 18px 24px;
    font-size: 12px;
  }

  /* Sakrij hero scroll indicator na mobitelu */
  .hero-scroll { display: none; }
  .hero-year   { display: none; }

  /* Logo u navu na mobitelu — malo manji */
  .nav-logo-img { height: 22px; }
}