/* VisualExpressionsPrinting.Com v2.1 PRODUCTS + HOME (Clean Pro Build) */
:root{
  --bg:#ffffff; --text:#0f172a; --muted:#475569; --border:#e2e8f0; --soft:#f8fafc;
  --accent:#005eff; --radius:16px; --shadow:0 10px 30px rgba(2,6,23,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.wrap{max-width:1120px;margin:0 auto;padding:0 18px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border)
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:14px 0
}
.brand{display:flex;align-items:center;gap:14px;min-width:260px}
.logo{height:54px;width:auto}
.brand-text strong{display:block;font-weight:900;letter-spacing:.2px}
.brand-text span{
  display:block;font-size:12px;color:var(--muted);
  text-transform:uppercase;letter-spacing:1px
}

.nav{
  display:flex;align-items:center;gap:14px;
  flex-wrap:wrap;justify-content:flex-end
}
.nav a{
  text-decoration:none;color:var(--muted);
  font-weight:800;font-size:14px;
  padding:10px 10px;border-radius:12px
}
.nav a:hover{background:var(--soft);color:var(--text)}
.nav a.active{color:var(--text);background:rgba(0,94,255,.08)}

.nav-phone{
  font-weight:900;
  color:var(--accent);
  white-space:nowrap;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;padding:10px 14px;
  border:1px solid transparent;text-decoration:none;
  font-weight:850;font-size:14px
}
.btn-solid{background:var(--accent);color:#fff;box-shadow:var(--shadow)}
.btn-ghost{background:#fff;border-color:var(--border);color:var(--text)}
.btn-soft{background:rgba(0,94,255,.10);border-color:rgba(0,94,255,.18);color:var(--accent)}

/* HOME HERO (Pro + matches your system) */
.hero{
  padding:56px 0 48px;
  background:linear-gradient(180deg,#ffffff,var(--soft));
  border-bottom:1px solid var(--border);
}
.hero-content{
  max-width:72ch;
}
.hero h1{
  font-size:44px;
  line-height:1.1;
  margin:0 0 14px;
  letter-spacing:-.3px;
}

.hero h1 span{
  color:var(--accent);
}

.hero p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:16px;
  max-width:70ch;
}
.hero .actions{
  margin-top:14px;
}

/* Page Head (Products / interior pages) */
.page-head{padding:34px 0 14px}
.h1{font-size:34px;line-height:1.15;margin:0 0 6px}
.sub{margin:0;color:var(--muted);max-width:70ch}

.kicker-row{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 0}
.kicker{
  font-size:12px;font-weight:900;
  border:1px solid var(--border);
  background:#fff;border-radius:999px;
  padding:6px 10px;color:var(--muted)
}

/* Sections */
.section{padding:22px 0}

/* Product grid */
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.card{
  border:1px solid var(--border);
  border-radius:22px;overflow:hidden;background:#fff;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  display:flex;flex-direction:column
}
.media{
  height:160px;
  background:
    radial-gradient(140px 140px at 20% 30%, rgba(0,94,255,.20), transparent 60%),
    radial-gradient(120px 120px at 80% 20%, rgba(15,23,42,.10), transparent 60%),
    linear-gradient(135deg,#ffffff,#f1f5f9);
}
.body{padding:14px 14px 16px}
.body h2{margin:0 0 6px;font-size:18px}
.body p{margin:0 0 12px;color:var(--muted);font-size:14px}
.meta{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 12px}
.tag{
  font-size:12px;font-weight:900;
  border-radius:999px;padding:6px 10px;
  background:var(--soft);
  border:1px solid var(--border);
  color:var(--muted)
}
.actions{display:flex;gap:10px;flex-wrap:wrap}

/* Quick quote */
.quote{
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#f8fafc);
  box-shadow:var(--shadow);
  padding:18px
}
.quote h3{margin:0 0 8px}
.quote p{margin:0 0 12px;color:var(--muted)}

.form{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.field{display:flex;flex-direction:column;gap:6px}

label{
  font-size:12px;font-weight:900;color:var(--muted);
  letter-spacing:.4px;text-transform:uppercase
}

input,select,textarea{
  font:inherit;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  background:#fff;
  outline:none
}
textarea{min-height:90px;resize:vertical}
.form .full{grid-column:1 / -1}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  margin-top:80px; /* increased for professional spacing */
}
.footer-inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap
}
.footer small{color:var(--muted)}

/* Responsive */
@media (max-width:900px){
  .grid{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  .brand{min-width:auto}
  .hero h1{font-size:34px}
}

/* FEATURED CATEGORIES (Home) */
.section-head{margin:0 0 14px}
.h2{font-size:22px;line-height:1.2;margin:0 0 6px}

.cat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:14px;
}

.cat-card{
  display:block;
  text-decoration:none;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  padding:16px;
  box-shadow:0 10px 24px rgba(2,6,23,.05);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.cat-card:hover{
  transform:translateY(-2px);
  border-color:rgba(0,94,255,.25);
  box-shadow:0 14px 34px rgba(2,6,23,.08);
}

.cat-title{font-weight:950;font-size:16px;margin:0 0 6px}
.cat-desc{color:var(--muted);font-size:14px;margin:0 0 12px}
.cat-meta{display:flex;gap:8px;flex-wrap:wrap}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

@media (max-width:900px){
  .cat-grid{grid-template-columns:1fr}
}

.section-head {
  margin-bottom: 10px;
}

/* WHY CHOOSE US (Home) */
.why{padding-top:8px}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:14px;
}
.why-card{
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  padding:16px;
  box-shadow:0 10px 24px rgba(2,6,23,.05);
}
.why-title{font-weight:950;font-size:16px;margin:0 0 6px}
.why-desc{color:var(--muted);font-size:14px;margin:0 0 12px}
.why-points{display:flex;gap:8px;flex-wrap:wrap}

@media (max-width:900px){
  .why-grid{grid-template-columns:1fr}
}

.why { padding-bottom: 10px; }
.footer { margin-top: 40px; }

.btn-solid{ box-shadow: 0 12px 30px rgba(0,94,255,.18); }

.section[id]{scroll-margin-top:92px}

.kicker{
  text-decoration:none;
}

/* =========================
   PORTFOLIO PAGE STYLES
   ========================= */

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 0;
}

.pill{
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:8px 12px;
  font-weight:900;
  color:var(--muted);
  cursor:pointer;
}

.pill[aria-pressed="true"]{
  background:rgba(0,94,255,.10);
  border-color:rgba(0,94,255,.18);
  color:var(--text);
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  padding:18px 0 0;
}

.item{
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
}

.thumb{
  height:180px;
  background:
    radial-gradient(140px 140px at 20% 30%, rgba(0,94,255,.20), transparent 60%),
    radial-gradient(120px 120px at 80% 20%, rgba(15,23,42,.10), transparent 60%),
    linear-gradient(135deg,#ffffff,#f1f5f9);
}

.meta{
  padding:14px 14px 16px;
}

.meta h3{
  margin:0 0 6px;
  font-size:16px;
}

.meta p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
}

.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.badge{
  font-size:12px;
  font-weight:900;
  border-radius:999px;
  padding:6px 10px;
  background:var(--soft);
  border:1px solid var(--border);
  color:var(--muted);
}

.cta{
  margin:18px 0 0;
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#f8fafc);
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

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

/* =========================
   PORTFOLIO PAGE (PRO)
   ========================= */

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 0;
}

.pill{
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:8px 12px;
  font-weight:900;
  color:var(--muted);
  cursor:pointer;
}

.pill:hover{
  border-color:rgba(0,94,255,.22);
  color:var(--text);
}

.pill[aria-pressed="true"]{
  background:rgba(0,94,255,.10);
  border-color:rgba(0,94,255,.18);
  color:var(--text);
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  padding:18px 0 0;
}

.item{
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
}

.thumb{
  height:180px;
  background:
    radial-gradient(140px 140px at 20% 30%, rgba(0,94,255,.20), transparent 60%),
    radial-gradient(120px 120px at 80% 20%, rgba(15,23,42,.10), transparent 60%),
    linear-gradient(135deg,#ffffff,#f1f5f9);
}

.item .meta{
  padding:14px 14px 16px;
}

.item .meta h3{
  margin:0 0 6px;
  font-size:16px;
}

.item .meta p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
}

.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.badge{
  font-size:12px;
  font-weight:900;
  border-radius:999px;
  padding:6px 10px;
  background:var(--soft);
  border:1px solid var(--border);
  color:var(--muted);
}

.cta{
  margin:18px 0 0;
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#f8fafc);
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width:900px){
  .gallery{ grid-template-columns:1fr; }
}
/* ===== Stepvanie image system ===== */
.media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #f5f5f5;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;      /* fills space without stretching */
  object-position: center;
}

/* Large hero (Home + Stepvanie page) */
.hero-media {
  aspect-ratio: 21 / 9;
  max-height: 520px;
}

/* Smaller banner (Products, Contact) */
.banner-media {
  aspect-ratio: 21 / 9;
  max-height: 320px;
}



