/*
===========================================
LASSO ROOFING - REFINED INDUSTRIAL EDITORIAL
2026 Aesthetic Direction Implementation
===========================================

Three Core Pillars:
1. Architectural Minimalism - Strict grid with intentional "anti-grid" breaks
2. High-Visibility Contrast - Sharp transitions between deep charcoal and warm light surfaces  
3. Technical Authenticity - Real process photography, material textures, precise typography

Color System: OKLCH Perceptually Uniform
Typography: Architectural hierarchy with bold contrast
Layout: Grid-based with dramatic asymmetric breaks
*/

/* ===== FOUNDATION: CUSTOM PROPERTIES ===== */
:root {
  /* REFINED INDUSTRIAL EDITORIAL COLOR SYSTEM */
  
  /* Primary Palette - Deep Charcoal to Warm Light */
  --charcoal-deep: rgb(27, 43, 58);      /* Primary dark surface */
  --charcoal-mid: rgb(46, 51, 59);      /* Secondary dark */
  --charcoal-light: rgb(90, 101, 119);     /* Text on light */
  
  /* Warm Light Surfaces */
  --warm-white: rgb(245, 240, 232);         /* Primary light surface */
  --warm-cream: rgb(232, 228, 220);         /* Secondary light */
  --warm-accent: rgb(220, 215, 205);        /* Subtle accent */
  
  /* Industrial Accent - Roofing Material Tones */
  --steel-blue: rgb(66, 120, 156);         /* Trust, reliability */
  --copper-warm: rgb(225, 183, 92);         /* Roofing materials */
  --slate-neutral: rgb(172, 174, 177);     /* Refined neutral */
  
  /* Semantic Colors */
  --success: rgb(104, 180, 87);            /* Completed projects */
  --warning: rgb(242, 148, 60);             /* Attention needed */
  --error: rgb(220, 101, 95);               /* Emergency repairs */
  --brand-primary: rgb(27, 43, 58);      /* Refined Industrial image overlay */

  /* ── CANONICAL DESIGN SYSTEM ROLES ─────────────────────── */
  /* Role ▸ Deep Slate   | Primary  | rgb(27, 43, 58) → headers, footers */
  /* Role ▸ Safety Gold  | Accent   | rgb(225, 183, 92)  → CTAs, buttons    */
  /* Role ▸ Warm Neutral | Surface  | rgb(245, 240, 232)  → page backgrounds  */
  /* Role ▸ Ink Black    | Text     | rgb(17, 28, 39) → body copy         */
  --accent-gold:    rgb(225, 183, 92);      /* Safety Gold  – CTA / button highlight */
  --surface-warm:   rgb(245, 240, 232);      /* Warm Neutral – editorial background   */
  --text-ink:       rgb(17, 28, 39);     /* Ink Black    – maximum legibility      */
  
  /* ARCHITECTURAL TYPOGRAPHY SYSTEM */
  
  /* Modular Scale: 1.333 (Perfect Fourth) */
  --text-xs: 0.75rem;                        /* 12px - Captions, legal */
  --text-sm: 0.875rem;                       /* 14px - Meta, secondary */
  --text-base: 1rem;                         /* 16px - Body text */
  --text-lg: 1.333rem;                       /* ~21px - Subheadings */
  --text-xl: 1.777rem;                       /* ~28px - Headings */
  --text-2xl: 2.369rem;                      /* ~38px - Page titles */
  --text-3xl: 3.157rem;                      /* ~51px - Hero */
  --text-4xl: 4.209rem;                      /* ~67px - Display */
  
  /* Fluid Typography - Responsive scaling */
  --fluid-xs: clamp(0.7rem, 0.95vw, 0.75rem);
  --fluid-sm: clamp(0.8rem, 1.1vw, 0.875rem);
  --fluid-base: clamp(0.9rem, 1.25vw, 1rem);
  --fluid-lg: clamp(1.1rem, 2vw, 1.333rem);
  --fluid-xl: clamp(1.3rem, 2.5vw, 1.777rem);
  --fluid-2xl: clamp(1.6rem, 3.5vw, 2.369rem);
  --fluid-3xl: clamp(2rem, 4.5vw, 3.157rem);
  --fluid-4xl: clamp(2.5rem, 6vw, 4.209rem);
  
  /* Line Heights - Architectural precision */
  --leading-tight: 1.1;                      /* Display text */
  --leading-snug: 1.25;                      /* Headings */
  --leading-normal: 1.5;                     /* Body text */
  --leading-relaxed: 1.75;                   /* Reading text */
  
  /* SPATIAL SYSTEM - 4pt Base Grid */
  --space-2xs: 0.25rem;                      /* 4px */
  --space-xs: 0.5rem;                        /* 8px */
  --space-sm: 0.75rem;                       /* 12px */
  --space-base: 1rem;                        /* 16px */
  --space-md: 1.5rem;                        /* 24px */
  --space-lg: 2rem;                          /* 32px */
  --space-xl: 3rem;                          /* 48px */
  --space-2xl: 4rem;                         /* 64px */
  --space-3xl: 6rem;                         /* 96px */
  --space-4xl: 8rem;                         /* 128px */
  --space-5xl: 12rem;                        /* 192px */
  
  /* Fluid Spacing - Architectural rhythm */
  --fluid-xs: clamp(0.5rem, 1vw, 0.75rem);
  --fluid-sm: clamp(0.75rem, 2vw, 1.5rem);
  --fluid-md: clamp(1rem, 3vw, 2rem);
  --fluid-lg: clamp(1.5rem, 4vw, 3rem);
  --fluid-xl: clamp(2rem, 6vw, 4rem);
  --fluid-2xl: clamp(3rem, 8vw, 6rem);
  --fluid-3xl: clamp(4rem, 10vw, 8rem);
  
  /* GRID SYSTEM - Architectural Foundation */
  --grid-columns: repeat(12, 1fr);
  --grid-gap: var(--space-md);
  --container-max: 1400px;                   /* Generous for editorial */
  --container-padding: var(--space-md);
  
  /* TRANSITIONS - Industrial precision */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* SHADOWS - Architectural depth */
  --shadow-sm: 0 1px 2px 0 rgba(27, 43, 58, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(27, 43, 58, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(27, 43, 58, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(27, 43, 58, 0.25);
}

/* ===== TYPOGRAPHY FOUNDATION ===== */

/* Import Architectural Fonts */
/* Base Typography Reset */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: var(--fluid-base);
  line-height: var(--leading-normal);
  color: var(--text-ink);
  background-color: var(--surface-warm);
  font-weight: 400;
  letter-spacing: -0.011em;                  /* Optical adjustment */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings - Architectural Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--charcoal-deep);
  margin: 0 0 var(--space-md) 0;
}

h1 {
  font-size: var(--fluid-4xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--fluid-3xl);
  font-weight: 700;
  line-height: var(--leading-snug);
}

h3 {
  font-size: var(--fluid-2xl);
  font-weight: 600;
  line-height: var(--leading-snug);
}

h4 {
  font-size: var(--fluid-xl);
  font-weight: 600;
}

h5 {
  font-size: var(--fluid-lg);
  font-weight: 500;
}

h6 {
  font-size: var(--fluid-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Editorial Elements */
.editorial-display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--fluid-4xl);
  font-weight: 300;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.editorial-lead {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--fluid-xl);
  font-weight: 400;
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--charcoal-mid);
}

/* ===== LAYOUT FOUNDATION ===== */

/* Container System - Architectural Constraints */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-xl); }
}

/* Grid System - Foundation with Anti-Grid Breaks */
.grid {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

/* Anti-Grid Breaks - Intentional Disruption */
.break-grid {
  grid-column: 1 / -1;                       /* Full width break */
  margin: var(--fluid-xl) calc(-1 * var(--container-padding));
  padding: var(--fluid-xl) var(--container-padding);
}

.offset-left {
  margin-left: calc(-1 * var(--space-xl));
}

.offset-right {
  margin-right: calc(-1 * var(--space-xl));
}

@media (min-width: 1024px) {
  .offset-left { margin-left: calc(-1 * var(--space-3xl)); }
  .offset-right { margin-right: calc(-1 * var(--space-3xl)); }
}

/* ===== HIGH-VISIBILITY CONTRAST SECTIONS ===== */

/* Deep Charcoal Sections */
.section-charcoal {
  background-color: var(--charcoal-deep);
  color: var(--warm-white);
  padding: var(--fluid-2xl) 0;
}

.section-charcoal h1,
.section-charcoal h2,
.section-charcoal h3,
.section-charcoal h4,
.section-charcoal h5,
.section-charcoal h6 {
  color: var(--warm-white);
}

.section-charcoal p {
  color: var(--warm-cream);
  line-height: var(--leading-relaxed);       /* More breathing room on dark */
}

/* Warm Light Sections */
.section-light {
  background-color: var(--warm-white);
  color: var(--charcoal-light);
  padding: var(--fluid-2xl) 0;
}

/* Transitional Sections */
.section-transition {
  background: linear-gradient(135deg, 
    var(--charcoal-deep) 0%, 
    var(--charcoal-mid) 50%, 
    var(--warm-cream) 100%);
  color: var(--warm-white);
  padding: var(--fluid-3xl) 0;
  position: relative;
}

.section-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    transparent 0%, 
    var(--brand-primary) 20%, 
    var(--brand-primary) 80%, 
    transparent 100%);
  opacity: 0.82;
}

/* ===== COMPONENT SYSTEMS ===== */

/* Button System - Industrial Hierarchy */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--text-base);
  font-weight: 500;
  line-height: var(--leading-snug);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;                          /* Industrial: no rounded corners */
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
  text-transform: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--charcoal-deep);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background-color: rgb(202, 161, 68);  /* Safety Gold dark 10% for hover */
  border-color: rgb(202, 161, 68);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal-deep);
  border-color: var(--charcoal-deep);
}

.btn-secondary:hover {
  background-color: var(--charcoal-deep);
  color: var(--warm-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--charcoal-light);
  border-color: transparent;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.btn-ghost:hover {
  color: var(--steel-blue);
  text-decoration: none;
}

/* Industrial CTA Enhancement */
.cta-industrial {
  position: relative;
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--charcoal-deep);
  color: var(--warm-white);
  font-weight: 600;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  transition: all var(--transition-base);
}

.cta-industrial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-gold);  /* Safety Gold sweep */
  transition: width var(--transition-base);
  z-index: -1;
}

.cta-industrial:hover::before {
  width: 100%;
}

/* ===== TECHNICAL AUTHENTICITY ENHANCEMENTS ===== */

/* Image Overlays for Process Photography */
.process-image {
  position: relative;
  overflow: hidden;
}

.process-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
    rgb(27, 43, 58) 0%,
    color-mix(in srgb, rgb(27, 43, 58) 40%, transparent) 30%,
    color-mix(in srgb, rgb(27, 43, 58) 40%, transparent) 70%,
    rgb(27, 43, 58) 100%);
  opacity: 0.18;
  mix-blend-mode: multiply;
  transition: opacity var(--transition-base);
}

.process-image:hover::after {
  opacity: 0.06;
}

/* Material Texture Patterns */
.texture-slate {
  background-image: 
    radial-gradient(circle at 20% 50%, var(--slate-neutral) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--slate-neutral) 0%, transparent 50%);
  background-size: 60px 60px, 40px 40px;
}

.texture-steel {
  background: linear-gradient(90deg, 
    var(--steel-blue) 0%, 
    var(--charcoal-mid) 50%, 
    var(--steel-blue) 100%);
  background-size: 200px 100%;
}


/* ===== IMAGE ALIGNMENT: BRAND COLOR objec-fit + OVERLAY FILTERS ===== */

/* Universal object-fit discipline for all editorial images */
.process-image img,
.elementor-widget-image img,
.elementor-widget-image-box img,
.wp-block-cover__image-background,
.wp-block-image img,
figure.wp-block-image img,
.hero-image img,
.section-image img,
.astra-sites-img img,
.ast-post-thumbnail-wrap img,
.thumbnail img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* Brand-aligned color filter on photography */
/* rgb(27, 43, 58) = dark blue-violet — gives images a refined, cool-charcoal cast */
.process-image img,
.hero-image img,
.section-image img {
  filter: brightness(0.97) saturate(0.88) hue-rotate(3deg);
  isolation: isolate;
}

/* Elementor image wrapper — ensure overflow clips brand overlay */
.elementor-widget-image .elementor-widget-container,
.elementor-image-box-img {
  overflow: hidden;
  isolation: isolate;
}

/* WordPress cover-block brand overlay */
.wp-block-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

/* ===== END IMAGE ALIGNMENT ===== */
/* ===== IMAGE ALIGNMENT: BRAND COLOR object-fit + OVERLAY FILTERS =====
   Primary brand: rgb(27, 43, 58) -- Refined Industrial */

.process-image img,
.elementor-widget-image img,
.elementor-widget-image-box img,
.wp-block-cover__image-background,
.wp-block-image img,
figure.wp-block-image img,
.hero-image img,
.section-image img,
.ast-post-thumbnail-wrap img,
.thumbnail img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* Brand-cast photo filter: pulls images toward the cool dark-violet of the brand */
.process-image img,
.hero-image img,
.section-image img {
  filter: brightness(0.97) saturate(0.88) hue-rotate(3deg);
  isolation: isolate;
}

.elementor-widget-image .elementor-widget-container,
.elementor-image-box-img {
  overflow: hidden;
  isolation: isolate;
}

/* Cover-block brand overlay using brand-primary */
.wp-block-cover {
  isolation: isolate;
}
.wp-block-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

/* ===== END IMAGE ALIGNMENT ===== */

/* ===== RESPONSIVE ARCHITECTURAL BREAKPOINTS ===== */

/* Container Queries for Component Responsiveness */
@container (min-width: 480px) {
  .btn { padding: var(--space-md) var(--space-xl); }
  h1 { font-size: clamp(2.5rem, 5vw, 4.209rem); }
}

@container (min-width: 768px) {
  .grid { grid-template-columns: repeat(8, 1fr); }
  .section-charcoal, .section-light { padding: var(--fluid-3xl) 0; }
}

@container (min-width: 1024px) {
  .grid { grid-template-columns: var(--grid-columns); }
  .editorial-display { font-size: clamp(3rem, 6vw, 5rem); }
}

/* Architectural Breakpoints */
@media (max-width: 767px) {
  .break-grid { margin: var(--space-xl) calc(-1 * var(--space-md)); }
  .offset-left, .offset-right { margin-left: 0; margin-right: 0; }
  
  h1 { font-size: var(--fluid-3xl); }
  h2 { font-size: var(--fluid-2xl); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container { max-width: 768px; }
  .grid { grid-template-columns: repeat(8, 1fr); }
}

@media (min-width: 1400px) {
  .container { max-width: 1600px; }
  .grid-gap { gap: var(--space-lg); }
}

/* ===== PRINT STYLES - EDITORIAL HERITAGE ===== */
@media print {
  .section-charcoal {
    background: white !important;
    color: black !important;
  }
  
  .btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
  
  .editorial-display,
  .editorial-lead {
    font-family: 'Times New Roman', serif !important;
  }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Reduced Motion Respect */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* High Contrast Enhancement */
@media (prefers-contrast: high) {
  :root {
    --charcoal-deep: rgb(3, 3, 3);
    --warm-white: rgb(248, 248, 248);
  }
  
  .btn {
    border-width: 3px;
  }
}

/* Focus Management */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--steel-blue);
  outline-offset: 2px;
}

/* ===== REFINED INDUSTRIAL EDITORIAL COMPLETE ===== */

﻿/* ===========================================================================
   REFINED INDUSTRIAL EDITORIAL — Astra + Elementor Override Layer
   Applied via lasso-performance.php enqueue / child stylesheet
   Brand primary: rgb(27, 43, 58) | Charcoal: rgb(27, 43, 58)
   Copper accent: rgb(225, 183, 92)  | Warm white: rgb(245, 240, 232)
   =========================================================================== */

/* ── GLOBAL TYPOGRAPHY ── */
body,
button,
input,
select,
textarea {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.entry-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: rgb(27, 43, 58);
}

/* Editorial serif for lead paragraphs */
.elementor-widget-text-editor .editorial-lead,
.editorial-lead {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: rgb(46, 51, 59);
}

/* ── ASTRA HEADER ── */
#masthead,
.site-header,
.main-header-bar,
.ast-desktop-header .main-header-bar,
.ast-header-break-point .site-header {
  background-color: rgb(27, 43, 58) !important;
  border-bottom: 1px solid rgb(36, 41, 50) !important;
}

/* Site logo — invert dark SVG/PNG logos to white */
.site-header .site-logo img,
.site-header .custom-logo,
.ast-site-identity img,
.ast-default-logo img {
  filter: brightness(0) invert(1);
}

/* Brand mark stays copper */
.site-header .custom-logo-link img {
  filter: brightness(0) invert(1);
}

/* Navigation top-level links */
#site-navigation .menu-item > a,
.main-navigation ul li > a,
.ast-header-custom-item a,
.ast-nav-menu > li > a,
.main-header-bar .menu > li > a {
  color: rgb(231, 228, 223) !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

#site-navigation .menu-item > a:hover,
.main-navigation ul li:hover > a,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a,
.ast-nav-menu > li.current-menu-item > a {
  color: rgb(225, 183, 92) !important;
}

/* Dropdown menus */
.main-navigation .sub-menu,
.ast-nav-menu .sub-menu {
  background-color: rgb(6, 9, 15) !important;
  border-top: 2px solid rgb(225, 183, 92) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 24px rgba(27, 43, 58, 0.4) !important;
}

.main-navigation .sub-menu li a,
.ast-nav-menu .sub-menu li a {
  color: rgb(220, 215, 205) !important;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgb(36, 41, 50) !important;
}

.main-navigation .sub-menu li a:hover,
.ast-nav-menu .sub-menu li a:hover {
  color: rgb(225, 183, 92) !important;
  background-color: rgb(27, 43, 58) !important;
}

/* Mobile menu */
.ast-mobile-header-stack .main-header-bar,
.ast-header-break-point .ast-primary-header-bar {
  background-color: rgb(27, 43, 58) !important;
}

button.menu-toggle,
.ast-button-wrap .menu-toggle,
.ast-toggle-btn,
.ast-mobile-menu-trigger-fill {
  color: rgb(245, 240, 232) !important;
}

.ast-mobile-menu-trigger-fill svg path {
  fill: rgb(245, 240, 232) !important;
}

/* Header CTA phone / button */
.ast-header-custom-item .ast-custom-button,
.ast-masthead-custom-menu-items a.ast-button {
  background-color: rgb(225, 183, 92) !important;
  color: rgb(245, 240, 232) !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 0.5rem 1.25rem !important;
}

/* ── FOOTER ── */
#colophon,
.footer-widget-area,
.ast-site-footer,
.ast-footer-overlay,
.ast-small-footer,
.footer-adv-overlay,
.ast-advanced-footer-grid-wrap {
  background-color: rgb(6, 9, 15) !important;
  color: rgb(220, 215, 205) !important;
}

.ast-small-footer-wrap {
  background-color: rgb(2, 3, 6) !important;
  padding: 1rem 0 !important;
}

.ast-footer-copyright,
.ast-footer-copyright p {
  color: rgb(111, 114, 118) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
}

.footer-widget-area .widget-title,
.footer-widget-area h3 {
  color: rgb(245, 240, 232) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding-bottom: 0.6rem !important;
  border-bottom: 1px solid rgb(36, 41, 50) !important;
  margin-bottom: 1rem !important;
}

.footer-widget-area a {
  color: rgb(157, 158, 162) !important;
  text-decoration: none;
}

.footer-widget-area a:hover {
  color: rgb(225, 183, 92) !important;
}

.footer-widget-area p {
  color: rgb(157, 158, 162) !important;
}

/* ── BREADCRUMBS ── */
.ast-breadcrumbs-wrapper,
.ast-breadcrumbs {
  background-color: rgb(232, 228, 220) !important;
  border-bottom: 1px solid rgb(213, 208, 199) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

.ast-breadcrumbs a,
.ast-breadcrumbs span {
  color: rgb(90, 101, 119) !important;
}

.ast-breadcrumbs .current {
  color: rgb(66, 120, 156) !important;
}

/* ── PAGE BACKGROUND ── */
body.page,
body.single,
body.archive,
body.blog,
body.home {
  background-color: rgb(245, 240, 232) !important;
}

/* ── ASTRA CONTAINER ── */
.ast-container,
.ast-article-post .ast-container {
  max-width: 1400px !important;
}

/* ── ELEMENTOR SECTION DEFAULTS ── */
.elementor-section .elementor-container {
  max-width: min(1400px, 94vw) !important;
}

/* Paragraphs inside Elementor widgets */
.elementor-widget-text-editor p {
  line-height: 1.72;
  font-size: 1rem;
  color: rgb(70, 80, 95);
}

/* ── HERO SECTION (Home page first section) ── */
body.home .elementor-section:first-of-type,
.page-id-17 .elementor-section:first-of-type,
.home .elementor-top-section:first-child {
  min-height: 88vh;
}

/* Hero heading scale */
body.home .elementor-section:first-of-type .elementor-heading-title,
.page-id-17 .elementor-section:first-of-type .elementor-heading-title,
.home .elementor-top-section:first-child .elementor-heading-title {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 0.96 !important;
}

/* Hero subheading */
body.home .elementor-section:first-of-type .elementor-widget-text-editor p,
.page-id-17 .elementor-section:first-of-type .elementor-widget-text-editor p {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(1.05rem, 2vw, 1.3rem) !important;
  font-style: italic;
  line-height: 1.6;
}

/* ── SERVICE PAGE HERO HEADINGS ── */
.page-id-1194 .elementor-section:first-of-type .elementor-heading-title,
.page-id-1195 .elementor-section:first-of-type .elementor-heading-title,
.page-id-1196 .elementor-section:first-of-type .elementor-heading-title,
.page-id-1197 .elementor-section:first-of-type .elementor-heading-title,
.page-id-1198 .elementor-section:first-of-type .elementor-heading-title,
.page-id-1199 .elementor-section:first-of-type .elementor-heading-title {
  font-size: clamp(2rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.028em !important;
}

/* ── SERVICE AREA PAGES ── */
.page-id-1181 .elementor-heading-title,
.page-id-1182 .elementor-heading-title,
.page-id-1183 .elementor-heading-title,
.page-id-1184 .elementor-heading-title,
.page-id-1185 .elementor-heading-title,
.page-id-1186 .elementor-heading-title,
.page-id-1187 .elementor-heading-title,
.page-id-1188 .elementor-heading-title,
.page-id-1189 .elementor-heading-title,
.page-id-1190 .elementor-heading-title,
.page-id-1191 .elementor-heading-title,
.page-id-1192 .elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  letter-spacing: -0.02em;
}

/* ── BUTTONS ── */
.elementor-button,
.elementor-widget-button .elementor-button,
.elementor-button-wrapper .elementor-button,
a.elementor-button {
  border-radius: 0 !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Filled (primary) button */
.elementor-button.elementor-button-link:not(.elementor-size-xs) {
  padding: 0.875rem 2rem !important;
}

/* Ghost / outline button variant */
.elementor-button[class*="outline"],
.elementor-button.elementor-button-outline {
  background: transparent !important;
  border: 2px solid rgb(27, 43, 58) !important;
  color: rgb(27, 43, 58) !important;
}

.elementor-button[class*="outline"]:hover,
.elementor-button.elementor-button-outline:hover {
  background: rgb(27, 43, 58) !important;
  color: rgb(245, 240, 232) !important;
}

/* ── IMAGE HOVER LIFT ── */
.elementor-widget-image a,
.elementor-image-box-img {
  display: block;
  overflow: hidden;
}

.elementor-widget-image img:hover {
  transform: scale(1.02);
}

/* ── FORMS ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select {
  border: 1px solid rgb(213, 208, 199) !important;
  border-radius: 0 !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 0.9375rem !important;
  color: rgb(27, 43, 58) !important;
  background-color: rgb(248, 248, 248) !important;
  padding: 0.7rem 0.9rem !important;
  transition: border-color 150ms, box-shadow 150ms !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: rgb(27, 43, 58) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(27, 43, 58, 0.12) !important;
}

input[type="submit"],
button[type="submit"] {
  background-color: rgb(27, 43, 58) !important;
  color: rgb(245, 240, 232) !important;
  border-radius: 0 !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer;
  padding: 0.875rem 2rem !important;
  transition: background-color 200ms !important;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: rgb(27, 43, 58) !important;
}

/* ── BLOG / ARCHIVE CARDS ── */
.ast-article-post,
.ast-grid-post,
article.post {
  border: 1px solid rgb(220, 215, 205) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  background-color: rgb(248, 248, 248) !important;
}

.ast-article-post:hover,
.ast-grid-post:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(27, 43, 58, 0.12) !important;
}

.ast-article-post .post-thumbnail img,
article.post .post-thumbnail img,
.ast-article-inner-blog-post .post-thumbnail img {
  object-fit: cover !important;
  width: 100% !important;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ast-article-post:hover .post-thumbnail img {
  transform: scale(1.04) !important;
}

.entry-title a,
.entry-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  color: rgb(27, 43, 58) !important;
  text-decoration: none !important;
}

.entry-title a:hover {
  color: rgb(66, 120, 156) !important;
}

/* Post meta */
.entry-meta,
.ast-post-meta {
  font-size: 0.7rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgb(111, 114, 118) !important;
}

/* ── GLOBAL LINKS ── */
a {
  color: rgb(90, 101, 119);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: rgb(225, 183, 92);
}

/* ── HORIZONTAL RULES ── */
hr, .wp-block-separator {
  border: none !important;
  border-top: 1px solid rgb(220, 215, 205) !important;
  margin: 3rem 0 !important;
}

/* ── SCROLL PROGRESS BAR (CSS animation-timeline) ── */
@supports (animation-timeline: scroll()) {
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(225, 183, 92);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 10000;
    animation: ri-scroll-progress linear both;
    animation-timeline: scroll(root);
  }

  @keyframes ri-scroll-progress {
    to { transform: scaleX(1); }
  }
}

/* ── ASTRA PAGE TITLE AREA ── */
.ast-archive-description,
.ast-blog-single-element-image {
  overflow: hidden;
}

.ast-bold-title-enabled .ast-blog-title-trim {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

/* ── ELEMENTOR TEXT WIDGET REFINEMENTS ── */
.elementor-widget-text-editor {
  font-size: 1rem !important;
  line-height: 1.72 !important;
  color: rgb(70, 80, 95) !important;
}

.elementor-widget-text-editor strong {
  font-weight: 600;
  color: rgb(27, 43, 58);
}

/* ── ICON BOX INDUSTRIAL STYLE ── */
.elementor-widget-icon-box .elementor-icon-box-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.elementor-icon-box-icon .elementor-icon {
  border-radius: 0 !important;
}

/* ── DIVIDER WIDGET ── */
.elementor-widget-divider .elementor-divider-separator {
  border-color: rgb(220, 215, 205) !important;
}

/* ── TESTIMONIAL / REVIEW BLOCKS ── */
.elementor-widget-testimonial .elementor-testimonial-content,
.elementor-widget-testimonial-carousel .elementor-testimonial-content {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  line-height: 1.65 !important;
  color: rgb(46, 51, 59) !important;
}

.elementor-testimonial-name {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 767px) {
  body.home .elementor-section:first-of-type,
  .page-id-17 .elementor-section:first-of-type {
    min-height: 72vh;
  }

  body.home .elementor-section:first-of-type .elementor-heading-title,
  .page-id-17 .elementor-section:first-of-type .elementor-heading-title {
    font-size: clamp(1.8rem, 10vw, 3rem) !important;
  }

  .ast-masthead-custom-menu-items {
    display: none;
  }
}

@media (min-width: 1200px) {
  .elementor-section > .elementor-container {
    max-width: 1400px !important;
  }
}

/* ── END REFINED INDUSTRIAL OVERRIDE LAYER ── */



/* ===========================================================================
   HOMEPAGE 5-SECTION REDESIGN — Refined Industrial Editorial
   Applied: 2026-03-01
   Sections: S1 Header · S2 Hero · S3 Solution Grid · S4 Social Proof · S5 Process
   =========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────────
   S1 · STICKY HEADER — Warm Neutral editorial shell
   ───────────────────────────────────────────────────────────────────────────── */
.main-header-bar,
.ast-above-header-bar,
.site-header,
.ast-header-break-point .main-header-bar {
  background-color: rgb(245, 240, 232) !important;
  border-bottom: 1px solid rgba(27, 43, 58, 0.1) !important;
  box-shadow: none !important;
}

/* 44×44px minimum touch targets for all header interactive elements */
.menu-toggle,
.ast-mobile-menu-trigger,
.ast-toggle-btn,
.ast-hamburger-menu-wrap a,
.ast-header-custom-item a,
.ast-masthead-custom-menu-items a {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ast-mobile-menu-trigger:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgb(225, 183, 92) !important;
  outline-offset: 2px !important;
}

/* Phone CTA in header: Safety Gold, prominent */
.ast-header-custom-item .ast-custom-button,
.ast-masthead-custom-menu-items a.ast-button {
  background-color: rgb(225, 183, 92) !important;
  color: rgb(6, 9, 15) !important;
  border-radius: 0 !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.04em !important;
  padding: 0.6rem 1.4rem !important;
  min-height: 44px !important;
  transition: background-color 150ms ease !important;
}
.ast-header-custom-item .ast-custom-button:hover,
.ast-masthead-custom-menu-items a.ast-button:hover {
  background-color: rgb(202, 161, 68) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   S2 · EDITORIAL HERO — Photo bg + semi-transparent ink card
   ───────────────────────────────────────────────────────────────────────────── */
.elementor-element-d9b5b91 {
  position: relative !important;
  min-height: 90vh !important;
  overflow: hidden !important;
}

/* Photo background reinforcement in case elementor styling doesn't cascade */
.elementor-element-d9b5b91 > .e-con-inner {
  background-image: url('https://www.lassoroofing.com/wp-content/uploads/2026/03/Roof-house-full-img-1.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  min-height: 90vh !important;
}

/* Remove old black overlay container */
.elementor-element-6e131e8 {
  background-color: transparent !important;
  background-image: none !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 5vh 5vw !important;
}

/* Editorial text card — semi-transparent warm neutral */
.elementor-element-5c6ff64 {
  background-color: rgba(245, 240, 232, 0.93) !important;
  backdrop-filter: blur(3px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(3px) saturate(1.1) !important;
  border-left: 4px solid rgb(225, 183, 92) !important;
  padding: 3.5rem 3rem 3.5rem 3rem !important;
  max-width: min(580px, 92vw) !important;
  width: 50% !important;
}
@media (max-width: 1024px) {
  .elementor-element-5c6ff64 { width: 65% !important; }
}
@media (max-width: 767px) {
  .elementor-element-5c6ff64 {
    width: 95% !important;
    padding: 2rem 1.75rem !important;
  }
  .elementor-element-6e131e8 { padding: 4vh 4vw !important; }
}

/* H1 — editorial scale, Ink Black */
.elementor-element-75a7995 .elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  color: rgb(17, 28, 39) !important;
  margin-bottom: 0.6rem !important;
}

/* Tagline / credibility hook */
.elementor-element-a34487d .elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgb(225, 183, 92) !important;
  margin-bottom: 0.5rem !important;
}

/* Body copy under H1 */
.elementor-element-cd12967 .elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgb(40, 46, 56) !important;
  margin-bottom: 1.5rem !important;
}

/* Safety Gold full-width CTA — form submit button */
.elementor-element-d9b5b91 .elementor-button,
.elementor-element-d9b5b91 .elementor-field-type-submit button,
.elementor-element-d9b5b91 .elementor-field-type-submit input[type=submit] {
  background-color: rgb(225, 183, 92) !important;
  color: rgb(6, 9, 15) !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.03em !important;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
  min-height: 54px !important;
  transition: background-color 150ms ease !important;
}
.elementor-element-d9b5b91 .elementor-button:hover,
.elementor-element-d9b5b91 .elementor-field-type-submit button:hover {
  background-color: rgb(202, 161, 68) !important;
}

/* Right-side form container */
.elementor-element-ce292e6 {
  background-color: transparent !important;
}
.elementor-element-d35239c {
  background-color: rgba(27, 43, 58, 0.9) !important;
  backdrop-filter: blur(4px) !important;
  padding: 2.5rem !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   S3 · SOLUTION GRID — Deep Slate + 2-col mobile + Safety Gold accents
   ───────────────────────────────────────────────────────────────────────────── */
.elementor-element-72fcdd3,
.elementor-element-72fcdd3 > .e-con-inner {
  background-color: rgb(27, 43, 58) !important;
}

/* Section label */
.elementor-element-b73eedf .elementor-heading-title {
  color: rgb(225, 183, 92) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

/* Service tile cards */
.elementor-element-211de8c,
.elementor-element-df56450,
.elementor-element-fc01234,
.elementor-element-a5f2906,
.elementor-element-a4e6bae,
.elementor-element-0297998 {
  background-color: rgb(39, 46, 59) !important;
  border: 1px solid rgb(52, 59, 69) !important;
  border-top: 2px solid rgb(225, 183, 92) !important;
  transition: border-color 200ms ease, transform 200ms ease !important;
}
.elementor-element-211de8c:hover,
.elementor-element-df56450:hover,
.elementor-element-fc01234:hover,
.elementor-element-a5f2906:hover,
.elementor-element-a4e6bae:hover,
.elementor-element-0297998:hover {
  border-color: rgb(225, 183, 92) !important;
  transform: translateY(-3px) !important;
}

/* Service section heading ("OUR SERVICES") — cream on dark navy bg */
.elementor-element-72fcdd3 > .e-con-inner > .elementor-widget-heading .elementor-heading-title,
.elementor-element-72fcdd3 > .e-con-inner > .e-con > .elementor-widget-heading h2.elementor-heading-title {
  color: rgb(245, 240, 232) !important;
}
/* Service tile card headings — navy on cream cards */
.elementor-element-72fcdd3 .lasso-service-card h3.elementor-heading-title,
.elementor-element-72fcdd3 .elementor-widget-heading h3.elementor-heading-title {
  color: rgb(27, 43, 58) !important;
}
.elementor-element-72fcdd3 .elementor-widget-heading h3.elementor-heading-title,
.elementor-element-72fcdd3 h3.elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: rgb(27, 43, 58) !important;
  margin-bottom: 0.5rem !important;
}
.elementor-element-72fcdd3 p.elementor-heading-title {
  color: rgb(170, 174, 180) !important;
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
}

/* Service tile buttons → Safety Gold */
.elementor-element-72fcdd3 .elementor-button {
  background-color: rgb(225, 183, 92) !important;
  color: rgb(6, 9, 15) !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  padding: 0.6rem 1.2rem !important;
  transition: background-color 150ms ease !important;
}
.elementor-element-72fcdd3 .elementor-button:hover {
  background-color: rgb(202, 161, 68) !important;
}

/* 2-col grid on mobile */
@media (max-width: 767px) {
  .elementor-element-42a30ed,
  .elementor-element-99f2fb8 {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .elementor-element-211de8c,
  .elementor-element-df56450,
  .elementor-element-fc01234,
  .elementor-element-a5f2906,
  .elementor-element-a4e6bae,
  .elementor-element-0297998 {
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
  }
  .elementor-element-75fccb9 {
    flex-direction: column !important;
  }
  .elementor-element-b73eedf .elementor-heading-title {
    font-size: 1.8rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   S4 · SOCIAL PROOF — Badge strip on Deep Slate
   ───────────────────────────────────────────────────────────────────────────── */
.elementor-element-233ae7e,
.elementor-element-233ae7e > .e-con-inner {
  background-color: rgb(14, 18, 24) !important;
}

/* Proof strip divider line above badges */
.elementor-element-233ae7e .elementor-widget-image img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  transition: opacity 200ms ease !important;
}
.elementor-element-233ae7e .elementor-widget-image:hover img {
  opacity: 1 !important;
}

/* Badge row container */
.elementor-element-233ae7e .elementor-widget-image {
  max-width: 90px !important;
}

/* Separator rule between proof text and badges */
.elementor-element-233ae7e .elementor-container::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background-color: rgb(225, 183, 92);
  margin: 1.5rem auto 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   S5 · PROCESS TIMELINE — Vertical connector line + numbered steps
   ───────────────────────────────────────────────────────────────────────────── */
.process-section,
.elementor-element.process-section {
  background-color: rgb(27, 43, 58) !important;
}

/* Timeline: vertical connector between steps */
.process-step {
  position: relative !important;
  padding-bottom: 3rem !important;
}
.process-step:last-child {
  padding-bottom: 0 !important;
}
.process-step::before {
  content: '' !important;
  position: absolute !important;
  left: 29px !important;    /* centers on the 60px number column */
  top: 52px !important;
  bottom: 0 !important;
  width: 1px !important;
  background: linear-gradient(
    to bottom,
    rgba(225, 183, 92, 0.5) 0%,
    rgba(225, 183, 92, 0.05) 100%
  ) !important;
}
.process-step:last-child::before {
  display: none !important;
}

/* Number circle */
.process-step > .e-con > .elementor-widget-heading:first-child .elementor-heading-title,
.process-step div.elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: rgb(225, 183, 92) !important;
  line-height: 1 !important;
  min-width: 60px !important;
  padding-top: 4px !important;
}

/* Process step heading */
.process-step h3.elementor-heading-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  color: rgb(245, 240, 232) !important;
  margin-bottom: 0.4rem !important;
}

/* Process step body */
.process-step p.elementor-heading-title {
  color: rgb(170, 174, 180) !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

/* Section headline in process section */
.process-section h2.elementor-heading-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: rgb(245, 240, 232) !important;
  letter-spacing: -0.025em !important;
}
.process-section .elementor-widget-heading p.elementor-heading-title {
  color: rgb(225, 183, 92) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

/* Mobile step layout */
@media (max-width: 767px) {
  .process-step {
    flex-direction: row !important;
    gap: 1.25rem !important;
  }
  .process-step::before {
    left: 22px !important;
  }
}

/* END HOMEPAGE REDESIGN */

/* ═══════════════════════════════════════════════════════════
   T2 · OUR PROCESS legacy section safety net
   (Section already removed from JSON; this guards any cached
   page-builder fragments that may linger in full-page caches)
   ═══════════════════════════════════════════════════════════ */
.elementor-element-6d73415 { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   T3 · Hero section — mobile stacking / responsive layout
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* 1. Trim hero height — 90 vh is too tall on most phones */
  .elementor-element-d9b5b91 {
    min-height: 100svh !important;
  }

  /* 2. Prevent CSS fixed-bg on iOS (causes grey flicker) */
  .elementor-element-d9b5b91,
  .elementor-element-d9b5b91 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-attachment: scroll !important;
  }

  /* 3. Make the inner hero row wrap so the two columns stack */
  .elementor-element-678931f {
    flex-wrap: wrap !important;
    flex-direction: column !important;
  }

  /* 4. Left text-card: full width, tighter padding */
  .elementor-element-6e131e8 {
    width: 100% !important;
  }

  /* 5. Form column: full width, flush padding */
  .elementor-element-ce292e6 {
    width: 100% !important;
    padding: 16px !important;
  }

  /* 6. Dark form box inside the form column */
  .elementor-element-d35239c {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
/* END T2/T3 */

/* G3: Prevent dark body text color from cascading into header */
.elementor-location-header .elementor-icon-list-text,
.elementor-location-header .menu-item > a {
    color: #F2EDE3;
}