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

/* Default kursor svuda — bez "I-beam" type kursora preko teksta */
body { cursor: default; }
body * { cursor: inherit; }
a, button, [role="button"], summary { cursor: pointer; }
input, textarea, [contenteditable="true"] { cursor: text; }

:root {
  --bg: #000;
  --bg-card: #0a0a0a;
  --border: #1a1a1a;
  --fg: #fff;
  --muted: #999;
  --dim: #666;
}

html {
  background: var(--bg);
  min-height: 100%;
}
body {
  background: transparent;  /* ne pokrivaj fixed bg slojeve */
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 300;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* === PRELOADER — visi dok JS ne doda .loaded klasu (kad sve resurse učitamo) === */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-in, visibility 0s linear 0.8s;
}
body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-text {
  color: #fff;
  font-size: clamp(11px, 2.4vw, 22px);
  letter-spacing: 5px;
  font-weight: 300;
  text-align: center;
  padding: 0 16px;
  white-space: nowrap;     /* uvek u jednom redu */
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
@media (max-width: 420px) {
  .preloader-text { font-size: 9px; letter-spacing: 3px; }
}
@keyframes preloaderPulse {
  /* Samo opacity menja, ne letter-spacing — da text ne menja širinu i ne bag-uje wrapping */
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* === REVEAL animations — krenu tek kad .loaded klasa pojavi (preloader nestaje) === */
@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Sve sakriveno dok ne učitamo */
.bg-blobs, .bg-diamonds, .grain,
.topbar, .logo-img,
.brand-script.left, .brand-script.right,
.hero h1, .hero p,
.stores-heading, .stores,
.features-title, .features,
.locations, footer { opacity: 0; }

/* Posle loada — pozadina prva (0.2s), pa SVE OSTALO ZAJEDNO (0.7s) — nema kaskade,
   tako da je čitav sajt instant spreman čim skrolneš dole */
body.loaded .bg-blobs,
body.loaded .bg-diamonds,
body.loaded .grain               { animation: revealFade 1.4s ease-out 0.2s forwards; }
body.loaded .topbar,
body.loaded .logo-img,
body.loaded .brand-script.left,
body.loaded .brand-script.right,
body.loaded .hero h1,
body.loaded .hero p,
body.loaded .stores-heading,
body.loaded .stores,
body.loaded .features-title,
body.loaded .features,
body.loaded .locations,
body.loaded footer               { animation: revealFade 1.0s ease-out 0.7s forwards; }

/* === BACKGROUND LAYERS === */
/* Sav kontent u front */
.topbar, main, footer { position: relative; z-index: 5; }

/* Layer 1: base vignette + jača crna preko svega */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, #050302 0%, #020100 60%, #000 100%);
  z-index: 0;
  pointer-events: none;
}

/* Radijalni dark overlay — mekše, da boje slobodnije se prelivaju kroz crnu */
.bg-blobs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

/* Layer 2: amber & gray blobs ("whiskey momenat") */
.bg-blobs {
  position: fixed;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* NEMA filter ovde — kreirao bi stacking context i ubio bi blendove */
}
.bg-blob {
  position: absolute;
  will-change: transform;
  filter: blur(80px);  /* malo manji blur — bitno brži GPU render */
  opacity: 0.5;
  transform: translateZ(0); /* forsiraj GPU compositor layer */
}
.bg-blob.amber-1 {
  width: 50vw; height: 45vw;
  top: -5%; left: -10%;
  background: rgba(196, 128, 60, 0.55);
  border-radius: 62% 38% 30% 70% / 55% 35% 65% 45%;
  animation: morph1 calc(11s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.amber-2 {
  width: 45vw; height: 50vw;
  bottom: -12%; right: -8%;
  background: rgba(180, 100, 40, 0.5);
  border-radius: 42% 58% 60% 40% / 65% 45% 55% 35%;
  animation: morph2 calc(13s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.amber-3 {
  width: 38vw; height: 32vw;
  top: 25%; left: 45%;
  background: rgba(220, 160, 90, 0.4);
  border-radius: 55% 45% 70% 30% / 40% 60% 40% 60%;
  animation: morph3 calc(9s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.amber-4 {
  width: 32vw; height: 36vw;
  top: 60%; right: 25%;
  background: rgba(210, 140, 70, 0.42);
  border-radius: 60% 40% 50% 50% / 70% 30% 50% 50%;
  animation: morph2 calc(10s / var(--anim-mult, 1)) ease-in-out infinite reverse;
}
.bg-blob.gray-1 {
  width: 42vw; height: 48vw;
  top: 50%; left: -8%;
  background: rgba(140, 130, 118, 0.5);
  border-radius: 70% 30% 50% 50% / 45% 60% 40% 55%;
  animation: morph4 calc(12s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.gray-2 {
  width: 36vw; height: 40vw;
  top: -8%; right: 5%;
  background: rgba(110, 103, 93, 0.45);
  border-radius: 38% 62% 45% 55% / 55% 30% 70% 45%;
  animation: morph5 calc(10s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.gray-3 {
  width: 30vw; height: 34vw;
  top: 40%; right: -5%;
  background: rgba(120, 110, 95, 0.4);
  border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
  animation: morph1 calc(14s / var(--anim-mult, 1)) ease-in-out infinite reverse;
}
.bg-blob.small-1 {
  width: 22vw; height: 22vw;
  top: 10%; left: 35%;
  background: rgba(230, 170, 100, 0.35);
  border-radius: 60% 40% 70% 30% / 50% 50% 60% 40%;
  animation: morph3 calc(8s / var(--anim-mult, 1)) ease-in-out infinite reverse;
}
.bg-blob.small-2 {
  width: 25vw; height: 20vw;
  bottom: 15%; left: 30%;
  background: rgba(160, 120, 80, 0.4);
  border-radius: 40% 60% 50% 50% / 60% 40% 70% 30%;
  animation: morph5 calc(11s / var(--anim-mult, 1)) ease-in-out infinite;
}

/* === DARK WAVES — tamni talasi koji se kreću preko boja (dodaje ~20% crne u talasima) === */
.bg-blob.shadow-1,
.bg-blob.shadow-2,
.bg-blob.shadow-3 {
  z-index: 1;             /* iznad ::after overlay-a — vidljivo dodaje crnu */
  filter: blur(110px);    /* još mekše rubove da deluje kao mokra senka */
  opacity: 1;
}
.bg-blob.shadow-1 {
  width: 55vw; height: 50vw;
  top: 8%; left: 5%;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  animation: morph2 calc(15s / var(--anim-mult, 1)) ease-in-out infinite;
}
.bg-blob.shadow-2 {
  width: 48vw; height: 42vw;
  top: 40%; right: -5%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 45% 55% 60% 40% / 50% 50% 60% 40%;
  animation: morph4 calc(17s / var(--anim-mult, 1)) ease-in-out infinite reverse;
}
.bg-blob.shadow-3 {
  width: 52vw; height: 45vw;
  bottom: 5%; left: 25%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50% 50% 40% 60% / 45% 55% 50% 50%;
  animation: morph1 calc(13s / var(--anim-mult, 1)) ease-in-out infinite;
}

/* Morph keyframes — menja i poziciju i oblik (border-radius) */
@keyframes morph1 {
  0%, 100% {
    border-radius: 62% 38% 30% 70% / 55% 35% 65% 45%;
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    border-radius: 38% 62% 70% 30% / 40% 65% 35% 60%;
    transform: translate(18%, 12%) rotate(35deg);
  }
  66% {
    border-radius: 55% 45% 40% 60% / 70% 30% 60% 40%;
    transform: translate(-12%, 20%) rotate(-25deg);
  }
}
@keyframes morph2 {
  0%, 100% {
    border-radius: 42% 58% 60% 40% / 65% 45% 55% 35%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 60% 40% 30% 70% / 45% 65% 35% 55%;
    transform: translate(-22%, -14%) rotate(40deg);
  }
}
@keyframes morph3 {
  0%, 100% {
    border-radius: 55% 45% 70% 30% / 40% 60% 40% 60%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 35% 65% 40% 60% / 70% 30% 60% 40%;
    transform: translate(16%, -18%) rotate(-40deg) scale(1.15);
  }
}
@keyframes morph4 {
  0%, 100% {
    border-radius: 70% 30% 50% 50% / 45% 60% 40% 55%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 40% 60% 30% 70% / 60% 40% 65% 35%;
    transform: translate(25%, -8%) rotate(-30deg);
  }
}
@keyframes morph5 {
  0%, 100% {
    border-radius: 38% 62% 45% 55% / 55% 30% 70% 45%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 55% 45% 65% 35% / 40% 60% 30% 70%;
    transform: translate(-18%, 22%) rotate(45deg);
  }
}

/* Layer 3: diamond pattern paneli koji se kreću */
.bg-diamonds {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.diamond-panel {
  position: absolute;
  background-image:
    repeating-linear-gradient(45deg,  rgba(255,200,140,0.12) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(-45deg, rgba(255,200,140,0.12) 0 2px, transparent 2px 60px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  opacity: 0.75;
  will-change: transform;
}
.diamond-panel.d1 {
  width: 42vw; height: 42vw;
  top: 0%; left: 55%;
  animation: dmDrift1 calc(13s / var(--anim-mult, 1)) ease-in-out infinite;
}
.diamond-panel.d2 {
  width: 36vw; height: 36vw;
  top: 45%; left: -2%;
  animation: dmDrift2 calc(15s / var(--anim-mult, 1)) ease-in-out infinite;
}
.diamond-panel.d3 {
  width: 40vw; height: 40vw;
  bottom: 0%; right: 8%;
  animation: dmDrift3 calc(14s / var(--anim-mult, 1)) ease-in-out infinite;
}

@keyframes dmDrift1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
  50% { transform: translate(-18%, 22%) rotate(12deg) scale(1.15); opacity: 0.55; }
}
@keyframes dmDrift2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.25; }
  50% { transform: translate(28%, -12%) rotate(-10deg) scale(0.9); opacity: 0.5; }
}
@keyframes dmDrift3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
  50% { transform: translate(-22%, -18%) rotate(14deg) scale(1.1); opacity: 0.55; }
}

/* Layer 4: film grain noise overlay */
.grain {
  position: fixed;
  inset: 0;
  background-image: url('/assets/noise.svg');
  background-size: 300px 300px;
  opacity: 0.08;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .bg-blob, .diamond-panel { animation: none; }
}

/* === MOBILE/TOUCH: zamrzni pozadinske animacije i parallax ===
   Razlog: heavy filter blur + transform animacije lupaju i jake telefone.
   Statična slika ostaje, samo se ne kreće. */
@media (max-width: 768px), (pointer: coarse) {
  .bg-blob,
  .diamond-panel {
    animation: none !important;
  }
  .bg-blobs,
  .bg-diamonds {
    transform: none !important;
    transition: none !important;
  }
  /* Smanjeni blur na mobile-u — manje GPU posla */
  .bg-blob { filter: blur(50px); }

  /* Bez reveal fade animacija — sve je odmah vidljivo čim preloader nestane */
  body.loaded .bg-blobs,
  body.loaded .bg-diamonds,
  body.loaded .grain,
  body.loaded .topbar,
  body.loaded .logo-img,
  body.loaded .brand-script.left,
  body.loaded .brand-script.right,
  body.loaded .hero h1,
  body.loaded .hero p,
  body.loaded .stores-heading,
  body.loaded .stores,
  body.loaded .features-title,
  body.loaded .features,
  body.loaded .locations,
  body.loaded footer {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Parallax — još jača reakcija na kursor */
.bg-blobs   { transform: translate(calc(var(--px, 0) * 160px), calc(var(--py, 0) * 120px)); transition: transform 0.3s ease-out; }
.bg-diamonds { transform: translate(calc(var(--px, 0) * -100px), calc(var(--py, 0) * -80px)); transition: transform 0.4s ease-out; }

/* === Top bar (bez pozadine — samo tekst lebdi) === */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  z-index: 50;
  background: transparent;
}
.brand {
  font-size: 16px;
  letter-spacing: 6px;
  font-weight: 300;
  color: var(--fg);
  text-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.lang-switch {
  display: flex;
  gap: 4px;
}
.lang-switch button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
}
.lang-switch button:hover { color: var(--fg); }
.lang-switch button.active {
  color: var(--fg);
  border-color: rgba(255,255,255,0.35);
}

/* === Hero === */
.hero {
  min-height: 100vh;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
/* Logo + est./2019 — grid sa fiksnim širinama tekst-bokseva da budu istih dimenzija
   i da logo bude tačno u centru ekrana */
.logo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  width: 100%;
  margin-bottom: 6px;
}
.logo-img {
  width: min(676px, 65vw, 72vh);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.brand-script {
  font-family: 'Pinyon Script', 'Allura', cursive;
  font-weight: 400;
  color: rgba(255, 240, 220, 0.85);
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(0,0,0,0.6);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  /* Iste dimenzije — fiksna širina kontejnera tako da oba teksta izgledaju balansirano */
  width: clamp(80px, 10vw, 140px);
  display: inline-block;
}
.brand-script.left  { text-align: right;  justify-self: end; }
.brand-script.right {
  text-align: left;
  justify-self: start;
  font-size: clamp(22px, 3.15vw, 41px);  /* 30% manji od est. */
}
@media (max-width: 540px) {
  /* Mobile: inline-flex sa auto-širinama → logo savršeno centriran,
     est./2019 podjednako odmaknuti od logoa (12px gap sa svake strane) */
  .logo-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 12px;
  }
  .brand-script {
    width: auto;
    font-size: 22px;
    text-align: center;
    justify-self: auto;
  }
  .brand-script.right { font-size: 15px; }
  .logo-img { width: min(240px, 55vw, 60vh); }
}
.hero h1 {
  font-size: clamp(22px, 4.5vw, 38px);
  font-weight: 200;
  letter-spacing: 4px;
  margin: 0;
  text-transform: uppercase;
}
.hero p {
  color: var(--muted);
  font-size: clamp(11px, 1.8vw, 14px);
  letter-spacing: 2px;
  margin: 0;
  margin-bottom: 14px;
}

/* === Store buttons heading === */
.stores-heading {
  color: rgba(255, 240, 220, 0.85);
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 8px 0 4px;
  text-align: center;
}

/* === Store buttons === */
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fg);
  color: var(--bg);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 6px;
  transition: transform 0.2s, opacity 0.2s;
  min-width: 200px;
}
.store:hover { transform: translateY(-2px); }
.store[data-disabled="true"] { opacity: 0.65; cursor: not-allowed; }
.store[data-disabled="true"]:hover { transform: none; }
.store span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store small {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.7;
}
.store strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.store em {
  font-style: normal;
  font-size: 10px;
  opacity: 0.55;
  margin-top: 2px;
  letter-spacing: 1px;
}

/* === Features === */
.features-title {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 0 20px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  background: rgba(20, 14, 10, 0.45);  /* solidna polu-providna pozadina umesto skupog backdrop-filter blur-a */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 26px;
  text-align: center;
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
  contain: layout style;  /* izoluj layout od ostatka stranice */
}
.feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--fg);
  opacity: 0.9;
  display: block;
}
.feature h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.feature p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* === Locations section === */
.locations {
  padding: 40px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: #fff;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) {
  .locations-grid { grid-template-columns: 1fr; }
}
.location-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  transition: border-color 0.3s;
}
.location-card:hover { border-color: rgba(255, 240, 220, 0.3); }
.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
  display: block;
}
.location-card:hover img { transform: scale(1.06); }
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.location-overlay h3 {
  color: #fff;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 4px;
}
.location-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
}

/* === Footer === */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  text-align: center;
}
.footer-brand {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-links {
  font-size: 12px;
  color: var(--dim);
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-links span { color: var(--border); }

.footer-powered {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.footer-powered a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  margin-left: 4px;
  transition: opacity 0.2s;
}
.footer-powered a:hover { opacity: 0.75; }

/* === Contact modal === */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-modal.open {
  display: flex;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-modal-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: rgba(20, 14, 10, 0.95);
  border: 1px solid rgba(255, 240, 220, 0.15);
  padding: 40px 32px 32px;
  border-radius: 4px;
  text-align: left;
}
.contact-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.contact-modal-close:hover { opacity: 1; }
.contact-modal-card h2 {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
}
.contact-brand {
  font-family: 'Pinyon Script', cursive;
  font-size: 26px;
  text-align: center;
  color: rgba(255, 240, 220, 0.9);
  margin-bottom: 20px;
}
.contact-block { margin-bottom: 16px; }
.contact-label {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-info p {
  color: #ddd;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.contact-send-btn {
  display: block;
  margin-top: 24px;
  padding: 14px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.contact-send-btn:hover { opacity: 0.85; }

@media (max-width: 480px) {
  .topbar { padding: 12px 16px; }
  .brand { font-size: 11px; letter-spacing: 3px; }
  .store { min-width: 0; flex: 1 1 calc(50% - 7px); }
}
