
/* =========================================================
   BASE
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #0e0e0e;
  color: #fff;
  overflow-x: hidden;
  -webkit-user-select: none; /* discourage selection */
  -ms-user-select: none;
  user-select: none;
}

/* Prevent image dragging globally (extra safety) */
img, video {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* decorative media shouldn't be clickable */
}

/* =========================================================
   TOPBAR – sticky navigation
   ========================================================= */
.topbar{
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  transition: padding .25s ease, background .25s ease;
}
.topbar.scrolled{ background: rgba(0,0,0,.55); padding: .55rem 1rem; }
.brand{ text-decoration: none; }
.brand-text{
  color: #fff; font-weight: 800; letter-spacing: .10em;
  text-transform: uppercase;
  display: inline-block;
  transform-origin: left center;
}
.btn-ghost{
  color: #FFAA3C; text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  padding: .5rem .9rem; border-radius: 999px;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* =========================================================
   HERO – video + overlay + title
   ========================================================= */
.hero {
  position: relative;
  height: 62vh; max-height: 760px; min-height: 420px;
  overflow: hidden;
}
#heroVideo {
  position: absolute; inset: 0; width: 100%; height: 108%; top: -4%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(0.4) blur(2px);
  z-index: 0;
  pointer-events: none; /* prevent interactions */
}
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; pointer-events:none; }
.hero-content { position: relative; z-index: 2; text-align: center; top: 34%; }
.hero-content h1 {
  font-size: clamp(42px, 9vw, 80px);
  letter-spacing: 0.12em;
  margin: 0;
  text-shadow: 0 8px 28px rgba(255,255,255,.26);
  will-change: transform, letter-spacing, filter;
}
.hero-content p { font-size: 1.1rem; color: #aaa; }

/* ===== Scroll hint ===== */
.scroll-hint{
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: #fff; text-decoration: none; opacity: .9;
}
.scroll-hint .mouse{
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.75);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 6px;
}
.scroll-hint .wheel{
  width: 3px; height: 6px; background: rgba(255,255,255,.85); border-radius: 3px;
  animation: wheel 1.6s ease-in-out infinite;
}
.scroll-hint .hint-text{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }
@keyframes wheel{
  0% { transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(8px); opacity: .2; }
  100%{ transform: translateY(0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .scroll-hint .wheel{ animation: none; }
}

/* =========================================================
   SERVICES – text-only (3 items centered)
   ========================================================= */
.services-section{
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: clamp(56px, 10vw, 100px) 2rem;
}
.services-overlay{
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: clamp(18px, 2vw, 32px);
  max-width: 1100px; margin: 0 auto;
  justify-items: center;
  text-align: center;
}
@media (max-width: 960px){ .services-overlay{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-overlay{ grid-template-columns: 1fr; } }
.service h2{
  margin: 0 0 .35rem;
  font-size: clamp(18px, 2.3vw, 22px);
  letter-spacing: .06em;
  position: relative; display: inline-block;
}
.service h2::after{
  content:""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: rgba(255,255,255,.6);
  transition: width .3s ease;
}
.service:hover h2::after{ width: 48px; }
.service p{
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  color: #d4d4d4;
  line-height: 1.5;
}

/* =========================================================
   CONTACT – cinematic bg + premium glass card
   (BG set via CSS background-image on .contact-media)
   ========================================================= */
.contact {
  position: relative; min-height: 70vh;
  display: grid; place-items: center;
  overflow: hidden;
  scroll-margin-top: 80px;
  background: transparent;
  isolation: isolate;
}
/* Background image applied here instead of <img> */
.contact-media{
  position: absolute; inset: -2%; z-index: 0;
  background-image: url('contact-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(.35) contrast(1.05) saturate(1.05);
  pointer-events: none; /* make it non-interactive */
}
/* Soft vignette on top of media */
.contact-vignette{
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.5) 100%);
}
/* Subtle film grain */
.contact-noise{
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="table" tableValues="0 0 0 0 0 0 0.03 0"/></feComponentTransfer></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
  opacity: .4;
  mix-blend-mode: overlay;
}

/* Glass card */
.contact-card{
  position: relative; z-index: 3;
  width: min(720px, 90%);
  padding: clamp(24px, 4vw, 36px);
  background: rgba(15,15,15,.45);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  text-align: center;
}
.contact-card h2{
  margin: 0 0 .25rem;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: .04em;
}
.contact-card .contact-tag{
  margin: 0 0 1rem;
  color: #d8d8d8;
}
.contact-card::after{
  content:""; display:block; width: 72px; height: 2px; margin: .75rem auto 1.25rem;
  background: linear-gradient(90deg, transparent, #FFAA3C, transparent);
  opacity: .9;
}

/* Buttons */
.contact-actions{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.btn-primary, .btn-secondary{
  display: inline-flex; align-items: center; gap: 8px;
  padding: .75rem 1.1rem; border-radius: 12px;
  text-decoration: none; font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary{ background: #FFAA3C; color: #121212; border-color: #FFAA3C; }
.btn-primary:hover{ transform: translateY(-1px); }
.btn-secondary{ color: #fff; background: rgba(255,255,255,.06); }
.btn-secondary:hover{ background: rgba(255,255,255,.12); transform: translateY(-1px); }
.insta-icon{ width: 18px; height: 18px; display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { padding: 2rem; background: #111; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
