/* Apple‑style inspired, custom design (offline static) */
:root{
  --bg: #070911;
  --text: rgba(245,247,255,.98);
  --muted: rgba(245,247,255,.70);
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --radius: 22px;

  --accent: #f2c94c;
  --accent2:#d4a72c;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: linear-gradient(135deg, #070911, #04050b);
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: linear-gradient(135deg, #070911, #04050b);
}

a{color:inherit; text-decoration:none}
.wrap{width:min(1160px, 92%); margin-inline:auto}

.skip{
  position:absolute; left:-999px; top:10px;
  padding:10px 12px; border-radius:14px;
  background:#0b0b10; color:#fff;
}
.skip:focus{left:12px; z-index:9999}

.muted{color:var(--muted)}
.grad{
  background: linear-gradient(135deg, var(--accent), #ffffff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Nav */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background: rgba(7,9,17,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 260px}
.brand__logo{
  width:44px; height:44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background:#000;
  object-fit:cover;
}
.brand__text{display:flex; flex-direction:column; gap:2px}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted)}

.links{display:flex; gap:10px; align-items:center}
.links a{
  color: var(--muted);
  font-size:13.5px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  transition: .18s ease;
}
.links a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius: 16px;
  border:1px solid rgba(242,201,76,.40);
  background: linear-gradient(135deg, rgba(180, 197, 207, 0.95), rgba(180, 153, 18, 0.95));
  color:#071018;
  font-weight:900;
  box-shadow: 0 18px 45px rgba(37,99,235,.18);
  transition: .18s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(255,255,255,.06)}
.btn--full{width:100%}

.nav__cta{display:flex; gap:10px; align-items:center}

.menu{
  display:none;
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.menu span{
  display:block;
  width:18px; height:2px;
  margin:4px auto;
  background: rgba(245,247,255,.85);
  border-radius:99px;
}

.mobile{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 0 16px;
}
.mobile__inner{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mobile a{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.mobile__cta{display:flex; gap:10px; padding-top:8px}

/* Hero */
.hero{padding: 48px 0 8px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(245,247,255,.86);
  font-weight:800;
  font-size:13px;
  width: fit-content;
}
.pill__dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(96,165,250,.18);
}

h1{
  margin: 14px 0 10px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -.2px;
}
.lead{
  margin:0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.6px;
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.chip{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.78);
  font-size:13px;
  font-weight:700;
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__card{overflow:hidden}
.card__top{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px;
  gap:10px;
}
.big{font-size:20px; font-weight:950}
.badge{
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  color: rgba(245,247,255,.88);
  font-weight:900;
  font-size:12px;
}
.card__body{padding: 0 18px 12px}
.row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  padding:10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.row:first-child{border-top:0}
.k{color:var(--muted); font-size:12px}
.v{font-weight:750}
.v a{text-decoration: underline; text-decoration-color: rgba(96,165,250,.35)}
.card__cta{padding: 0 18px 18px}

/* Sections */
.section{padding: 38px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.head{margin-bottom:14px}
.head h2{margin:0; font-size:24px}
.head p{margin:8px 0 0}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tile,.review{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:16px;
  transition: .18s ease;
}
.tile:hover,.review:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
}
.icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  border:1px solid rgba(96,165,250,.20);
  background: rgba(96,165,250,.10);
  margin-bottom:10px;
}
.tile h3,.review h3{margin:0 0 6px; font-size:16px}
.tile p,.review p{margin:0; color:var(--muted); line-height:1.65; font-size:14px}

.stars{color: rgba(242,201,76,.95); font-weight:950; margin-bottom:8px}
.by{margin-top:10px; color: rgba(245,247,255,.55); font-size:12px}

/* Brands */
.brands{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.brandTag{
  display:grid;
  place-items:center;
  padding:14px 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.78);
  font-weight:900;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.shot{
  margin:0;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.shot img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: .25s ease;
}
.shot:hover img{transform: scale(1.06)}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:stretch;
}
.contact__card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding:18px;
}
.contact__title{font-weight:950; font-size:18px}
.contact__line{margin-top:10px; color:var(--muted); line-height:1.6}
.contact__line a{text-decoration: underline; text-decoration-color: rgba(96,165,250,.35)}
.contact__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.map{overflow:hidden}
.map iframe{width:100%; height:100%; min-height:320px; border:0}

/* Footer */
.footer{padding: 24px 0 40px}
.footer__inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top: 18px;
}
.footer__name{font-weight:950}

/* Responsive */
@media (max-width: 980px){
  .links{display:none}
  .nav__cta{display:none}
  .menu{display:block}
  .hero__grid{grid-template-columns: 1fr}
  h1{font-size: 38px}
  .grid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .brands{grid-template-columns: repeat(2, 1fr)}
  .contact{grid-template-columns: 1fr}
}


.tile:hover, .review:hover{
  box-shadow:
    0 26px 80px rgba(0,0,0,.60),
    0 0 0 1px rgba(242,201,76,.14),
    0 0 55px rgba(242,201,76,.14);
}



/* golden glow (border glow, not shadow) */
.card, .tile, .review, .shot, .contact__card, .brandTag{
  position: relative;
}

.card::before,
.tile::before,
.review::before,
.shot::before,
.contact__card::before,
.brandTag::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding:1px;
  background: linear-gradient(135deg, rgba(242,201,76,.55), rgba(242,201,76,.10), rgba(255,255,255,.06));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:.40;
}

.tile:hover::before,
.review:hover::before{
  opacity:.65;
}


/* Premium texture wave animation background */
.bgWaves{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bgWaves::before,
.bgWaves::after{
  content:"";
  position: absolute;
  left: -40%;
  top: -30%;
  width: 180%;
  height: 160%;
  background:
    radial-gradient(closest-side, rgba(242,201,76,.10), transparent 65%),
    radial-gradient(closest-side, rgba(255,255,255,.05), transparent 65%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.02) 0px,
      rgba(255,255,255,.02) 2px,
      transparent 2px,
      transparent 14px
    );
  filter: blur(12px);
  opacity: .55;
  animation: waveFloat 18s ease-in-out infinite;
}

.bgWaves::after{
  opacity: .38;
  filter: blur(18px);
  animation-duration: 26s;
  animation-direction: reverse;
}

@keyframes waveFloat{
  0%   { transform: translate(-2%, -2%) rotate(0deg); }
  50%  { transform: translate(2%, 2%) rotate(2deg); }
  100% { transform: translate(-2%, -2%) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce){
  .bgWaves::before,
  .bgWaves::after{ animation: none; }
}


  50%{
    box-shadow: 0 0 26px rgba(242,201,76,.55);
  }
  100%{
    box-shadow: 0 0 10px rgba(242,201,76,.25);
  }
}


/* Shop Status animation effect (Pro) */
:root{
  --pulseSpeed: 1.6s; /* change to 1.6s for faster, 3.4s for slower */
}

.statusBadge{
  position: relative;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .6px;
  animation: pulseGlow var(--pulseSpeed) ease-in-out infinite;
  transform: translateZ(0);
}

.statusText{
  font-weight: 950;
  transform: translateZ(0);
}

/* OPEN = Gold */
.statusBadge.is-open{
  background: rgba(242,201,76,.16);
  color: #f2c94c;
  border: 1px solid rgba(242,201,76,.55);
  box-shadow:
    0 0 26px rgba(242,201,76,.45),
    0 0 60px rgba(242,201,76,.20);
}

.statusText.is-open{
  color: #f2c94c;
  text-shadow:
    0 0 14px rgba(242,201,76,.55),
    0 0 34px rgba(242,201,76,.22);
}

/* CLOSED = Blue */
.statusBadge.is-closed{
  background: rgba(96,165,250,.14);
  color: #93c5fd;
  border: 1px solid rgba(96,165,250,.55);
  box-shadow:
    0 0 26px rgba(96,165,250,.40),
    0 0 60px rgba(96,165,250,.18);
}

.statusText.is-closed{
  color: #93c5fd;
  text-shadow:
    0 0 14px rgba(96,165,250,.55),
    0 0 34px rgba(96,165,250,.22);
}

@keyframes pulseGlow{
  0%{
    filter: brightness(1);
    transform: scale(1);
  }
  50%{
    filter: brightness(1.06);
    transform: scale(1.04);
  }
  100%{
    filter: brightness(1);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .statusBadge{ animation: none; }
}


/* Vanta WAVES background */
#vanta-bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.site{
  position: relative;
  z-index: 1;
}
body{
  background: transparent !important;
}
#vanta-bg{
  position: fixed;
  inset: 0;
  z-index: -9999;
  pointer-events: none;
}
/* Glass blur effect for cards */
.card, .tile, .review, .shot, .contact__card, .brandTag{
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
