/* ============================================================
   LTB Landlord Paralegals — "Chambers" premium law-firm design
   Palette: Charcoal + Oxblood + Ivory · Cormorant Garamond + Inter
   Variable NAMES are preserved from the prior theme so existing
   template inline styles (var(--navy), var(--accent)...) re-skin.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Core ink (charcoal) — mapped onto old "navy" names */
  --navy: #1F2933;          /* primary dark: headings, dark sections */
  --navy-deep: #141A22;
  --ink: #1F2933;
  --charcoal: #222A33;

  /* Oxblood accent — mapped onto old "accent" names */
  --accent: #7B1E2B;        /* primary buttons, rules */
  --accent-bright: #9C2F3D; /* links, hovers */
  --accent-ink: #601822;    /* darkest — active/hover text */
  --accent-soft: #E8D0D3;   /* pale oxblood for text on dark */

  /* Ivory / warm neutrals — mapped onto old "soft" names */
  --ivory: #FCFAF6;         /* page background */
  --soft: #F7F2EA;          /* section alt / card bg */
  --ivory-3: #EFE6D6;       /* warm panel */
  --card: #FFFFFF;

  --muted: #54616F;         /* secondary text */
  --muted-2: #8C97A1;
  --line: #E7E1D5;          /* warm hairline */
  --line-strong: #D8CFBE;

  --shadow-tint: 0 1px 0 rgba(31,41,51,.03), 0 14px 34px -18px rgba(31,41,51,.20);
  --shadow-tint-lg: 0 1px 0 rgba(31,41,51,.05), 0 34px 60px -28px rgba(31,41,51,.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
  background: var(--ivory);
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.12;
}
h1 { font-weight: 600; }

a { color: var(--accent-bright); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-ink); }

img { max-width: 100%; height: auto; }

/* Small letterspaced eyebrow/kicker used across the site */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 16px;
}
.rule-accent { width: 54px; height: 3px; background: var(--accent); margin: 0 0 22px; border: none; }

/* ===== LAYOUT ===== */
.site-wrap { max-width: 1140px; margin: 0 auto; padding: 40px 24px 72px; }

/* ===== NAV ===== */
.site-nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Refined typographic wordmark (image logo hidden, serif lockup used) */
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { display: none; }             /* retire the old script logo image */
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 25px;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1;
}
.nav-logo::after {
  content: "Ontario LTB Representation";
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-top: 5px;
}

.nav-links { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.nav-links > a,
.nav-links .nav-dropdown-trigger {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-links > a:hover,
.nav-links .nav-dropdown-trigger:hover { color: var(--accent-bright); border-color: var(--accent); }

/* Dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 8px 0;
  margin-top: 12px;
  box-shadow: var(--shadow-tint-lg);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--soft); color: var(--accent-bright); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: .25s var(--ease); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); padding: 20px 24px;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.06); gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-links .nav-dropdown-trigger { border-bottom: none; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; margin-top: 4px; padding-left: 14px; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* ===== TOPBAR ===== */
.topbar {
  display: flex; gap: 18px; justify-content: center; align-items: center;
  background: transparent; color: var(--muted);
  border: none; border-bottom: 1px solid var(--line);
  border-radius: 0; padding: 0 0 16px; margin: 0 0 40px;
  flex-wrap: wrap; text-align: center; font-size: 13.5px;
}
.topbar a { color: var(--accent-bright); font-weight: 600; }
.topbar a:hover { color: var(--accent-ink); }

/* ===== HERO (dark charcoal, editorial) ===== */
.hero {
  background: var(--navy-deep);
  border: none;
  border-radius: 3px;
  padding: 76px 56px;
  margin: 0 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.04;
  color: #FCFAF6;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero p { margin: 0 0 30px; color: #c3c9d1; max-width: 54ch; font-size: 17px; line-height: 1.7; }
.hero .eyebrow { color: #D98F98; }
.hero .btn-ghost { border-color: rgba(255,255,255,.55); color: #FCFAF6; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
/* KPI strip on dark hero */
.hero .kpis { border-top-color: rgba(255,255,255,.15); }
.hero .kpis .k strong { color: #FCFAF6; }
.hero .kpis .k span { color: #aab1bb; }
/* Interior hero right-column asides (light text on dark) */
.hero aside strong { color: #FCFAF6; }
.hero-card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.03); }

/* Hero as full-bleed dark overlay (used on interior heroes) */
.hero-overlay { position: relative; border-radius: 3px; overflow: hidden; margin: 0 0 40px; color: #fff; }
.hero-overlay::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,26,34,.90) 30%, rgba(20,26,34,.62) 100%); }
.hero-inner { position: relative; padding: 96px 56px; text-align: left; z-index: 2; max-width: 62ch; }
.hero-inner h1 { color: #fff; font-size: clamp(36px,4.6vw,54px); }
.hero-inner p { color: #d8dce2; max-width: 54ch; }

/* ===== BUTTONS ===== */
.cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 3px; padding: 15px 30px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.03em; text-decoration: none;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  border: 1.5px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #FCFAF6; }
.btn-primary:hover { background: var(--accent-ink); color: #FCFAF6; text-decoration: none; }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); text-decoration: none; }
.btn-ghost:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }
/* Ghost buttons on dark heroes */
.hero-inner .btn-ghost, .hero-overlay .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero-inner .btn-ghost:hover, .hero-overlay .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ===== HERO PHOTO CARD ===== */
.hero-card { background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 10px; box-shadow: var(--shadow-tint); }
.hero-card img { display: block; width: 100%; border-radius: 2px; filter: grayscale(8%) contrast(1.02); }

/* ===== KPI cards (hero) ===== */
.kpis { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.kpis .k { padding: 22px 20px 0 0; font-size: 14px; }
.kpis .k strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.kpis .k span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.badge { display: inline-block; background: var(--soft); border: 1px solid var(--line); border-radius: 2px; padding: 4px 10px; font-size: 12px; color: var(--muted); }

@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ===== TRUST BAR ===== */
.trust { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin: 0 0 48px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--card); }
.trust .t { padding: 28px 26px; color: var(--muted); font-size: 14px; line-height: 1.55; border-right: 1px solid var(--line); }
.trust .t:last-child { border-right: none; }
.trust .t strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }

/* ===== SECTIONS ===== */
.section { background: transparent; border: none; border-top: 1px solid var(--line); border-radius: 0; padding: 56px 0; margin: 0; }
.section:first-of-type { border-top: none; }
.section h2 { margin: 0 0 26px; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 14px; }
/* Icons pulled back — hide the decorative chip in section headers */
.section h2 .icon { display: none; }
/* Category accent rail removed for a cleaner editorial look */
.section::before { display: none; }

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.bento { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.bento > .span-2 { grid-column: span 2; }

/* ===== CARDS (editorial, hairline-separated) ===== */
.card {
  background: var(--card); border: none; border-radius: 0;
  padding: 30px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: background .2s var(--ease);
}
.card:hover { background: var(--soft); }
.card h3 { margin: 0; font-family: 'Cormorant Garamond', serif; color: var(--ink); font-size: 22px; font-weight: 600; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ===== PILL / TEXT LINKS ===== */
.links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; border: none; border-radius: 0; background: transparent;
  color: var(--accent-bright); font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.pill:hover { color: var(--accent-ink); gap: 10px; text-decoration: none; }
.pill:active { transform: none; }
.pill svg { width: 13px; height: 13px; }

/* ===== ABOUT (zig-zag) ===== */
.about { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center; }
.about .imgwrap { border: 1px solid var(--line); background: var(--card); border-radius: 3px; padding: 10px; }
.about img { width: 100%; border-radius: 2px; display: block; filter: grayscale(10%) contrast(1.02); }

/* ===== TESTIMONIALS ===== */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote { padding: 32px 28px; border-right: 1px solid var(--line); }
.quote:last-child { border-right: none; }
.quote p { margin: 0; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.45; font-style: italic; font-weight: 500; }
.quote .who { margin-top: 16px; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--accent-bright); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--navy-deep); color: #fff;
  border-radius: 3px; padding: 52px 56px; margin-top: 48px; position: relative; overflow: hidden;
}
.contact-strip::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.contact-strip h2, .contact-strip div, .contact-strip a, .contact-strip strong, .contact-strip span { color: #fff !important; }
.contact-strip h2 { font-size: 34px; margin: 0 0 14px; font-weight: 600; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.contact-strip .mini { color: #aeb4bd !important; font-size: 13px; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.team-card { background: var(--card); border: none; border-radius: 0; overflow: hidden; text-align: left; transition: background .2s var(--ease); text-decoration: none; color: inherit; }
.team-card:hover { background: var(--soft); text-decoration: none; }
.team-card img, .team-card picture img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: grayscale(100%) contrast(1.03); transition: filter .4s var(--ease); }
.team-card:hover img, .team-card:hover picture img { filter: grayscale(0%) contrast(1.02); }
.team-card-placeholder { background: var(--soft); width: 100%; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; color: var(--muted-2); font-size: 13px; }
.team-card-body { padding: 26px 28px; }
.team-card h3 { margin: 0 0 4px; font-family: 'Cormorant Garamond', serif; color: var(--ink); font-size: 24px; font-weight: 600; }
.team-card p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ===== BLOG ===== */
.blog-card { background: var(--card); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: box-shadow .25s var(--ease), transform .25s var(--ease); text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-tint-lg); transform: translateY(-3px); text-decoration: none; }
.blog-card img, .blog-card picture img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 26px 28px; }
.blog-card h3 { margin: 0 0 10px; font-family: 'Cormorant Garamond', serif; color: var(--ink); font-size: 24px; font-weight: 600; line-height: 1.2; }
.blog-card p { margin: 0 0 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.blog-card .date { font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--accent-bright); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== EMPTY STATE ===== */
.empty-state { background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 64px 32px; text-align: center; color: var(--muted); grid-column: 1 / -1; }
.empty-state svg { width: 56px; height: 56px; color: var(--line-strong); margin-bottom: 18px; }
.empty-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--ink); margin: 0 0 8px; }
.empty-state p { margin: 0 0 16px; }

/* ===== PAGE / RICH CONTENT ===== */
.page-body { background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 52px 56px; }
.page-body h1, .page-body h2, .page-body h3 { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.page-body h1 { margin-top: 0; font-size: clamp(30px,4vw,44px); }
.page-body h2 { font-size: 28px; margin-top: 34px; }
.page-body h3 { font-size: 22px; margin-top: 26px; }
.page-body p { line-height: 1.75; color: #384049; }
.page-body a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.page-body ul, .page-body ol { padding-left: 24px; }
.page-body li { margin-bottom: 8px; }

/* ===== SERVICE DETAIL ===== */
.service-detail .hero-img { width: 100%; border-radius: 3px; margin-bottom: 26px; max-height: 440px; object-fit: cover; }

/* ===== STICKY MOBILE CALL BAR ===== */
.call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 15px 24px; background: var(--accent); color: #FCFAF6; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.03em;
  text-decoration: none; box-shadow: 0 -10px 30px -8px rgba(0,0,0,.3);
}
.call-bar:hover { background: var(--accent-ink); color: #FCFAF6; text-decoration: none; }
.call-bar svg { width: 17px; height: 17px; vertical-align: -3px; margin-right: 7px; }
@media (max-width: 860px) { .call-bar { display: block; } body { padding-bottom: 54px; } }

/* ===== FOOTER ===== */
.site-footer { border-top: 3px solid var(--accent); background: var(--navy-deep); color: #c8cdd4; margin-top: 72px; padding: 56px 24px 28px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-soft); margin: 0 0 18px; }
.footer-col p, .footer-col li, .footer-col a { font-size: 14px; color: #b7bdc5; line-height: 1.75; }
.footer-col strong { color: #fff; }
.footer-col a { color: #b7bdc5; }
.footer-col a:hover { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom { max-width: 1140px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #8992a0; }
.footer-bottom a { color: #8992a0; }
.footer-bottom a:hover { color: #fff; }
.built-by { max-width: 1140px; margin: 10px auto 0; text-align: center; font-size: 12.5px; color: #8992a0; }
.site-footer .built-by a { color: var(--accent-soft); }
.site-footer .built-by a:hover { color: #fff; text-decoration: underline; }
.footer-social a { background: rgba(255,255,255,.06) !important; color: #c8cdd4 !important; }
.footer-social a:hover { background: var(--accent) !important; color: #fff !important; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { justify-content: center; text-align: center; } }

/* ===== MINI TEXT ===== */
.mini { font-size: 12.5px; color: var(--muted); margin-top: 12px; line-height: 1.55; }

/* ===== ON-LOAD STAGGER ===== */
.stagger > * { animation: rise .55s var(--ease) backwards; }
.stagger > *:nth-child(1) { animation-delay: .04s; }
.stagger > *:nth-child(2) { animation-delay: .10s; }
.stagger > *:nth-child(3) { animation-delay: .16s; }
.stagger > *:nth-child(4) { animation-delay: .22s; }
.stagger > *:nth-child(5) { animation-delay: .28s; }
.stagger > *:nth-child(6) { animation-delay: .34s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust { grid-template-columns: 1fr 1fr; }
  .trust .t:nth-child(2) { border-right: none; }
  .trust .t { border-bottom: 1px solid var(--line); }
  .quotes { grid-template-columns: 1fr; }
  .quote { border-right: none; border-bottom: 1px solid var(--line); }
  .quote:last-child { border-bottom: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento > .span-2 { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero { padding: 48px 32px; }
  .hero-grid, .about { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { padding: 60px 32px; }
  .page-body { padding: 34px 28px; }
  .contact-strip { padding: 40px 32px; }
}
@media (max-width: 700px) {
  .grid-3, .grid-2, .bento { grid-template-columns: 1fr; }
  .bento > .span-2, .bento > .span-2-row { grid-column: auto; grid-row: auto; }
  .trust { grid-template-columns: 1fr; }
  .trust .t { border-right: none; }
  .kpis { grid-template-columns: 1fr; }
  .site-wrap { padding: 28px 20px 60px; }
  .contact-cta { flex-direction: column; align-items: flex-start; }
}
