/* =========================================================
   Kreator Construction - Static Site Stylesheet
   ---------------------------------------------------------
   Editing tips:
   - Brand colors: search for --brand and --dark below
   - Font sizes: search for --step
   - Spacing: search for --space
   ========================================================= */

:root{
  --dark:#0f1115;
  --text:#1b1f2a;
  --muted:#5b6478;
  --bg:#ffffff;
  --card:#f5f7fb;
  --border:#e6e9f2;

  /* Brand accent (change this to adjust buttons/highlights) */
  --brand:#d11212;

  /* Simple type scale */
  --step--1: 0.95rem;
  --step-0: 1.05rem;
  --step-1: 1.35rem;
  --step-2: 1.75rem;
  --step-3: 2.35rem;

  /* Spacing */
  --space-1: .5rem;
  --space-2: .85rem;
  --space-3: 1.25rem;
  --space-4: 1.85rem;
  --space-5: 2.6rem;

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

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem; width:auto; height:auto;
  padding:.6rem .8rem;
  background:var(--bg); border:1px solid var(--border);
  border-radius:10px;
  z-index:9999;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(15,17,21,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 0;
  gap: 1rem;
}
.brand{
  display:flex; align-items:center; gap:.75rem;
  color:#fff;
}
.brand-mark{
  width:36px; height:36px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--brand), #ff5a5a);
  box-shadow: 0 10px 20px rgba(209,18,18,.25);
}
.brand h1{
  font-size: 1.05rem;
  line-height:1.1;
  margin:0;
  letter-spacing:.3px;
}
.brand small{
  display:block;
  font-size:.82rem;
  color: rgba(255,255,255,.72);
  margin-top:.1rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: .9rem;
  flex-wrap:wrap;
}
.nav a{
  color: rgba(255,255,255,.9);
  padding:.45rem .6rem;
  border-radius:10px;
  font-weight:600;
  font-size:.95rem;
}
.nav a.active{
  background: rgba(255,255,255,.10);
}
.nav .btn{
  margin-left:.25rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.70rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none !important;
  white-space:nowrap;
}
.btn-primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 12px 22px rgba(209,18,18,.20);
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-ghost{
  border-color: rgba(255,255,255,.40);
  color:#fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  background:
    radial-gradient(900px 360px at 30% 15%, rgba(209,18,18,.35), transparent 60%),
    radial-gradient(900px 360px at 70% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, #0f1115 0%, #151827 100%);
  color:#fff;
  padding: 3.1rem 0 2.6rem;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items:center;
}
.hero h2{
  font-size: var(--step-3);
  line-height:1.08;
  margin:0 0 .8rem;
}
.hero p{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.82);
  font-size: var(--step-0);
  max-width: 60ch;
}
.hero-cards{
  display:grid;
  gap: .85rem;
}
.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem;
}
.hero-card strong{ display:block; }
.hero-card span{ color: rgba(255,255,255,.78); font-size:.95rem; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Sections / Layout
   ========================================================= */
.section{ padding: 2.4rem 0; }
.section h3{
  font-size: var(--step-2);
  margin: 0 0 1rem;
}
.lead{
  color: var(--muted);
  max-width: 70ch;
  margin-top:.2rem;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid-3{ grid-template-columns: 1fr; } }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.card h4{ margin:.1rem 0 .4rem; font-size: 1.12rem; }
.card p{ margin:0; color: var(--muted); }

.kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  font-weight:800;
  letter-spacing:.15px;
  color: var(--brand);
  text-transform: uppercase;
  font-size:.82rem;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px){ .gallery{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .gallery{ grid-template-columns: 1fr; } }

.gallery a{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:#000;
}
.gallery figcaption{
  padding: .75rem .9rem;
  background: #fff;
  color: var(--muted);
  font-size: .95rem;
}
.gallery img{
  width:100%;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: #0f1115;
  color: rgba(255,255,255,.82);
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items:start;
}
.footer-grid a{ color:#fff; }
.footer-small{ color: rgba(255,255,255,.65); font-size:.95rem; margin-top:.6rem; }

@media (max-width: 780px){
  .footer-grid{ grid-template-columns:1fr; }
}
