/* ============================================================
   NAMJEŠTAJ JAŠAREVIĆ — Design System
   EA Studio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --black-card:   #161616;
  --black-border: #222222;
  --gold:         #c9a84c;
  --gold-light:   #e2c57a;
  --gold-dark:    #9e7a2e;
  --white:        #f5f2ec;
  --white-dim:    #b0a99a;
  --overlay:      rgba(10, 10, 10, 0.72);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;
  --text-4xl:  4rem;
  --text-5xl:  5.5rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
  --container: 1280px;
  --container-narrow: 860px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration:      0.35s;
  --duration-slow: 0.65s;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 0 1px rgba(201,168,76,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: hidden; max-width: 100%; }
body { background-color: var(--black); color: var(--white); font-family: var(--font-body); font-size: var(--text-base); font-weight: 300; line-height: 1.7; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-lg); }
.container--narrow { max-width: var(--container-narrow); }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
p  { color: var(--white-dim); font-size: var(--text-base); font-weight: 300; line-height: 1.8; }

.eyebrow { display: inline-block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-sm); }
.section-title   { font-size: var(--text-3xl); color: var(--white); margin-bottom: var(--space-md); }
.section-subtitle { font-size: var(--text-md); color: var(--white-dim); font-weight: 300; max-width: 52ch; }
.gold-line { display: block; width: 48px; height: 1px; background: var(--gold); margin-bottom: var(--space-md); }

.btn { display: inline-flex; align-items: center; gap: var(--space-xs); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: var(--radius-pill); transition: all var(--duration) var(--ease); white-space: nowrap; }
.btn--gold  { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }
.btn--ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--ghost:hover { background: rgba(201,168,76,0.08); transform: translateY(-2px); }
.btn--dark  { background: var(--black-card); color: var(--white); border: 1px solid var(--black-border); }
.btn--dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: transform var(--duration-slow) var(--ease), background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease), box-shadow var(--duration) var(--ease); }
#header.hidden   { transform: translateY(-100%); }
#header.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--black-border); }
#header.transparent { background: transparent; }

.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 80px; gap: var(--space-lg); }
.header__logo { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; flex-shrink: 0; }
.header__logo img { height: 44px; width: auto; }
.header__logo-name { font-family: var(--font-display); font-size: var(--text-md); font-weight: 500; color: var(--white); line-height: 1.2; }
.header__logo-name span { display: block; font-size: var(--text-xs); font-family: var(--font-body); font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

.header__nav { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); }
.header__nav a { font-size: var(--text-sm); font-weight: 400; letter-spacing: 0.06em; color: var(--white-dim); text-transform: uppercase; transition: color var(--duration) var(--ease); position: relative; }
.header__nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--duration) var(--ease); }
.header__nav a:hover, .header__nav a.active { color: var(--white); }
.header__nav a:hover::after, .header__nav a.active::after { transform: scaleX(1); }

.header__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; cursor: pointer; background: none; border: none; padding: 0; }
.header__burger span { display: block; height: 1px; background: var(--white); transition: all var(--duration) var(--ease); }
.header__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header__mobile-nav { display: none; flex-direction: column; gap: var(--space-sm); padding: var(--space-md) var(--space-lg) var(--space-lg); background: rgba(10,10,10,0.97); border-top: 1px solid var(--black-border); }
.header__mobile-nav.open { display: flex; }
.header__mobile-nav a { font-size: var(--text-md); color: var(--white-dim); padding: var(--space-xs) 0; border-bottom: 1px solid var(--black-border); transition: color var(--duration) var(--ease); }
.header__mobile-nav a:last-child { border-bottom: none; }
.header__mobile-nav a:hover { color: var(--gold); }

#footer { background: var(--black-soft); border-top: 1px solid var(--black-border); padding: var(--space-2xl) 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer__brand img { height: 48px; margin-bottom: var(--space-md); }
.footer__brand p   { font-size: var(--text-sm); color: var(--white-dim); max-width: 28ch; line-height: 1.7; }
.footer__socials { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.footer__social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; color: var(--white-dim); transition: all var(--duration) var(--ease); }
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__col-title { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-md); }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: var(--text-sm); color: var(--white-dim); transition: color var(--duration) var(--ease); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: var(--space-xs); font-size: var(--text-sm); color: var(--white-dim); margin-bottom: 0.6rem; line-height: 1.5; }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { border-top: 1px solid var(--black-border); padding-top: var(--space-md); display: flex; align-items: center; justify-content: space-between; }
.footer__copyright, .footer__credit { font-size: var(--text-xs); color: var(--white-dim); opacity: 0.6; }
.footer__credit a { color: var(--gold); opacity: 0.8; transition: opacity var(--duration) var(--ease); }
.footer__credit a:hover { opacity: 1; }

#page-transition { position: fixed; inset: 0; z-index: 9999; pointer-events: none; background: var(--black); transform: translateY(100%); }
#page-transition.enter { animation: curtainIn var(--duration-slow) var(--ease-out) forwards; }
#page-transition.exit  { animation: curtainOut var(--duration-slow) var(--ease-out) forwards; }
@keyframes curtainIn { from { transform: translateY(100%); } to { transform: translateY(0%); } }
@keyframes curtainOut { from { transform: translateY(0%); } to { transform: translateY(-100%); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease); }
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__image { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--black-soft); }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__image img { transform: scale(1.05); }
.card__chip { position: absolute; bottom: var(--space-sm); right: var(--space-sm); background: rgba(10,10,10,0.88); backdrop-filter: blur(8px); border: 1px solid rgba(201,168,76,0.4); border-radius: var(--radius-pill); padding: 0.4rem 1rem; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.card:hover .card__chip { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.card__body { padding: var(--space-md); }
.card__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--white); margin-bottom: var(--space-xs); }
.card__text  { font-size: var(--text-sm); color: var(--white-dim); line-height: 1.7; }

.stat__number { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 400; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat__label  { font-size: var(--text-sm); color: var(--white-dim); font-weight: 300; letter-spacing: 0.05em; margin-top: var(--space-xs); }

/* ── CTA banner (shared across pocetna/o-nama/galerija pages) ──── */
.cta-banner { padding: var(--space-xl) 0; background: linear-gradient(135deg, var(--black-soft) 0%, #1a1408 100%); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); }
.cta-banner__title { font-size: var(--text-3xl); color: var(--white); margin-bottom: var(--space-xs); }
.cta-banner__sub { font-size: var(--text-md); color: var(--white-dim); }
@media (max-width: 768px) { .cta-banner__inner { flex-direction: column; text-align: center; } }

/* ── "Why us" cards + mobile accordion (shared across pocetna/o-nama) ──── */
.why-item { padding: var(--space-lg); background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease); }
.why-item:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.why-item__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); color: var(--gold); }
.why-item__icon svg { width: 22px; height: 22px; }
.why-item__title { font-family: var(--font-display); font-size: var(--text-xl); color: var(--white); margin-bottom: var(--space-xs); }
.why-item__text { font-size: var(--text-sm); color: var(--white-dim); line-height: 1.7; }
@media (max-width: 768px) {
  .why-accordion-grid { display: flex !important; flex-direction: column; gap: 0; }
  .why-accordion-item { border-radius: 0; border-bottom: none; display: flex; flex-direction: column; overflow: hidden; transition: none; }
  .why-accordion-item:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .why-accordion-item:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); border-bottom: 1px solid var(--black-border); }
  .why-accordion-item:hover { transform: none; }
  .why-accordion-item .why-item__text { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, margin 0.4s ease; opacity: 0; margin-top: 0; }
  .why-accordion-item.accordion-open .why-item__text { max-height: 200px; opacity: 1; margin-top: var(--space-xs); }
  .why-accordion-item .why-item__icon { margin-bottom: 0; width: 40px; height: 40px; flex-shrink: 0; }
  .why-accordion-item .why-item__title { font-size: var(--text-lg); }
  .why-accordion-item > *:not(.why-item__text) { display: flex; align-items: center; gap: var(--space-sm); }
}

.section     { padding: var(--space-3xl) 0; }
.section--sm { padding: var(--space-2xl) 0; }
.section--dark { background: var(--black-soft); }
.section--card { background: var(--black-card); }
.section-header { margin-bottom: var(--space-xl); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }
.section-header--center .gold-line { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

.page-hero { height: 320px; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: var(--black-soft); margin-top: 80px; }
.page-hero__title, .page-hero__breadcrumb { animation: heroIn 0.7s var(--ease) both; }
.page-hero__breadcrumb { animation-delay: 0.15s; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 0%, transparent 60%); z-index: 1; }
.page-hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.3; }
.page-hero__content { position: relative; z-index: 2; padding-bottom: var(--space-xl); width: 100%; }
.page-hero__title { font-size: var(--text-4xl); color: var(--white); }
.page-hero__breadcrumb { display: flex; align-items: center; gap: var(--space-xs); font-size: var(--text-xs); color: var(--white-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: var(--space-xs); }
.page-hero__breadcrumb a { color: var(--gold); transition: opacity var(--duration) var(--ease); }
.page-hero__breadcrumb a:hover { opacity: 0.7; }
.page-hero__breadcrumb span { color: var(--white-dim); opacity: 0.4; }

#lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; padding: var(--space-lg); }
#lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox__close { position: absolute; top: var(--space-md); right: var(--space-md); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; border-radius: 50%; border: 1px solid var(--black-border); background: var(--black-card); transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease); }
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--black-card); border: 1px solid var(--black-border); border-radius: 50%; color: var(--white); cursor: pointer; transition: all var(--duration) var(--ease); }
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-md); }
.form-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: var(--black-card); color: var(--white); }
.form-select:focus { border-color: var(--gold); }

@media (max-width: 1100px) { :root { --text-5xl: 4rem; --text-4xl: 3rem; } .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); } }
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.8rem;
    --text-4xl: 2.2rem;
    --text-3xl: 1.8rem;
    --text-2xl: 1.6rem;
    --text-xl: 1.25rem;
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
  }
  .container { padding-inline: var(--space-md); }
  .header__nav, .header__cta { display: none !important; }
  .header__burger { display: flex; }
  .grid-2:not(.cards-scroll-track), .grid-3:not(.cards-scroll-track), .grid-4:not(.cards-scroll-track) { grid-template-columns: 1fr; }
  /* Tap targets */
  a, button { min-height: 44px; }
  .btn { padding: 0.9rem 1.6rem; min-height: 48px; font-size: var(--text-xs); }
  /* Footer mobile */
  #footer { padding: var(--space-md) 0 var(--space-sm); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
  .footer__brand { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--space-sm); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--black-border); }
  .footer__brand img { height: 28px; flex-shrink: 0; }
  .footer__brand p { display: none; }
  .footer__socials { margin-top: 0; gap: var(--space-xs); }
  .footer__social-link { width: 32px; height: 32px; }
  .footer__col-title { font-size: 0.6rem; margin-bottom: var(--space-xs); }
  .footer__links { gap: 0.4rem; }
  .footer__links a { font-size: 0.7rem; min-height: auto; }
  .footer__contact-item { font-size: 0.7rem; gap: 0.3rem; margin-bottom: 0.4rem; }
  .footer__contact-item svg { width: 12px; height: 12px; }
  .footer__grid > div:nth-child(4) { grid-column: 1 / -1; text-align: center; padding-top: var(--space-sm); margin-top: var(--space-xs); border-top: 1px solid var(--black-border); }
  .footer__grid > div:nth-child(4) .footer__contact-item { justify-content: center; }
  .footer__bottom { flex-direction: row; flex-wrap: wrap; gap: var(--space-xs); justify-content: space-between; padding-top: var(--space-xs); }
  .footer__copyright, .footer__credit { font-size: 0.6rem; }
  /* Page hero */
  .page-hero { height: 200px; margin-top: 64px; }
  .page-hero__title { font-size: var(--text-2xl); }
  .page-hero__breadcrumb { font-size: 0.6rem; }
  /* Header height on mobile */
  .header__inner { height: 64px; }
  /* Section spacing */
  .section { padding: var(--space-2xl) 0; }
  .section-title { font-size: var(--text-2xl); }
  .section-subtitle { font-size: var(--text-sm); }
}
@media (max-width: 480px) {
  :root { --text-5xl: 2rem; --text-3xl: 1.6rem; --text-2xl: 1.4rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
}
/* ── Hero load-in animation ─────────────────────────────── */
.hero-animate { opacity: 0; transform: translateY(24px); animation: heroIn 0.9s var(--ease) forwards; }
.hero-animate-img { opacity: 0; transform: translateX(32px); animation: heroInImg 1s var(--ease) forwards; }
@keyframes heroIn    { to { opacity: 1; transform: translateY(0); } }
@keyframes heroInImg { to { opacity: 1; transform: translateX(0); } }
.hero-animate:nth-child(1) { animation-delay: 0.15s; }
.hero-animate:nth-child(2) { animation-delay: 0.30s; }
.hero-animate:nth-child(3) { animation-delay: 0.45s; }
.hero-animate:nth-child(4) { animation-delay: 0.60s; }
.hero-animate-img { animation-delay: 0.35s; }

/* ── Gold line width reveal ──────────────────────────────── */
.gold-line { width: 0; transition: width 0.6s var(--ease) 0.2s, opacity 0.6s var(--ease); opacity: 0; }
.gold-line.visible, .reveal.visible .gold-line { width: 48px; opacity: 1; }
/* standalone gold-line with reveal class */
.gold-line.reveal { transform: none; }
.gold-line.reveal.visible { transform: none; width: 48px; opacity: 1; }

/* ── Parallax container ──────────────────────────────────── */
[data-parallax] { will-change: transform; }

/* ── Stagger for sibling reveals ─────────────────────────── */
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ── Viber floating button ──────────────────────────────── */
.viber-float { position: fixed; bottom: var(--space-lg); right: var(--space-lg); z-index: 800; width: 56px; height: 56px; border-radius: 50%; background: #7360f2; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(115,96,242,0.45); transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease); animation: floatIn 0.6s var(--ease) 1.2s both; }
.viber-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(115,96,242,0.55); }
.viber-float svg { width: 30px; height: 30px; }
@keyframes floatIn { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 768px) { .viber-float { bottom: var(--space-md); right: var(--space-md); width: 50px; height: 50px; } }

/* ── Drag scroll cursor hint (desktop) ──────────────────── */
.cards-scroll-wrap { cursor: grab; }
.cards-scroll-wrap:active { cursor: grabbing; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .reveal { opacity: 1; transform: none; } .gold-line { width: 48px; opacity: 1; } .hero-animate, .hero-animate-img { opacity: 1; transform: none; } }
