/* Black + yellow shop vibe */
:root{
  --bg:#070707;
  --panel:#0d0d0d;
  --text:#f2f2f2;
  --muted:#b8b8b8;
  --yellow:#f4c300;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ===== HEADER (NAV) + HERO ===== */

/*.site-header{
  /* Match hero vibe so the menu feels integrated 
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(244,195,0,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(244,195,0,.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-bottom:0px solid rgba(244,195,0,.12);
}
*/ /*
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  background: transparent;
} */

.site-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:50;

  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}


.nav{
  max-width:980px;
  margin:0 auto;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
}

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.10em;
  color:#fff;
  transition:.2s ease;
}

.nav-links a:hover{ color:rgba(244,195,0,.95); }

.nav-cta{
  padding:8px 14px;
  border:0px solid rgba(244,195,0,.6);
  border-radius:999px;
}

.nav-cta:hover{ background:rgba(244,195,0,.15); }

/* Logo sizing when used inside the nav */
.nav .site-logo{
  width:70px;
  margin:0;
  filter: drop-shadow(0 0 0px rgba(244,195,0,.35));
}

/* Mobile: allow wrap without breaking layout */
@media (max-width: 520px){
  .nav{ padding:14px 16px; }
  .nav-links{ gap:14px; }
  .nav-links a{ font-size:12px; letter-spacing:.08em; }
  .nav .site-logo{ width:62px; }
}

/* HERO (now sits below .site-header) */
.hero{
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(244,195,0,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(244,195,0,.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-bottom:0px solid rgba(244,195,0,.18);

  display:flex;
  align-items:end;
  padding:120px 20px 26px;


}

.hero-inner{
  max-width:980px;
  margin:0 auto;
  width:100%;
}

.kicker{
  letter-spacing:.22em;
  font-weight:700;
  font-size:12px;
  color:var(--yellow);
}

h1{
  margin:10px 0 8px;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height:1.02;
  letter-spacing:-.02em;
}

.sub{
  margin:0 0 18px;
  font-weight:650;
  letter-spacing:.02em;
}

.cta-row{display:flex;gap:12px;flex-wrap:wrap}

.btn{
  display:inline-block;
  padding:12px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:750;
  letter-spacing:.06em;
  font-size:12px;
}

.btn.primary{background:var(--yellow);color:#121212}
.btn.secondary{border:1px solid rgba(244,195,0,.75);color:var(--yellow)}

/* ===== SECTIONS / CARDS ===== */

.section{padding:70px 20px}
.container{max-width:980px;margin:0 auto}

.section h2{
  margin:0 0 8px;
  letter-spacing:.18em;
  font-size:14px;
  color:var(--yellow);
}

.muted{color:var(--muted)}

.grid{
  margin-top:18px;
  display:grid;
  gap:14px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.card{
  background:var(--panel);
  border:1px solid rgba(244,195,0,.18);
  border-radius:12px;
  padding:16px;
}

.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.footer{
  padding:28px 20px;
  border-top:1px solid rgba(244,195,0,.18);
}

/* ===== TAPE MEASURE DIVIDER (EXTENDING WITH TICKS) ===== */

.tape-wrap{padding:0 20px}

.tape-divider{
  width:100%;
  height:40px;
  overflow:hidden;
}

.tape-divider svg{
  width:100%;
  height:40px;
  display:block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2800ms cubic-bezier(.15,.9,.2,1);
}

.reveal-tape.is-on svg{ clip-path: inset(0 0 0 0); }

.tape-line{
  fill:none;
  stroke:var(--yellow);
  stroke-width:3;
  stroke-linecap:square;
  stroke-linejoin:miter;
}

@media (prefers-reduced-motion: reduce){
  .tape-divider svg{
    transition:none;
    clip-path: inset(0 0 0 0);
  }
}

/* ===== Contact Form (Aligned) ===== */

.form{
  max-width: 520px;
  margin-top: 20px;
}

/* One clean system for ALL rows */
.form .field{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.form .lbl{
  font-weight: 600;
  color: #fff;
}

.form input,
.form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(244,195,0,.25);
  background: #070707;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.form textarea{
  min-height: 120px;
  resize: vertical;
  align-self: start;
}

.form input:focus,
.form textarea:focus{
  outline: none;
  border-color: rgba(244,195,0,.9);
  box-shadow: 0 0 0 1px rgba(244,195,0,.3);
}

.form button{
  margin-top: 16px;
  margin-left: 152px;
  width: 160px;
}

.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 520px){
  .form .field{ grid-template-columns: 1fr; gap: 6px; }
  .form button{ margin-left: 0; }
}

/* ===== Gallery: 1-at-a-time slider (responsive, not huge) ===== */

.gallery-grid{
  display: grid;
  gap: 18px;
}

.gallery-card{
  padding: 18px;
}

.gallery-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.gallery-controls{
  display:flex;
  gap: 10px;
}

.gallery-controls .btn{
  width: 44px;
  height: 40px;
  padding: 0;
  display:grid;
  place-items:center;
}

.gallery-track{
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}

.gallery-track::-webkit-scrollbar{ display:none; }
.gallery-track{ scrollbar-width: none; }

.gallery-slide{
  flex: 0 0 100%;
  width: 100%;
  height: clamp(210px, 38vw, 360px);
  border-radius: 14px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(244,195,0,.18);
  scroll-snap-align: start;
  position: relative;
}

.gallery-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-cap{ display:none; }

/* ===== Site Logo (general use outside nav) ===== */

.site-logo{
  display: block;
  width: 120px;
  max-width: 40vw;
  height: auto;
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 0px rgba(244,195,0,.35));
}

@media (max-width: 600px){
  .site-logo{ width: 90px; }
}

.footer-logo{
  width: 70px;
  margin: 12px auto 0;
  opacity: .85;
}
