:root {
  --brand-gold: #c89b3c;
  --brand-gold-soft: rgba(200, 155, 60, 0.22);
  --bg: #0a0a0b;
  --text: #F5F5F0;
  --muted: rgba(245, 245, 240, 1);
  --surface: rgba(255, 255, 255, 0.04);
  --line: rgba(245, 245, 240, 0.18);

  --radius-md: 16px;
  --radius-lg: 32px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;

  --text-body: 1rem;
  --text-small: 0.85rem;
  --text-h2: clamp(1.25rem, 2vw, 1.4rem);
  --text-tagline: clamp(1.5rem, 2.4vw, 1.75rem);

  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  --max-width: 1080px;
  --transition-fast: 180ms ease;
  --transition-theme: 200ms ease;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-stack);
  /* background:
    radial-gradient(circle 220px at 18% 25%, rgba(200, 155, 60, 0.02), transparent 88%),
    radial-gradient(circle 280px at 82% 35%, rgba(200, 155, 60, 0.018), transparent 86%),
    radial-gradient(circle 240px at 68% 78%, rgba(200, 155, 60, 0.015), transparent 90%),
    radial-gradient(ellipse 1800px 1200px at 35% 30%, rgba(166, 138, 69, 0.04), transparent 75%),
    radial-gradient(ellipse 1600px 1400px at 65% 48%, rgba(166, 138, 69, 0.032), transparent 78%),
    radial-gradient(ellipse 2000px 1100px at 48% 42%, rgba(166, 138, 69, 0.028), transparent 80%),
    radial-gradient(ellipse 1900px 1300px at 52% 38%, rgba(166, 138, 69, 0.022), transparent 82%),
    var(--bg); */
  color: var(--text);
  line-height: 1.6;
  font-size: var(--text-body);
  transition: background-color var(--transition-theme), color var(--transition-theme);
  padding: clamp(12px, 2vw, 24px) clamp(12px, 2vw, 24px) 0 clamp(12px, 2vw, 24px);
  background: var(--bg); /* just the flat dark base */
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 520px 400px at 50% 28%,
    rgba(200, 155, 60, 0.20) 0%,
    rgba(180, 138, 50, 0.10) 45%,
    transparent 75%
  );
  filter: blur(40px);
}

/* body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 60px at 11% 17%,  rgba(210, 165, 65, 0.22), transparent 100%),
    radial-gradient(circle 50px at 87% 12%,  rgba(195, 150, 55, 0.18), transparent 100%),
    radial-gradient(circle 70px at 80% 70%,  rgba(205, 158, 60, 0.16), transparent 100%),
    radial-gradient(circle 45px at 20% 82%,  rgba(190, 145, 50, 0.15), transparent 100%),
    radial-gradient(circle 55px at 5%  55%,  rgba(200, 155, 60, 0.13), transparent 100%),
    radial-gradient(circle 65px at 94% 42%,  rgba(205, 158, 60, 0.14), transparent 100%),
    radial-gradient(circle 40px at 58% 91%,  rgba(190, 145, 50, 0.12), transparent 100%),
    radial-gradient(circle 50px at 35% 5%,   rgba(200, 155, 60, 0.13), transparent 100%),
    radial-gradient(circle 45px at 72% 24%,  rgba(195, 150, 55, 0.11), transparent 100%),
    radial-gradient(circle 55px at 28% 45%,  rgba(200, 155, 60, 0.10), transparent 100%);
  filter: blur(28px);
} */

.topbar,
main,
footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
}

@keyframes intro-fade-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes intro-soft-zoom {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.965);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

body.motion-intro .intro-reveal,
body.motion-intro .intro-reveal-logo {
  opacity: 0;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

body.motion-intro.motion-in .intro-reveal {
  animation: intro-fade-up 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--intro-delay, 0ms) both;
}

body.motion-intro.motion-in .intro-reveal-logo {
  animation: intro-soft-zoom 1300ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--intro-delay, 0ms) both;
}

@media (prefers-reduced-motion: reduce) {
  body.motion-intro .intro-reveal,
  body.motion-intro .intro-reveal-logo,
  body.motion-intro.motion-in .intro-reveal,
  body.motion-intro.motion-in .intro-reveal-logo {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

.flash {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  /* will-change promotes each flash to its own GPU layer */
  will-change: transform, opacity, filter;
  /* NO filter here — let keyframes handle it from the start */
  transform: translate(-50%, -50%) scale(1);
}

@keyframes flash-pop {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0);  filter: blur(14px) brightness(1); }
  1%   { opacity: 1;    transform: translate(-50%, -50%) scale(.8);  filter: blur(18px) brightness(1.3); }
  2%   { opacity: 0.4;    transform: translate(-50%, -50%) scale(1);  filter: blur(30px) brightness(1.2); }
  30%  { opacity: 0.18; transform: translate(-50%, -50%) scale(2.8);  filter: blur(40px) brightness(1.1); }
  45%  { opacity: 0.07; transform: translate(-50%, -50%) scale(4.6);  filter: blur(56px) brightness(1.0); }
  80%  { opacity: 0.02; transform: translate(-50%, -50%) scale(6.4);  filter: blur(70px) brightness(1.0); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(7.8);  filter: blur(80px) brightness(1.0); }
}

@keyframes flash-pop-b {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0);  filter: blur(12px) brightness(1); }
  2%   { opacity: 0.95; transform: translate(-50%, -50%) scale(0.65); filter: blur(16px) brightness(1.3); }
  3%  { opacity: 0.40; transform: translate(-50%, -50%) scale(.8);  filter: blur(28px) brightness(1.2); }
  34%  { opacity: 0.16; transform: translate(-50%, -50%) scale(3.2);  filter: blur(44px) brightness(1.1); }
  50%  { opacity: 0.06; transform: translate(-50%, -50%) scale(5.2);  filter: blur(60px) brightness(1.0); }
  82%  { opacity: 0.02; transform: translate(-50%, -50%) scale(7.0);  filter: blur(74px) brightness(1.0); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(8.4);  filter: blur(84px) brightness(1.0); }
}

@keyframes flash-pop-c {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0); filter: blur(16px) brightness(1); }
  1%   { opacity: 1;    transform: translate(-50%, -50%) scale(0.7); filter: blur(14px) brightness(1.3); }
  2%   { opacity: 0.4;    transform: translate(-50%, -50%) scale(.9); filter: blur(27px) brightness(1.2); }
  28%  { opacity: 0.20; transform: translate(-50%, -50%) scale(2.5);  filter: blur(38px) brightness(1.1); }
  48%  { opacity: 0.08; transform: translate(-50%, -50%) scale(4.0);  filter: blur(54px) brightness(1.0); }
  78%  { opacity: 0.03; transform: translate(-50%, -50%) scale(5.8);  filter: blur(68px) brightness(1.0); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(7.2);  filter: blur(78px) brightness(1.0); }
}

.topbar {
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  flex-shrink: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-small);
  letter-spacing: 0.03em;
}

.language-switcher a {
  text-decoration: none;
  color: var(--muted);
  opacity: 0.75;
  font-weight: 500;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--text);
}

.language-switcher a.is-active {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(30px, 5vh, 72px);
  max-width: 760px;
  width: 100%;
  position: relative;
  flex: 0 1 auto;
}

/* .logo-glow {
  position: absolute;
  inset: -80px auto auto 50%;
  transform: translateX(-50%);
  width: min(78vw, 620px);
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at center, 
      rgba(200, 155, 60, 0.26) 0%, 
      rgba(200, 155, 60, 0.18) 30%, 
      rgba(200, 155, 60, 0.08) 60%, 
      transparent 85%);
  filter: blur(24px);
} */

.logo-glow {
  display: none; /* replaced by body::before central glow */
}

.brand-logo {
  margin: 0;
  z-index: 1;
  width: clamp(420px, 90vw, 645px);
  flex-shrink: 0;

}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.tagline {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  flex-shrink: 0;
}

.categories {
  margin: 5px 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--brand-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.categories .dot {
  opacity: 0.5;
  margin: 0 0.5em;
}



.stores {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative; 
  z-index: 10;
  width: 100%;
}

.stores a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 1;
  min-width: 140px;
  position: relative;
}

/* .stores a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(200, 155, 60, 0.2);
  border-radius: 10px;
  pointer-events: none;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
} */

.stores img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 100%;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vh, 32px);
  flex-shrink: 0;
  padding: clamp(16px, 3vh, 32px) 50px 0;
  margin-top: clamp(40px, 6vh, 80px);
}

.contact > div:first-child {
  text-align: center;
}

.contact h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: rgba(200, 155, 60, 1);
  opacity: 0.55;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em;
}

.contact-subheader {
  margin: 8px 0 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--muted);
  opacity: 0.75;
}

.contacts-text {
  margin-bottom: 3px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vh, 20px) clamp(20px, 3vw, 32px);
}

.contact-grid a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 500;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  opacity: 0.85;
  color: var(--brand-gold);
}

.contact-grid svg {
  width: 22px;
  height: 22px;
  stroke: rgba(200, 155, 60, 0.55);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

footer {
  padding: clamp(12px, 2vh, 20px) 0;
  color: var(--muted);
  opacity: 0.75;
  font-size: var(--text-small);
  flex-shrink: 0;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.phone-decoration {
  position: fixed;
  bottom: 0;
  right: 0;
  width: clamp(500px, 60vw, 1000px);
  height: auto;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  filter: brightness(0.9) saturate(0.8);
}

@media (min-width: 1440px) {
  .brand-logo {
    width: clamp(550px, 85vw, 640px);
    margin-top: clamp(-64px, -15vh, -32px);
  }
}

@media (min-width: 768px) {
  .brand-logo {
    margin-top: clamp(-64px, -15vh, -32px);
  }

  .categories {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }

  .tagline {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .contact h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
  }

  .contact-subheader {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }
}

@media (max-width: 768px) {
  .brand-logo {
    width: clamp(440px, 64vw, 540px);
  }

  .topbar {
    justify-content: center;
  }

  .hero-inner {
    gap: clamp(16px, 2.5vh, 32px);
  }

  .tagline {
    /* font-size: clamp(1.4rem, 4vw, 1.75rem); */
    font-size: 2rem;
  }

  .categories {
    font-size: 1.2rem;
  }

  .contact {
    margin-top: clamp(24px, 4vh, 48px);
  }

  .contact h2 {
    display: block;
    max-width: 280px;
    opacity: 0.75;
    font-size: 1.5rem;
  }
  
  .tagline {
    padding: 0 2.5rem;
  }
  .contact p {
    font-size: 1.1rem;
  }

  .contact h2 .dot {
    display: none;
  }

  .stores img {
    height: 64px;
  }

  .stores {
    flex-direction: column;
    gap: clamp(16px, 2vh, 24px);
  }

  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2vh, 24px);
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .hero-inner {
    gap: clamp(48px, 6vh, 64px);
  }
  
  .brand-logo {
    width: clamp(240px, 80vw, 360px);
  }

  .categories {
    font-size: 1rem;
  }

  .stores {
    flex-direction: column;
    gap: 24px;
  }

  .stores img {
    height: 56px;
  }

  .contact {
    gap: clamp(24px, 4vh, 48px);
  }

  .contact h2 .dot {
    display: none;
  }

  .contact h2 {
    display: block;
    max-width: 320px;
    opacity: 0.75;
  }

  .contact h2 span {
    display: block;
  }

  .contact p {
    font-size: 1.2rem;
    opacity: 0.85;
    font-weight: 500;
  }

  .contact-grid {
    gap: clamp(8px, 2vh, 24px);
  }
}
