/* ==========================================================================
   T.A. Gaddis Services — theme design system
   Content rules are prefixed with `body .elementor` (specificity 0,3,1+) so they
   beat Elementor's kit defaults in the editor without touching the client's
   own per-widget style controls. Never use !important on content rules.
   ========================================================================== */

:root {
  --tg-ink: #0e1114;
  --tg-ink-2: #161b20;
  --tg-ink-3: #1f262c;
  --tg-ink-4: #2a3239;
  --tg-yellow: #f5b301;
  --tg-yellow-2: #ffc72c;
  --tg-yellow-3: #d99e00;
  --tg-blue: #1b6fb5;
  --tg-paper: #f3f1ec;
  --tg-paper-2: #e9e5db;
  --tg-white: #ffffff;
  --tg-text: #1a1f24;
  --tg-muted: #5b646c;
  --tg-line: rgba(14, 17, 20, 0.12);
  --tg-line-l: rgba(255, 255, 255, 0.14);
  --tg-radius: 6px;
  --tg-radius-l: 14px;
  --tg-shadow: 0 24px 56px -24px rgba(14, 17, 20, 0.35);
  --tg-font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --tg-font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --tg-wrap: 1200px;
  --tg-gutter: clamp(20px, 4vw, 40px);
  --tg-header-h: 84px;
  --tg-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--tg-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--tg-text);
  background: var(--tg-white);
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .tg-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .tg-header { top: 46px; } }
img { max-width: 100%; height: auto; }
a { color: var(--tg-blue); }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; word-wrap: normal !important; }
.skip-link:focus { position: fixed; left: 12px; top: 12px; z-index: 1000; clip: auto; clip-path: none; width: auto; height: auto; padding: 12px 18px; background: var(--tg-yellow); color: var(--tg-ink); font-weight: 700; border-radius: 4px; }
.tg-wrap { width: min(100% - var(--tg-gutter) * 2, var(--tg-wrap)); margin-inline: auto; }

/* --------------------------------------------------------------- buttons */
.tg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--tg-font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  padding: 15px 26px; border-radius: 4px; border: 2px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform 0.25s var(--tg-ease), background-color 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.tg-btn-primary { background: var(--tg-yellow); color: var(--tg-ink); }
.tg-btn-primary:hover { background: var(--tg-yellow-2); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(245, 179, 1, 0.8); color: var(--tg-ink); }

/* ---------------------------------------------------------------- topbar */
.tg-topbar { background: var(--tg-ink-2); color: rgba(255, 255, 255, 0.75); font-size: 13.5px; }
.tg-topbar .tg-wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; }
.tg-topbar-l, .tg-topbar-r { display: flex; align-items: center; gap: 22px; }
.tg-topbar a { color: rgba(255, 255, 255, 0.88); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.tg-topbar a:hover { color: var(--tg-yellow); }
.tg-topbar-addr { display: inline-flex; align-items: center; gap: 7px; }
.tg-ico-s { display: inline-flex; width: 15px; height: 15px; color: var(--tg-yellow); flex: none; }
.tg-ico-s svg { width: 100%; height: 100%; }
.tg-social { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; }
.tg-social:hover { background: var(--tg-yellow); color: var(--tg-ink); }
@media (max-width: 1100px) { .tg-topbar-addr { display: none; } }
@media (max-width: 760px) { .tg-topbar-r { display: none; } .tg-topbar-l { gap: 16px; } }

/* ---------------------------------------------------------------- header */
.tg-header { position: sticky; top: 0; z-index: 100; background: var(--tg-ink); border-bottom: 1px solid var(--tg-line-l); box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6); }
.tg-header .tg-wrap { display: flex; align-items: center; gap: 28px; min-height: var(--tg-header-h); transition: min-height 0.3s var(--tg-ease); }
.tg-logo { display: block; flex: none; }
.tg-logo img { display: block; height: 58px; width: auto; transition: height 0.3s var(--tg-ease); }
.tg-header.is-scrolled .tg-wrap { min-height: 70px; }
.tg-header.is-scrolled .tg-logo img { height: 46px; }
.tg-nav { margin-left: auto; }
.tg-menu { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.tg-menu li { position: relative; }
.tg-menu > li > a { display: block; padding: 10px 14px; color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 15.5px; text-decoration: none; border-radius: 4px; transition: color 0.2s, background-color 0.2s; }
.tg-menu > li > a:hover, .tg-menu > li:focus-within > a { color: var(--tg-yellow); }
.tg-menu > li.current-menu-item > a, .tg-menu > li.current-menu-ancestor > a, .tg-menu > li.current_page_parent > a { color: var(--tg-yellow); box-shadow: inset 0 -2px 0 var(--tg-yellow); border-radius: 0; }
.tg-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 270px; margin: 6px 0 0; padding: 8px; list-style: none; background: var(--tg-ink-2); border: 1px solid var(--tg-line-l); border-radius: 10px; box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.7); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s, transform 0.25s var(--tg-ease), visibility 0.2s; }
.tg-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.tg-menu li:hover > .sub-menu, .tg-menu li:focus-within > .sub-menu, .tg-menu li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.tg-menu .sub-menu a { display: block; padding: 11px 14px; color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 500; font-size: 15px; border-radius: 6px; }
.tg-menu .sub-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--tg-yellow); }
.tg-sub-toggle { display: none; }
.tg-header-cta { display: flex; align-items: center; gap: 14px; }
.tg-header-btn { font-size: 16px; padding: 13px 20px; }
.tg-burger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; background: transparent; border: 1px solid var(--tg-line-l); border-radius: 6px; cursor: pointer; }
.tg-burger-box { position: relative; width: 20px; height: 14px; display: block; }
.tg-burger-box span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--tg-ease), opacity 0.2s; }
.tg-burger-box span:nth-child(1) { top: 0; }
.tg-burger-box span:nth-child(2) { top: 6px; }
.tg-burger-box span:nth-child(3) { top: 12px; }
.tg-burger[aria-expanded="true"] .tg-burger-box span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tg-burger[aria-expanded="true"] .tg-burger-box span:nth-child(2) { opacity: 0; }
.tg-burger[aria-expanded="true"] .tg-burger-box span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .tg-header .tg-wrap { flex-wrap: wrap; gap: 16px; }
  .tg-header-cta { margin-left: auto; }
  .tg-header-btn { display: none; }
  .tg-burger { display: inline-flex; }
  .tg-nav { order: 10; width: 100%; margin: 0; padding-bottom: 12px; }
  html.js .tg-nav { display: none; }
  html.js .tg-nav.is-open { display: block; }
  .tg-menu { flex-direction: column; gap: 0; }
  .tg-menu > li { display: flex; flex-wrap: wrap; align-items: center; border-top: 1px solid var(--tg-line-l); }
  .tg-menu > li > a { flex: 1; padding: 14px 4px; font-size: 18px; }
  .tg-menu > li.current-menu-item > a { box-shadow: none; }
  .tg-menu .sub-menu { position: static; width: 100%; min-width: 0; margin: 0 0 8px; padding: 0 0 0 14px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .tg-menu li.is-open > .sub-menu { display: block; }
  html:not(.js) .tg-menu .sub-menu { display: block; }
  .tg-sub-toggle { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer; position: relative; }
  .tg-sub-toggle::after { content: ""; width: 9px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); transition: transform 0.25s; }
  .tg-sub-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); }
  .tg-menu-cta { display: block; padding: 8px 0 4px; }
}
@media (min-width: 1024px) { .tg-menu-cta { display: none; } }

/* ---------------------------------------------------------------- footer */
.tg-footer { background: var(--tg-ink-2); color: rgba(255, 255, 255, 0.75); }
.tg-footer-stripe { height: 10px; background: repeating-linear-gradient(135deg, var(--tg-yellow) 0 22px, var(--tg-ink) 22px 44px); }
.tg-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; padding: 72px 0 56px; }
.tg-footer-brand img { height: 66px; width: auto; }
.tg-footer-brand p { margin: 20px 0; max-width: 40ch; font-size: 15.5px; }
.tg-social-lg { width: auto; height: auto; padding: 8px 14px 8px 10px; border-radius: 999px; gap: 8px; font-weight: 600; font-size: 14px; text-decoration: none; }
.tg-footer h3 { font-family: var(--tg-font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tg-yellow); margin: 0 0 16px; }
.tg-footer ul { list-style: none; margin: 0; padding: 0; }
.tg-footer li + li { margin-top: 9px; }
.tg-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.tg-footer a:hover { color: var(--tg-yellow); }
.tg-footer-contact a, .tg-footer-contact .tg-hours { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; line-height: 1.45; }
.tg-footer-contact .tg-ico-s { margin-top: 4px; }
.tg-footer-contact .tg-btn { margin-top: 10px; display: inline-flex; }
.tg-footer-bottom { border-top: 1px solid var(--tg-line-l); padding: 20px 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }
.tg-footer-bottom .tg-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tg-footer-links a { margin-left: 18px; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 1000px) { .tg-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .tg-footer-grid { grid-template-columns: 1fr; padding: 56px 0 40px; } }

.tg-totop { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: var(--tg-yellow); color: var(--tg-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.5); transition: opacity 0.3s, transform 0.3s; }
html.js .tg-totop { opacity: 0; transform: translateY(12px); pointer-events: none; }
html.js .tg-totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* ================================================================ content
   Everything below targets Elementor's rendered DOM (also produced by the
   theme's fallback renderer and the static preview).
   ======================================================================= */

/* sections */
body .elementor .elementor-section.tg-section { padding-block: clamp(64px, 8vw, 112px); }
body .elementor .elementor-section.tg-section > .elementor-container { padding-inline: var(--tg-gutter); }
body .elementor .elementor-section.tg-dark { background: var(--tg-ink); color: #fff; }
body .elementor .elementor-section.tg-paper { background: var(--tg-paper); }
body .elementor .elementor-section.tg-white { background: var(--tg-white); }
body .elementor .elementor-section.tg-yellow { background: var(--tg-yellow); color: var(--tg-ink); }
body .elementor .elementor-section.tg-narrow > .elementor-container { max-width: 880px; }

/* columns */
body .elementor .tg-split > .elementor-container { gap: clamp(32px, 5vw, 72px); align-items: center; }
body .elementor .tg-split > .elementor-container > .elementor-column { min-width: 0; }
body .elementor .tg-split .tg-col-sticky > .elementor-widget-wrap { align-self: flex-start; position: sticky; top: 110px; }
body .elementor .tg-col-end > .elementor-widget-wrap { justify-content: flex-end; }
@media (max-width: 900px) {
  body .elementor .tg-split > .elementor-container { flex-wrap: wrap; }
  body .elementor .tg-split > .elementor-container > .elementor-column { width: 100%; }
  body .elementor .tg-split .tg-col-sticky > .elementor-widget-wrap { position: static; }
  body .elementor .tg-col-end > .elementor-widget-wrap { justify-content: flex-start; }
}

/* headings */
body .elementor .elementor-widget-heading .elementor-heading-title {
  font-family: var(--tg-font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em; line-height: 0.96; color: var(--tg-ink); margin: 0;
}
body .elementor .tg-display .elementor-heading-title { font-size: clamp(46px, 6.6vw, 88px); color: #fff; text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35); }
body .elementor .tg-display .elementor-heading-title span { color: var(--tg-yellow); }
body .elementor .tg-title .elementor-heading-title { font-size: clamp(36px, 4.4vw, 58px); max-width: 22ch; }
body .elementor .tg-title .elementor-heading-title span { background: linear-gradient(transparent 58%, var(--tg-yellow) 58%, var(--tg-yellow) 92%, transparent 92%); padding: 0 0.08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
body .elementor .tg-title-light .elementor-heading-title { color: #fff; }
body .elementor .tg-dark .tg-title .elementor-heading-title { color: #fff; }
body .elementor .tg-dark .tg-title .elementor-heading-title span { background: none; padding: 0; color: var(--tg-yellow); }
body .elementor .tg-center .elementor-heading-title { text-align: center; margin-inline: auto; max-width: 30ch; }
body .elementor .tg-eyebrow .elementor-heading-title {
  font-family: var(--tg-font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.2; color: var(--tg-blue);
  display: flex; align-items: center; gap: 12px;
}
body .elementor .tg-eyebrow .elementor-heading-title::before { content: ""; width: 30px; height: 3px; background: var(--tg-yellow); flex: none; border-radius: 2px; }
body .elementor .tg-eyebrow-light .elementor-heading-title, body .elementor .tg-dark .tg-eyebrow .elementor-heading-title { color: var(--tg-yellow); }
body .elementor .tg-center + .tg-title .elementor-heading-title, body .elementor .elementor-widget.tg-eyebrow + .elementor-widget.tg-title.tg-center .elementor-heading-title { }
body .elementor .elementor-widget.tg-eyebrow:has(+ .tg-title .tg-center),
body .elementor .elementor-widget.tg-eyebrow:has(+ .elementor-widget .elementor-heading-title.tg-center) { }
body .elementor .tg-center-eyebrow .elementor-heading-title { justify-content: center; }
body .elementor .tg-h3 .elementor-heading-title { font-size: 26px; font-weight: 700; }
body .elementor .tg-role .elementor-heading-title { font-family: var(--tg-font-body); font-size: 14px; letter-spacing: 0.16em; color: var(--tg-blue); font-weight: 700; margin-top: -6px; }
body .elementor .tg-mt-6 { margin-top: 24px; }
body .elementor .elementor-widget.tg-eyebrow { margin-bottom: 14px; }
body .elementor .elementor-widget.tg-title { margin-bottom: 18px; }
body .elementor .elementor-widget.tg-display { margin-bottom: 22px; }

/* eyebrow above a centered title: center it too */
body .elementor .tg-pillars-sec .tg-eyebrow .elementor-heading-title,
body .elementor .tg-process .tg-eyebrow .elementor-heading-title,
body .elementor .tg-work .tg-eyebrow .elementor-heading-title,
body .elementor .tg-faq-sec .tg-eyebrow .elementor-heading-title,
body .elementor .tg-values-sec .tg-eyebrow .elementor-heading-title,
body .elementor .tg-memberships .tg-eyebrow .elementor-heading-title,
body .elementor .tg-services .tg-eyebrow .elementor-heading-title { justify-content: center; text-align: center; }
body .elementor .tg-services .tg-eyebrow .elementor-heading-title { justify-content: flex-start; }
body .elementor .tg-services.tg-services-center .tg-eyebrow .elementor-heading-title { justify-content: center; }
body .elementor .tg-paper .tg-eyebrow .elementor-heading-title, body .elementor .tg-white .tg-eyebrow .elementor-heading-title { color: var(--tg-blue); }
body .elementor .tg-dark .tg-eyebrow .elementor-heading-title { color: var(--tg-yellow); }

/* text */
body .elementor .elementor-widget-text-editor { color: var(--tg-text); font-size: 17px; line-height: 1.65; }
body .elementor .elementor-widget-text-editor p { margin: 0 0 1em; }
body .elementor .elementor-widget-text-editor p:last-child { margin-bottom: 0; }
body .elementor .tg-lead { font-size: 19px; color: var(--tg-muted); max-width: 60ch; }
body .elementor .tg-lead.tg-center { margin-inline: auto; text-align: center; max-width: 64ch; }
body .elementor .elementor-widget.tg-lead.tg-center { display: flex; justify-content: center; }
body .elementor .tg-lead-light, body .elementor .tg-dark .elementor-widget-text-editor { color: rgba(255, 255, 255, 0.8); }
body .elementor .tg-body { color: var(--tg-text); }
body .elementor .tg-body p { margin-bottom: 1.1em; }
body .elementor .tg-fine, body .elementor .elementor-widget-text-editor .tg-fine { font-size: 14px; color: var(--tg-muted); }
body .elementor .tg-fine a { color: var(--tg-ink); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--tg-yellow); }
body .elementor .elementor-widget.tg-lead { margin-bottom: 28px; }
body .elementor .elementor-widget-text-editor a { color: var(--tg-blue); }
body .elementor .tg-dark .elementor-widget-text-editor a { color: var(--tg-yellow); }

/* buttons */
body .elementor .elementor-button {
  font-family: var(--tg-font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  background-color: var(--tg-yellow); color: var(--tg-ink); padding: 16px 28px; border-radius: 4px; border: 2px solid transparent;
  transition: transform 0.25s var(--tg-ease), background-color 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
body .elementor .elementor-button:hover, body .elementor .elementor-button:focus { background-color: var(--tg-yellow-2); color: var(--tg-ink); transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(245, 179, 1, 0.9); }
body .elementor .tg-btn-ghost .elementor-button { background-color: transparent; color: var(--tg-ink); border-color: rgba(14, 17, 20, 0.35); }
body .elementor .tg-btn-ghost .elementor-button:hover { background-color: var(--tg-ink); color: #fff; border-color: var(--tg-ink); box-shadow: none; }
body .elementor .tg-hero .tg-btn-ghost .elementor-button, body .elementor .tg-dark .tg-btn-ghost .elementor-button, body .elementor .tg-btn-light-ghost .elementor-button { background-color: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
body .elementor .tg-hero .tg-btn-ghost .elementor-button:hover, body .elementor .tg-dark .tg-btn-ghost .elementor-button:hover, body .elementor .tg-btn-light-ghost .elementor-button:hover { background-color: #fff; color: var(--tg-ink); border-color: #fff; }
body .elementor .tg-btn-dark .elementor-button { background-color: var(--tg-ink); color: #fff; }
body .elementor .tg-btn-dark .elementor-button:hover { background-color: var(--tg-ink-3); color: #fff; box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.6); }
body .elementor .tg-center-btn .elementor-button-wrapper { text-align: center; }
body .elementor .elementor-widget.tg-center-btn { margin-top: 44px; }
body .elementor .elementor-widget-button.elementor-widget:not(:last-child) { margin-bottom: 0; }
body .elementor .elementor-widget-button { margin-right: 14px; margin-bottom: 14px; }
body .elementor .tg-split .elementor-widget-button { margin-top: 10px; }

/* icon lists */
body .elementor .tg-list .elementor-icon-list-item { align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--tg-line); }
body .elementor .tg-list .elementor-icon-list-item:last-child { border-bottom: 0; }
body .elementor .tg-list .elementor-icon-list-icon { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: var(--tg-yellow); color: var(--tg-ink); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
body .elementor .tg-list .elementor-icon-list-icon i, body .elementor .tg-list .elementor-icon-list-icon svg { color: var(--tg-ink); font-size: 12px; width: 13px; height: 13px; }
body .elementor .tg-list .elementor-icon-list-text { padding: 0; color: var(--tg-text); font-size: 16.5px; line-height: 1.5; }
body .elementor .tg-list .elementor-icon-list-text strong { color: var(--tg-ink); font-weight: 700; }
body .elementor .tg-list-light .elementor-icon-list-item { border-color: var(--tg-line-l); }
body .elementor .tg-list-light .elementor-icon-list-text { color: rgba(255, 255, 255, 0.8); }
body .elementor .tg-list-light .elementor-icon-list-text strong { color: #fff; }
body .elementor .tg-list-cols .elementor-icon-list-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
body .elementor .tg-list-detail .elementor-icon-list-text { font-size: 16px; }
@media (max-width: 560px) { body .elementor .tg-list-cols .elementor-icon-list-items { grid-template-columns: 1fr; } }

/* images */
body .elementor .elementor-widget-image { text-align: left; }
body .elementor .tg-img-frame img { width: 100%; border-radius: var(--tg-radius-l); box-shadow: var(--tg-shadow); display: block; }
body .elementor .tg-img-tall img { aspect-ratio: 4 / 5; object-fit: cover; }
body .elementor .tg-img-43 img { aspect-ratio: 4 / 3; object-fit: cover; }
body .elementor .tg-img-portrait img { aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }

/* toggles / FAQ */
body .elementor .tg-faq .elementor-toggle-item { border: 1px solid var(--tg-line); border-radius: var(--tg-radius-l); margin-bottom: 12px; background: #fff; overflow: hidden; }
body .elementor .tg-faq .elementor-tab-title { padding: 20px 24px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--tg-font-display); font-size: 23px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.1; cursor: pointer; }
body .elementor .tg-faq .elementor-tab-title .elementor-toggle-icon { display: none; }
body .elementor .tg-faq .elementor-tab-title::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 2.5px solid var(--tg-ink); border-bottom: 2.5px solid var(--tg-ink); transform: rotate(45deg) translate(-2px, -2px); transition: transform 0.3s var(--tg-ease); }
body .elementor .tg-faq .elementor-tab-title.elementor-active::after { transform: rotate(-135deg); }
body .elementor .tg-faq .elementor-toggle-title { color: var(--tg-ink); }
body .elementor .tg-faq .elementor-tab-title.elementor-active .elementor-toggle-title { color: var(--tg-blue); }
body .elementor .tg-faq .elementor-tab-content { padding: 0 24px 22px; border: 0; color: var(--tg-muted); font-size: 16.5px; line-height: 1.6; }
body .elementor .tg-faq .elementor-tab-content p { margin: 0; }
body .elementor .elementor-widget.tg-faq { margin-top: 36px; }

/* ------------------------------------------------------------------ hero */
body .elementor .elementor-section.tg-hero { position: relative; display: flex; align-items: center; background-color: var(--tg-ink); color: #fff; overflow: hidden; }
body .elementor .elementor-section.tg-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(10, 13, 16, 0.94) 0%, rgba(10, 13, 16, 0.78) 42%, rgba(10, 13, 16, 0.38) 78%, rgba(10, 13, 16, 0.25) 100%); }
body .elementor .elementor-section.tg-hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 40%; z-index: 0; background: linear-gradient(180deg, rgba(10, 13, 16, 0) 0%, rgba(10, 13, 16, 0.75) 100%); pointer-events: none; }
body .elementor .elementor-section.tg-hero > .elementor-container { position: relative; z-index: 2; width: 100%; max-width: var(--tg-wrap); padding-inline: var(--tg-gutter); }
body .elementor .tg-hero .tg-hero-col { width: min(100%, 780px); }
body .elementor .elementor-section.tg-hero-home { min-height: min(860px, 92vh); padding: 130px 0 170px; }
body .elementor .elementor-section.tg-hero-home::before { background: linear-gradient(270deg, rgba(10, 13, 16, 0.95) 0%, rgba(10, 13, 16, 0.82) 30%, rgba(10, 13, 16, 0.3) 62%, rgba(10, 13, 16, 0.08) 100%); }
body .elementor .tg-hero-home > .elementor-container { justify-content: flex-end; }
body .elementor .tg-hero-home .tg-hero-col { width: min(100%, 660px); }
body .elementor .elementor-section.tg-hero-page { min-height: 560px; padding: 120px 0 100px; }
body .elementor .tg-hero .elementor-widget.tg-eyebrow { margin-bottom: 18px; }
body .elementor .tg-hero .tg-lead { font-size: 20px; color: rgba(255, 255, 255, 0.86); max-width: 56ch; margin-bottom: 8px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35); }
body .elementor .tg-hero .elementor-widget.tg-lead { margin-bottom: 30px; }
body .elementor .tg-hero .elementor-widget-button { margin-right: 14px; margin-bottom: 14px; margin-top: 0; }
body .elementor .tg-hero .tg-chips { margin-top: 26px; }
body .elementor .tg-hero .tg-chips li { border-color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.9); background: rgba(10, 13, 16, 0.35); backdrop-filter: blur(4px); }
@media (max-width: 900px) {
  body .elementor .elementor-section.tg-hero::before, body .elementor .elementor-section.tg-hero-home::before { background: linear-gradient(180deg, rgba(10, 13, 16, 0.75) 0%, rgba(10, 13, 16, 0.86) 100%); }
  body .elementor .elementor-section.tg-hero-home { min-height: 0; padding: 88px 0 130px; }
  body .elementor .elementor-section.tg-hero-page { min-height: 0; padding: 80px 0 72px; }
  body .elementor .tg-hero-home .tg-hero-col, body .elementor .tg-hero .tg-hero-col { width: 100%; }
}

/* ----------------------------------------------------------------- stats */
body .elementor .elementor-section.tg-stats { margin-top: -72px; padding-top: 118px; clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%); }
body .elementor .tg-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
body .elementor .tg-stat { padding-left: 18px; border-left: 3px solid var(--tg-yellow); }
body .elementor .tg-stat-n { display: block; font-family: var(--tg-font-display); font-size: clamp(44px, 4.6vw, 62px); font-weight: 800; line-height: 1; color: var(--tg-yellow); letter-spacing: 0.01em; }
body .elementor .tg-stat-l { display: block; margin-top: 8px; font-size: 15px; color: rgba(255, 255, 255, 0.72); max-width: 22ch; line-height: 1.4; }
@media (max-width: 800px) { body .elementor .tg-stat-grid { grid-template-columns: 1fr 1fr; } body .elementor .elementor-section.tg-stats { margin-top: -44px; padding-top: 88px; clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%); } }

/* logos */
body .elementor .tg-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px 56px; margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--tg-line-l); }
body .elementor .tg-logos-label { width: 100%; text-align: center; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); font-weight: 700; }
body .elementor .tg-logos img { height: 64px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
body .elementor .tg-logos img:hover { opacity: 1; }
body .elementor .tg-logos-dark { margin-top: 44px; padding-top: 0; border: 0; gap: 32px 72px; }
body .elementor .tg-logos-dark img { filter: invert(1); opacity: 0.72; height: 74px; }
@media (max-width: 600px) { body .elementor .tg-logos img { height: 48px; } }

/* service cards */
body .elementor .tg-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
body .elementor .tg-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--tg-radius-l); overflow: hidden; box-shadow: 0 0 0 1px var(--tg-line), var(--tg-shadow); text-decoration: none; color: inherit; transition: transform 0.35s var(--tg-ease), box-shadow 0.35s; }
body .elementor .tg-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--tg-line), 0 30px 60px -28px rgba(14, 17, 20, 0.5); }
body .elementor .tg-card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tg-ink-3); }
body .elementor .tg-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--tg-ease); }
body .elementor .tg-card:hover .tg-card-media img { transform: scale(1.06); }
body .elementor .tg-card-body { display: flex; flex-direction: column; gap: 10px; padding: 24px 24px 26px; flex: 1; }
body .elementor .tg-ico { display: inline-flex; width: 44px; height: 44px; color: var(--tg-yellow-3); }
body .elementor .tg-ico svg { width: 100%; height: 100%; }
body .elementor .tg-card-title { font-family: var(--tg-font-display); font-size: 27px; font-weight: 700; text-transform: uppercase; line-height: 1; color: var(--tg-ink); }
body .elementor .tg-card-text { font-size: 15.5px; color: var(--tg-muted); line-height: 1.55; }
body .elementor .tg-card-link { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tg-blue); }
body .elementor .tg-card-link svg { width: 16px; height: 16px; transition: transform 0.25s; }
body .elementor .tg-card:hover .tg-card-link svg { transform: translateX(4px); }
@media (max-width: 1100px) { body .elementor .tg-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { body .elementor .tg-cards { grid-template-columns: 1fr; } }

/* collage (why section) */
body .elementor .tg-collage { position: relative; aspect-ratio: 1 / 1; max-width: 560px; }
body .elementor .tg-collage img { position: absolute; object-fit: cover; border-radius: var(--tg-radius-l); }
body .elementor .tg-collage-a { left: 0; top: 0; width: 74%; height: 80%; box-shadow: var(--tg-shadow); }
body .elementor .tg-collage-b { right: 0; bottom: 0; width: 52%; height: 50%; border: 8px solid var(--tg-ink); }
body .elementor .tg-collage-badge { position: absolute; left: 20px; bottom: 6%; background: var(--tg-yellow); color: var(--tg-ink); padding: 16px 20px; border-radius: var(--tg-radius); box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.6); }
body .elementor .tg-collage-badge span { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; opacity: 0.75; }
body .elementor .tg-collage-badge strong { display: block; font-family: var(--tg-font-display); font-size: 26px; font-weight: 800; text-transform: uppercase; line-height: 1; margin-top: 4px; }

/* chips */
body .elementor .tg-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 20px 0 0; }
body .elementor .tg-chips li { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--tg-line); background: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tg-ink); }

/* steps */
body .elementor .tg-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; padding: 0; margin: 52px 0 0; counter-reset: step; }
body .elementor .tg-step { position: relative; padding: 26px 24px 30px; background: var(--tg-paper); border-top: 4px solid var(--tg-yellow); border-radius: 0 0 var(--tg-radius-l) var(--tg-radius-l); display: flex; flex-direction: column; gap: 10px; }
body .elementor .tg-step-n { font-family: var(--tg-font-display); font-size: 46px; font-weight: 800; line-height: 1; color: var(--tg-ink); opacity: 0.18; }
body .elementor .tg-step-t { font-family: var(--tg-font-display); font-size: 25px; font-weight: 700; text-transform: uppercase; line-height: 1.05; color: var(--tg-ink); }
body .elementor .tg-step-d { font-size: 15.5px; color: var(--tg-muted); line-height: 1.55; }
@media (max-width: 1000px) { body .elementor .tg-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body .elementor .tg-steps { grid-template-columns: 1fr; } }

/* gallery */
body .elementor .tg-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
body .elementor .tg-tile { position: relative; margin: 0; border-radius: var(--tg-radius-l); overflow: hidden; aspect-ratio: 4 / 3; background: var(--tg-ink-3); }
body .elementor .tg-tile a { display: block; height: 100%; }
body .elementor .tg-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--tg-ease); }
body .elementor .tg-tile:hover img { transform: scale(1.05); }
body .elementor .tg-tile figcaption { position: absolute; inset: auto 0 0 0; padding: 48px 18px 16px; background: linear-gradient(180deg, rgba(10, 13, 16, 0) 0%, rgba(10, 13, 16, 0.88) 100%); color: #fff; font-weight: 600; font-size: 15px; line-height: 1.3; pointer-events: none; }
body .elementor .tg-tile-cat { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tg-yellow); margin-bottom: 4px; font-weight: 700; }
body .elementor .tg-tile[hidden] { display: none; }
body .elementor .tg-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: -8px; }
body .elementor .tg-filter button { font: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--tg-line); background: #fff; color: var(--tg-ink); cursor: pointer; transition: background-color 0.2s, color 0.2s; }
body .elementor .tg-filter button:hover { border-color: var(--tg-ink); }
body .elementor .tg-filter button.is-active { background: var(--tg-ink); color: #fff; border-color: var(--tg-ink); }
@media (max-width: 900px) { body .elementor .tg-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body .elementor .tg-gallery { grid-template-columns: 1fr; } }

/* pillars / values */
body .elementor .tg-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 48px; }
body .elementor .tg-pillar { padding: 28px 22px 30px; background: #fff; border: 1px solid var(--tg-line); border-radius: var(--tg-radius-l); display: flex; flex-direction: column; }
body .elementor .tg-pillar strong { display: block; font-family: var(--tg-font-display); font-size: 25px; font-weight: 700; text-transform: uppercase; line-height: 1; margin: 16px 0 8px; color: var(--tg-ink); }
body .elementor .tg-pillar span { font-size: 15px; color: var(--tg-muted); line-height: 1.55; }
body .elementor .tg-pillars-light .tg-pillar { background: rgba(255, 255, 255, 0.04); border-color: var(--tg-line-l); }
body .elementor .tg-pillars-light .tg-pillar strong { color: #fff; }
body .elementor .tg-pillars-light .tg-pillar span { color: rgba(255, 255, 255, 0.72); }
body .elementor .tg-pillars-light .tg-ico { color: var(--tg-yellow); }

/* quote band */
body .elementor .elementor-section.tg-quote { padding-block: clamp(56px, 7vw, 96px); }
body .elementor .tg-quote-text .elementor-heading-title { font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; text-transform: none; letter-spacing: 0; line-height: 1.15; max-width: 26ch; margin-inline: auto; text-align: center; color: var(--tg-ink); }
body .elementor .tg-quote-by { text-align: center; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; color: rgba(14, 17, 20, 0.7); }
body .elementor .tg-yellow .elementor-widget-text-editor { color: rgba(14, 17, 20, 0.75); }

/* service area */
body .elementor .tg-area-card { background: var(--tg-ink-2); border: 1px solid var(--tg-line-l); border-radius: var(--tg-radius-l); overflow: hidden; color: rgba(255, 255, 255, 0.9); }
body .elementor .tg-area-map { padding: 24px; color: rgba(255, 255, 255, 0.85); }
body .elementor .tg-area-map svg { width: 100%; height: auto; display: block; }
body .elementor .tg-area-foot { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-top: 1px solid var(--tg-line-l); font-size: 15px; }
body .elementor .tg-area-foot .tg-ico { width: 26px; height: 26px; color: var(--tg-yellow); flex: none; }

/* contact cards */
body .elementor .tg-contact-cards { display: grid; gap: 12px; margin: 8px 0 0; }
body .elementor .tg-ccard { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 14px 16px; background: #fff; border: 1px solid var(--tg-line); border-radius: var(--tg-radius); text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s; }
body .elementor .tg-ccard:hover { border-color: var(--tg-yellow-3); transform: translateX(3px); }
body .elementor .tg-ccard .tg-ico { grid-row: span 2; width: 40px; height: 40px; }
body .elementor .tg-ccard-k { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tg-muted); font-weight: 700; }
body .elementor .tg-ccard-v { font-weight: 700; font-size: 17px; color: var(--tg-ink); line-height: 1.3; }
body .elementor .tg-dark .tg-ccard { background: rgba(255, 255, 255, 0.05); border-color: var(--tg-line-l); }
body .elementor .tg-dark .tg-ccard-v { color: #fff; }
body .elementor .tg-dark .tg-ccard-k { color: rgba(255, 255, 255, 0.55); }
body .elementor .elementor-widget:has(> .elementor-widget-container > .tg-contact-cards) { margin-top: 8px; }

/* map */
body .elementor .tg-map { position: relative; margin-top: 24px; border-radius: var(--tg-radius-l); overflow: hidden; border: 1px solid var(--tg-line); background: var(--tg-paper-2) repeating-linear-gradient(0deg, transparent 0 39px, rgba(14, 17, 20, 0.06) 39px 40px), repeating-linear-gradient(90deg, transparent 0 39px, rgba(14, 17, 20, 0.06) 39px 40px); }
body .elementor .tg-map::before { content: ""; position: absolute; left: 50%; top: 110px; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; background: var(--tg-yellow); box-shadow: 0 0 0 8px rgba(245, 179, 1, 0.25), 0 0 0 18px rgba(245, 179, 1, 0.12); }
body .elementor .tg-map iframe { position: relative; display: block; width: 100%; height: 260px; border: 0; }
body .elementor .tg-map-link { display: inline-flex; align-items: center; gap: 6px; padding: 12px 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tg-ink); text-decoration: none; }
body .elementor .tg-map-link svg { width: 16px; height: 16px; }

/* roles */
body .elementor .tg-roles { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 10px; }
body .elementor .tg-roles li { padding: 16px 18px; background: var(--tg-paper); border-left: 4px solid var(--tg-yellow); border-radius: 0 var(--tg-radius) var(--tg-radius) 0; }
body .elementor .tg-roles strong { display: block; font-family: var(--tg-font-display); font-size: 23px; text-transform: uppercase; font-weight: 700; line-height: 1; color: var(--tg-ink); }
body .elementor .tg-roles span { display: block; margin-top: 4px; font-size: 15px; color: var(--tg-muted); }

/* CTA band */
body .elementor .elementor-section.tg-cta-band { padding-block: clamp(44px, 5vw, 64px); }
body .elementor .tg-cta-band > .elementor-container { align-items: center; }
body .elementor .tg-band-title .elementor-heading-title { font-size: clamp(32px, 3.8vw, 48px); }
body .elementor .elementor-widget.tg-band-title { margin-bottom: 8px; }
body .elementor .elementor-widget.tg-band-text { margin-bottom: 0; }
body .elementor .tg-band-text { color: rgba(14, 17, 20, 0.75); }
body .elementor .tg-band-btn .elementor-button-wrapper { text-align: right; }
body .elementor .tg-cta-band .elementor-widget-button { margin: 0; }
@media (max-width: 900px) { body .elementor .tg-band-btn .elementor-button-wrapper { text-align: left; } body .elementor .tg-cta-band .elementor-widget-button { margin-top: 20px; } }

/* --------------------------------------------------------------- forms */
body .elementor .tg-form-col > .elementor-widget-wrap { display: block; background: #fff; border-radius: var(--tg-radius-l); border-top: 5px solid var(--tg-yellow); box-shadow: var(--tg-shadow); padding: clamp(22px, 3vw, 36px); }
body .elementor .tg-form-title .elementor-heading-title { font-size: 28px; font-weight: 700; }
body .elementor .elementor-widget.tg-form-title { margin-bottom: 4px; }
body .elementor .tg-form-note { font-size: 14.5px; color: var(--tg-muted); }
body .elementor .elementor-widget.tg-form-note { margin-bottom: 22px; }
body .elementor .tg-estimate > .elementor-container { align-items: flex-start; }
body .elementor .tg-estimate .tg-title .elementor-heading-title { max-width: 16ch; }

.tg-form, .wpforms-container { font-family: var(--tg-font-body); }
.tg-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tg-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tg-field { grid-column: span 2; display: flex; flex-direction: column; gap: 6px; }
.tg-half { grid-column: span 1; }
@media (max-width: 560px) { .tg-half { grid-column: span 2; } }
.tg-form label, .wpforms-container .wpforms-field-label, .wpforms-container .wpforms-field-sublabel { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tg-ink); }
.wpforms-container .wpforms-field-sublabel { font-size: 11.5px; color: var(--tg-muted); }
.tg-req { color: #c8102e; }
.tg-form input:not([type="checkbox"]):not([type="radio"]), .tg-form select, .tg-form textarea,
.wpforms-container .wpforms-form input[type="text"], .wpforms-container .wpforms-form input[type="email"], .wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"], .wpforms-container .wpforms-form input[type="url"], .wpforms-container .wpforms-form input[type="date"],
.wpforms-container .wpforms-form select, .wpforms-container .wpforms-form textarea {
  width: 100%; box-sizing: border-box; padding: 13px 14px; border: 1.5px solid #cfd4d9; border-radius: var(--tg-radius); background: #fff; color: var(--tg-ink);
  font: inherit; font-size: 16px; line-height: 1.4; transition: border-color 0.2s, box-shadow 0.2s;
}
.tg-form textarea { min-height: 120px; resize: vertical; }
.tg-form input:focus, .tg-form select:focus, .tg-form textarea:focus,
.wpforms-container .wpforms-form input:focus, .wpforms-container .wpforms-form select:focus, .wpforms-container .wpforms-form textarea:focus { outline: none; border-color: var(--tg-yellow-3); box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.25); }
.tg-form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%230e1114' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.tg-form-submit, .wpforms-container .wpforms-form button[type="submit"], .wpforms-container .wpforms-form .wpforms-submit {
  margin-top: 20px; width: 100%; font-family: var(--tg-font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  background: var(--tg-yellow); color: var(--tg-ink); border: 2px solid transparent; border-radius: 4px; padding: 17px 26px; cursor: pointer; transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tg-form-submit:hover, .wpforms-container .wpforms-form button[type="submit"]:hover, .wpforms-container .wpforms-form .wpforms-submit:hover { background: var(--tg-yellow-2); transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(245, 179, 1, 0.9); }
.tg-form .tg-fine { margin: 14px 0 0; font-size: 13px; color: var(--tg-muted); }
.tg-form-notice { padding: 14px 16px; border-radius: var(--tg-radius); margin-bottom: 18px; font-weight: 600; }
.tg-form-notice.is-ok { background: #e7f6ea; color: #14532d; border: 1px solid #b7e2c1; }
.tg-form-notice.is-err { background: #fdecec; color: #7f1d1d; border: 1px solid #f5c2c2; }
/* WPForms modern markup variables */
.wpforms-container {
  --wpforms-field-border-radius: 6px; --wpforms-field-border-size: 1.5px; --wpforms-field-border-color: #cfd4d9; --wpforms-field-background-color: #fff;
  --wpforms-field-text-color: #0e1114; --wpforms-label-color: #0e1114; --wpforms-label-sublabel-color: #5b646c; --wpforms-label-error-color: #c8102e;
  --wpforms-button-border-radius: 4px; --wpforms-button-background-color: #f5b301; --wpforms-button-text-color: #0e1114; --wpforms-button-border-color: #f5b301;
  --wpforms-field-size-input-height: 50px; --wpforms-field-size-font-size: 16px; --wpforms-label-size-font-size: 13px;
  --wpforms-button-size-font-size: 19px; --wpforms-button-size-height: 56px; --wpforms-button-size-padding-h: 26px; --wpforms-button-size-margin-top: 20px;
  --wpforms-page-break-color: #f5b301;
}
.wpforms-container .wpforms-field { padding: 8px 0; }
.wpforms-container .wpforms-form .wpforms-field-label-inline { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 16px; }

/* ------------------------------------------------------------- reveal
   Fail open: visible by default; hide only once JS is live; never inside
   the Elementor editor where the observer will not fire. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--tg-ease), transform 0.7s var(--tg-ease); }
html.js .reveal.in { opacity: 1; transform: none; }
body.elementor-editor-active .reveal, body.elementor-editor-active .reveal.in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* lightbox */
.tg-lb { position: fixed; inset: 0; z-index: 1000; background: rgba(8, 10, 12, 0.94); display: flex; align-items: center; justify-content: center; padding: 24px; }
.tg-lb img { max-width: min(100%, 1400px); max-height: 100%; border-radius: 8px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8); }
.tg-lb-close, .tg-lb-prev, .tg-lb-next { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); color: #fff; cursor: pointer; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.tg-lb-close { top: 20px; right: 20px; }
.tg-lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.tg-lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.tg-lb-cap { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: rgba(255, 255, 255, 0.85); font-size: 15px; }

/* ------------------------------------------------- non-designed pages */
.tg-title-band { background: var(--tg-ink); color: #fff; padding: clamp(56px, 8vw, 96px) 0; position: relative; overflow: hidden; }
.tg-title-band::after { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 180%; background: radial-gradient(closest-side, rgba(245, 179, 1, 0.18), transparent); pointer-events: none; }
.tg-title-band h1 { font-family: var(--tg-font-display); font-size: clamp(40px, 5.6vw, 72px); font-weight: 800; text-transform: uppercase; line-height: 0.96; margin: 0; }
.tg-title-band .tg-eyebrow-plain { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--tg-yellow); margin-bottom: 14px; }
.tg-title-band .tg-meta { margin-top: 14px; color: rgba(255, 255, 255, 0.65); font-size: 14.5px; }
.tg-prose { padding: clamp(48px, 6vw, 80px) 0; max-width: 780px; }
.tg-prose h2, .tg-prose h3 { font-family: var(--tg-font-display); text-transform: uppercase; font-weight: 700; line-height: 1.05; margin: 1.6em 0 0.5em; }
.tg-prose h2 { font-size: 36px; }
.tg-prose h3 { font-size: 27px; }
.tg-prose img { border-radius: var(--tg-radius-l); }
.tg-prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--tg-yellow); font-size: 20px; color: var(--tg-muted); }
.tg-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: clamp(48px, 6vw, 80px) 0; }
.tg-post-card { background: #fff; border: 1px solid var(--tg-line); border-radius: var(--tg-radius-l); overflow: hidden; display: flex; flex-direction: column; }
.tg-post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.tg-post-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.tg-post-card h2 { font-family: var(--tg-font-display); font-size: 26px; text-transform: uppercase; font-weight: 700; line-height: 1.05; margin: 0; }
.tg-post-card h2 a { color: var(--tg-ink); text-decoration: none; }
.tg-post-card time { font-size: 13px; color: var(--tg-muted); letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 900px) { .tg-post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tg-post-grid { grid-template-columns: 1fr; } }
.tg-pagination { display: flex; gap: 8px; justify-content: center; padding-bottom: 64px; }
.tg-pagination .page-numbers { padding: 10px 14px; border: 1px solid var(--tg-line); border-radius: 4px; text-decoration: none; color: var(--tg-ink); font-weight: 600; }
.tg-pagination .page-numbers.current { background: var(--tg-ink); color: #fff; }
.tg-404 { text-align: center; padding: clamp(64px, 10vw, 140px) 0; }
.tg-404 .tg-big { font-family: var(--tg-font-display); font-size: clamp(120px, 20vw, 220px); font-weight: 800; line-height: 0.9; color: var(--tg-paper-2); }
.tg-404 h1 { font-family: var(--tg-font-display); font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; margin: 0 0 12px; }
.tg-404 p { color: var(--tg-muted); max-width: 46ch; margin: 0 auto 28px; }
.tg-search-form { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; }
.tg-search-form input { flex: 1; padding: 13px 14px; border: 1.5px solid #cfd4d9; border-radius: var(--tg-radius); font: inherit; font-size: 16px; }
