/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b8952a;
  --gold-light: #d4af5a;
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1c1c1c;
  --light-gray: #888;
  --white: #f5f5f5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

/* =====================
   HEADER
   ===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  transition: background 0.4s ease;
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(184, 149, 42, 0.2);
}

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

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.logo-text {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

nav a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* =====================
   HERO
   ===================== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.75) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.82);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 149, 42, 0.5);
  padding: 14px 40px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-hero:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-hero-solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-hero-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* =====================
   HEADER CTA
   ===================== */
.btn-header-cta {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: var(--gold-light);
}

/* =====================
   PRODUCTS
   ===================== */
.products-section {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  cursor: pointer;
  transition: transform 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--mid);
}

.product-img-wrap img {
  height: 100%;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}

.product-info {
  padding: 20px 4px 0;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}

.product-info p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--light-gray);
}

/* =====================
   ABOUT
   ===================== */
.about-section {
  background: var(--mid);
  padding: 120px 60px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 30px;
}

.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 16px;
}

.about-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gold-light) !important;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 149, 42, 0.25);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dark);
}

.about-image img {
  height: 100%;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* =====================
   LANG SWITCHER
   ===================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 245, 0.5);
  transition: color 0.2s;
  padding: 0;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
}

.lang-sep {
  font-size: 0.6rem;
  color: rgba(184, 149, 42, 0.25);
}

.lang-mobile {
  display: none;
}

/* =====================
   HAMBURGER
   ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* =====================
   CRAFT / VIDEO
   ===================== */
.craft-section {
  background: var(--dark);
  padding: 120px 60px;
}

.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.craft-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 30px;
}

.craft-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 16px;
}

.craft-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--mid);
  border: 1px solid rgba(184, 149, 42, 0.15);
  overflow: hidden;
}

.craft-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}

/* =====================
   PILLARS
   ===================== */
.pillars-section {
  background: var(--black);
  border-top: 1px solid rgba(184, 149, 42, 0.12);
  border-bottom: 1px solid rgba(184, 149, 42, 0.12);
  padding: 100px 60px;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.pillar {
  flex: 1;
  text-align: center;
  padding: 0 50px;
}

.pillar-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 149, 42, 0.35), transparent);
  flex-shrink: 0;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.6;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.8rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--light-gray);
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(184, 149, 42, 0.2);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.4);
  letter-spacing: 0.05em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-col ul li a {
  color: inherit;
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul li:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 149, 42, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* =====================
   MODAL
   ===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: var(--dark);
  border: 1px solid rgba(184, 149, 42, 0.2);
  max-width: 780px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-box img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--light-gray);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}

.modal-close:hover {
  color: var(--white);
}

.modal-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 30px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  width: 45%;
}

.specs-table td:last-child {
  color: rgba(245, 245, 245, 0.85);
}

/* =====================
   MODAL CTA
   ===================== */
.btn-modal-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 13px 32px;
  text-align: center;
  transition: background 0.25s ease;
}

.btn-modal-cta:hover {
  background: var(--gold-light);
}

/* =====================
   CONTACT
   ===================== */
.contact-section {
  background: var(--dark);
  padding: 120px 60px;
  border-top: 1px solid rgba(184, 149, 42, 0.12);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info > p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 36px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-list li span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list li a {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.9);
  transition: color 0.2s;
}

.contact-list li a:hover {
  color: var(--gold-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  background: var(--mid);
  border: 1px solid rgba(184, 149, 42, 0.18);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Error stanje */
.contact-form .field-invalid {
  border-color: #e05252 !important;
}

.field-error {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #e05252;
  padding: 5px 2px 0;
}

.contact-form select option {
  background: var(--mid);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

/* Success stanje */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  min-height: 320px;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184, 149, 42, 0.12);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.form-success p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.7;
}

.btn-form {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 16px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-form:hover {
  background: var(--gold-light);
}

/* =====================
   NAV OVERLAY (mobile)
   ===================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}

.nav-overlay.active {
  display: block;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  #header { padding: 20px 24px; }
  #header.scrolled { padding: 14px 24px; }

  .hamburger { display: flex; }
  .lang-desktop { display: none; }
  .btn-header-cta { display: none; }

  .contact-section { padding: 80px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  #main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    border-left: 1px solid rgba(184, 149, 42, 0.15);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px 60px;
    gap: 32px;
    z-index: 99;
    transition: right 0.35s ease;
    display: flex;
  }

  #main-nav.open {
    right: 0;
  }

  #main-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    opacity: 1;
  }

  .lang-mobile {
    display: flex;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 149, 42, 0.15);
    width: 100%;
  }

  .products-section { padding: 80px 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .craft-section { padding: 80px 24px; }
  .craft-inner { grid-template-columns: 1fr; gap: 48px; }

  .pillars-section { padding: 80px 24px; }
  .pillars-inner { flex-direction: column; gap: 48px; }
  .pillar { padding: 0; }
  .pillar-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 149, 42, 0.35), transparent);
    align-self: center;
  }

  .about-section { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
  }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-bottom { padding: 20px 24px; }

  .modal-box { grid-template-columns: 1fr; max-width: 420px; }
  .modal-box img { aspect-ratio: 16 / 9; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-video { display: none; }
  .hero { background: url('images/hero-poster.jpg') center/cover no-repeat; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-hero { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

/* =====================
   SCROLL TO TOP
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
}

/* =====================
   WHATSAPP LINK
   ===================== */
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #25d366 !important;
  transition: opacity 0.2s;
}

.contact-wa:hover {
  opacity: 0.8;
}
