/* Base styles — black/white with orange accents */
:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #bfbfbf;
  --accent: #c09639;
  --card: #0a0a0a;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
img, video { display: block; width: 100%; height: auto; border-radius: var(--radius); }

a { color: var(--fg); text-decoration: none; }
a:hover { color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.6); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo { display: flex; gap: 10px; align-items: center; font-weight: 700; letter-spacing: 0.5px; }
.logo img { width: 28px; height: 28px; }
.nav { display: flex; gap: 22px; font-weight: 500; }
.nav a { position: relative; padding: 8px 2px; }
.nav a.active::after, .nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--accent); transform-origin: left; transform: scaleX(1);
}
.nav a::after { transform: scaleX(0); transition: transform .3s ease; }

.menu-toggle { display: none; background: transparent; border: 0; width: 40px; height: 32px; position: relative; }
.menu-toggle span { position: absolute; left: 0; right: 0; height: 2px; background: var(--fg); transform-origin: center; transition: .3s; }
.menu-toggle span:nth-child(1){ top: 6px; }
.menu-toggle span:nth-child(2){ top: 15px; }
.menu-toggle span:nth-child(3){ top: 24px; }

.hero { position: relative; min-height: 72vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero .hero-inner { max-width: 1100px; padding: 80px 20px; }
.hero h1 { font-size: clamp(36px, 6vw, 72px); line-height: 1.05; margin: 0 0 18px; }
.hero p { color: var(--muted); max-width: 700px; margin: 0 auto 28px; }
.noise { position: absolute; inset: -10%; background: radial-gradient(1200px 600px at 50% 70%, rgba(253, 146, 74, 0.15), transparent 60%), linear-gradient( to bottom, rgba(255,255,255,0.03), transparent 30% ); pointer-events: none; mix-blend-mode: screen; }

.section-pad { padding: 60px 20px; }
.section-head { max-width: 900px; margin: 0 auto 26px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 56px); margin: 0 0 8px; }
.accent { color: var(--accent); }

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; border: 1px solid #333; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,102,0,0.2); }
.btn-accent { background: var(--accent); color: #000; font-weight: 700; }

/* Swiper */
.swiper { width: min(1200px, 92vw); }
.swiper-slide { display: grid; width: 100%;place-items: center; padding: 8px; }
.swiper .swiper-button-prev, .swiper .swiper-button-next { color: var(--accent); }
.swiper .swiper-pagination-bullet-active { background: var(--accent); }

.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.about-shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.badges span { background: var(--card); border: 1px solid #1a1a1a; padding: 8px 12px; border-radius: 999px; color: var(--muted); }

.grid { --cols: 3; display: grid; grid-template-columns: repeat(var(--cols), 1fr); gap: 14px; max-width: 1200px; margin: 0 auto; }
.gallery-item { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,0.06); border-radius: var(--radius); pointer-events: none; }

.filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.filter-btn { padding: 8px 14px; border-radius: 999px; border: 1px solid #222; background: #0a0a0a; color: var(--muted); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { color: #000; background: var(--accent); border-color: var(--accent); }

.contact { display: grid; place-items: center; }
.contact-card { background: var(--card); border: 1px solid #111; border-radius: 24px; padding: 28px; width: min(900px, 92vw); box-shadow: var(--shadow); }
.contact-list { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; color: var(--muted); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form input, .form textarea { width: 100%; background: #0a0a0a; border: 1px solid #1a1a1a; color: var(--fg); padding: 12px 14px; border-radius: 12px; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 26px 20px; border-top: 1px solid rgba(255,255,255,0.06); background: #050505; }
.site-footer .socials a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid #333; margin-left: 6px; font-size: 12px; color: var(--muted); }
.site-footer .socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .grid { --cols: 2; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .site-header.open .nav { 
    position: absolute; top: 64px; right: 14px; background: #0a0a0a; border: 1px solid #1a1a1a; padding: 12px; border-radius: 14px; display: grid; gap: 8px; box-shadow: var(--shadow);
  }
}
@media (max-width: 520px) {
  .grid { --cols: 1; }
  .form .row { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  .swiper-slide .video-wrapper {
    width: 50%;
    margin: 0 auto;
  }
}


.video-wrapper { position: relative; display: block; width: 100%; border-radius: var(--radius); overflow: hidden; }
.video-wrapper video { display: block; width: 100%; height: auto; cursor: pointer; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6); color: var(--accent);
  border: none; border-radius: 50%; width: 64px; height: 64px; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s;
}
.play-btn:hover { background: rgba(0,0,0,0.8); }
.video-wrapper.playing .play-btn { display: none; }


