:root{
  --bg:#07090c;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif}
a{color:inherit;text-decoration:none}
button,input,textarea{font-family:inherit}
img{max-width:100%;height:auto;display:block}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important;animation:none !important;scroll-behavior:auto !important}
}

/* =========================
   HERO
========================= */
.hero{position:relative;min-height:88svh;display:flex;align-items:flex-end;padding:26px 18px;overflow:hidden}
.hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.78)),
    url("img/cosplay-08-redfox-rooftop-wide.webp") center 38% / cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero-inner{
  position:relative;width:min(980px,100%);margin:0 auto;
  padding:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}
.brand-title{font-size:28px;font-weight:680;letter-spacing:.2px}
.brand-sub{margin-top:6px;color:var(--muted);font-size:14px}
.hero-ctas{display:flex;gap:12px;margin-top:14px;flex-wrap:wrap}
.hero-note{margin-top:12px;color:var(--muted);font-size:14px}
@media (min-width:820px){.brand-title{font-size:34px}}

/* =========================
   SECTIONS
========================= */
.section{width:min(1100px,100%);margin:0 auto;padding:46px 18px}
.section-head h2{margin:0;font-size:22px}
.section-head p{margin:8px 0 0;color:var(--muted);max-width:60ch}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:999px;
  border:1px solid var(--border);
  font-weight:650;
  background:transparent;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn.primary{
  background:rgba(255,255,255,.92);
  color:#0b0d10;
  border-color:rgba(255,255,255,.92);
}
.btn:active{transform:scale(.99)}
@media (hover:hover){
  .btn:hover{border-color:rgba(255,255,255,.22)}
  .btn.primary:hover{background:rgba(255,255,255,.98)}
}

/* =========================
   WORK GRID (UNIFORM HEIGHT, NO CROP)
========================= */
.grid{margin-top:18px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
@media (min-width:820px){.grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}}

.tile{
  touch-action:manipulation;
  padding:0;border:1px solid rgba(255,255,255,.08);
  border-radius:14px;background:rgba(255,255,255,.03);
  cursor:pointer;overflow:hidden;

  aspect-ratio:4 / 5;
  display:flex;align-items:center;justify-content:center;
}
.tile img{
  max-width:100%;max-height:100%;
  width:auto;height:auto;
  object-fit:contain;object-position:center;
  transition:transform .18s ease;
}
@media (hover:hover){
  .tile:hover{border-color:rgba(255,255,255,.18)}
  .tile:hover img{transform:scale(1.02)}
}
.tile:active img{transform:scale(.99)}

/* Section breathers */
.grid-break{grid-column:1 / -1;height:18px}
@media (min-width:820px){.grid-break{height:24px}}

/* =========================
   SERVICES (cards + strip + FAQ)
========================= */
.cards{margin-top:18px;display:grid;grid-template-columns:1fr;gap:12px}
@media (min-width:820px){.cards{grid-template-columns:repeat(3,1fr)}}
.card{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.card h3{margin:0;font-size:16px}
.card p{margin:8px 0 0;color:var(--muted);font-size:14px;line-height:1.45}

/* bullets inside service cards */
.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.bullets li{margin:6px 0}
.card-meta{margin-top:10px;color:rgba(255,255,255,.58);font-size:13px}

/* service strip */
.service-strip{
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel2);
  display:grid;
  grid-template-columns:1fr;
  overflow:hidden;
}
.strip-item{padding:14px 16px;border-top:1px solid rgba(255,255,255,.10)}
.strip-item:first-child{border-top:0}
.strip-title{font-weight:650;font-size:13px;letter-spacing:.2px}
.strip-text{margin-top:6px;color:var(--muted);font-size:14px}
@media (min-width:820px){
  .service-strip{grid-template-columns:repeat(3,1fr)}
  .strip-item{border-top:0;border-left:1px solid rgba(255,255,255,.10)}
  .strip-item:first-child{border-left:0}
}

/* FAQ */
.faq{
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--panel2);
}
.faq-q{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 16px;
  background:transparent;
  border:0;
  color:var(--text);
  cursor:pointer;
  font-weight:650;
}
.faq-q:not(:first-child){border-top:1px solid rgba(255,255,255,.10)}
.faq-a{
  padding:0 16px 14px 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.faq-icon{
  display:inline-flex;
  width:28px;height:28px;
  align-items:center;justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.88);
  flex:0 0 auto;
}

/* =========================
   CONTACT (two-card layout + form)
========================= */
.contact-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media (min-width:900px){.contact-grid{grid-template-columns:1.1fr .9fr}}

.contact-card{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.contact-card h3{margin:0;font-size:16px}
.muted{color:var(--muted);margin:8px 0 0;font-size:14px;line-height:1.45}

.contact-form{
  margin-top:12px;
  display:grid;
  gap:12px;
}
.contact-form label{
  display:grid;
  gap:6px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  font-weight:600;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
.contact-form input:focus,
.contact-form textarea:focus{border-color:rgba(255,255,255,.35)}
.form-note{color:rgba(255,255,255,.55);font-size:12px}

.contact-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.contact-meta{
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  display:grid;
  gap:8px;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox{
  position:fixed;inset:0;
  background:rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:50;
}
.lightbox.open{display:flex}
.lb-img{
  max-width:min(1100px,100%);
  max-height:86svh;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow);
}
.lb-close{
  position:fixed;top:16px;right:16px;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:rgba(255,255,255,.95);
  font-size:26px;
  cursor:pointer;
}

/* =========================
   FOOTER
========================= */
.footer{
  width:min(1100px,100%);
  margin:0 auto;
  padding:0 18px 30px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}
