/* ID Security Services – Minimal site with About page + photos */

:root{
  --bg: #060607;
  --panel: rgba(16,16,18,.74);
  --text: #f2f2f4;
  --muted: #b8b8bf;
  --line: rgba(242,242,244,.12);

  --accent: #ff0013;     /* logo red */
  --accent2: #898989;    /* logo gray */
  --accentDark: #790013;

  --radius: 16px;
  --shadow: 0 10px 26px rgba(0,0,0,.42);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 8%, rgba(255,0,19,.14), transparent 62%),
    radial-gradient(820px 480px at 85% 18%, rgba(137,137,137,.12), transparent 62%),
    var(--bg);
  line-height: 1.6;
}

a{ color: inherit; }
img{ max-width: 100%; display: block; }
.container{ max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.muted{ color: var(--muted); }

/* Accessibility */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header with prominent logo (~10% of viewport height) */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(6,6,7,.80);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.brand{ text-decoration: none; display:flex; align-items:center; }
.brand-logo{
  height: clamp(80px, 11vh, 145px);
  width: auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
  border-color: var(--line);
}
.nav a[aria-current="page"]{
  color: var(--text);
  border-color: rgba(255,0,19,.22);
  background: rgba(255,0,19,.06);
}

.nav-toggle{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle svg{ width: 20px; height: 20px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight: 800;
  text-decoration: none;
}
.btn:hover{ background: rgba(255,255,255,.06); }
.btn-primary{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,0,19,.96), rgba(121,0,19,.92));
  box-shadow: var(--shadow);
}
.btn-primary:hover{ filter: brightness(1.03); }
.btn-ghost{ background: rgba(255,255,255,.02); }

/* Hero */
.hero{ padding: 44px 0 18px; }
.hero-inner{ display:grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.hero-copy{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.pill-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,0,19,.14);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.3px;
}
.lead{
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}
.actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.trust{
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.trust .dot{
  width: 4px; height: 4px; border-radius: 99px; background: rgba(242,242,244,.35);
}

/* Sections */
.section{ padding: 22px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-head h2{ margin:0; font-size: 22px; letter-spacing: -0.2px; }
.section-head p{ margin:0; color: var(--muted); font-size: 14px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(16,16,18,.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3{ margin: 0 0 8px; font-size: 16px; letter-spacing: -0.1px; }
.card p{ margin: 0; color: var(--muted); font-size: 14px; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  background: rgba(16,16,18,.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display:flex;
  gap: 14px;
}
.step-num{
  font-weight: 900;
  color: rgba(255,0,19,.92);
  letter-spacing: .3px;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); font-size: 14px; }

.callout{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,0,19,.20);
  background: rgba(255,0,19,.06);
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.callout p{ margin: 0; color: var(--text); }
.callout strong{ color: var(--text); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card .contact-item{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-label{ color: var(--muted); font-weight: 700; }
.contact-value{ text-decoration: none; border-bottom: 1px dashed rgba(242,242,244,.30); }
.contact-value:hover{ border-bottom-color: rgba(242,242,244,.65); }

.contact-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.note{ margin: 12px 0 0; color: var(--muted); font-size: 12px; }

/* Social */
.social{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  text-decoration: none;
  color: var(--text);
}
.social-btn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,0,19,.30);
}
.social-btn svg{ width: 20px; height: 20px; }

.mini{ margin-top: 12px; }
.mini-link{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed rgba(242,242,244,.25);
}
.mini-link:hover{ border-bottom-color: rgba(242,242,244,.65); color: var(--text); }

/* About photos */
.photo-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-card{
  padding: 0;
  overflow: hidden;
}
.photo-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.photo-card .caption{
  padding: 14px 16px 16px;
}
.caption h3{ margin: 0 0 6px; font-size: 16px; }
.caption p{ margin: 0; color: var(--muted); font-size: 13px; }
.credit{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.credit a{ text-decoration: none; border-bottom: 1px dashed rgba(242,242,244,.25); }
.credit a:hover{ border-bottom-color: rgba(242,242,244,.65); color: var(--text); }

/* Footer */
.footer{
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding: 18px 0 34px;
  background: rgba(0,0,0,.10);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-logo{ height: 30px; width: auto; opacity: .96; }

/* Responsive */
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .photo-grid{ grid-template-columns: 1fr; }
  .photo-card img{ height: 280px; }
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .nav-toggle{ display: inline-flex; }
  .nav{
    position: absolute;
    right: 20px;
    top: calc(100% + 8px);
    width: min(520px, calc(100vw - 40px));
    background: rgba(6,6,7,.95);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    display: none;
  }
  .nav.open{ display: grid; }
  .nav a{ width: 100%; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .contact-grid{ grid-template-columns: 1fr; }
  .brand-logo{ height: clamp(70px, 13vh, 132px); }
}
