/* ============================================================
   BiggrBrands — Main Stylesheet
   Version: 2.2.0
   Redesign: DM Sans · Deep Navy accent · Light editorial premium
   ============================================================ */

:root {
  --bg:           #EDEDEA;
  --bg-alt:       #E6E3DC;
  --bg-dark:      #111111;
  --bg-navy:      #1A1A2E;
  --border:       #D5D2CB;
  --border-dark:  #1E1E1E;
  --text:         #111111;
  --text-muted:   #666666;
  --text-dim:     #999999;
  --text-light:   #EDEDEA;
  --text-light-dim: rgba(237,237,234,0.35);
  --accent:       #1A1A2E;
  --accent-mid:   #2E2E4A;
  --font:         'DM Sans', 'Helvetica Neue', sans-serif;
  --max-width:    1280px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.25s var(--ease);
  --transition-slow: 0.5s var(--ease);
  --section-pad:  80px;
  --radius:       0px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100% !important;
  max-width: 100% !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   Inspiro Override Resets
   ============================================================ */
html, body {
  width: 100% !important; max-width: 100% !important;
  margin: 0 !important; padding: 0 !important; overflow-x: hidden !important;
}
#page, #content, .site, .site-content, #primary, .content-area,
#main, .site-main-wrapper, #outer-container, .outer-wrap, #wrapper {
  margin: 0 !important; padding: 0 !important;
  max-width: none !important; width: 100% !important; float: none !important;
}
.site-nav li::before, .site-nav li::after,
nav li::before, nav li::after {
  content: none !important; display: none !important;
}
.site-nav li { list-style: none !important; padding: 0 !important; margin: 0 !important; }
#secondary, .widget-area { display: none !important; }
.entry-content { max-width: 100% !important; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  box-sizing: border-box;
}
.section { padding: var(--section-pad) 0; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 16px;
}
.eyebrow--light { color: var(--text-light-dim); }
.eyebrow--muted { color: var(--text-dim); }

h1, h2, h3, h4 { font-family: var(--font); color: var(--text); line-height: 1; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 0.85rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary { background: var(--bg); color: var(--text); }
.btn-primary:hover { background: var(--accent); color: var(--text-light); }
.btn-dark { background: var(--accent); color: var(--text-light); }
.btn-dark:hover { background: var(--bg); color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent; color: rgba(237,237,234,0.65); padding: 0;
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 0.5px solid rgba(237,237,234,0.35); padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--text-light); border-bottom-color: rgba(237,237,234,0.7); }
.btn-cta { background: var(--bg); color: var(--text); padding: 14px 36px; }
.btn-cta:hover { background: var(--accent); color: var(--text-light); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
  text-align: left !important;
}
.site-header.scrolled {
  background: rgba(237,237,234,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.bb-header-inner {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; flex-direction: row !important;
  flex-wrap: nowrap !important; width: 100% !important;
  max-width: var(--max-width) !important;
  margin-left: auto !important; margin-right: auto !important;
  padding: 18px 48px !important; box-sizing: border-box !important;
  text-align: left !important;
}
.site-header.scrolled .bb-header-inner { padding-top: 14px !important; padding-bottom: 14px !important; }

.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img,
.custom-logo-link img,
img.custom-logo {
  height: 26px !important; width: auto !important;
  max-height: 26px !important; display: block !important;
}
.logo-text { font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.logo-text span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); transition: color var(--transition); position: relative;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.active { color: var(--text); }
.nav-cta {
  background: var(--accent) !important; color: var(--text-light) !important;
  padding: 9px 20px !important; font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bg-dark) !important; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1010;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: var(--transition); transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px; padding-top: 90px;
}
.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.9;
  color: var(--text-light); margin-bottom: 24px;
}
.hero-content p {
  font-size: 14px; color: rgba(237,237,234,0.65);
  line-height: 1.75; max-width: 380px;
  margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(237,237,234,0.35); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; animation: fadeIn 2s 1s ease forwards; opacity: 0;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(237,237,234,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar { background: var(--bg-navy); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font); font-size: 3.2rem; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--text-light); display: block; margin-bottom: 6px;
}
.stat-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,237,234,0.3);
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.about-image {
  background: #D8D5CE; min-height: 500px; overflow: hidden;
  border-right: 1px solid var(--border);
}
.about-image img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(10%); }
.about-text {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 14px; font-size: 14px; font-weight: 300; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 36px; background: var(--border); border: 1px solid var(--border);
}
.about-value { background: var(--bg); padding: 16px 18px; transition: background var(--transition); }
.about-value:hover { background: #fff; }
.about-value h4 { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.about-value p { font-size: 11px; color: var(--text-dim); line-height: 1.6; font-weight: 300; margin: 0; }

/* ============================================================
   Services
   ============================================================ */
.services-section {
  background: var(--bg-alt); border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 0;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.services-header h2 { line-height: 1; }
.services-header p { font-size: 13px; color: var(--text-muted); max-width: 240px; text-align: right; line-height: 1.65; font-weight: 300; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--bg); padding: 30px 26px;
  border-top: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover { background: #fff; border-top-color: var(--accent); }
.service-num { font-size: 10px; color: #CCC; letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 500; }
.service-card h3 { font-size: 20px; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.15; }
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin: 0; }
.service-link {
  display: inline-block; margin-top: 14px; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: border-color var(--transition);
}
.service-link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   Process
   ============================================================ */
.process-section { background: var(--bg); border-bottom: 1px solid var(--border); padding: var(--section-pad) 0; }
.process-section h2 { margin-bottom: 44px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.process-step { background: var(--bg); padding: 28px 24px; transition: background var(--transition); }
.process-step:hover { background: #fff; }
.process-num {
  font-family: var(--font); font-size: 42px; font-weight: 700;
  color: var(--border); line-height: 1; margin-bottom: 14px; letter-spacing: -0.03em;
  transition: color var(--transition);
}
.process-step:hover .process-num { color: var(--accent); }
.process-step h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 12px; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin: 0; }

/* ============================================================
   Team
   ============================================================ */
.team-section { padding: var(--section-pad) 0; border-bottom: 1px solid var(--border); }
.team-section .eyebrow { color: var(--accent); }
.team-section h2 { color: var(--text); margin-bottom: 44px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.team-card { background: var(--bg); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img {
  width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
  filter:grayscale(20%); transition: filter var(--transition-slow), transform var(--transition-slow);
}
.team-card:hover .team-photo img { filter:grayscale(0%); transform:scale(1.03); }
.team-info { padding: 18px 20px 22px; border-top: 2px solid var(--border); transition: border-color var(--transition); }
.team-card:hover .team-info { border-top-color: var(--accent); }
.team-name { font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 3px; letter-spacing: -0.01em; }
.team-role { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; font-weight: 600; }
.team-bio { font-size: 12px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section {
  background: var(--bg-navy); padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.testimonials-section h2 { color: var(--text-light); margin-bottom: 48px; }
.testi-slide { display: none; }
.testi-slide.visible { display: block; }
.testi-quote {
  font-family: var(--font); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: var(--text-light); line-height: 1.55; letter-spacing: -0.01em;
  max-width: 720px; margin-bottom: 28px;
}
.testi-attr { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237,237,234,0.3); font-weight: 600; }
.testi-dots { display: flex; gap: 8px; margin-top: 36px; }
.testi-dot { width: 28px; height: 2px; background: rgba(255,255,255,0.1); cursor: pointer; border: none; padding: 0; transition: background var(--transition), width var(--transition); }
.testi-dot.active { background: var(--text-light); width: 44px; }

/* ============================================================
   CTA Banner — with BIGGR watermark
   ============================================================ */
.cta-banner {
  background: var(--bg-dark); padding: 100px 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-bottom: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.cta-banner-wm {
  position: absolute; font-family: var(--font);
  font-size: clamp(120px, 20vw, 220px); font-weight: 700;
  color: rgba(255,255,255,0.025); letter-spacing: -0.04em;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; user-select: none; line-height: 1;
}
.cta-banner .eyebrow { color: rgba(237,237,234,0.3); margin-bottom: 20px; }
.cta-banner h2 { font-size: clamp(3rem, 7vw, 5.5rem); color: var(--text-light); margin-bottom: 20px; position: relative; }
.cta-banner p { font-size: 14px; color: #444; max-width: 360px; line-height: 1.75; font-weight: 300; margin-bottom: 40px; position: relative; }
.cta-banner .btn-cta { position: relative; }

/* ============================================================
   Contact
   ============================================================ */
.contact-section { padding: var(--section-pad) 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 40px; font-weight: 300; font-size: 14px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--bg-alt);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: border-color var(--transition);
}
.contact-detail:hover .contact-detail-icon { border-color: var(--accent); }
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 2px; }
.contact-detail-value { font-size: 13px; color: var(--text); font-weight: 400; }
.contact-form-wrap {
  background: var(--bg-alt); border: 1px solid var(--border); padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  padding: 12px 14px; color: var(--text); font-size: 13px; font-family: var(--font);
  transition: border-color var(--transition); outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #CCC; }
.form-submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px;
}
.footer-brand p { font-size: 12px; color: var(--text-dim); margin: 14px 0 20px; font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.social-link:hover { border-color: var(--accent); background: var(--bg-alt); }
.social-link svg { width: 14px; height: 14px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.social-link:hover svg { stroke: var(--accent); }
.footer-cols { display: flex; gap: 52px; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 12px; color: var(--text-muted); font-weight: 300; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copy { font-size: 11px; color: var(--text-dim); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: var(--text-dim); transition: color var(--transition); font-weight: 300; }
.footer-legal a:hover { color: var(--text); }

/* ============================================================
   Page templates (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 72px; background: var(--bg-alt);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; max-width: 520px; font-weight: 300; }
.service-detail-hero { position: relative; height: 55vh; min-height: 380px; overflow: hidden; }
.service-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.88) 100%);
}
.service-detail-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 56px 0; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:0.8; } }

.anim-1 { animation: fadeUp 0.7s ease forwards; opacity:0; }
.anim-2 { animation: fadeUp 0.7s 0.12s ease forwards; opacity:0; }
.anim-3 { animation: fadeUp 0.7s 0.24s ease forwards; opacity:0; }
.anim-4 { animation: fadeUp 0.7s 0.36s ease forwards; opacity:0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 32px; }
  .bb-header-inner { padding: 16px 32px !important; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cols { gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 320px; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  .container { padding: 0 20px; }
  .bb-header-inner { padding: 14px 20px !important; justify-content: space-between !important; }
  .site-logo, .custom-logo-link { margin-left: 0 !important; margin-right: auto !important; }
  .menu-toggle { display: flex; margin-left: auto !important; }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(290px, 80vw); background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 40px 28px; gap: 24px;
    transform: translateX(100%); transition: transform var(--transition); z-index: 999;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 11px; color: var(--text); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services-header p { text-align: left; max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-content h1 { font-size: 3.2rem; }
  .cta-banner h2 { font-size: 3rem; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
