.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ============================================================
   HODZIC CONSTRUCTION — SITEWIDE CSS
   Paste into WordPress > Appearance > Customize > Additional CSS
   ============================================================ */

/* ---------- FONT IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  --ink: #0E0E10;
  --ink-soft: #1A1A1D;
  --ink-fade: #2A2A2E;

  --paper: #F5F1EA;
  --paper-warm: #EBE4D6;
  --paper-deep: #DFD6C4;

  --rust: #C25E2E;
  --rust-deep: #A14B22;
  --rust-glow: rgba(194, 94, 46, 0.12);

  --moss: #3A4A3D;
  --moss-deep: #2A3830;

  --text: #1A1A1D;
  --muted: #6B6359;
  --muted-soft: #8A8478;
  --line: #D9D2C5;
  --line-soft: #E5DFD2;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.65, 0, 0.35, 1);

  --max-width: 1320px;
  --gutter: 6vw;

  --header-height: 88px;
}

/* ---------- BASE RESET (scoped to our wrapper to avoid conflicts) ---------- */
.hz-page,
.hz-page *,
.hz-page *::before,
.hz-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hz-page {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- TYPOGRAPHY DEFAULTS ---------- */
.hz-page h1, .hz-page h2, .hz-page h3, .hz-page h4 {
  font-family: var(--font-display) !important;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.0;
  color: var(--ink);
  text-transform: uppercase;
}

.hz-page h1 { font-size: clamp(48px, 7vw, 104px); font-weight: 600; }
.hz-page h2 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 600; }
.hz-page h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 500; }
.hz-page h4 { font-size: clamp(20px, 1.6vw, 26px); font-weight: 500; }

.hz-page p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  font-family: var(--font-body);
}

.hz-page em {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  text-transform: uppercase;
}

/* ---------- LAYOUT UTILITIES ---------- */
.hz-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hz-section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}

/* ---------- EYEBROW LABEL ---------- */
.hz-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hz-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rust);
}

/* ---------- BUTTONS ---------- */
.hz-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hz-btn--primary {
  background: var(--ink) !important;
  color: var(--paper) !important;
}
.hz-btn--primary:hover {
  background: var(--rust) !important;
  color: var(--paper) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 14, 16, 0.18);
}

.hz-btn--ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
}
.hz-btn--ghost:hover {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.hz-btn--rust {
  background: var(--rust) !important;
  color: var(--paper) !important;
}
.hz-btn--rust:hover {
  background: var(--rust-deep) !important;
  transform: translateY(-2px);
}

.hz-btn .hz-arrow {
  transition: transform 0.4s var(--ease-smooth);
  display: inline-block;
}
.hz-btn:hover .hz-arrow {
  transform: translateX(6px);
}

/* ---------- LINKS ---------- */
.hz-link {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.3s var(--ease-smooth);
}
.hz-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-smooth);
}
.hz-link:hover { color: var(--rust); }
.hz-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   HEADER
   ============================================================ */
.hz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.4s var(--ease-smooth);
}
.hz-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hz-logo {
  font-family: var(--font-display) !important;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink) !important;
  text-decoration: none !important;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hz-logo__mark {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--rust);
  text-transform: uppercase;
}
.hz-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hz-nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink) !important;
  text-decoration: none !important;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-smooth);
}
.hz-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-smooth);
}
.hz-nav__link:hover { color: var(--rust) !important; }
.hz-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.hz-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.3s var(--ease-smooth);
}
.hz-nav__cta:hover { background: var(--rust); }
.hz-nav__phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: color 0.3s var(--ease-smooth);
}
.hz-nav__phone:hover { color: var(--rust) !important; }

.hz-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hz-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s var(--ease-smooth);
}

@media (max-width: 900px) {
  .hz-nav { display: none; }
  .hz-mobile-toggle { display: block; }
  .hz-nav.hz-nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 20px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.hz-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 40px;
  position: relative;
}
.hz-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.hz-footer__brand-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--paper);
}
.hz-footer__tag {
  color: rgba(245, 241, 234, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 28px;
}
.hz-footer__license {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust);
  text-transform: uppercase;
}
.hz-footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}
.hz-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hz-footer__list a {
  color: rgba(245, 241, 234, 0.8) !important;
  text-decoration: none !important;
  font-size: 15px;
  transition: color 0.3s var(--ease-smooth);
}
.hz-footer__list a:hover { color: var(--rust) !important; }
.hz-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
}
@media (max-width: 800px) {
  .hz-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .hz-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS — used across pages
   ============================================================ */
@keyframes hz-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hz-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hz-line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hz-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease-smooth), transform 1.1s var(--ease-smooth);
}
.hz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hz-reveal--delay-1 { transition-delay: 0.1s; }
.hz-reveal--delay-2 { transition-delay: 0.2s; }
.hz-reveal--delay-3 { transition-delay: 0.3s; }
.hz-reveal--delay-4 { transition-delay: 0.4s; }
.hz-reveal--delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SMOOTH SCROLL
   ============================================================ */
html { scroll-behavior: smooth; }

/* ============================================================
   SELECTION
   ============================================================ */
.hz-page ::selection {
  background: var(--rust);
  color: var(--paper);
}

/* ============================================================
   GRAIN OVERLAY (subtle texture for warmth)
   ============================================================ */
.hz-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
.hz-numeric {
  font-family: var(--font-display);
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.hz-numeric-mono {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' on;
}
.hz-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 60px 0;
}

/* ============================================================
   FINAL CTA — used on multiple pages
   ============================================================ */
.hz-page .hz-final-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: clamp(100px, 12vw, 160px) 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.hz-page .hz-final-cta h2.hz-final-cta__title,
.hz-page .hz-final-cta .hz-final-cta__title {
  font-family: var(--font-display) !important;
  font-size: clamp(48px, 7vw, 104px) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  color: var(--paper) !important;
  margin: 24px auto 32px !important;
  max-width: 1100px !important;
  text-transform: none !important;
  background: transparent !important;
  -webkit-text-fill-color: var(--paper) !important;
  word-spacing: normal !important;
}
.hz-page .hz-final-cta h2.hz-final-cta__title em,
.hz-page .hz-final-cta .hz-final-cta__title em {
  font-style: italic !important;
  color: var(--rust) !important;
  -webkit-text-fill-color: var(--rust) !important;
  font-weight: 400 !important;
}
.hz-page .hz-final-cta__sub {
  font-size: 18px !important;
  color: rgba(245, 241, 234, 0.7) !important;
  max-width: 540px !important;
  margin: 0 auto 48px !important;
  line-height: 1.6 !important;
}
.hz-page .hz-final-cta__ctas {
  display: inline-flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.hz-page .hz-final-cta .hz-eyebrow {
  color: var(--muted) !important;
  display: inline-flex !important;
}
.hz-page .hz-final-cta .hz-eyebrow::before { background: var(--rust) !important; }

/* ============================================================
   TYPOGRAPHY GUARDRAILS for Oswald display + Inter body
   ============================================================ */
.hz-page p,
.hz-page li,
.hz-page span,
.hz-page label,
.hz-page input,
.hz-page textarea,
.hz-page select,
.hz-page button {
  text-transform: none;
}
.hz-page p, .hz-page .hz-q__body, .hz-page li {
  font-family: var(--font-body) !important;
}
/* Body em should stay rust but lowercase to feel like emphasis, not heading */
.hz-page p em,
.hz-page li em,
.hz-page .hz-pillar__body em,
.hz-page .hz-svc-card__desc em,
.hz-page .hz-feature__copy em,
.hz-page .hz-pillars__lede em {
  font-family: var(--font-body) !important;
  font-style: italic !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: var(--rust) !important;
  -webkit-text-fill-color: var(--rust) !important;
}

/* Headlines that contain em — em stays uppercase Oswald italic */
.hz-page h1 em,
.hz-page h2 em,
.hz-page h3 em,
.hz-page h4 em {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--rust) !important;
  -webkit-text-fill-color: var(--rust) !important;
}

/* Eyebrow + mono labels stay mono and uppercase */
.hz-page .hz-eyebrow,
.hz-page .hz-pillar__num,
.hz-page .hz-svc-card__num,
.hz-page .hz-svc-card__cta {
  font-family: var(--font-mono) !important;
  text-transform: uppercase !important;
}

/* Logo in header — keep clean but uppercase to match new vibe */
.hz-logo {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 22px !important;
}

/* Footer brand name */
.hz-footer__brand-name {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.005em !important;
}
.hz-page h1, .hz-page h2, .hz-page h3, .hz-page h4 {
  font-family: var(--font-display) !important;
  -webkit-text-fill-color: currentColor !important;
}
.hz-page em {
  -webkit-text-fill-color: var(--rust) !important;
  color: var(--rust) !important;
}
/* Make sure inline em inside white headings stays rust */
.hz-page .hz-final-cta em,
.hz-page .hz-services-section em,
.hz-page .hz-values em,
.hz-page section[class*="dark"] em {
  color: var(--rust) !important;
  -webkit-text-fill-color: var(--rust) !important;
}

/* Headings inside dark sections need white text by default */
.hz-page .hz-final-cta h1,
.hz-page .hz-final-cta h2,
.hz-page .hz-final-cta h3,
.hz-page .hz-services-section h2,
.hz-page .hz-services-section h3,
.hz-page .hz-values h2,
.hz-page .hz-values h3 {
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
}
.hz-page .hz-final-cta h2 em,
.hz-page .hz-final-cta h3 em,
.hz-page .hz-services-section h2 em,
.hz-page .hz-services-section h3 em,
.hz-page .hz-values h2 em,
.hz-page .hz-values h3 em {
  color: var(--rust) !important;
  -webkit-text-fill-color: var(--rust) !important;
}/* End custom CSS */