/* ============================================================
   VISIONEFX × Linoor — homepage styling
   Adapts the Linoor digital-agency look (Teko/Rubik, skew-curve
   buttons, dark numbered services, big uppercase headings) to the
   VISIONEFX brand: signal red #CC0000, black, white, light gray.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&family=Teko:wght@300;400;500;600;700&display=swap');

:root {
  --lin-red: #CC0000;
  --lin-red-d: #B00000;
  --lin-black: #16181d;
  --lin-ink: #222429;
  --lin-text: #6b6e76;
  --lin-muted: #9b9fa6;
  --lin-line: #ececf0;
  --lin-soft: #f5f6f8;
  --thm-font: 'Teko', sans-serif;
  --thm-body: 'Rubik', sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; overflow-x: clip; max-width: 100vw; scroll-behavior: smooth; }
#work, #services, #resources, #locations { scroll-margin-top: 90px; }
@keyframes vfxFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.lin { margin: 0; font-family: var(--thm-body); color: var(--lin-text); font-size: 16px; line-height: 2.0; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; overflow-x: clip; max-width: 100vw; }
.lin a { text-decoration: none; color: inherit; }
.lin img { max-width: 100%; display: block; }
.lin__container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.lin h1, .lin h2, .lin h3, .lin h4, .lin h5, .lin h6 {
  font-family: var(--thm-font); color: var(--lin-ink); font-weight: 400;
  line-height: 1.05; margin: 0; letter-spacing: 0.01em;
}

/* ---------- Section title ---------- */
.lin-sec { padding: 120px 0; }
.lin-sec--tight { padding: 90px 0; }
.lin-sec--flush-top { padding-top: 0; }
.lin-sec--pullup { margin-top: 0; }
.lin-sec--pullup-svc { margin-top: -130px; }
.sectitle { margin-bottom: 50px; }
.sectitle.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.sectitle__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--thm-body); font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--lin-red); margin-bottom: 18px;
}
.sectitle__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--lin-red); display: inline-block; }
.sectitle.centered .sectitle__eyebrow::before { display: none; }
.sectitle h2 {
  font-size: 64px; line-height: 0.95; text-transform: uppercase; color: var(--lin-ink); font-weight: 500;
}
.sectitle h2 strong { font-weight: 700; }
.sectitle h2 .dot { color: var(--lin-red); padding-left: 4px; }
.sectitle__lower { font-size: 16px; line-height: 1.9; color: var(--lin-text); padding-top: 26px; max-width: 60ch; }
.sectitle.centered .sectitle__lower { margin: 0 auto; }

/* ---------- Buttons (skew-curve) ---------- */
.tbtn {
  position: relative; display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  text-align: center; text-transform: uppercase; letter-spacing: 0.1em; border: 0;
  font-family: var(--thm-font); font-size: 19px; line-height: 1; font-weight: 500;
  padding: 19px 42px 16px; border-radius: 5px; overflow: hidden; transition: color .3s ease, background .3s ease;
}
.tbtn span, .tbtn i { position: relative; z-index: 1; }
.tbtn i { font-style: normal; font-size: 15px; transition: transform .3s ease; }
.tbtn:hover i { transform: translateX(4px); }
.tbtn::after {
  content: ""; position: absolute; right: -15px; top: 0; width: 26px; height: 100%;
  opacity: 0.2; z-index: 0; transform: skewX(-22deg); transition: all .5s ease;
}
.tbtn:hover::after { opacity: 1; right: 0; width: 110%; transform: skewX(0deg); }
.tbtn--red, .lin a.tbtn--red { background: var(--lin-red); color: #fff; }
.tbtn--red::after { background: var(--lin-black); }
.tbtn--dark, .lin a.tbtn--dark { background: var(--lin-ink); color: #fff; }
.tbtn--dark::after { background: var(--lin-red); }
.tbtn--light, .lin a.tbtn--light { background: #fff; color: var(--lin-ink); box-shadow: inset 0 0 0 1px var(--lin-line); }
.tbtn--light::after { background: var(--lin-red); }
.tbtn--light:hover, .lin a.tbtn--light:hover { color: #fff; }
.tbtn--ghost, .lin a.tbtn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
.tbtn--ghost::after { background: #fff; }
.tbtn--ghost:hover, .lin a.tbtn--ghost:hover { color: var(--lin-ink); }

/* ---------- Header ---------- */
.lin-header {
  position: sticky; top: 0; z-index: 40; background: #fff;
  border-bottom: 1px solid var(--lin-line);
}
.lin-header__inner { display: flex; align-items: center; justify-content: space-between; height: 90px; gap: 24px; }
.lin-logo { flex-shrink: 0; }
.lin-logo img { height: 21px; width: auto; }
.lin-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.lin-nav a {
  font-family: var(--thm-body); font-size: 15px; font-weight: 500; color: var(--lin-ink);
  padding: 10px 16px; border-radius: 4px; transition: color .2s ease;
}
.lin-nav a:hover, .lin-nav a.is-active { color: var(--lin-red); }
.lin-navlink { display: inline-flex; padding: 10px 14px; }
.lin-header__cta { display: flex; align-items: center; gap: 18px; }
.lin-header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--thm-font); font-size: 22px; color: var(--lin-ink); letter-spacing: 0.02em; white-space: nowrap; }
.lin-header__phone i { color: var(--lin-red); font-size: 18px; }
.lin-header__phone svg { width: 18px; height: 18px; }
.lin-header__tbtn { padding: 14px 28px 11px; font-size: 19px; white-space: nowrap; }

/* ---------- Hero ---------- */
.lin-hero { position: relative; overflow: hidden; background: var(--lin-black); color: #fff; }
.lin-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; z-index: 0; }
.lin-hero__veil { position: absolute; inset: 0; z-index: 1; background:
   linear-gradient(90deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.78) 38%, rgba(10,10,12,0.40) 70%, rgba(10,10,12,0.25) 100%),
   linear-gradient(0deg, rgba(10,10,12,0.85) 0%, transparent 34%); }
.lin-hero__inner { position: relative; z-index: 2; padding: 150px 15px 90px; }
.lin-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--thm-body); font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: #fff; margin-bottom: 22px;
}
.lin-hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--lin-red); }
.lin-hero h1 {
  color: #fff; font-size: 104px; line-height: 0.92; text-transform: uppercase; font-weight: 500;
  max-width: 14ch; letter-spacing: 0.005em;
}
.lin-hero h1 strong { font-weight: 700; }
.lin-hero h1 .dot { color: var(--lin-red); }
.lin-hero__lead { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.78); max-width: 52ch; margin: 26px 0 0; }
.lin-hero__cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.lin-hero__stats { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 70px; padding-top: 36px; padding-bottom: 8px; border-top: 1px solid rgba(255,255,255,0.14); }
.lin-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.lin-stat__num { display: flex; align-items: center; gap: 10px; }
.lin-stat__num b { font-family: var(--thm-font); font-size: 52px; font-weight: 500; color: #fff; line-height: 1; }
.lin-stat__stars { color: #fff; font-size: 18px; letter-spacing: 1px; }
.lin-stat__label { font-family: var(--thm-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); }

/* ---------- Intro / about ---------- */
.lin-about { background: #fff; }
.lin-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.lin-about__media { position: relative; }
.lin-about__media .shot { border-radius: 8px; overflow: hidden; box-shadow: 0 30px 70px rgba(20,20,30,0.18); border: 1px solid var(--lin-line); }
.lin-about__media .shot__bar { height: 38px; background: var(--lin-soft); display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--lin-line); }
.lin-about__media .shot__bar i { width: 11px; height: 11px; border-radius: 999px; background: #cfd2da; }
.lin-about__media .shot img { width: 100%; aspect-ratio: 16/12; object-fit: cover; object-position: top; }
.shot__imgwrap { position: relative; aspect-ratio: 16/12; overflow: hidden; }
.shot__imgwrap .shot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 1; transition: opacity .7s cubic-bezier(.4,0,.2,1); }
.shot__imgwrap .shot__img.is-entering { opacity: 0; }
.shot__imgwrap .shot__img.is-leaving { opacity: 0; }
.lin-about__stage { overflow: hidden; border-radius: 8px; box-shadow: 0 30px 70px rgba(20,20,30,0.18); }
.lin-about__media .shot { position: relative; display: block; }
.shot__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 18px 16px; font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: #fff; letter-spacing: 0.02em; background: linear-gradient(0deg, rgba(10,10,12,0.85), transparent); opacity: 0; transition: opacity .3s ease; }
.lin-about__media .shot:hover .shot__cap { opacity: 1; }
.lin-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.lin-dot { width: 11px; height: 11px; border-radius: 999px; border: 0; background: #c2c6cf; cursor: pointer; padding: 0; transition: width .25s ease, background .2s ease; }
.lin-dot:hover { background: var(--lin-ink); }
.lin-dot.is-active { width: 30px; background: var(--lin-red); }
.lin-about__media::before { content: ""; position: absolute; right: -22px; bottom: -22px; width: 160px; height: 160px;
  background-image: radial-gradient(var(--lin-red) 2px, transparent 2px); background-size: 18px 18px; opacity: 0.5; z-index: -1; }
.lin-list { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 18px; }
.lin-list li { position: relative; padding-left: 38px; font-size: 19.5px; line-height: 1.45; color: var(--lin-ink); font-weight: 600; }
.lin-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 999px; background: var(--lin-red); color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center; }

/* ---------- Services (dark, numbered) ---------- */
.lin-services { position: relative; background: var(--lin-black); color: #fff; background-image: url('../pattern-1.png'); background-repeat: repeat; background-position: center top; }
.lin-services .sectitle h2 { color: #fff; }
.lin-services .sectitle__lower { color: rgba(255,255,255,0.6); }
.lin-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lin-service { position: relative; padding: 46px 38px 40px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; transition: transform .35s ease, background .35s ease, border-color .35s ease; }
.lin-service::before { content: attr(data-num); position: absolute; right: 30px; top: 26px; font-family: var(--thm-font); font-size: 64px; line-height: 1; color: rgba(255,255,255,0.06); font-weight: 600; transition: color .35s ease; }
.lin-service:hover { transform: translateY(-8px); background: var(--lin-red); border-color: var(--lin-red); }
.lin-service:hover::before { color: rgba(255,255,255,0.18); }
.lin-service__icon { width: 64px; height: 64px; color: var(--lin-red); margin-bottom: 26px; transition: color .35s ease; }
.lin-service:hover .lin-service__icon { color: #fff; }
.lin-service__icon svg { width: 100%; height: 100%; }
.lin-service h3 { font-size: 30px; text-transform: uppercase; color: #fff; margin-bottom: 12px; font-weight: 500; line-height: 1; }
.lin-service p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.62); margin: 0 0 18px; transition: color .35s ease; }
.lin-service:hover p { color: rgba(255,255,255,0.9); }
.lin-service__more { font-family: var(--thm-font); font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lin-red); display: inline-flex; align-items: center; gap: 8px; transition: color .35s ease; }
.lin-service:hover .lin-service__more { color: #fff; }

/* ---------- Work / portfolio ---------- */
.lin-work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.lin-work-grid--3col { grid-template-columns: repeat(3, 1fr); }
.lin-work { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; background: #000; }
.lin-work img { width: 100%; aspect-ratio: 16/12; object-fit: cover; object-position: top; transition: transform .6s ease, opacity .4s ease; opacity: 0.92; }
.lin-work:hover img { transform: scale(1.06); opacity: 0.5; }
.lin-work__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 16px; transform: translateY(12px); opacity: 0; transition: all .4s ease; z-index: 2; }
.lin-work:hover .lin-work__cap { transform: translateY(0); opacity: 1; }
.lin-work__cap span { font-family: var(--thm-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--lin-red); font-weight: 600; }
.lin-work__cap b { display: block; font-family: var(--thm-font); font-size: 20px; text-transform: uppercase; color: #fff; font-weight: 500; line-height: 1.05; margin-top: 5px; }
.lin-catbar { margin-top: 54px; padding-top: 42px; border-top: 1px solid var(--lin-line); text-align: center; }
.lin-catbar--top { margin-top: 0; padding-top: 0; border-top: 0; margin-bottom: 44px; }
.lin-catbar__label { display: block; font-family: var(--thm-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--lin-red); margin-bottom: 22px; }
.lin-catchips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; max-width: 980px; margin: 0 auto; }
.lin-catchips .lin-chip { display: inline-flex; align-items: center; }
.lin-catchips .lin-chip:disabled { opacity: 0.4; cursor: default; }
.lin-catchips .lin-chip:disabled:hover { border-color: var(--lin-line); }
.lin-chip__n { font-style: normal; margin-left: 7px; font-size: 11px; font-weight: 700; opacity: 0.55; }
.lin-chip.is-active .lin-chip__n { opacity: 0.8; }
.lin-work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,12,0.92), transparent 60%); opacity: 0; transition: opacity .4s ease; z-index: 1; }
.lin-work:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.lin-testi { background: var(--lin-soft); scroll-margin-top: 96px; }
.lin-testi--dark { background: var(--lin-black); }
.lin-testi--dark .sectitle h2 { color: #fff; }
.lin-testi--dark .sectitle__lower { color: rgba(255,255,255,0.62); }
.lin-testi-cta { display: flex; justify-content: center; margin-top: 44px; }
.lin-rep-stats { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 56px; margin-bottom: 50px; }
.lin-rep-stat { text-align: center; }
.lin-rep-stat b { display: flex; align-items: center; justify-content: center; height: 58px; font-family: var(--thm-font); font-weight: 500; font-size: 40px; line-height: 1; color: #000000; white-space: nowrap; }
.lin-rep-stat .stat-sym { font-family: var(--thm-font); font-weight: 500; font-size: 56px; line-height: 1; }
.lin-rep-stat b.stat-words { font-size: 54px; text-transform: uppercase; }
.lin-rep-stat span { font-family: var(--thm-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: #000000; }
.lin-rep-grid { columns: 3; column-gap: 26px; }
.lin-testi--tight { padding-top: 56px; }
/* ---- Blog: 75/25 archive + article ---- */
.lin-blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.lin-blog-layout > * { min-width: 0; }
.lin-blog-main { min-width: 0; }
.lin-blog-item { display: block; padding: 26px 0; border-bottom: 1px solid var(--lin-line); }
.lin-blog-item:first-child { padding-top: 0; }
.lin-blog-item h3 { font-family: var(--thm-body); font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--lin-ink); letter-spacing: 0; margin: 0 0 10px; transition: color .2s ease; }
.lin-blog-item:hover h3 { color: var(--lin-red); }
.lin-blog-item p { font-size: 15.5px; line-height: 1.7; color: var(--lin-text); margin: 0 0 12px; }
.lin-blog-item__more { font-family: var(--thm-font); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lin-ink); display: inline-flex; align-items: center; gap: 7px; }
.lin-blog-item__more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.lin-blog-empty { color: var(--lin-muted); }
.lin-blog-item:hover .lin-blog-item__more { color: var(--lin-red); }
.lin-blog-item:hover .lin-blog-item__more svg { transform: translateX(4px); }
.lin-blogside { display: grid; gap: 22px; position: sticky; top: 100px; }
.lin-blogside__card, .lin-blogside__cta { background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 12px; padding: 24px; }
.lin-blogside__card h4, .lin-blogside__cta h4 { font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 14px; font-weight: 500; }
.lin-blogside__nav { display: grid; gap: 2px; max-height: 460px; overflow-y: auto; }
.lin-blogside__link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 10px; border-radius: 7px; font-size: 14px; font-weight: 500; color: var(--lin-ink); transition: background .15s ease, color .15s ease; }
.lin-blogside__link:hover { background: #fff; color: var(--lin-red); }
.lin-blogside__link.is-active { background: var(--lin-red); color: #fff; }
.lin-blogside__link.is-caps span { text-transform: uppercase; }
.lin-blogside__link em { font-style: normal; font-size: 11px; font-weight: 700; opacity: 0.6; }
.lin-blogside__link-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lin-blogside__link-meta svg { width: 13px; height: 13px; opacity: 0.45; transition: transform .15s ease, opacity .15s ease; }
.lin-blogside__link:hover .lin-blogside__link-meta svg { opacity: 0.9; transform: translateX(2px); }
.lin-blogside__cta { background: var(--lin-black); }
.lin-blogside__cta h4 { color: #fff; }
.lin-blogside__cta p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0 0 16px; }
.lin-blogside__cta .tbtn { justify-content: center; width: 100%; }
.lin-phero__byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,0.78); }
.lin-phero__byline .av { width: 40px; height: 40px; border-radius: 999px; background: var(--lin-red); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--thm-font); font-size: 17px; overflow: hidden; flex-shrink: 0; }
.lin-phero__byline .av--img img { width: 100%; height: 100%; object-fit: cover; }
.lin-article-author__mark--img { background: none; overflow: hidden; }
.lin-article-author__mark--img img { width: 100%; height: 100%; object-fit: cover; }
.lin-article-h1 { font-size: 46px; line-height: 1.04; text-transform: none; letter-spacing: -0.01em; }
.lin-article-hero { border-radius: 14px; overflow: hidden; border: 1px solid var(--lin-line); margin-bottom: 30px; width: fit-content; max-width: 100%; }
.lin-article-hero img { width: auto; height: auto; max-width: 100%; display: block; }
.lin-article-body img { border-radius: 10px; margin: 8px 0 20px; height: auto; width: auto; max-width: 100%; display: block; margin-right: auto; }
.lin-article-body .imgright { float: none; width: auto; max-width: 100%; margin: 8px 0 20px; }
.lin-article-body .imgright img { width: auto; max-width: 100%; margin: 0; }
/* article tables */
.lin-article-body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 14.5px; }
.lin-article-body table td, .lin-article-body table th { border: 1px solid var(--lin-line); padding: 11px 13px; text-align: left; vertical-align: top; line-height: 1.5; word-break: normal; overflow-wrap: normal; hyphens: none; }
.lin-article-body table td:first-child, .lin-article-body table th:first-child,
.lin-article-body table td:nth-child(2), .lin-article-body table th:nth-child(2) { white-space: nowrap; }
.lin-article-body table tr:first-child td, .lin-article-body table th { background: var(--lin-ink); color: #fff; font-weight: 600; }
.lin-article-body table tr:first-child td strong, .lin-article-body table th strong { color: #fff; }
.lin-article-body table tr:nth-child(even) td { background: var(--lin-soft); }
.lin-article-body table a { color: var(--lin-red); }
.lin-article-body .tbl-responsive, .lin-article-body figure.wp-block-table { overflow-x: auto; }
.lin-article-body iframe { width: 100%; aspect-ratio: 16/9; height: auto; border: 0; border-radius: 10px; margin: 8px 0 22px; display: block; }
.lin-article-body .lin-video { display: inline-block; vertical-align: top; width: 560px; max-width: 100%; margin: 8px 12px 22px 0; }
.lin-article-body .lin-video iframe { margin: 0; border-radius: 12px; }
.lin-article-body .lin-video--vertical { width: 240px; max-width: 46%; }
.lin-article-body .lin-video--vertical iframe { aspect-ratio: 9/16; }
.lin-article-body .lin-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 8px 0 24px; }
.lin-article-body .lin-video-grid iframe { width: 100%; aspect-ratio: 16/9; height: auto; margin: 0; border-radius: 12px; }
@media (max-width: 600px) { .lin-article-body .lin-video-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .lin-article-body .lin-video--vertical { width: 100%; max-width: 320px; } }
.lin-article-body { overflow-wrap: anywhere; word-break: break-word; }
.lin-article-body h2 { font-size: 30px; margin: 34px 0 14px; }
.lin-article-body h3 { font-family: var(--thm-body); font-size: 21px; font-weight: 700; margin: 26px 0 10px; color: var(--lin-ink); }
.lin-article-body hr { border: 0; border-top: 1px solid var(--lin-line); margin: 28px 0; }
.lin-article-body a { color: var(--lin-red); font-weight: 600; }
.lin-article-body ul { margin: 0 0 20px; padding-left: 22px; }
.lin-article-body li { font-size: 16px; line-height: 1.7; color: var(--lin-text); margin-bottom: 8px; }
.lin-article-body img.alignright, .lin-article-body img.alignleft, .lin-article-body img.alignnone, .lin-article-body img.aligncenter { float: none; display: block; width: auto; max-width: 100%; margin: 8px auto 20px 0; }
.lin-article-author { display: flex; gap: 18px; align-items: flex-start; margin-top: 40px; padding: 26px; background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 12px; }
.lin-article-author__mark { width: 54px; height: 54px; border-radius: 999px; background: var(--lin-black); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--thm-font); font-size: 22px; flex-shrink: 0; }
.lin-article-author h4 { font-family: var(--thm-font); font-size: 20px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 6px; font-weight: 500; }
.lin-article-author p { font-size: 14.5px; line-height: 1.7; color: var(--lin-text); margin: 0; }
@media (max-width: 920px) {
  .lin-blog-layout { grid-template-columns: 1fr; gap: 36px; }
  .lin-blogside { position: static; }
  .lin-article-h1 { font-size: 34px; }
}
.lin-rep-card { break-inside: avoid; margin: 0 0 26px; background: #fff; border: 1px solid var(--lin-line); border-radius: 12px; padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.lin-rep-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--lin-text); }
.lin-rep-card .lin-quote__who { margin-top: 2px; }
@media (max-width: 980px) { .lin-rep-grid { columns: 2; } }
@media (max-width: 620px) { .lin-rep-grid { columns: 1; } .lin-rep-stats { gap: 32px; } }
.lin-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lin-quote { background: #fff; border-radius: 8px; padding: 38px 34px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 12px 30px rgba(20,20,30,0.05); }
.lin-quote__stars { color: var(--lin-red); font-size: 16px; letter-spacing: 2px; }
.lin-quote p { font-size: 15.5px; line-height: 1.8; color: var(--lin-ink); margin: 0; flex: 1; }
.lin-quote__who b { font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: var(--lin-ink); font-weight: 500; display: block; line-height: 1; }
.lin-quote__who span { font-size: 13px; color: var(--lin-text); }

/* ---------- CTA band ---------- */
.lin-cta { position: relative; overflow: hidden; background: #AD061A; color: #fff; }
.lin-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: 80px 0; }
.lin-cta h2 { color: #fff; font-size: 60px; text-transform: uppercase; font-weight: 500; line-height: 0.95; max-width: 16ch; }
.lin-cta h2 strong { font-weight: 700; }
.lin-cta__inner .tbtn { font-size: 21px; padding: 22px 48px 18px; }

/* ---------- Footer ---------- */
.lin-footer { background: var(--lin-black); color: rgba(255,255,255,0.6); padding: 90px 0 30px; }
.lin-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.lin-footer__brand img { max-height: 40px; width: auto; margin-bottom: 20px; }
.lin-footer__brand img.lin-footer__logo-fallback { height: 21px; opacity: 0.9; filter: brightness(0) invert(1); }
.lin-footer__brand p { font-size: 14.5px; line-height: 1.8; margin: 0 0 18px; }
.lin-footer__brand .mono { font-family: var(--thm-body); font-size: 13.5px; line-height: 1.9; color: rgba(255,255,255,0.8); }
.lin-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.lin-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.lin-social a svg { width: 17px; height: 17px; }
.lin-social a:hover { background: var(--lin-red); border-color: var(--lin-red); color: #fff; transform: translateY(-2px); }
.lin-footer h4 { font-family: var(--thm-font); font-size: 24px; text-transform: uppercase; color: #fff; font-weight: 500; margin-bottom: 22px; letter-spacing: 0.03em; }
.lin-footer__col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.lin-footer__col a:hover { color: var(--lin-red); }

/* Widgets can insert real <ul>/<li> markup (e.g. WordPress's own
   Navigation Menu widget) rather than plain <a> tags - reset the
   browser's default list styling (bullets, indentation) so it lines
   up with the rest of this column instead of looking like a
   separate, misaligned bulleted list. The existing .lin-footer__col a
   rule above already styles the actual links correctly either way,
   since it's a descendant selector. */
.lin-footer__widget ul,
.lin-footer__widget li { list-style: none; margin: 0; padding: 0; }
.lin-footer__legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 26px; }
.lin-footer__legal a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.62); transition: color .2s ease; }
.lin-footer__legal a:hover { color: var(--lin-red); }
.lin-footer__legal-sep { color: rgba(255,255,255,0.25); }
.lin-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; margin-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================================
   SHARED CHROME — mega-menu, search, floating CTAs, breadcrumbs
   ============================================================ */

/* ---- Header search + menu buttons ---- */
.lin-header__tools { display: flex; align-items: center; gap: 10px; }
.lin-iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 5px; border: 1px solid var(--lin-line); background: #fff; color: var(--lin-ink); cursor: pointer; transition: all .2s ease; }
.lin-iconbtn:hover { background: var(--lin-ink); color: #fff; border-color: var(--lin-ink); }
.lin-iconbtn svg { width: 20px; height: 20px; }
.lin-burger { display: none; }

/* ---- Nav with dropdown triggers ---- */
.lin-nav > .lin-navitem { position: relative; }
.lin-navitem > a, .lin-navitem > button {
  font-family: var(--thm-body); font-size: 15px; font-weight: 500; color: var(--lin-ink);
  padding: 10px 14px; border-radius: 4px; transition: color .2s ease; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; line-height: 1; white-space: nowrap; flex-shrink: 0;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.lin-navitem > a:hover, .lin-navitem > button:hover, .lin-navitem.is-open > button, .lin-navitem > a.is-active { color: var(--lin-red); }
.lin-navitem > button svg { width: 15px; height: 15px; transition: transform .25s ease; }
.lin-navitem.is-open > button svg { transform: rotate(180deg); }

/* ---- Mega-menu panel ---- */
.lin-mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(920px, 94vw); background: #fff; border: 1px solid var(--lin-line); border-radius: 12px;
  box-shadow: 0 30px 80px rgba(20,20,30,0.18); padding: 30px; z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease;
}
.lin-navitem.is-open .lin-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.lin-mega::before { content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 16px; height: 16px; background: #fff; border-left: 1px solid var(--lin-line); border-top: 1px solid var(--lin-line); }
.lin-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 30px; }
.lin-mega--wide .lin-mega__grid { grid-template-columns: repeat(4, 1fr); }
.lin-mega__col h5 { font-family: var(--thm-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--lin-muted); margin: 0 0 6px; padding: 0 10px; }
.lin-mega a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 7px; font-size: 14.5px; color: var(--lin-ink); font-weight: 500; transition: background .15s ease, color .15s ease; }
.lin-mega a:hover { background: var(--lin-soft); color: var(--lin-red); }
.lin-mega a .ic { width: 18px; height: 18px; color: var(--lin-red); flex-shrink: 0; }
.lin-mega a .ic svg { width: 100%; height: 100%; }
.lin-mega a small { display: block; font-size: 12px; color: var(--lin-muted); font-weight: 400; line-height: 1.3; }
.lin-mega__foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--lin-line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lin-mega__foot span { font-size: 13.5px; color: var(--lin-text); }

/* ---- Search overlay ---- */
.lin-search { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; align-items: center; padding-top: 12vh; background: rgba(16,18,21,0.55); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .22s ease; }
.lin-search.is-open { opacity: 1; visibility: visible; }
.lin-search__box { width: min(720px, 92vw); background: #fff; border-radius: 14px; box-shadow: 0 40px 100px rgba(0,0,0,0.4); overflow: hidden; transform: translateY(-12px); transition: transform .25s ease; }
.lin-search.is-open .lin-search__box { transform: translateY(0); }
.lin-search__field { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-bottom: 1px solid var(--lin-line); }
.lin-search__field svg { width: 24px; height: 24px; color: var(--lin-red); flex-shrink: 0; }
.lin-search__field input { flex: 1; border: 0; outline: 0; font-family: var(--thm-body); font-size: 20px; color: var(--lin-ink); background: none; }
.lin-search__field input::placeholder { color: var(--lin-muted); }
.lin-search__field kbd { font-family: var(--thm-body); font-size: 11px; font-weight: 600; color: var(--lin-muted); border: 1px solid var(--lin-line); border-radius: 5px; padding: 4px 8px; }
.lin-search__results { max-height: 56vh; overflow-y: auto; }
.lin-search__hint { padding: 16px 26px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--lin-muted); }
.lin-search__row { display: flex; align-items: center; gap: 14px; padding: 13px 26px; cursor: pointer; transition: background .12s ease; border: 0; background: none; width: 100%; text-align: left; }
.lin-search__row:hover, .lin-search__row.is-active { background: var(--lin-soft); }
.lin-search__row--drawer { border: 1px solid var(--lin-line); border-radius: 8px; margin: 4px 10px 10px; width: calc(100% - 20px); }
.lin-search__row--drawer svg { width: 20px; height: 20px; color: var(--lin-red); }
.lin-search__type { font-family: var(--thm-body); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lin-red); background: rgba(204,0,0,0.08); padding: 4px 9px; border-radius: 999px; flex-shrink: 0; min-width: 76px; text-align: center; }
.lin-search__txt b { display: block; font-family: var(--thm-body); font-size: 15px; font-weight: 600; color: var(--lin-ink); line-height: 1.3; }
.lin-search__txt span { display: block; font-size: 12.5px; color: var(--lin-text); line-height: 1.3; margin-top: 2px; }
.lin-search__empty { padding: 40px 26px; text-align: center; color: var(--lin-muted); font-size: 15px; }

/* Search results page (search.php) - dedicated classes rather than inline styles */
.lin-searchpage__narrow { max-width: 760px; }
.lin-searchpage__results-wrap { max-width: 1100px; }
.lin-searchpage__field { background: #fff; border-radius: 12px; margin-top: 24px; border: 0; }
.lin-searchpage__heading { font-size: 38px; }
.lin-searchpage__count { color: var(--lin-text); margin-bottom: 24px; font-size: 15px; }
.lin-searchpage__count strong { color: var(--lin-ink); }
.lin-searchpage__list { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.lin-searchpage__list > * { min-width: 0; }
@media (max-width: 760px) {
  .lin-searchpage__list { grid-template-columns: 1fr; }
}
.lin-searchpage__list .lin-search__row { border: 1px solid var(--lin-line); border-radius: 12px; background: #fff; }
.lin-searchpage__list .lin-search__empty { background: var(--lin-soft); border-radius: 12px; grid-column: 1 / -1; }
.lin-searchpage__grid { grid-template-columns: 1fr 1fr; }

/* ---- Floating CTAs ---- */
.lin-fab { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.lin-fab__btn { display: inline-flex; align-items: center; gap: 11px; height: 54px; padding: 0 22px; border-radius: 999px; font-family: var(--thm-font); font-size: 19px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; color: #fff; border: 0; cursor: pointer; box-shadow: 0 14px 34px rgba(20,20,30,0.28); transition: transform .2s ease, box-shadow .2s ease; white-space: nowrap; }
.lin-fab__btn svg { width: 20px; height: 20px; }
.lin-fab__btn:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(20,20,30,0.34); }
.lin-fab__call { background: var(--lin-ink); }
.lin-fab__quote { background: var(--lin-red); box-shadow: 0 14px 34px rgba(204,0,0,0.4); }
.lin a.lin-fab__call, .lin a.lin-fab__quote { width: 170px; justify-content: center; color: #fff; }
.lin-fab__top { width: 48px; height: 48px; padding: 0; justify-content: center; background: #fff; color: var(--lin-ink); border: 1px solid var(--lin-line); box-shadow: 0 10px 26px rgba(20,20,30,0.16); opacity: 0; visibility: hidden; transition: all .25s ease; }
.lin-fab__top.is-shown { opacity: 1; visibility: visible; }
.lin-fab__top:hover { background: var(--lin-ink); color: #fff; }

/* ---- Breadcrumbs ---- */
.lin-crumbs { background: var(--lin-soft); border-bottom: 1px solid var(--lin-line); }
.lin-crumbs__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 16px 0; font-size: 13px; }
.lin-crumbs a { color: var(--lin-text); font-weight: 500; transition: color .15s ease; }
.lin-crumbs a:hover { color: var(--lin-red); }
.lin-crumbs svg { width: 14px; height: 14px; color: var(--lin-muted); }
.lin-crumbs span[aria-current] { color: var(--lin-ink); font-weight: 600; }

/* ============================================================
   TEMPLATE: page hero (interior) + questions grid
   ============================================================ */
.lin-phero { position: relative; overflow: hidden; background: var(--lin-black); color: #fff; background-image: url('../pattern-1.png'); display: flex; align-items: flex-start; min-height: 340px; }
.lin-phero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 380px at 78% -10%, rgba(204,0,0,0.30), transparent 60%); }

/* Animated "constellation network" canvas (interior page banners).
   Element + motion are created in mount.js. */
.lin-fx {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%; opacity: 0.9;
}
.lin-phero--video .lin-fx { display: none; }
.lin-phero__inner { position: relative; z-index: 2; padding: 48px 15px; max-width: 1200px; width: 100%; text-align: left; }
.lin-phero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--thm-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: #fff; margin-bottom: 20px; }
.lin-phero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--lin-red); }
.lin-phero h1 { color: #fff; font-size: 60px; line-height: 0.95; text-transform: uppercase; font-weight: 500; letter-spacing: 0.005em; white-space: normal; overflow-wrap: break-word; word-break: break-word; }
.lin-phero h1 strong { font-weight: 700; }
.lin-phero h1 .dot { color: var(--lin-red); }
.lin-phero__lead { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.8); margin: 24px 0 0; max-width: 60ch; }
.lin-phero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: flex-start; }

/* (Portfolio detail hero now shares the base .lin-phero treatment.) */

/* Detail hero with launch video */
.lin-phero--video .lin-phero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; z-index: 0; }
.lin-phero--video .lin-phero__veil { position: absolute; inset: 0; z-index: 1; background:
   linear-gradient(90deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.80) 40%, rgba(10,10,12,0.50) 72%, rgba(10,10,12,0.32) 100%),
   linear-gradient(0deg, rgba(10,10,12,0.85) 0%, transparent 40%); }
.lin-phero--video::after { z-index: 1; }
@media (max-width: 720px) {
  .lin-phero h1 { white-space: normal; }
}

/* rotating hero headline */
.lin-rotator { display: block; min-height: 1.05em; }
.lin-rotator__word { color: var(--lin-red); }

/* questions grid (pain-point → solution) */
.lin-q { background: var(--lin-soft); }
.lin-q--grey { position: relative; background: #2D2C2C; }
.lin-q--grey::before { content: ""; position: absolute; inset: 0; background-image: url('../pattern-1.png'); background-repeat: repeat; background-position: center top; opacity: 0.85; filter: brightness(2.4) contrast(1.2); z-index: 0; pointer-events: none; }
.lin-q--grey > .lin__container { position: relative; z-index: 1; }
.lin-q--grey .sectitle h2 { color: #FFFFFF; }
.lin-q--grey .sectitle__eyebrow { color: #FFFFFF; }
.lin-q--grey .lin-locgroup h4 { color: #FFFFFF; }
.lin-q--grey .lin-locgroup h4 a { color: #FFFFFF; }
.lin-q--grey .sectitle h2 .dot { color: #FFFFFF; }
.lin-q-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lin-q-grid--labels { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lin-qcard--label { align-items: center; justify-content: center; text-align: center; padding: 8px 16px; height: 80px; min-height: 0; box-sizing: border-box; overflow: hidden; }
.lin-qcard.lin-qcard--label h3 { font-family: var(--thm-body); font-size: 14px; font-weight: 700; line-height: 1.4; color: #000000; text-transform: capitalize; letter-spacing: 0.04em; margin: 0; transition: opacity .2s ease; }
.lin-qcard.lin-qcard--label:hover h3 { opacity: 0.7; }
@media (max-width: 980px) { .lin-q-grid--labels { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .lin-q-grid--labels { grid-template-columns: repeat(2, 1fr); } }
.lin-qcard { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--lin-line); border-radius: 12px; padding: 30px 28px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.lin-qcard:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,20,30,0.1); border-color: transparent; }
.lin-qcard__tag { font-family: var(--thm-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lin-red); }
.lin-qcard h3 { font-family: var(--thm-body); font-size: 19px; font-weight: 700; line-height: 1.32; color: var(--lin-ink); letter-spacing: 0; }
.lin-qcard p { font-size: 14px; line-height: 1.7; color: var(--lin-text); margin: 0; flex: 1; }
.lin-qcard__more { font-family: var(--thm-font); font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lin-ink); display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.lin-qcard__more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.lin-qcard:hover .lin-qcard__more { color: var(--lin-red); }
.lin-qcard:hover .lin-qcard__more svg { transform: translateX(4px); }

/* ============================================================
   TEMPLATE: service / interior content
   ============================================================ */
.lin-rich { font-size: 16.5px; line-height: 1.85; color: var(--lin-ink); }
.lin-rich > * { max-width: 70ch; }
.lin-rich h2 { font-size: 44px; text-transform: uppercase; font-weight: 500; margin: 14px 0 18px; color: var(--lin-ink); }
.lin-rich h2 strong { font-weight: 700; }
.lin-rich h3 { font-family: var(--thm-body); font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: var(--lin-ink); letter-spacing: 0; }
.lin-rich p { margin: 0 0 20px; color: var(--lin-text); }
.lin-rich a.inlink { color: var(--lin-red); font-weight: 600; border-bottom: 1px solid rgba(204,0,0,0.3); }
.lin-rich a.inlink:hover { border-color: var(--lin-red); }
.lin-rich ul { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 12px; }
.lin-rich ul li { position: relative; padding-left: 32px; color: var(--lin-ink); }
.lin-rich ul li::before { content: "\2713"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 999px; background: var(--lin-red); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.lin-rich ul li:has(> ul)::before, .lin-rich ul li:has(> ol)::before { display: none; }
.lin-rich ul li:has(> ul), .lin-rich ul li:has(> ol) { padding-left: 0; }
.lin-rich ul li > ul, .lin-rich ul li > ol { margin-top: 12px; }
.lin-split { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.lin-split > * { min-width: 0; }
.lin-aside { position: sticky; top: 110px; display: grid; gap: 20px; }
.lin-aside__card { background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 12px; padding: 26px; }
.lin-aside__card h4 { font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 14px; font-weight: 500; }
.lin-aside__card.dark { background: var(--lin-black); }
.lin-aside__card.dark h4 { color: #fff; }
.lin-aside__card.dark p { font-size: 13.5px; color: rgba(255,255,255,0.7); margin: 0 0 14px; line-height: 1.6; }
.lin-aside__card.dark .tbtn { justify-content: center; width: 100%; }
.lin-aside__links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; font-size: 14.5px; font-weight: 500; color: var(--lin-ink); border-bottom: 1px solid var(--lin-line); transition: color .15s ease; }
.lin-aside__links a:last-child { border-bottom: 0; }
.lin-aside__links a:hover { color: var(--lin-red); }
.lin-aside__links--scroll { max-height: 396px; overflow-y: auto; padding-right: 8px; }
.lin-sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lin-sitemap-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* City filter search box (template-all-locations.php) - was missing
   entirely, which is why the SVG icon rendered at its unconstrained
   natural size instead of small and inline. */
.lin-cityfilter { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border: 1px solid var(--lin-line); border-radius: 12px; background: #fff; margin-bottom: 30px; }
.lin-cityfilter svg { width: 20px; height: 20px; color: var(--lin-muted); flex-shrink: 0; }
.lin-cityfilter input { flex: 1; min-width: 0; border: 0; outline: 0; font-family: var(--thm-body); font-size: 15px; color: var(--lin-ink); background: none; }
.lin-cityfilter input::placeholder { color: var(--lin-muted); }
.lin-cityfilter__count { font-family: var(--thm-body); font-size: 13px; font-weight: 600; color: var(--lin-muted); white-space: nowrap; flex-shrink: 0; }
.lin-cityfilter__empty { display: none; padding: 34px 24px; text-align: center; color: var(--lin-muted); font-size: 14.5px; background: var(--lin-soft); border-radius: 12px; margin-top: 24px; }

/* Standard WordPress screen-reader-text pattern - was also missing
   entirely, meaning the city-search label could show up visibly
   instead of being screen-reader-only as intended. */
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.lin-sitemap-group { background: #fff; border: 1px solid var(--lin-line); border-radius: 14px; padding: 26px 26px 8px; transition: border-color .2s ease, box-shadow .2s ease; }
.lin-sitemap-group:hover { border-color: var(--lin-red); box-shadow: 0 16px 34px rgba(20,20,30,0.06); }
.lin-sitemap-group h3 { font-family: var(--thm-font); font-size: 20px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 4px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.lin-sitemap-group h3 a { color: inherit; }
.lin-sitemap-group h3 a:hover { color: var(--lin-red); }
.lin-sitemap-group__pin { width: 17px; height: 17px; color: var(--lin-red); flex-shrink: 0; }
.lin-sitemap-group__count { font-family: var(--thm-body); font-size: 12px; font-weight: 600; color: var(--lin-muted); text-transform: none; letter-spacing: 0; background: var(--lin-soft); border-radius: 999px; padding: 3px 11px; margin-left: auto; }

/* Quick-jump chips - same visual language as .lin-chip elsewhere in the theme */
.lin-statejump { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 30px; }
.lin-statejump a.lin-chip { text-decoration: none; }
@media (max-width: 980px) { .lin-sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lin-sitemap-grid { grid-template-columns: 1fr; } }
a.lin-aside__all { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; margin-bottom: 12px; font-family: var(--thm-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.25; color: #fff; background: var(--lin-red); border-radius: 8px; transition: background .2s ease; }
.lin-aside__all, .lin-aside__all span, .lin-aside__all svg { color: #fff; }
.lin-aside__all:hover { background: var(--lin-ink); color: #fff; }
.lin-aside__all span { min-width: 0; }
.lin-aside__all svg { width: 15px; height: 15px; flex-shrink: 0; }
.lin-aside__current { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; font-size: 14.5px; font-weight: 700; color: var(--lin-red); border-bottom: 1px solid var(--lin-line); }
.lin-aside__current::after { content: "You are here"; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lin-muted); }
.lin-aside__links a svg { width: 15px; height: 15px; color: var(--lin-muted); }
.lin-mini-cta { text-align: center; }
.lin-mini-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 0 16px; }
.lin-mini-cta .lin-phone { font-family: var(--thm-font); font-size: 30px; color: #fff; display: block; margin-bottom: 14px; }

/* feature rows (service highlights, alternating) */
.lin-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 28px 0; }
.lin-frow:nth-child(even) .lin-frow__media { order: 2; }
.lin-frow__media { border-radius: 10px; overflow: hidden; border: 1px solid var(--lin-line); box-shadow: 0 24px 60px rgba(20,20,30,0.12); }
.lin-frow__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; object-position: top; }
.lin-frow__num { font-family: var(--thm-font); font-size: 16px; color: var(--lin-red); letter-spacing: 0.1em; }
.lin-frow h3 { font-size: 36px; text-transform: uppercase; font-weight: 500; margin: 8px 0 14px; line-height: 1.02; }
.lin-frow p { color: var(--lin-text); font-size: 15.5px; line-height: 1.8; margin: 0 0 20px; }

/* ============================================================
   TEMPLATE: archive (blog category / search)
   ============================================================ */
.lin-archead { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 36px; }
.lin-chip { font-family: var(--thm-body); font-size: 13px; font-weight: 600; color: var(--lin-ink); background: #fff; border: 1px solid var(--lin-line); border-radius: 999px; padding: 9px 18px; transition: all .18s ease; cursor: pointer; }
.lin-chip:hover { border-color: var(--lin-ink); }
.lin-chip.is-active { background: var(--lin-red); border-color: var(--lin-red); color: #fff; }
.lin-postgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.lin-post { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--lin-line); border-radius: 12px; padding: 28px 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.lin-post:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,20,30,0.1); border-color: transparent; }
.lin-post__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--lin-muted); }
.lin-post__cat { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lin-red); }
.lin-post__meta .dotsep { width: 3px; height: 3px; border-radius: 999px; background: var(--lin-muted); }
.lin-post h3 { font-family: var(--thm-body); font-size: 19px; font-weight: 700; line-height: 1.34; color: var(--lin-ink); letter-spacing: 0; }
.lin-post p { font-size: 14px; line-height: 1.7; color: var(--lin-text); margin: 0; flex: 1; }
.lin-post__more { font-family: var(--thm-font); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lin-ink); display: inline-flex; align-items: center; gap: 7px; }
.lin-post__more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.lin-post:hover .lin-post__more { color: var(--lin-red); }
.lin-post:hover .lin-post__more svg { transform: translateX(4px); }

/* ============================================================
   TEMPLATE: article (post detail)
   ============================================================ */
.lin-article { max-width: 760px; margin: 0 auto; }
.lin-article__head { margin-bottom: 30px; }
.lin-article__head h1 { font-size: 56px; line-height: 0.98; text-transform: uppercase; font-weight: 600; color: var(--lin-ink); }
.lin-article__meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 13.5px; color: var(--lin-text); }
.lin-article__meta .av { width: 40px; height: 40px; border-radius: 999px; background: var(--lin-ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--thm-font); font-size: 18px; }
.lin-article__hero { border-radius: 12px; overflow: hidden; margin: 8px 0 36px; border: 1px solid var(--lin-line); }
.lin-article__hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.lin-pullquote { border-left: 4px solid var(--lin-red); padding: 6px 0 6px 26px; margin: 30px 0; font-family: var(--thm-font); font-size: 30px; line-height: 1.15; text-transform: uppercase; color: var(--lin-ink); font-weight: 500; }
.lin-share { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid var(--lin-line); border-bottom: 1px solid var(--lin-line); margin: 40px 0; }
.lin-share span { font-family: var(--thm-font); font-size: 18px; text-transform: uppercase; color: var(--lin-ink); }

/* ============================================================
   TEMPLATE: portfolio detail / case study
   ============================================================ */
.lin-case__hero { border-radius: 14px; overflow: hidden; border: 1px solid var(--lin-line); box-shadow: 0 30px 70px rgba(20,20,30,0.16); }
.lin-case__hero img { width: 100%; height: auto; display: block; }
.lin-case__inline { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--lin-line); box-shadow: 0 18px 44px rgba(20,20,30,0.12); margin: 4px 0 26px; }
.lin-case__inline img { width: 100%; height: auto; display: block; }
.lin-meta-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 34px 0; border-top: 1px solid var(--lin-line); border-bottom: 1px solid var(--lin-line); margin: 40px 0; }
.lin-meta-strip dt { font-family: var(--thm-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lin-muted); margin-bottom: 6px; }
.lin-meta-strip dd { font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: var(--lin-ink); margin: 0; line-height: 1.1; }
.lin-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.lin-pill { font-family: var(--thm-body); font-size: 12.5px; font-weight: 600; color: var(--lin-ink); background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 999px; padding: 7px 15px; }

/* ============================================================
   TEMPLATE: contact / quote
   ============================================================ */
.lin-contact-grid { display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: start; }
.lin-contact-grid > * { min-width: 0; max-width: 100%; overflow-x: hidden; }
/* Defensive constraint for the Formidable Forms plugin's own output
   (its markup/CSS is entirely outside this theme's control) - a fixed-
   width input, table, or similar element inside it could otherwise
   force this whole grid column wider than the viewport on mobile. The
   overflow-x: hidden above is the catch-all: clips anything that
   still tries to overflow regardless of which specific element inside
   the plugin's markup is responsible. */
.lin-contact-grid input, .lin-contact-grid textarea, .lin-contact-grid select, .lin-contact-grid table { max-width: 100%; box-sizing: border-box; }
@media (max-width: 640px) {
  /* Only forced full-width on mobile, where overflow is an actual
     risk - left alone on desktop so any intentional side-by-side
     field layout (e.g. First Name / Last Name) isn't overridden. */
  .lin-contact-grid input, .lin-contact-grid textarea, .lin-contact-grid select { width: 100% !important; }
}
.lin-form { background: #fff; border: 1px solid var(--lin-line); border-radius: 14px; padding: 36px; box-shadow: 0 20px 50px rgba(20,20,30,0.06); }
.lin-field { margin-bottom: 18px; }
.lin-field label { display: block; font-family: var(--thm-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lin-ink); margin-bottom: 8px; }
.lin-field input, .lin-field select, .lin-field textarea { width: 100%; font-family: var(--thm-body); font-size: 15px; color: var(--lin-ink); background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 8px; padding: 14px 16px; outline: 0; transition: border-color .15s ease, background .15s ease; }
.lin-field input:focus, .lin-field select:focus, .lin-field textarea:focus { border-color: var(--lin-red); background: #fff; }
.lin-field textarea { resize: vertical; min-height: 130px; }
.lin-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lin-contact-info { display: grid; gap: 18px; }
.lin-cinfo { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--lin-soft); border: 1px solid var(--lin-line); border-radius: 12px; }
.lin-cinfo__ic { width: 46px; height: 46px; border-radius: 10px; background: var(--lin-red); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lin-cinfo__ic svg { width: 22px; height: 22px; }
.lin-cinfo h4 { font-family: var(--thm-font); font-size: 22px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 4px; font-weight: 500; }
.lin-cinfo p, .lin-cinfo a { font-size: 14.5px; color: var(--lin-text); line-height: 1.6; }
.lin-cinfo a:hover { color: var(--lin-red); }

/* ---- geo trust band + location cluster ---- */
.lin-locband { display: flex; flex-wrap: wrap; gap: 10px; }
.lin-loclink { font-family: var(--thm-body); font-size: 14px; font-weight: 500; color: var(--lin-ink); background: #fff; border: 1px solid var(--lin-line); border-radius: 8px; padding: 6px 11px; transition: all .18s ease; }
.lin-loclink:hover { background: var(--lin-red); border-color: var(--lin-red); color: #fff; }
.lin-locgroup { margin-bottom: 28px; }
.lin-locgroup h4 { font-family: var(--thm-font); font-size: 24px; text-transform: uppercase; color: var(--lin-ink); margin: 0 0 14px; font-weight: 500; }

.lin-sec--sm { padding: 80px 0; }

/* ============================================================
   CONTENT PAGES — FAQ accordion, author profile, legal docs
   ============================================================ */
/* FAQ */
.lin-faq-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.lin-faq-nav { position: sticky; top: 110px; display: grid; gap: 4px; }
.lin-faq-nav a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--lin-text); transition: all .15s ease; }
.lin-faq-nav a:hover { background: var(--lin-soft); color: var(--lin-red); }
.lin-faq-group { margin-bottom: 44px; scroll-margin-top: 100px; }
.lin-faq-group > h2 { font-size: 32px; text-transform: uppercase; font-weight: 500; margin: 0 0 18px; color: var(--lin-ink); }
.lin-faq-group > h2 strong { font-weight: 700; }
.lin-faq-item { border: 1px solid var(--lin-line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.lin-faq-item.is-open { border-color: transparent; box-shadow: 0 18px 44px rgba(20,20,30,0.1); }
.lin-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 22px 24px; background: none; border: 0; cursor: pointer; font-family: var(--thm-body); font-size: 17px; font-weight: 600; color: var(--lin-ink); line-height: 1.4; }
.lin-faq-q:hover { color: var(--lin-red); }
.lin-faq-ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; background: var(--lin-soft); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .2s ease; }
.lin-faq-item.is-open .lin-faq-ic { transform: rotate(45deg); background: var(--lin-red); }
.lin-faq-ic::before, .lin-faq-ic::after { content: ""; position: absolute; background: var(--lin-ink); }
.lin-faq-ic::before { width: 12px; height: 2px; }
.lin-faq-ic::after { width: 2px; height: 12px; }
.lin-faq-item.is-open .lin-faq-ic::before, .lin-faq-item.is-open .lin-faq-ic::after { background: #fff; }
.lin-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.lin-faq-item.is-open .lin-faq-a { padding: 0 24px 24px; max-height: 600px; }
.lin-faq-a p { font-size: 15.5px; line-height: 1.8; color: var(--lin-text); margin: 0; }
.lin-faq-a a { color: var(--lin-red); font-weight: 600; }
/* Native <details> FAQ accordion inside article/service bodies */
.lin-article-body .lin-facc { display: block; width: 100%; clear: both; border: 1px solid var(--lin-line); border-radius: 12px; margin: 0 0 12px; background: #fff; overflow: hidden; }
.lin-article-body .lin-facc[open] { border-color: transparent; box-shadow: 0 18px 44px rgba(20,20,30,0.1); }
.lin-article-body .lin-facc-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--thm-body); font-size: 17px; font-weight: 600; color: var(--lin-ink); line-height: 1.4; }
.lin-article-body .lin-facc-q::-webkit-details-marker { display: none; }
.lin-article-body .lin-facc-q:hover { color: var(--lin-red); }
.lin-article-body .lin-facc-q::after { content: ""; flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; background: var(--lin-soft); position: relative; transition: transform .25s ease, background .2s ease; background-image: linear-gradient(var(--lin-ink),var(--lin-ink)), linear-gradient(var(--lin-ink),var(--lin-ink)); background-repeat: no-repeat; background-position: center; background-size: 12px 2px, 2px 12px; }
.lin-article-body .lin-facc[open] .lin-facc-q::after { transform: rotate(45deg); background-color: var(--lin-red); background-image: linear-gradient(#fff,#fff), linear-gradient(#fff,#fff); }
.lin-article-body .lin-facc-a { padding: 0 24px 22px; }
.lin-article-body .lin-facc-a p { margin: 0; font-size: 15.5px; line-height: 1.8; color: var(--lin-text); }
.lin-article-body .lin-facc-a a { color: var(--lin-red); font-weight: 600; }
/* Service pages: all in-content images fixed at 480x270 */
.lin-service-body .imground { display: inline-block; overflow: hidden; border-radius: 18px; line-height: 0; max-width: 100%; vertical-align: top; margin: 8px 0 22px; }
.lin-service-body .imground img, .lin-service-body .imground img.svc-hero, .lin-service-body .imground img.alignright, .lin-service-body .imground img.alignleft, .lin-service-body .imground img.alignnone, .lin-service-body .imground img.aligncenter { margin: 0; border-radius: 18px; display: block; }
.lin-service-body .imground:has(img.svc-hero) { margin: 22px 0 28px; }
.lin-service-body img { width: 480px; height: 270px; object-fit: cover; border-radius: 18px; margin: 8px 0 22px; display: block; max-width: 100%; }
.lin-service-body img.svc-hero { margin: 0 0 28px; }
/* Clickable portfolio-image links (geo pages) */
.lin-service-body a.geo-portfolio-link { display: inline-block; position: relative; line-height: 0; border-radius: 18px; overflow: hidden; cursor: pointer; text-decoration: none; }
.lin-service-body a.geo-portfolio-link img { transition: transform .36s cubic-bezier(.22,1,.36,1); }
.lin-service-body a.geo-portfolio-link::after { content: "View project \2197"; position: absolute; left: 12px; bottom: 12px; z-index: 2; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(10,10,11,.82); padding: 6px 10px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.lin-service-body a.geo-portfolio-link:hover img { transform: scale(1.05); }
.lin-service-body a.geo-portfolio-link:hover::after { opacity: 1; transform: translateY(0); }
.lin-service-body a.geo-portfolio-link:focus-visible { outline: 3px solid rgba(204,0,0,.4); outline-offset: 2px; }
/* Force 480px width even on WP-aligned images (overrides .lin-article-body align rules) */
.lin-service-body img.alignright, .lin-service-body img.alignleft, .lin-service-body img.alignnone, .lin-service-body img.aligncenter { width: 480px; height: 270px; object-fit: cover; margin: 8px 0 22px; float: none; border-radius: 18px; }
@media (max-width: 560px) { .lin-service-body img, .lin-service-body img.alignright, .lin-service-body img.alignleft, .lin-service-body img.alignnone, .lin-service-body img.aligncenter { width: 100%; height: auto; } }
/* Client-logo grid (geo pages): 3 per row, uniform 200x102 tiles */
.lin-service-body .logo-grid-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 18px; margin: 22px 0 30px; align-items: center; }
.lin-service-body .logo-item { margin: 0; display: flex; justify-content: center; }
.lin-service-body .logo-item a { display: block; line-height: 0; }
.lin-service-body .logo-item img, .lin-service-body .logo-item img.alignnone { width: 200px; height: 102px; object-fit: contain; margin: 0; border-radius: 12px; }
@media (max-width: 560px) { .lin-service-body .logo-grid-container { grid-template-columns: repeat(2, 1fr); } .lin-service-body .logo-item img, .lin-service-body .logo-item img.alignnone { width: 100%; height: auto; } }

/* Author / profile */
.lin-profile { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.lin-profile__card { position: sticky; top: 110px; background: var(--lin-black); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.lin-profile__photo { display: block; width: calc(100% - 28px); height: auto; margin: 14px auto 0; border-radius: 10px; }
.lin-profile__monogram { width: 100%; aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, rgba(204,0,0,0.34), transparent 60%), var(--lin-black); }
.lin-profile__monogram::after { content: ""; position: absolute; inset: 0; background-image: url('../pattern-1.png'); opacity: 0.5; }
.lin-profile__mono-mark { position: relative; z-index: 1; font-family: var(--thm-font); font-size: 120px; line-height: 1; color: #fff; font-weight: 600; letter-spacing: 0.02em; }
.lin-profile__mono-sub { position: relative; z-index: 1; font-family: var(--thm-body); font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--lin-red); font-weight: 700; }
.lin-profile__slot { display: block; width: 100%; aspect-ratio: 4/5; }
.lin-profile__meta { padding: 26px; color: #fff; }
.lin-profile__meta h3 { font-family: var(--thm-font); font-size: 28px; text-transform: uppercase; margin: 0 0 4px; font-weight: 500; color: #fff; }
.lin-profile__meta .role { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--lin-red); font-weight: 600; }
.lin-profile__meta p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.62); margin: 16px 0 0; }
.lin-profile__stats { display: flex; gap: 22px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.lin-profile__stats b { font-family: var(--thm-font); font-size: 26px; color: #fff; display: block; line-height: 1; }
.lin-profile__stats span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }

/* Legal docs */
.lin-legal { max-width: 820px; margin: 0 auto; }
.lin-legal h2 { font-size: 30px; text-transform: uppercase; font-weight: 500; margin: 40px 0 14px; color: var(--lin-ink); }
.lin-legal h2:first-child { margin-top: 0; }
.lin-legal h3 { font-family: var(--thm-body); font-size: 19px; font-weight: 700; margin: 26px 0 10px; color: var(--lin-ink); }
.lin-legal p { font-size: 16px; line-height: 1.85; color: var(--lin-text); margin: 0 0 18px; }
.lin-legal ul { margin: 0 0 20px; padding: 0; list-style: none; display: grid; gap: 10px; }
.lin-legal ul li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.7; color: var(--lin-text); }
.lin-legal ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 999px; background: var(--lin-red); }
.lin-legal a { color: var(--lin-red); font-weight: 600; }
.lin-legal__updated { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lin-muted); margin-bottom: 30px; font-weight: 600; }

@media (max-width: 900px) {
  .lin-faq-wrap { grid-template-columns: 1fr; gap: 24px; }
  .lin-faq-nav { position: static; grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; }
  .lin-profile { grid-template-columns: 1fr; gap: 32px; }
  .lin-profile__card { position: static; max-width: 360px; }
}
.lin-center { text-align: center; }
.lin-center .sectitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .lin-cta__inner { padding: 80px 15px; }
  .lin-crumbs__inner { padding: 16px 15px; }
}
@media (max-width: 1180px) {
  .lin-header__phone { display: none; }
  .lin-navitem > a, .lin-navitem > button { padding: 10px 11px; }
  .lin-nav { gap: 0; }
}
@media (max-width: 1024px) {
  .lin-hero h1 { font-size: 72px; }
  .lin-phero h1 { font-size: 56px; }
  .sectitle h2 { font-size: 50px; }
  .lin-cta h2 { font-size: 46px; }
  .lin-q-grid, .lin-postgrid { grid-template-columns: repeat(2, 1fr); }
  .lin-work-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .lin-split, .lin-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lin-aside { position: static; grid-template-columns: 1fr 1fr; }
  .lin-article__head h1 { font-size: 44px; }
}
@media (max-width: 860px) {
  .lin-nav, .lin-header__phone { display: none; }
  .lin-burger { display: inline-flex; }
  .lin-header__tools > .lin-iconbtn:not(.lin-burger), .lin-header__tbtn { display: none; }
  .lin-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .lin-grid-3, .lin-testi-grid { grid-template-columns: 1fr; }
  .lin-work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lin-q-grid, .lin-postgrid { grid-template-columns: 1fr; }
  .lin-footer__top { grid-template-columns: 1fr 1fr; }
  .lin-hero h1 { font-size: 50px; }
  .lin-phero h1 { font-size: 44px; }
  .lin-sec { padding: 72px 0; }
  .lin-sec--sm { padding: 40px 0; }
  .lin-frow { grid-template-columns: 1fr; gap: 28px; }
  .lin-frow:nth-child(even) .lin-frow__media { order: 0; }
  .lin-meta-strip { grid-template-columns: 1fr 1fr; }
  .lin-aside { grid-template-columns: 1fr; }
  .lin-fab__btn span.lbl { display: none; }
  .lin-fab__btn { height: 52px; width: 52px; padding: 0; justify-content: center; }
  .lin-fab { right: 16px; bottom: 16px; }
  /* Both Call and Free Quote removed on mobile entirely (all pages/
     posts/CPTs) at request - only Back-to-top remains, reverted to
     its original position within the shared .lin-fab container since
     it no longer needs to dodge a full-width bar that no longer
     exists. */
  .lin-fab__call, .lin-fab__quote { display: none; }
}
@media (max-width: 540px) {
  .lin-hero h1 { font-size: 40px; }
  .lin-hero__stats { justify-content: center; }
  .lin-stat { width: 100%; }
  .lin-hero__cta { flex-direction: column; }
  .lin-hero__cta .tbtn { width: 100%; justify-content: center; }
  .lin-phero__cta { flex-direction: column; }
  .lin-phero__cta .tbtn { width: 100%; justify-content: center; }
  .lin-phero h1 { font-size: 36px; }
  .sectitle h2 { font-size: 38px; }
  .lin-cta h2 { font-size: 36px; }
  .lin-article__head h1 { font-size: 34px; }
  .lin-footer__top { grid-template-columns: 1fr; }
  .lin-meta-strip { grid-template-columns: 1fr; }
  .lin-hero__inner { padding: 48px 15px 70px; }
  .lin-field--row { grid-template-columns: 1fr; }
  /* Hero video: desktop's object-position centers on the rocket
     reasonably well for that wide/short aspect ratio, but the mobile
     hero is much taller and narrower (more stacked text above/below),
     so the same crop shows mostly empty sky/smoke and loses the
     rocket itself, which actually sits toward the upper-right of the
     source frame. Shifted specifically for mobile to keep it in view. */
  .lin-hero__video { object-position: 68% 22%; }
}

/* ---- Mobile drawer ---- */
.lin-drawer { position: fixed; inset: 0; z-index: 95; pointer-events: none; overflow: hidden; }
.lin-drawer.is-open { pointer-events: auto; }
.lin-drawer__scrim { position: absolute; inset: 0; background: rgba(16,18,21,0.5); opacity: 0; pointer-events: none; }
.lin-drawer.is-open .lin-drawer__scrim { opacity: 1; pointer-events: auto; }
.lin-drawer__panel { position: absolute; top: 0; right: -400px; height: 100%; width: min(360px, 88vw); background: var(--lin-black); box-shadow: -20px 0 60px rgba(0,0,0,0.2); display: flex; flex-direction: column; overflow-y: auto; }
.lin-drawer.is-open .lin-drawer__panel { right: 0; }
.lin-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.lin-drawer__head img { height: 20px; }
.lin-drawer__head .lin-iconbtn { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.lin-drawer__head .lin-iconbtn:hover { background: #fff; color: var(--lin-ink); border-color: #fff; }
.lin-drawer__body { padding: 14px 12px 30px; }
.lin-drawer__sec { padding: 8px 10px; }
.lin-drawer__sec > h5 { font-family: var(--thm-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.4); margin: 14px 0 6px; }
.lin-drawer__body a { display: block; padding: 12px 10px; font-size: 16px; font-weight: 500; color: #fff; border-radius: 8px; }
.lin-drawer__body a:hover { background: rgba(255,255,255,0.08); color: var(--lin-red); }
.lin-drawer__body .lin-search__row--drawer { border-color: rgba(255,255,255,0.18); }
.lin-drawer__body .lin-search__row--drawer:hover { background: rgba(255,255,255,0.08); }
.lin-drawer__body .lin-search__txt b { color: #fff; }
.lin-drawer__body .lin-search__txt span { color: rgba(255,255,255,0.5); }
.lin-drawer__cta { padding: 18px 22px; border-top: 1px solid rgba(255,255,255,0.12); display: grid; gap: 10px; }
.lin-drawer__cta .tbtn { justify-content: center; }

/* Skip-to-content link: invisible until tabbed to via keyboard, then
   appears clearly at the top-left so its focus state is genuinely
   usable, not just technically present. */
.lin-skip-link { position: absolute; top: -100px; left: 0; z-index: 9999; background: var(--lin-black); color: #fff; padding: 12px 20px; font-weight: 700; text-decoration: none; transition: top 0.15s ease; }
.lin-skip-link:focus { top: 0; }

/* Post pagination — styles WordPress's own default the_posts_pagination()
   markup directly (.navigation.pagination / .page-numbers), so every
   archive/category/tag/author page gets this automatically with no
   template changes needed anywhere. */
.navigation.pagination { margin-top: 48px; padding-top: 32px; }
.navigation.pagination .nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.page-numbers { font-family: var(--thm-font); font-size: 18px; font-weight: 600; color: var(--lin-ink); text-decoration: none; }
a.page-numbers, span.page-numbers.current {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 14px;
	border: 1px solid var(--lin-line); border-radius: 8px;
	background: #fff; transition: all .18s ease;
}
a.page-numbers:hover { border-color: var(--lin-red); color: var(--lin-red); }
span.page-numbers.current { background: var(--lin-red); border-color: var(--lin-red); color: #fff; }
.page-numbers.dots { border: none; background: none; min-width: auto; height: auto; color: var(--lin-muted); font-size: 20px; letter-spacing: 2px; }
a.page-numbers.prev, a.page-numbers.next {
	font-family: var(--thm-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
	padding: 0 20px;
}
@media (max-width: 540px) {
	a.page-numbers.prev, a.page-numbers.next { order: 3; flex-basis: 100%; margin-top: 10px; }
}

/* Form success checkmark (e.g. Formidable's .frm_message on submit) -
   a red circle with a white SVG checkmark, inline as a background
   image so no separate icon file/upload is needed. */
.tick {
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background-color: var(--lin-red);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
}
