/* ===================================================================
   Studio One Marketing — site stylesheet
   Ported 1:1 from the design-canvas mockups' inline styles.
   =================================================================== */

/* ---------- Reset / base ---------- */
html, body { margin: 0; padding: 0; background: #1e1e1e; }
body {
  font-family: 'Archivo', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #f5f2ec;
  background: #1e1e1e;
  padding: 0 32px;
  min-height: 100vh;
}
a { color: #f5f2ec; text-decoration: none; }
a:hover { color: #e01212; }
::selection { background: #e01212; color: #1e1e1e; }
img, image-slot { filter: grayscale(100%); }
img.noBW, .noBW img { filter: none !important; }
* { box-sizing: border-box; }
input::placeholder, textarea::placeholder { color: #5c564a; }

@keyframes s1marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes s1marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (max-width: 720px) {
  body { padding: 0 10px; }
}

/* ---------- Side image rails ----------
   Hidden by default; only appear from 1820px up, scaled proportionally to
   viewport width (10vw each side) so they grow naturally on wider screens
   instead of eating a fixed chunk of a "standard" desktop width. */
.rail { display: none; position: fixed; top: 0; bottom: 0; width: 10vw; z-index: 40; background: #1e1e1e; }
.rail-left { left: 0; }
.rail-right { right: 0; }
.rail-col { display: flex; flex-direction: column; height: 100%; }
.rail-col > div { flex: 1; }
.rail-fade { position: absolute; inset: 0; pointer-events: none; }
.rail-fade-left {
  background:
    linear-gradient(180deg, rgba(30,30,30,0) 40%, rgba(30,30,30,0.95) 49%, rgba(30,30,30,0.95) 51%, rgba(30,30,30,0) 60%),
    linear-gradient(90deg, rgba(30,30,30,0.86) 0%, rgba(30,30,30,0.82) 35%, rgba(30,30,30,1) 100%);
}
.rail-fade-right {
  background:
    linear-gradient(180deg, rgba(30,30,30,0) 40%, rgba(30,30,30,0.95) 49%, rgba(30,30,30,0.95) 51%, rgba(30,30,30,0) 60%),
    linear-gradient(270deg, rgba(30,30,30,0.86) 0%, rgba(30,30,30,0.82) 35%, rgba(30,30,30,1) 100%);
}
@media (min-width: 1820px) {
  body { padding: 0 10vw; }
  .rail { display: block; }
}

/* ---------- Header / nav ---------- */
.site-header {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 32px; padding: 22px 48px; border-bottom: 1px solid #1e1c18;
  position: sticky; top: 0; background: rgba(30,30,30,0.92); backdrop-filter: blur(12px); z-index: 50;
}
.site-logo img { height: 84px; width: auto; display: block; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; font-size: 15px; letter-spacing: 0.14em; font-weight: 600; min-width: 0; }
.site-nav a { color: #f5f2ec; }
.site-nav a.active { color: #e01212; }
.site-call {
  border: 1px solid #e01212; color: #e01212; padding: 12px 24px; font-size: 16px;
  letter-spacing: 0.1em; font-weight: 700; border-radius: 999px; white-space: nowrap;
}
.site-call:hover { background: #e01212; color: #1e1e1e; }
.site-call-icon {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0; border: 1px solid #e01212; color: #e01212; border-radius: 50%;
}
.site-call-icon:hover { background: #e01212; color: #1e1e1e; }
.mobile-actions { display: flex; align-items: center; gap: 10px; }

.svc-menu-wrap { position: relative; }
.svc-menu-trigger { display: inline-flex; align-items: center; gap: 6px; }
.svc-menu-trigger .caret { font-size: 9px; color: #e01212; }
.svc-flyout {
  position: fixed; top: 88px; left: 50%; transform: translateX(-50%);
  width: min(760px, calc(100vw - 48px)); display: none;
  padding-top: 12px; /* bridges the visual gap so pointer travel from trigger to menu doesn't cross "dead" space */
  margin-top: -12px;
}
.svc-menu-wrap.open .svc-flyout { display: block; }
.svc-flyout-inner {
  background: #2a2823; border: 1px solid #26231d; padding: 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7); border-radius: 2px;
}
.svc-flyout-item { display: flex; gap: 10px; align-items: baseline; padding: 8px 6px; font-size: 13px; font-weight: 600; color: #c9c3b6; letter-spacing: 0.02em; border-radius: 2px; }
.svc-flyout-item:hover { color: #e01212; background: #1a1814; }
.svc-flyout-item .num { font-size: 10px; color: #5c564a; font-weight: 700; }
.svc-flyout-all { grid-column: 1 / -1; margin-top: 14px; padding-top: 14px; border-top: 1px solid #26231d; font-size: 12px; letter-spacing: 0.18em; font-weight: 700; color: #e01212; }

/* ---------- Hamburger (mobile nav) ---------- */
.hamburger {
  all: unset; display: none; box-sizing: border-box; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid #3a362e; border-radius: 8px; position: relative; flex-shrink: 0;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ''; display: block; width: 20px; height: 2px; background: #f5f2ec; position: relative; transition: transform .2s, opacity .2s, background .2s;
}
.hamburger span::before { position: absolute; top: -7px; }
.hamburger span::after { position: absolute; top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); background: #e01212; }
.hamburger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); background: #e01212; }
.mobile-nav-panel {
  display: none; position: fixed; inset: 0; z-index: 100; background: #1e1e1e;
  padding: 22px 28px; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-nav-panel.open { display: flex; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-top img { height: 56px; }
.mobile-nav-panel a { padding: 16px 4px; font-size: 20px; font-weight: 800; text-transform: uppercase; font-stretch: 80%; border-bottom: 1px solid #26231d; color: #f5f2ec; }
.mobile-nav-panel a.active { color: #e01212; }
.mobile-nav-panel .mobile-nav-sub { display: flex; flex-direction: column; padding-left: 16px; }
.mobile-nav-panel .mobile-nav-sub a { font-size: 14px; font-weight: 600; text-transform: none; padding: 10px 4px; border-bottom: none; color: #c9c3b6; }
.mobile-nav-panel .site-call { align-self: flex-start; margin-top: 20px; }
body.nav-open { overflow: hidden; }

@media (max-width: 1199px) {
  .hamburger { display: inline-flex; }
  .site-nav { display: none; }
  .site-call { display: none; }
  .site-call-icon { display: inline-flex; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 48px 40px; border-top: 1px solid #1e1c18;
}
.site-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr)); gap: 48px; margin-bottom: 56px; }
.site-footer-brand { display: flex; flex-direction: column; gap: 20px; }
.site-footer-brand img { height: 40px; width: auto; align-self: flex-start; }
.site-footer-brand p { margin: 0; color: #a8a294; font-size: 14px; line-height: 1.7; max-width: 300px; font-weight: 300; }
.site-footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer-col span.label { font-size: 12px; letter-spacing: 0.24em; color: #5c564a; font-weight: 700; margin-bottom: 6px; }
.site-footer-col a { color: #c9c3b6; }
.social-row { display: flex; gap: 12px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid #3a362e; border-radius: 50%; color: #c9c3b6; }
.site-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid #1e1c18; font-size: 12px; letter-spacing: 0.1em; color: #5c564a; }
.site-footer-bottom .links { display: flex; gap: 24px; }
.site-footer-bottom a { color: #5c564a; }

/* Simple footer (interior pages) */
.simple-footer {
  padding: 32px 48px; border-top: 1px solid #1e1c18; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.1em; color: #5c564a;
}
.simple-footer a { color: #5c564a; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 18px 36px; font-weight: 800; font-size: 14px; letter-spacing: 0.12em; border-radius: 999px; }
.btn-primary { background: #e01212; color: #1e1e1e; }
.btn-primary:hover { background: #f5f2ec; color: #1e1e1e; }
.btn-outline { border: 1px solid #3a362e; color: #f5f2ec; background: transparent; }
.btn-outline:hover { border-color: #e01212; color: #e01212; }
.btn-sm { padding: 12px 24px; font-size: 13px; }

/* ---------- Responsive base (shared across interior pages) ---------- */
.g2 { }
@media (max-width: 1000px) {
  .g2 { grid-template-columns: 1fr !important; }
  .sidenav {
    position: static !important; max-height: none !important; border-right: none !important;
    border-bottom: 1px solid #1e1c18; display: grid !important; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  }
}
@media (max-width: 720px) {
  header, section, footer, main, .px { padding-left: 20px !important; padding-right: 20px !important; }
  header.site-header { padding-top: 14px !important; padding-bottom: 14px !important; }
  .rowblurb { display: none !important; }
  h1, h2 { overflow-wrap: anywhere; }
  .site-nav { gap: 10px 16px !important; font-size: 12px !important; }
  section { padding-top: 56px !important; padding-bottom: 56px !important; }
  main { padding-left: 20px !important; padding-right: 20px !important; padding-top: 40px !important; }
  input, textarea, button { font-size: 16px !important; }
  .svccol { min-height: auto !important; }
  .heroSec { min-height: 70vh !important; }
  .runnerCard { width: 300px !important; }
  .pillar { padding-left: 0 !important; padding-right: 0 !important; border-right: none !important; border-bottom: 1px solid #26231d; }
}

/* ===================================================================
   Home page
   =================================================================== */
.heroSec { position: relative; min-height: min(86vh, 760px); display: flex; align-items: flex-end; overflow: hidden; background: #000; border-bottom: 1px solid #1e1c18; }
.heroSec img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s ease; }
.hero-scrim-1 { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,30,30,0.94) 0%, rgba(30,30,30,0.6) 48%, rgba(30,30,30,0.08) 100%); pointer-events: none; }
.hero-scrim-2 { position: absolute; left: 0; right: 0; bottom: 0; height: 45%; background: linear-gradient(180deg, rgba(30,30,30,0) 0%, rgba(30,30,30,0.85) 100%); pointer-events: none; }
.hero-content { position: relative; display: flex; flex-direction: column; gap: 26px; align-items: flex-start; max-width: 860px; padding: 120px 48px 56px; }
.hero-eyebrow { margin: 0; font-size: 13px; letter-spacing: 0.3em; font-weight: 600; color: #e01212; }
.hero-h1 { margin: 0; font-size: clamp(44px,5vw,88px); line-height: 0.98; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; font-stretch: 75%; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero-h1 span { color: #e01212; }
.hero-sub { margin: 0; font-size: 17px; line-height: 1.65; color: #c9c3b6; max-width: 540px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn-ghost { border: 1px solid #5c564a; background: rgba(30,30,30,0.5); color: #f5f2ec; }
.hero-ctas .btn-ghost:hover { border-color: #e01212; color: #e01212; }
.hero-slide-label { font-size: 12px; letter-spacing: 0.24em; color: #a8a294; font-weight: 700; }
.hero-arrows { position: absolute; bottom: 24px; right: 48px; display: flex; gap: 10px; }
.hero-arrow { all: unset; box-sizing: border-box; cursor: pointer; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: rgba(30,30,30,0.85); border: 1px solid #3a362e; color: #f5f2ec; font-size: 19px; border-radius: 50%; }
.hero-arrow:hover { border-color: #e01212; color: #e01212; }
.hero-arrow.next { border-color: #e01212; color: #e01212; }
.hero-arrow.next:hover { background: #e01212; color: #1e1e1e; }

.strip { display: block; border-top: 1px solid #1e1c18; border-bottom: 1px solid #1e1c18; background: #242320; position: relative; overflow: hidden; }
.strip-row { display: flex; align-items: center; }
.strip-label { flex-shrink: 0; padding: 20px 28px; border-right: 1px solid #33302a; background: #1e1e1e; position: relative; z-index: 2; }
.strip-label span { font-size: 12px; letter-spacing: 0.28em; font-weight: 700; color: #e01212; }
.strip-label.right { border-right: none; border-left: 1px solid #33302a; }
.strip-track-wrap { overflow: hidden; flex: 1; position: relative; }
.strip-track { display: flex; width: max-content; animation: s1marquee 55s linear infinite; align-items: center; }
.strip-item { display: inline-flex; align-items: center; gap: 12px; padding: 20px 0 20px 28px; white-space: nowrap; }
.strip-item span.txt { font-size: 15px; letter-spacing: 0.16em; font-weight: 700; color: #c9c3b6; text-transform: uppercase; }
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: #e01212; display: inline-block; }
.strip-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,#242320 0%,rgba(36,35,32,0) 6%,rgba(36,35,32,0) 92%,#242320 100%); }

.sec { padding: 88px 48px; border-bottom: 1px solid #1e1c18; }
.sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.eyebrow { margin: 0 0 16px; font-size: 13px; letter-spacing: 0.3em; color: #e01212; font-weight: 600; }
.h2-big { margin: 0; font-size: clamp(36px,4.5vw,64px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-stretch: 75%; line-height: 1; }
.sec-head-blurb { margin: 0; color: #a8a294; max-width: 360px; font-size: 15px; line-height: 1.6; font-weight: 300; }

.industry-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr)); gap: 14px; margin-bottom: 56px; }
.industry-card { border: 1px solid #26231d; background: #242320; display: flex; flex-direction: column; border-radius: 2px; overflow: hidden; }
.industry-card:hover { border-color: #e01212; background: #161210; }
.industry-img-wrap { position: relative; height: 180px; }
.industry-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-img-scrim { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(30,30,30,0.1) 0%,rgba(36,35,32,0.95) 100%); }
.industry-num { position: absolute; top: 16px; left: 20px; font-size: 12px; letter-spacing: 0.24em; color: #f5f2ec; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.industry-arrow { position: absolute; top: 12px; right: 20px; color: #e01212; font-size: 20px; font-weight: 700; }
.industry-body { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px 26px; }
.industry-name { font-size: clamp(26px,2.4vw,36px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; color: #f5f2ec; line-height: 0.98; }
.industry-blurb { font-size: 14px; color: #a8a294; font-weight: 300; line-height: 1.5; }
.runner-wrap { margin: 0 -48px; border-top: 1px solid #1e1c18; overflow: hidden; padding: 24px 0; }
.runner-track { display: flex; width: max-content; animation: s1marquee 60s linear infinite; }
.runner-item { white-space: nowrap; font-weight: 700; font-size: 17px; letter-spacing: 0.08em; color: #a8a294; text-transform: uppercase; padding-right: 16px; }

.svc-sec { padding: 88px 48px; border-bottom: 1px solid #1e1c18; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,460px),1fr)); gap: 56px 72px; align-items: start; }
.svc-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; max-width: 420px; }
.svc-sticky h2 { margin: 0; font-size: clamp(40px,4.5vw,72px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.svc-sticky h2 span { color: #e01212; }
.svc-sticky p { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; max-width: 340px; }
.svc-legend { display: flex; flex-direction: column; gap: 10px; }
.svc-legend-btn { all: unset; box-sizing: border-box; cursor: pointer; display: flex; align-items: baseline; gap: 12px; font-size: 13px; letter-spacing: 0.16em; font-weight: 700; text-transform: uppercase; color: #c9c3b6; }
.svc-legend-btn:hover { color: #e01212; }
.svc-legend-btn.active { color: #e01212; }
.svc-legend-btn .idx { color: #5c564a; font-size: 11px; width: 20px; display: inline-block; }
.svc-explore { align-self: flex-start; margin-top: 8px; color: #e01212; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; border-bottom: 2px solid #e01212; padding-bottom: 5px; }
.svc-explore:hover { color: #f5f2ec; border-color: #f5f2ec; }
.svccol { display: flex; flex-direction: column; gap: 40px; min-width: 0; min-height: 760px; align-content: start; }
.svc-group-toggle { all: unset; box-sizing: border-box; cursor: pointer; display: flex; align-items: center; gap: 16px; width: 100%; padding: 10px 0; margin-bottom: 8px; }
.svc-group-toggle:hover { color: #e01212; }
.svc-group-toggle .name { font-size: 12px; letter-spacing: 0.28em; color: #e01212; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.svc-group-toggle .rule { flex: 1; height: 1px; background: #26231d; }
.svc-group-toggle .count { font-size: 12px; color: #5c564a; font-weight: 700; }
.svc-group-toggle .mark { color: #e01212; font-size: 20px; font-weight: 300; width: 20px; text-align: center; line-height: 1; }
.svc-group-items { display: none; }
.svc-group.open .svc-group-items { display: block; }
.svc-group.open .svc-group-toggle .mark { }
.svc-row { display: grid; grid-template-columns: auto minmax(160px,1.2fr) minmax(0,300px) auto; gap: 16px; align-items: center; padding: 20px 12px; border-bottom: 1px solid #1e1c18; border-left: 3px solid transparent; }
.svc-row:hover { background: #2a2823; border-left-color: #e01212; }
.svc-row .num { font-size: 12px; letter-spacing: 0.14em; color: #5c564a; font-weight: 700; }
.svc-row .name { font-size: clamp(20px,1.8vw,28px); font-weight: 800; text-transform: uppercase; font-stretch: 80%; color: #f5f2ec; line-height: 1.05; }
.svc-row .blurb { font-size: 13px; color: #a8a294; font-weight: 300; line-height: 1.5; }
.svc-row .arrow { color: #e01212; font-size: 18px; font-weight: 700; }

.manifesto { padding: 96px 48px 0; border-bottom: 1px solid #1e1c18; background: #242320; }
.manifesto-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 56px; }
.manifesto-top a { color: #e01212; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; }
.manifesto h2 { margin: 0 0 64px; font-size: clamp(38px,4.8vw,84px); font-weight: 800; line-height: 1.02; text-transform: uppercase; font-stretch: 72%; max-width: 1200px; }
.manifesto h2 span { color: #e01212; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid #26231d; }
.pillar { padding: 40px 32px; border-right: 1px solid #26231d; display: flex; flex-direction: column; gap: 14px; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; border-right: none; }
.pillar .num { font-size: 12px; letter-spacing: 0.24em; color: #5c564a; font-weight: 700; }
.pillar .title { font-size: 24px; font-weight: 800; text-transform: uppercase; font-stretch: 78%; }
.pillar p { margin: 0; font-size: 14px; line-height: 1.7; color: #a8a294; font-weight: 300; }
.manifesto-imgs { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 16px; padding: 56px 0 0; transform: translateY(1px); }
.manifesto-imgs img { width: 100%; height: 300px; object-fit: cover; border-radius: 2px 2px 0 0; display: block; }

.reviews-sec { padding: 88px 0; border-bottom: 1px solid #1e1c18; overflow: hidden; }
.reviews-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; padding: 0 48px; margin-bottom: 48px; }
.reviews-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.reviews-stat-row { display: flex; align-items: center; gap: 12px; }
.g-badge { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #f5f2ec; color: #4285F4; font-weight: 800; font-size: 17px; }
.g-badge-lg { width: 34px; height: 34px; font-size: 19px; }
.stars { color: #e01212; font-size: 17px; letter-spacing: 2px; }
.reviews-track { display: flex; width: max-content; gap: 20px; animation: s1marquee 70s linear infinite; }
.runnerCard { width: 400px; flex-shrink: 0; border: 1px solid #26231d; background: #242320; padding: 28px; border-radius: 2px; display: flex; flex-direction: column; gap: 14px; box-sizing: border-box; }
.runnerCard .stars { font-size: 15px; }
.runnerCard p { margin: 0; font-size: 14px; line-height: 1.65; color: #c9c3b6; font-weight: 300; flex: 1; }
.runnerCard-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; }
.runnerCard-foot .name { font-weight: 700; color: #f5f2ec; }
.runnerCard-foot .date { color: #5c564a; }

.insights-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.insight-card { display: flex; flex-direction: column; gap: 16px; }
.insight-card:hover { color: #e01212; }
.insight-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 2px; display: block; }
.insight-meta { display: flex; gap: 12px; font-size: 12px; letter-spacing: 0.18em; color: #5c564a; font-weight: 700; }
.insight-title { font-size: 22px; font-weight: 700; color: #f5f2ec; line-height: 1.25; }

.cta-sec { padding: 110px 48px; text-align: center; background: #242320; }
.cta-sec h2 { margin: 0 0 20px; font-size: clamp(40px,6vw,84px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.98; }
.cta-sec h2 span { color: #e01212; }
.cta-sec p { margin: 0 auto 40px; color: #a8a294; max-width: 480px; line-height: 1.6; font-weight: 300; }
.cta-sec p, .sec .cta-sec p { font-size: 17px; }

/* ===================================================================
   About page
   =================================================================== */
.about-hero { padding: 96px 48px 72px; border-bottom: 1px solid #1e1c18; }
.about-hero h1 { margin: 0; font-size: clamp(44px,6.5vw,100px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; max-width: 1100px; }
.about-hero h1 span { color: #e01212; }
.about-hero-row { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; align-items: flex-end; margin-top: 44px; }
.about-hero-row p { margin: 0; font-size: 18px; line-height: 1.65; color: #a8a294; max-width: 560px; font-weight: 300; }

.split-sec { padding: 88px 48px; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,420px),1fr)); gap: 56px 72px; align-items: center; border-bottom: 1px solid #1e1c18; }
.split-sec h2 { margin: 0 0 24px; font-size: clamp(32px,3.6vw,52px); font-weight: 800; text-transform: uppercase; font-stretch: 80%; line-height: 1.05; }
.split-sec .body-copy { display: flex; flex-direction: column; gap: 18px; color: #a8a294; font-size: 16px; line-height: 1.75; font-weight: 300; max-width: 560px; }
.split-sec .body-copy p { margin: 0; }
.about-story-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-story-imgs img { width: 100%; height: 360px; object-fit: cover; border-radius: 2px; display: block; }
.about-story-imgs img:last-child { margin-top: 48px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.value-card { border: 1px solid #26231d; background: #242320; padding: 32px 28px; border-radius: 2px; display: flex; flex-direction: column; gap: 14px; }
.value-card .num { font-size: 12px; letter-spacing: 0.2em; color: #5c564a; font-weight: 700; }
.value-card .title { font-size: 21px; font-weight: 800; text-transform: uppercase; font-stretch: 80%; color: #e01212; }
.value-card p { margin: 0; font-size: 14px; line-height: 1.65; color: #a8a294; font-weight: 300; }

.process-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; max-width: 420px; }
.process-sticky h2 { margin: 0; font-size: clamp(36px,4vw,64px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.process-sticky p { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; }
.process-list { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 28px 12px; border-bottom: 1px solid #1e1c18; align-items: baseline; }
.process-step .num { font-size: clamp(28px,2.6vw,40px); font-weight: 800; font-stretch: 75%; color: #e01212; }
.process-step .title { font-size: 22px; font-weight: 800; text-transform: uppercase; font-stretch: 80%; }
.process-step p { margin: 0; font-size: 14px; line-height: 1.65; color: #a8a294; font-weight: 300; max-width: 520px; }

.proof-sec { padding: 88px 48px; border-bottom: 1px solid #1e1c18; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,420px),1fr)); gap: 56px 72px; align-items: center; }
.proof-sec h2 { margin: 0 0 24px; font-size: clamp(32px,3.6vw,52px); font-weight: 800; text-transform: uppercase; font-stretch: 80%; line-height: 1.05; }
.proof-sec p.lead { margin: 0 0 32px; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; max-width: 520px; }
.proof-sec .g-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.proof-sec .g-row .score { font-size: 30px; font-weight: 800; }
.proof-sec .g-row .label { font-size: 14px; color: #a8a294; }
.proof-sec img { width: 100%; height: 420px; object-fit: cover; border-radius: 2px; display: block; }
.proof-sec .read-link { color: #e01212; font-weight: 700; font-size: 14px; letter-spacing: 0.14em; border-bottom: 2px solid #e01212; padding-bottom: 6px; }
.proof-sec .read-link:hover { color: #f5f2ec; border-color: #f5f2ec; }

.visit-sec { padding: 88px 48px; text-align: center; background: #242320; border-bottom: 1px solid #1e1c18; }
.visit-sec h2 { margin: 0 0 16px; font-size: clamp(36px,5vw,72px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.98; }
.visit-sec h2 span { color: #e01212; }
.visit-sec p { margin: 0 auto 32px; color: #a8a294; font-size: 16px; max-width: 440px; line-height: 1.7; font-weight: 300; }
.visit-sec .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   Services page
   =================================================================== */
.svc-page-hero { padding: 64px 48px 40px; border-bottom: 1px solid #1e1c18; }
.svc-page-hero .inner { max-width: 1360px; margin: 0 auto; }
.svc-page-hero h1 { margin: 0; font-size: clamp(40px,5.5vw,80px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 1; }
.svc-layout { display: grid; grid-template-columns: minmax(260px,320px) 1fr; align-items: start; max-width: 1360px; margin: 0 auto; }
.sidenav { border-right: 1px solid #1e1c18; position: sticky; top: 89px; max-height: calc(100vh - 89px); overflow-y: auto; padding: 16px 0; }
.sidenav a { display: flex; gap: 14px; align-items: baseline; padding: 12px 28px; font-size: 14px; font-weight: 600; border-left: 3px solid transparent; }
.sidenav a:hover { color: #e01212; }
.sidenav a.active { background: #2a2823; color: #e01212; border-left-color: #e01212; }
.sidenav a .num { font-size: 11px; letter-spacing: 0.14em; color: #5c564a; font-weight: 700; }
.svc-main { padding: 56px 64px 88px; min-width: 0; }
.svc-main .kicker { font-size: 13px; letter-spacing: 0.24em; color: #5c564a; font-weight: 700; }
.svc-main h2 { margin: 14px 0 10px; font-size: clamp(36px,4.5vw,64px); font-weight: 800; text-transform: uppercase; font-stretch: 80%; line-height: 1; }
.svc-main .tag { margin: 0 0 28px; font-size: 22px; font-weight: 600; color: #e01212; }
.svc-main .desc { margin: 0 0 18px; font-size: 17px; line-height: 1.75; color: #c9c3b6; font-weight: 300; max-width: 640px; }
.svc-main .more { margin: 0 0 44px; font-size: 15px; line-height: 1.75; color: #a8a294; font-weight: 300; max-width: 640px; }
.svc-main .label { margin: 0 0 16px; font-size: 12px; letter-spacing: 0.24em; color: #5c564a; font-weight: 700; }
.svc-points { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; max-width: 720px; margin-bottom: 52px; }
.svc-points .pt { border: 1px solid #26231d; padding: 18px 20px; display: flex; gap: 12px; font-size: 15px; color: #f5f2ec; font-weight: 500; border-radius: 999px; }
.svc-points .pt span.dash { color: #e01212; }
.svc-steps { display: flex; flex-direction: column; max-width: 720px; margin-bottom: 52px; }
.svc-steps .step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: baseline; padding: 18px 4px; border-bottom: 1px solid #1e1c18; }
.svc-steps .step .num { font-size: 26px; font-weight: 800; font-stretch: 75%; color: #e01212; }
.svc-steps .step .title { font-size: 17px; font-weight: 700; text-transform: uppercase; font-stretch: 80%; }
.svc-steps .step .txt { font-size: 14px; color: #a8a294; font-weight: 300; line-height: 1.6; }
.svc-fit { border: 1px solid #26231d; background: #242320; border-left: 3px solid #e01212; padding: 24px 28px; max-width: 720px; margin-bottom: 52px; border-radius: 2px; }
.svc-fit p { margin: 0; font-size: 16px; line-height: 1.7; color: #f5f2ec; font-weight: 500; }
.svc-related { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px; }
.svc-related a { border: 1px solid #3a362e; color: #c9c3b6; padding: 12px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; border-radius: 999px; }
.svc-related a:hover { border-color: #e01212; color: #e01212; }
.svc-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================================================================
   Industries page
   =================================================================== */
.ind-hero { padding: 72px 48px 0; border-bottom: 1px solid #1e1c18; }
.ind-hero-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px 64px; align-items: end; margin-bottom: 48px; }
.ind-hero-top h1 { margin: 0; font-size: clamp(44px,6vw,96px); font-weight: 800; text-transform: uppercase; font-stretch: 72%; line-height: 0.92; }
.ind-hero-top h1 span { color: #e01212; }
.ind-hero-right { display: flex; flex-direction: column; gap: 20px; padding-bottom: 8px; }
.ind-hero-right p { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; max-width: 380px; }
.ind-stats { display: flex; gap: 40px; }
.ind-stats .stat { display: flex; flex-direction: column; gap: 2px; }
.ind-stats .stat .num { font-size: 36px; font-weight: 800; font-stretch: 75%; color: #f5f2ec; }
.ind-stats .stat .num span { color: #e01212; }
.ind-stats .stat .label { font-size: 11px; letter-spacing: 0.22em; color: #5c564a; font-weight: 700; }
.ind-index { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); border: 1px solid #1e1c18; border-bottom: none; }
.ind-index a { display: flex; flex-direction: column; gap: 22px; padding: 22px 20px 18px; border-right: 1px solid #1e1c18; border-top: 3px solid transparent; }
.ind-index a:hover { background: #161210; }
.ind-index a.active { border-top-color: #e01212; background: #161210; }
.ind-index a .num { font-size: 11px; letter-spacing: 0.2em; color: #5c564a; font-weight: 700; }
.ind-index a .name { font-size: 16px; font-weight: 800; text-transform: uppercase; font-stretch: 78%; line-height: 1.1; color: #f5f2ec; }
.ind-index a.active .name { color: #e01212; }
.ind-runner-wrap { margin: 0 -48px; border-top: 1px solid #1e1c18; background: #242320; position: relative; overflow: hidden; }

.ind-detail { padding: 72px 48px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px 72px; align-items: start; border-bottom: 1px solid #1e1c18; }
.ind-detail-left { display: flex; flex-direction: column; gap: 24px; }
.ind-detail-left h2 { margin: 0; font-size: clamp(40px,4.6vw,76px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.ind-detail-left h2 span { color: #e01212; }
.ind-detail-left .tag { margin: 0; font-size: 21px; font-weight: 600; color: #e01212; }
.ind-detail-left .desc { margin: 0; font-size: 16px; line-height: 1.75; color: #c9c3b6; font-weight: 300; max-width: 600px; }
.ind-detail-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.ind-detail-img { height: 280px; border: 1px solid #26231d; border-radius: 2px; overflow: hidden; }
.ind-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ind-points .pt { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: baseline; padding: 16px 4px; border-bottom: 1px solid #1e1c18; }
.ind-points .pt .dash { color: #e01212; font-weight: 700; }
.ind-points .pt .title { font-size: 16px; font-weight: 700; color: #f5f2ec; }
.ind-points .pt .txt { font-size: 13px; color: #a8a294; font-weight: 300; line-height: 1.5; }
.ind-points .pt .arrow { color: #e01212; font-size: 15px; font-weight: 700; }

/* ===================================================================
   Reviews page
   =================================================================== */
.rev-hero { padding: 72px 48px 56px; border-bottom: 1px solid #1e1c18; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; }
.rev-hero h1 { margin: 0 0 20px; font-size: clamp(40px,5.5vw,80px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 1; }
.rev-hero p.lead { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; max-width: 480px; }
.rev-card-summary { border: 1px solid #26231d; padding: 32px; border-radius: 2px; background: #242320; }
.rev-card-summary .top { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.rev-card-summary .top .score { font-size: 56px; font-weight: 800; line-height: 1; }
.rev-bar-row { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #a8a294; margin-bottom: 8px; }
.rev-bar-row .lbl { width: 32px; font-weight: 700; }
.rev-bar-row .track { flex: 1; height: 6px; background: #1e1c18; border-radius: 3px; overflow: hidden; }
.rev-bar-row .fill { height: 100%; background: #e01212; }
.rev-bar-row .cnt { width: 24px; text-align: right; }
.rev-write-link { display: inline-block; margin-top: 24px; color: #e01212; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; }

.rev-grid-sec { padding: 56px 48px 88px; }
.rev-cols { columns: 3 320px; column-gap: 20px; }
.rev-card { display: inline-block; width: 100%; margin-bottom: 20px; break-inside: avoid; border: 1px solid #26231d; background: #242320; padding: 28px; border-radius: 2px; box-sizing: border-box; }
.rev-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.rev-card .stars-off { color: #3a362e; }
.rev-card p { margin: 0 0 18px; font-size: 14px; line-height: 1.65; color: #c9c3b6; font-weight: 300; }
.rev-card .foot { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.rev-card .foot .name { font-weight: 700; color: #f5f2ec; }
.rev-card .foot .date { color: #5c564a; }

/* ===================================================================
   FAQ page
   =================================================================== */
.faq-layout { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,420px),1fr)); gap: 56px 72px; padding: 72px 48px 88px; align-items: start; }
.faq-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; max-width: 420px; }
.faq-sticky h1 { margin: 0; font-size: clamp(44px,5vw,84px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.faq-sticky h1 span { color: #e01212; }
.faq-sticky p { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; }
.faq-contact-block { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #c9c3b6; }
.faq-contact-block a.phone { color: #e01212; font-weight: 700; font-size: 18px; }
.faq-list { display: flex; flex-direction: column; min-width: 0; }
.faq-item { border-bottom: 1px solid #1e1c18; }
.faq-q { all: unset; box-sizing: border-box; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: baseline; width: 100%; padding: 24px 12px; }
.faq-q:hover { background: #2a2823; }
.faq-q .num { font-size: 12px; letter-spacing: 0.14em; color: #5c564a; font-weight: 700; }
.faq-q .q { font-size: 20px; font-weight: 700; color: #f5f2ec; line-height: 1.3; }
.faq-item.open .faq-q .q { color: #e01212; }
.faq-q .mark { color: #e01212; font-size: 22px; font-weight: 300; line-height: 1; }
.faq-a { display: none; padding: 0 12px 28px 46px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { margin: 0; font-size: 15px; line-height: 1.75; color: #a8a294; font-weight: 300; max-width: 620px; }

/* ===================================================================
   Blog page
   =================================================================== */
.blog-hero { padding: 72px 48px 48px; border-bottom: 1px solid #1e1c18; }
.blog-hero h1 { margin: 0 0 16px; font-size: clamp(40px,5.5vw,84px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.blog-hero h1 span { color: #e01212; }
.blog-hero p { margin: 0; color: #a8a294; font-size: 16px; line-height: 1.7; font-weight: 300; max-width: 520px; }
.blog-list-sec { padding: 48px 48px 88px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr)); gap: 22px; }
.blog-card { border: 1px solid #26231d; background: #242320; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; }
.blog-card:hover { border-color: #e01212; }
.blog-card .thumb { width: 100%; height: 220px; background-size: cover; background-position: center; filter: grayscale(100%); }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card .meta { display: flex; gap: 12px; font-size: 11px; letter-spacing: 0.18em; color: #5c564a; font-weight: 700; }
.blog-card .meta .cat { color: #e01212; }
.blog-card .title { font-size: 22px; font-weight: 800; text-transform: uppercase; font-stretch: 80%; color: #f5f2ec; line-height: 1.15; }
.blog-card .excerpt { margin: 0; font-size: 14px; color: #a8a294; font-weight: 300; line-height: 1.6; flex: 1; }
.blog-card .read { color: #e01212; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; }

.article { padding: 64px 48px 88px; max-width: 840px; margin: 0 auto; }
.article .back { color: #e01212; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; }
.article .meta { display: flex; gap: 12px; font-size: 12px; letter-spacing: 0.18em; color: #5c564a; font-weight: 700; margin: 28px 0 16px; }
.article .meta .cat { color: #e01212; }
.article h1 { margin: 0 0 28px; font-size: clamp(34px,4.5vw,64px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 1; }
.article .feature-img { width: 100%; height: 380px; border-radius: 2px; margin-bottom: 36px; background-size: cover; background-position: center; filter: grayscale(100%); }
.article .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 36px; }
.article .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 2px; }
.article .body { font-size: 17px; line-height: 1.85; color: #c9c3b6; font-weight: 300; }
.article .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.article .tags span { border: 1px solid #3a362e; border-radius: 999px; padding: 7px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #a8a294; }
.article .article-cta { margin-top: 48px; padding-top: 32px; border-top: 1px solid #1e1c18; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ===================================================================
   Contact page
   =================================================================== */
.contact-hero { padding: 72px 48px 56px; border-bottom: 1px solid #1e1c18; }
.contact-hero h1 { margin: 0 0 20px; font-size: clamp(44px,5.5vw,88px); font-weight: 800; text-transform: uppercase; font-stretch: 75%; line-height: 0.95; }
.contact-hero h1 span { color: #e01212; }
.contact-hero p { margin: 0; color: #a8a294; font-size: 17px; line-height: 1.7; font-weight: 300; max-width: 520px; }
.contact-split { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,420px),1fr)); gap: 0; border-bottom: 1px solid #1e1c18; }
.contact-form-col { padding: 56px 48px; border-right: 1px solid #1e1c18; }
.contact-form-col .label { margin: 0 0 28px; font-size: 12px; letter-spacing: 0.28em; color: #5c564a; font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.contact-form .row2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 16px; }
.contact-form input, .contact-form textarea {
  box-sizing: border-box; width: 100%; background: #242320; border: 1px solid #26231d; color: #f5f2ec;
  padding: 16px 18px; font-size: 15px; font-family: inherit; border-radius: 999px; outline: none;
}
.contact-form textarea { border-radius: 20px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #e01212; }
.contact-form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-form .note { margin: 0; font-size: 12px; color: #5c564a; font-weight: 300; }
.form-status { margin: 0; font-size: 14px; font-weight: 600; padding: 14px 18px; border-radius: 999px; background: #242320; }
.form-status.ok { border: 1px solid #e01212; color: #e01212; }
.form-status.err { border: 1px solid #c94f3d; color: #e88a7a; }
.contact-info-col { padding: 56px 48px; display: flex; flex-direction: column; gap: 36px; }
.contact-info-block { display: flex; flex-direction: column; gap: 8px; }
.contact-info-block .label { font-size: 12px; letter-spacing: 0.28em; color: #5c564a; font-weight: 700; }
.contact-info-block .phone-link { color: #e01212; font-weight: 800; font-size: clamp(28px,3vw,44px); font-stretch: 80%; letter-spacing: -0.01em; }
.contact-info-block .sub { font-size: 14px; color: #a8a294; font-weight: 300; }
.contact-google-card { border: 1px solid #26231d; background: #242320; padding: 24px; border-radius: 2px; display: flex; align-items: center; gap: 16px; }
.contact-map-wrap { position: relative; border-bottom: 1px solid #1e1c18; }
.contact-map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(100%) invert(90%) contrast(85%); }
.contact-map-cta { position: absolute; bottom: 24px; left: 48px; background: #1e1e1e; border: 1px solid #e01212; color: #e01212; padding: 14px 24px; font-weight: 800; font-size: 13px; letter-spacing: 0.12em; border-radius: 999px; }
.contact-map-cta:hover { background: #e01212; color: #1e1e1e; }
.contact-reviews-sec { padding: 72px 48px; border-bottom: 1px solid #1e1c18; }
.contact-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }



@media(max-width:700px)
{h1.hero-h1 {
    font-size: 30px;
}
.svc-sticky{position:relative}
.svc-group{max-width:100%!important}
.svc-group-toggle{word-wrap:break-word;white-space:normal;width:100%!important;max-width:100%!important;max-width:100%!important;min-width:100%!important;letter-spacing:0!important;flex-direction:row!important;gap:0!important;background:#000;padding:10px}
button.svc-group-toggle *{letter-spacing:0!important}
.svc-sticky{top:0}
.svc-group-toggle .name{width:70%;white-space:break-spaces;word-wrap:normal}
.pillars{grid-template-columns:auto}
.manifesto-imgs{grid-template-columns:auto;flex-wrap:wrap}
.hero-content{padding:10px}
a.btn.btn-primary{padding:16px 20px;color:#fff}
a.btn.btn-ghost{padding:16px 20px}
a.site-logo,a.site-logo img{width:100%!important;height:auto!important}
header.site-header{flex-wrap:nowrap}	
}