:root {
  --header-height: 90px;
}

section {
  margin-bottom: 0 !important;
}

html {
  scroll-behavior: smooth !important;
}

/* ===== Remove default Blocksy vertical spacing for this section wrapper ===== */
[data-vertical-spacing*="bottom"] {
  padding-bottom: 0 !important;
}

[data-vertical-spacing*="top"] {
  padding-top: 0 !important;
}

/* ===== Global Link Style (Luxury) ===== */
a {
  color: #d6b07a !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative;
}

/* Hover */
a:hover {
  color: #f0c98a;
}

/* Active / focus */
a:focus,
a:active {
  color: #f0c98a !important;
  outline: none;
}

/* Remove default blue on visited */
a:visited {
  color: #d6b07a;
}

/* =========================================
HEADER MENU - BLAG LUXURY STYLE
========================================= */

/* ===== Header Menu Wrapper ===== */
[data-items="primary"] {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* ===== Main Nav Container ===== */
#header-menu-1 {
  position: relative !important;
}

#header-menu-1 .menu {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 8px !important;
  list-style: none !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(20, 20, 20, 0.08) !important;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(10px) !important;
}

/* ===== Menu Items ===== */
#header-menu-1 .menu>li {
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== Links ===== */
#header-menu-1 .menu>li>a.ct-menu-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #b98b4c !important;
  background: transparent !important;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease !important !important;
}

/* ===== Hover ===== */
#header-menu-1 .menu>li>a.ct-menu-link:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-2px) !important;
}

/* ===== Underline Glow Accent ===== */
#header-menu-1 .menu>li>a.ct-menu-link::after {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 8px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,
      #d8b57c 0%,
      #f1d6a2 50%,
      #b3874c 100%) !important;
  opacity: 0 !important;
  transform: scaleX(0.4) !important;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease !important;
}

#header-menu-1 .menu>li>a.ct-menu-link:hover::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* ===== Current / Active Item ===== */
#header-menu-1 .menu>li.current-menu-item>a.ct-menu-link,
#header-menu-1 .menu>li.current_page_item>a.ct-menu-link,
#header-menu-1 .menu>li.current-menu-ancestor>a.ct-menu-link {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #101010 100%) !important;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

#header-menu-1 .menu>li.current-menu-item>a.ct-menu-link::after,
#header-menu-1 .menu>li.current_page_item>a.ct-menu-link::after,
#header-menu-1 .menu>li.current-menu-ancestor>a.ct-menu-link::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* ===== CTA Wrapper ===== */
.ct-header-cta {
  display: flex !important;
  align-items: center !important;
}

/* ===== Header CTA Button ===== */
.ct-header-cta .ct-button {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 58px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #16110a !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%) !important;
  box-shadow:
    0 14px 28px rgba(167, 120, 60, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease !important;
}

/* ===== CTA Hover ===== */
.ct-header-cta .ct-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 20px 38px rgba(167, 120, 60, 0.34),
    0 0 18px rgba(214, 176, 122, 0.16) !important;
  filter: brightness(1.02) !important;
}

/* ===== CTA Shine ===== */
.ct-header-cta .ct-button::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent) !important;
  transform: skewX(-24deg) !important;
}

.ct-header-cta .ct-button:hover::after {
  left: 130% !important;
  transition: left 0.8s ease !important;
}

/* ===== CTA Active ===== */
.ct-header-cta .ct-button:active {
  transform: translateY(-1px) scale(0.99) !important;
}

/* ===== Focus States ===== */
#header-menu-1 .menu>li>a.ct-menu-link:focus,
.ct-header-cta .ct-button:focus {
  outline: none !important;
  box-shadow:
    0 0 0 3px rgba(214, 176, 122, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  [data-items="primary"] {
    gap: 10px !important;
  }

  #header-menu-1 .menu {
    gap: 6px !important;
    padding: 6px !important;
  }

  #header-menu-1 .menu>li>a.ct-menu-link {
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .ct-header-cta .ct-button {
    min-height: 52px !important;
    padding: 0 20px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }
}

/* =========================================
GLOBAL STICKY HEADER - LUXURY STYLE
========================================= */

#header.ct-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: rgba(10, 10, 10, 0.58) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(214, 176, 122, 0.16) !important;
  transition: all 0.35s ease !important;
}

#header.ct-header::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(214, 176, 122, 0.45) 50%,
      transparent 100%) !important;
  opacity: 0.75 !important;
  pointer-events: none !important;
}

/* ===== Sticky container ===== */
#header.ct-header .ct-sticky-container {
  height: 90px !important;
}

#header.ct-header .ct-sticky-container>div[data-sticky],
#header.ct-header .ct-sticky-container>div[data-sticky*="shrink"] {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ===== Same width before and after scroll ===== */
#header.ct-header [data-device="desktop"] [data-row="middle"] {
  width: 100% !important;
  background: transparent !important;
}

#header.ct-header [data-device="desktop"] [data-row="middle"] .ct-container {
  width: min(1280px, calc(100% - 40px)) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 90px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  column-gap: 24px !important;
}

/* ===== Column alignment ===== */
#header.ct-header [data-device="desktop"] [data-column="start"] {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

#header.ct-header [data-device="desktop"] [data-column="end"] {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
}

#header.ct-header [data-device="desktop"] [data-column="end"] [data-items="primary"] {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  width: auto !important;
}

/* ===== Prevent sticky wrappers from stretching ===== */
#header.ct-header [data-device="desktop"] .ct-sticky-container>div[data-sticky]>div,
#header.ct-header [data-device="desktop"] .ct-sticky-container>div[data-sticky*="shrink"]>div {
  width: 100% !important;
}

/* ===== Logo ===== */
#header.ct-header .site-branding {
  margin: 0 !important;
  padding: 0 !important;
}

#header.ct-header .site-title-container {
  margin: 0 !important;
}

#header.ct-header .site-title a {
  color: #e0b978 !important;
  transition:
    color 0.3s ease,
    opacity 0.3s ease !important;
}

#header.ct-header .site-title a:hover {
  color: #f1d6a2 !important;
  opacity: 1 !important;
}

/* ===== Menu wrapper ===== */
#header-menu-1 {
  margin: 0 !important;
  flex: 0 0 auto !important;
}

#header-menu-1 .menu {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 8px !important;
  list-style: none !important;
  width: auto !important;
  max-width: 100% !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
}

/* ===== Menu links ===== */
#header-menu-1 .menu>li>a.ct-menu-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #ddb97d !important;
  background: transparent !important;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}

#header-menu-1 .menu>li>a.ct-menu-link:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-2px) !important;
}

#header-menu-1 .menu>li>a.ct-menu-link::after {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 8px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,
      #d8b57c 0%,
      #f1d6a2 50%,
      #b3874c 100%) !important;
  opacity: 0 !important;
  transform: scaleX(0.4) !important;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease !important;
}

#header-menu-1 .menu>li>a.ct-menu-link:hover::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* ===== Active menu item ===== */
#header-menu-1 .menu>li.current-menu-item>a.ct-menu-link,
#header-menu-1 .menu>li.current_page_item>a.ct-menu-link,
#header-menu-1 .menu>li.current-menu-ancestor>a.ct-menu-link {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #101010 100%) !important;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

#header-menu-1 .menu>li.current-menu-item>a.ct-menu-link::after,
#header-menu-1 .menu>li.current_page_item>a.ct-menu-link::after,
#header-menu-1 .menu>li.current-menu-ancestor>a.ct-menu-link::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* ===== CTA wrapper ===== */
.ct-header-cta {
  display: flex !important;
  align-items: center !important;
  margin-left: 14px !important;
  flex: 0 0 auto !important;
}

/* ===== CTA button ===== */
.ct-header-cta .ct-button {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 58px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #16110a !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%) !important;
  box-shadow:
    0 14px 28px rgba(167, 120, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease !important;
}

.ct-header-cta .ct-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 20px 38px rgba(167, 120, 60, 0.36),
    0 0 18px rgba(214, 176, 122, 0.18) !important;
  filter: brightness(1.02) !important;
}

.ct-header-cta .ct-button::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent) !important;
  transform: skewX(-24deg) !important;
}

.ct-header-cta .ct-button:hover::after {
  left: 130% !important;
  transition: left 0.8s ease !important;
}

/* ===== Mobile ===== */
#header.ct-header [data-device="mobile"] [data-row="middle"] {
  background: transparent !important;
}

#header.ct-header [data-device="mobile"] .ct-container {
  width: min(1280px, calc(100% - 24px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#header.ct-header .ct-header-trigger {
  color: #e0b978 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  min-height: 48px !important;
  min-width: 48px !important;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

#header.ct-header .ct-header-trigger:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(214, 176, 122, 0.22) !important;
}

/* =========================================================
   BLAG Roofing — Mobile Trigger + Offcanvas Menu (Luxury Dark)
   Clean corrected CSS
========================================================= */

/* ===== Mobile menu trigger button ===== */
.ct-header-trigger[data-id="trigger"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(10, 10, 12, 0.82) 100%) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease !important;
}

.ct-header-trigger[data-id="trigger"]:hover,
.ct-header-trigger[data-id="trigger"]:focus-visible {
  border-color: rgba(212, 175, 55, 0.42) !important;
  background: linear-gradient(180deg,
      rgba(212, 175, 55, 0.16) 0%,
      rgba(10, 10, 12, 0.92) 100%) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.ct-header-trigger[data-id="trigger"][aria-expanded="true"] {
  border-color: rgba(212, 175, 55, 0.42) !important;
  background: linear-gradient(180deg,
      rgba(212, 175, 55, 0.18) 0%,
      rgba(10, 10, 12, 0.94) 100%) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.ct-header-trigger[data-id="trigger"] .ct-icon {
  width: 18px !important;
  height: 14px !important;
}

.ct-header-trigger[data-id="trigger"] .ct-icon rect {
  fill: #d7b06a !important;
  transition:
    fill 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease !important;
}

.ct-header-trigger[data-id="trigger"]:hover .ct-icon rect,
.ct-header-trigger[data-id="trigger"]:focus-visible .ct-icon rect,
.ct-header-trigger[data-id="trigger"][aria-expanded="true"] .ct-icon rect {
  fill: #f3d796 !important;
}

/* ===== Offcanvas panel shell ===== */
#offcanvas,
.ct-panel,
.ct-panel[data-behaviour*="right-side"] {
  background: transparent !important;
}

#offcanvas .ct-panel-inner,
.ct-panel .ct-panel-inner {
  position: relative !important;
  background: linear-gradient(180deg,
      rgba(8, 10, 16, 0.97) 0%,
      rgba(4, 6, 12, 0.98) 100%) !important;
  border-left: 1px solid rgba(212, 175, 55, 0.14) !important;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.52) !important;
  overflow: hidden !important;
}

#offcanvas .ct-panel-inner::before,
.ct-panel .ct-panel-inner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at top right,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(212, 175, 55, 0) 34%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 24%) !important;
  pointer-events: none !important;
}

#offcanvas .ct-panel-inner::after,
.ct-panel .ct-panel-inner::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
  background-size: 34px 34px !important;
  opacity: 0.18 !important;
  pointer-events: none !important;
}

/* ===== Top actions area ===== */
#offcanvas .ct-panel-actions,
.ct-panel .ct-panel-actions {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  padding: 24px 24px 10px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

#offcanvas .ct-toggle-close,
.ct-panel .ct-toggle-close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(15, 18, 28, 0.9) 100%) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease !important;
}

#offcanvas .ct-toggle-close:hover,
#offcanvas .ct-toggle-close:focus-visible,
.ct-panel .ct-toggle-close:hover,
.ct-panel .ct-toggle-close:focus-visible {
  border-color: rgba(212, 175, 55, 0.42) !important;
  background: linear-gradient(180deg,
      rgba(212, 175, 55, 0.16) 0%,
      rgba(15, 18, 28, 0.96) 100%) !important;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(212, 175, 55, 0.12) !important;
  transform: rotate(90deg) !important;
  outline: none !important;
}

#offcanvas .ct-toggle-close .ct-icon,
.ct-panel .ct-toggle-close .ct-icon {
  width: 14px !important;
  height: 14px !important;
}

#offcanvas .ct-toggle-close .ct-icon path,
.ct-panel .ct-toggle-close .ct-icon path {
  fill: #f1d18a !important;
}

/* ===== Mobile content area ===== */
#offcanvas .ct-panel-content[data-device="mobile"],
.ct-panel .ct-panel-content[data-device="mobile"] {
  position: relative !important;
  z-index: 2 !important;
}

#offcanvas .ct-panel-content[data-device="mobile"] .ct-panel-content-inner,
.ct-panel .ct-panel-content[data-device="mobile"] .ct-panel-content-inner {
  padding: 18px 28px 34px 28px !important;
}

/* ===== Mobile nav ===== */
#offcanvas nav.mobile-menu,
.ct-panel nav.mobile-menu {
  width: 100% !important;
  margin: 0 !important;
}

#offcanvas nav.mobile-menu>ul,
.ct-panel nav.mobile-menu>ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 8px 0 0 0 !important;
}

#offcanvas nav.mobile-menu>ul>li,
.ct-panel nav.mobile-menu>ul>li {
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

#offcanvas nav.mobile-menu>ul>li>a,
.ct-panel nav.mobile-menu>ul>li>a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 64px !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%) !important;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  color: #e7c27b !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    padding-left 0.3s ease !important;
}

#offcanvas nav.mobile-menu>ul>li>a::before,
.ct-panel nav.mobile-menu>ul>li>a::before {
  content: "" !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  margin-right: 14px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #f0d18b 0%, #b98839 100%) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.32) !important;
  flex: 0 0 8px !important;
}

#offcanvas nav.mobile-menu>ul>li>a:hover,
#offcanvas nav.mobile-menu>ul>li>a:focus-visible,
.ct-panel nav.mobile-menu>ul>li>a:hover,
.ct-panel nav.mobile-menu>ul>li>a:focus-visible {
  color: #fff2cf !important;
  border-color: rgba(212, 175, 55, 0.34) !important;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.14) 0%,
      rgba(255, 255, 255, 0.04) 100%) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  padding-left: 26px !important;
  transform: translateX(4px) !important;
  outline: none !important;
}

#offcanvas nav.mobile-menu>ul>li.current-menu-item>a,
#offcanvas nav.mobile-menu>ul>li.current_page_item>a,
.ct-panel nav.mobile-menu>ul>li.current-menu-item>a,
.ct-panel nav.mobile-menu>ul>li.current_page_item>a {
  color: #fff5de !important;
  border-color: rgba(212, 175, 55, 0.42) !important;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 100%) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* ===== Optional: hide empty desktop content area inside drawer ===== */
#offcanvas .ct-panel-content[data-device="desktop"],
.ct-panel .ct-panel-content[data-device="desktop"] {
  display: none !important;
}

/* ===== Small mobile polish ===== */
@media (max-width: 767px) {

  #offcanvas .ct-panel-content[data-device="mobile"] .ct-panel-content-inner,
  .ct-panel .ct-panel-content[data-device="mobile"] .ct-panel-content-inner {
    padding: 14px 20px 28px 20px !important;
  }

  #offcanvas nav.mobile-menu>ul>li>a,
  .ct-panel nav.mobile-menu>ul>li>a {
    min-height: 58px !important;
    padding: 16px 18px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
  }
}

/* =========================================
SECTION: Hero
Project: BLAG Roofing Solution Inc
Style: Dark Architectural Luxury
========================================= */

/* ===== Container ===== */
.blag-container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
}

/* ===== HERO LUXURY DEPTH ===== */
.blag-hero {
  color: #f5f1ea;

  /* Full screen height minus header */
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));

  /* Keep it full screen, but allow growth if content becomes taller */
  display: flex;
  align-items: stretch;
  padding: 0;

  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%,
      rgba(214, 176, 122, 0.12),
      transparent 40%),
    radial-gradient(circle at 80% 70%,
      rgba(214, 176, 122, 0.08),
      transparent 50%),
    linear-gradient(180deg, #0b0b0c 0%, #050506 100%) !important;
}

/* subtle texture / lines */
.blag-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
      transparent 1px);
  background-size: 100% 40px;
  opacity: 0.3;
  pointer-events: none;
}

.blag-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.02),
      transparent 18%,
      transparent 82%,
      rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 120px);
  opacity: 0.45;
}

/* ===== Grid ===== */
.blag-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}

/* ===== Left Content ===== */
.blag-hero__content {
  max-width: 690px;
  padding: 40px 0;
}

.blag-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(201, 162, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d7b27a;
}

.blag-hero__title {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.blag-hero__title span {
  display: inline-block;
  margin-top: 10px;
  color: #d6b07a;
}

.blag-hero__text {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Buttons ===== */
.blag-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.blag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.blag-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.blag-btn--secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 176, 122, 0.45);
  color: #d6b07a;
}

/* ===== Info Cards ===== */
.blag-hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blag-hero__info-card {
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.blag-hero__info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-hero__info-link,
.blag-hero__info-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

/* =========================================
HERO IMAGE — PREMIUM VISUAL POLISH
For current HTML structure
========================================= */

/* ===== Right Visual ===== */
.blag-hero__visual {
  position: relative;
  padding: 40px 0;
}

/* ===== Image Wrap ===== */
.blag-hero__image-wrap {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(214, 176, 122, 0.1);
}

/* Decorative inner frame */
.blag-why__feature--image::before,
.blag-process__visual::before,
.blag-project::before,
.blag-cta__wrap::before,
.blag-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 176, 122, 0.18);
  border-radius: 24px;
  z-index: 3;
  pointer-events: none;
}

/* Dark cinematic overlay */
.blag-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.34) 34%,
      rgba(0, 0, 0, 0.12) 68%,
      rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
}

/* ===== Image ===== */
.blag-hero__image {
  display: block;
  width: 100%;
  height: clamp(460px, 68vh, 760px);
  object-fit: cover;
  filter: brightness(0.82) contrast(1.06) saturate(0.92);
  transform: scale(1.02);
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

/* Hover zoom */
.blag-hero__image-wrap:hover .blag-hero__image {
  transform: scale(1.15);
  filter: brightness(0.88) contrast(1.08) saturate(0.96);
}

/* ===== Floating Badges ===== */
.blag-hero__badge {
  position: absolute;
  z-index: 4;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(214, 176, 122, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.blag-hero__badge--top {
  top: 24px;
  left: 24px;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-hero__badge--bottom {
  right: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 18px 18px 16px;
}

.blag-hero__badge--bottom strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #ffffff;
}

.blag-hero__badge--bottom span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-hero__image {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .blag-hero__visual {
    padding: 0;
  }

  .blag-hero__image {
    height: 360px;
  }

  .blag-hero__badge--top {
    top: 16px;
    left: 16px;
  }

  .blag-hero__badge--bottom {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

/* ===== Scroll Reveal Animation ===== */
.sr-item {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sr-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .blag-hero__content,
  .blag-hero__visual {
    padding: 0;
  }

  .blag-hero__content {
    max-width: 100%;
  }

  .blag-hero__image {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .blag-container {
    width: min(100% - 24px, 1280px);
  }

  .blag-hero {
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    padding: 0;
  }

  .blag-hero__grid {
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    gap: 24px;
    padding: 28px 0;
  }

  .blag-hero__title {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .blag-hero__text {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .blag-btn {
    width: 100%;
  }

  .blag-hero__info {
    flex-direction: column;
  }

  .blag-hero__info-card {
    width: 100%;
    min-width: 100%;
  }

  .blag-hero__image {
    height: 360px;
  }

  .blag-hero__badge--top {
    top: 16px;
    left: 16px;
  }

  .blag-hero__badge--bottom {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

/* =========================================
SECTION: Services
========================================= */

.blag-services {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at center,
      rgba(166, 123, 67, 0.12),
      transparent 40%),
    linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
}

/* ===== Header ===== */
.blag-services__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.blag-services__kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d6b07a;
  margin-bottom: 14px;
}

.blag-services__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.blag-services__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== Grid ===== */
.blag-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== Card ===== */
.blag-service-card {
  position: relative;
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* subtle glow background */
.blag-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(214, 176, 122, 0.12),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* number */
.blag-service-card__number {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

/* title */
.blag-service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* text */
.blag-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Hover Effect ===== */
.blag-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 176, 122, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(214, 176, 122, 0.2);
}

.blag-service-card:hover::before {
  opacity: 1;
}

.blag-service-card:hover h3 {
  color: #d6b07a;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blag-services {
    padding: 80px 0;
  }

  .blag-services__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
SECTION: Why Choose BLAG
========================================= */

.blag-why {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(214, 176, 122, 0.08),
      transparent 26%),
    radial-gradient(circle at bottom right,
      rgba(214, 176, 122, 0.06),
      transparent 24%),
    linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
}

.blag-why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 100%);
  opacity: 0.45;
}

/* ===== Header ===== */
.blag-why__header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.blag-why__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-why__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.blag-why__title span {
  color: #d6b07a;
}

.blag-why__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Layout ===== */
.blag-why__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

/* ===== Large Feature with Image ===== */
.blag-why__feature {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blag-why__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.blag-why__feature:hover .blag-why__image {
  transform: scale(1.1);
}

.blag-why__feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.52) 34%,
      rgba(0, 0, 0, 0.18) 70%,
      rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
}

.blag-why__feature-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}

.blag-why__icon-wrap {
  margin-bottom: 42px;
}

.blag-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 1px solid rgba(214, 176, 122, 0.24);
  background: linear-gradient(145deg,
      rgba(214, 176, 122, 0.18),
      rgba(255, 255, 255, 0.04));
  color: #f0d19b;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.blag-why__content h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #ffffff;
}

.blag-why__content p {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

/* ===== Right Cards ===== */
.blag-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.blag-why__card {
  position: relative;
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  overflow: hidden;
}

.blag-why__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(214, 176, 122, 0.12),
      transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blag-why__card:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 176, 122, 0.34);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(214, 176, 122, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.blag-why__card:hover::before {
  opacity: 1;
}

.blag-why__card-top {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.blag-why__mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 176, 122, 0.2);
  background: rgba(214, 176, 122, 0.08);
  color: #d6b07a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.blag-why__card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
  transition: color 0.35s ease;
}

.blag-why__card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.blag-why__card:hover h3 {
  color: #e2bf8b;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-why__layout {
    grid-template-columns: 1fr;
  }

  .blag-why__feature {
    min-height: 540px;
  }

  .blag-why__feature-inner {
    padding: 36px;
  }
}

@media (max-width: 767px) {
  .blag-why {
    padding: 84px 0;
  }

  .blag-why__header {
    margin-bottom: 42px;
  }

  .blag-why__subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-why__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blag-why__feature {
    min-height: 420px;
  }

  .blag-why__feature-inner,
  .blag-why__card {
    padding: 24px;
  }

  .blag-why__icon {
    width: 76px;
    height: 76px;
    font-size: 20px;
  }

  .blag-why__content h3 {
    font-size: 28px;
  }

  .blag-why__card h3 {
    font-size: 22px;
  }
}

/* =========================================
SECTION: Process
========================================= */

.blag-process {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top right,
      rgba(214, 176, 122, 0.08),
      transparent 24%),
    radial-gradient(circle at bottom left,
      rgba(214, 176, 122, 0.06),
      transparent 24%),
    linear-gradient(180deg, #0c0c0c 0%, #141414 100%);
}

.blag-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 120px);
  opacity: 0.25;
}

/* ===== Header ===== */
.blag-process__header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.blag-process__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-process__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.blag-process__title span {
  color: #d6b07a;
}

.blag-process__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Layout ===== */
.blag-process__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

/* ===== Steps ===== */
.blag-process__steps {
  display: grid;
  gap: 22px;
}

.blag-process__item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.blag-process__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left top,
      rgba(214, 176, 122, 0.1),
      transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blag-process__item:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 176, 122, 0.32);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(214, 176, 122, 0.08);
}

.blag-process__item:hover::before {
  opacity: 1;
}

.blag-process__num {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(214, 176, 122, 0.22);
  background: linear-gradient(145deg,
      rgba(214, 176, 122, 0.16),
      rgba(255, 255, 255, 0.04));
  color: #ebc98e;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.24);
}

.blag-process__content {
  position: relative;
  z-index: 2;
}

.blag-process__content h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
  color: #ffffff;
}

.blag-process__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Visual ===== */
.blag-process__visual {
  position: relative;
}

.blag-process__image-wrap {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blag-process__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.82) contrast(1.06) saturate(0.92);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.blag-process__image-wrap:hover .blag-process__image {
  transform: scale(1.12);
}

.blag-process__image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.05)),
    linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
}

.blag-process__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 280px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(214, 176, 122, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.blag-process__badge span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-process__badge strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-process__layout {
    grid-template-columns: 1fr;
  }

  .blag-process__image {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .blag-process {
    padding: 84px 0;
  }

  .blag-process__header {
    margin-bottom: 42px;
  }

  .blag-process__subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-process__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .blag-process__num {
    width: 74px;
    height: 74px;
    font-size: 20px;
  }

  .blag-process__content h3 {
    font-size: 24px;
  }

  .blag-process__image {
    min-height: 360px;
  }

  .blag-process__badge {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

/* =========================================
SECTION: Projects
========================================= */

.blag-projects {
  padding: 120px 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
}

/* Header */
.blag-projects__header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.blag-projects__kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d6b07a;
  margin-bottom: 12px;
}

.blag-projects__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.blag-projects__title span {
  color: #d6b07a;
}

.blag-projects__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

/* Grid */
.blag-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.blag-project {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.blag-project__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.9) contrast(1.05);
}

/* Overlay */
.blag-project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  transition: 0.4s;
}

/* Content */
.blag-project__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.blag-project__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #d6b07a;
  text-transform: uppercase;
}

.blag-project__content h3 {
  font-size: 22px;
  color: #fff;
}

/* Hover */
.blag-project:hover .blag-project__img {
  transform: scale(1.1);
}

.blag-project:hover .blag-project__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

/* ===== Projects image polish ===== */
.blag-project {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.blag-project__img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(0.95);
  transition:
    transform 0.8s ease,
    filter 0.4s ease;
}

.blag-project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.26) 45%,
      rgba(0, 0, 0, 0.1) 100%);
  transition: background 0.4s ease;
  pointer-events: none;
}

.blag-project__content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.blag-project:hover .blag-project__img {
  transform: scale(1.1);
  filter: brightness(0.96) contrast(1.06) saturate(0.98);
}

.blag-project:hover .blag-project__overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.34) 45%,
      rgba(0, 0, 0, 0.14) 100%);
}

/* Responsive */
@media (max-width: 900px) {
  .blag-projects__grid {
    grid-template-columns: 1fr;
  }

  .blag-project__img {
    height: 300px;
  }
}

/* =========================================
SECTION: CTA Banner
========================================= */

.blag-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.blag-cta__wrap {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blag-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  /* filter: brightness(0.52) contrast(1.05) saturate(0.92); */
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.blag-cta__wrap:hover .blag-cta__bg {
  transform: scale(1.07);
}

.blag-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 42%,
      rgba(0, 0, 0, 0.28) 72%,
      rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06));
}

.blag-cta__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  min-height: 560px;
  padding: 56px;
}

/* ===== Left Content ===== */
.blag-cta__content {
  max-width: 700px;
}

.blag-cta__kicker {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-cta__title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.blag-cta__title span {
  color: #d6b07a;
}

.blag-cta__text {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.blag-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Buttons ===== */
.blag-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.blag-cta__btn--primary,
.blag-btn--primary {
  position: relative;
  overflow: hidden;
  color: #16110a !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%);
  box-shadow:
    0 14px 30px rgba(167, 120, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.blag-cta__btn--primary:hover,
.blag-btn--primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 22px 40px rgba(167, 120, 60, 0.42),
    0 0 18px rgba(214, 176, 122, 0.2);
}

.blag-cta__btn--primary::after,
.blag-btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);
  transform: skewX(-24deg);
}

.blag-cta__btn--primary:hover::after,
.blag-btn--primary:hover::after {
  left: 130%;
  transition: left 0.8s ease;
}

.blag-cta__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.blag-cta__btn--secondary:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 176, 122, 0.34);
  color: #d6b07a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

/* ===== Right Aside ===== */
.blag-cta__aside {
  display: flex;
  justify-content: flex-end;
}

.blag-cta__card {
  width: min(100%, 430px);
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: rgba(10, 10, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.blag-cta__card-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-cta__card-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
}

.blag-cta__card-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.blag-cta__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blag-cta__meta-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blag-cta__meta-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-cta__meta-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-cta__grid {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .blag-cta__aside {
    justify-content: flex-start;
  }

  .blag-cta__card {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .blag-cta {
    padding: 84px 0;
  }

  .blag-cta__wrap {
    min-height: auto;
    border-radius: 26px;
  }

  .blag-cta__grid {
    min-height: auto;
    padding: 28px 24px;
    gap: 22px;
  }

  .blag-cta__text {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-cta__actions {
    flex-direction: column;
  }

  .blag-cta__btn {
    width: 100%;
  }

  .blag-cta__card {
    padding: 22px;
    border-radius: 22px;
  }

  .blag-cta__card-title {
    font-size: 26px;
  }
}

/* =========================================
SECTION: Luxury FAQ
========================================= */

.blag-faq {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(214, 176, 122, 0.1),
      transparent 24%),
    radial-gradient(circle at bottom right,
      rgba(214, 176, 122, 0.07),
      transparent 22%),
    linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
}

.blag-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 140px);
  opacity: 0.18;
}

.blag-faq__bg-word {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 20vw, 280px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
}

/* ===== Grid ===== */
.blag-faq__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

/* ===== Intro ===== */
.blag-faq__intro {
  position: sticky;
  top: 120px;
}

.blag-faq__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-faq__title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.blag-faq__title span {
  color: #d6b07a;
}

.blag-faq__text {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Plaque ===== */
.blag-faq__plaque {
  max-width: 430px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.blag-faq__plaque-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-faq__plaque-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
}

.blag-faq__plaque-link:hover {
  color: #e3bf8d;
}

.blag-faq__plaque-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== FAQ Items ===== */
.blag-faq__items {
  display: grid;
  gap: 16px;
}

.blag-faq__item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.blag-faq__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(214, 176, 122, 0.12),
      transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.blag-faq__item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 176, 122, 0.26);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(214, 176, 122, 0.07);
}

.blag-faq__item:hover::before,
.blag-faq__item[open]::before {
  opacity: 1;
}

.blag-faq__item summary {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  cursor: pointer;
}

.blag-faq__item summary::-webkit-details-marker {
  display: none;
}

.blag-faq__item summary span {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.blag-faq__item summary i {
  position: relative;
  display: inline-block;
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(214, 176, 122, 0.2);
  background: rgba(214, 176, 122, 0.08);
}

.blag-faq__item summary i::before,
.blag-faq__item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #d6b07a;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.blag-faq__item summary i::before {
  width: 16px;
  height: 2px;
}

.blag-faq__item summary i::after {
  width: 2px;
  height: 16px;
}

.blag-faq__item[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.blag-faq__answer {
  position: relative;
  z-index: 2;
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-faq__grid {
    grid-template-columns: 1fr;
  }

  .blag-faq__intro {
    position: relative;
    top: auto;
  }

  .blag-faq__text,
  .blag-faq__plaque {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .blag-faq {
    padding: 84px 0;
  }

  .blag-faq__bg-word {
    top: 56px;
    font-size: 96px;
  }

  .blag-faq__text {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-faq__plaque-link {
    font-size: 24px;
  }

  .blag-faq__item summary {
    padding: 20px 20px;
  }

  .blag-faq__item summary span {
    font-size: 18px;
  }

  .blag-faq__answer {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.75;
  }
}

/* =========================================
SECTION: Service Area
Style: Luxury Coverage Strip
========================================= */

.blag-area {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top center,
      rgba(214, 176, 122, 0.1),
      transparent 24%),
    radial-gradient(circle at bottom left,
      rgba(214, 176, 122, 0.06),
      transparent 22%),
    linear-gradient(180deg, #090909 0%, #121212 100%);
}

.blag-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 140px);
  opacity: 0.18;
}

/* ===== Header ===== */
.blag-area__header {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.blag-area__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-area__title {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.blag-area__title span {
  color: #d6b07a;
}

.blag-area__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Rows ===== */
.blag-area__rows {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.blag-area__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.blag-area__row--two {
  padding-left: 48px;
}

.blag-area__row--three {
  padding-right: 64px;
}

.blag-area__city {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.blag-area__city::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #f1d6a2 0%, #b3874c 100%);
  box-shadow: 0 0 12px rgba(214, 176, 122, 0.34);
  flex: 0 0 10px;
}

.blag-area__city:hover {
  transform: translateY(-5px);
  color: #f3d6a6;
  border-color: rgba(214, 176, 122, 0.28);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.3),
    0 0 16px rgba(214, 176, 122, 0.08);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03));
}

/* ===== Bottom Bar ===== */
.blag-area__bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blag-area__bar-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.25;
  color: #ffffff;
}

.blag-area__bar-copy span {
  display: block;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.blag-area__bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== Buttons ===== */
.blag-area__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.blag-area__btn--primary {
  position: relative;
  overflow: hidden;
  color: #16110a !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%);
  box-shadow:
    0 12px 24px rgba(167, 120, 60, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blag-area__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 34px rgba(167, 120, 60, 0.36),
    0 0 16px rgba(214, 176, 122, 0.16);
}

.blag-area__btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);
  transform: skewX(-24deg);
}

.blag-area__btn--primary:hover::after {
  left: 130%;
  transition: left 0.8s ease;
}

.blag-area__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.blag-area__btn--secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 176, 122, 0.34);
  color: #d6b07a;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {

  .blag-area__row--two,
  .blag-area__row--three {
    padding-left: 0;
    padding-right: 0;
  }

  .blag-area__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .blag-area {
    padding: 84px 0;
  }

  .blag-area__subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .blag-area__row {
    justify-content: flex-start;
  }

  .blag-area__city {
    min-height: 62px;
    padding: 0 20px;
    font-size: 16px;
  }

  .blag-area__bar {
    padding: 22px;
    border-radius: 22px;
  }

  .blag-area__bar-copy strong {
    font-size: 20px;
  }

  .blag-area__bar-actions {
    width: 100%;
    flex-direction: column;
  }

  .blag-area__btn {
    width: 100%;
  }
}

/* =========================================
SECTION: Luxury Footer
========================================= */

.blag-footer {
  position: relative;
  overflow: hidden;
  padding: 100px 0 28px;
  background:
    radial-gradient(circle at top left,
      rgba(214, 176, 122, 0.1),
      transparent 20%),
    radial-gradient(circle at bottom right,
      rgba(214, 176, 122, 0.06),
      transparent 18%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blag-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 140px);
  opacity: 0.14;
}

/* ===== Top ===== */
.blag-footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.4fr 0.5fr 1fr;
  gap: 34px;
  padding: 10px 15px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== Brand ===== */
.blag-footer__brand {
  max-width: 520px;
}

.blag-footer__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-footer__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.blag-footer__text {
  max-width: 440px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Button ===== */
.blag-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.blag-footer__btn--primary {
  position: relative;
  overflow: hidden;
  color: #16110a !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%);
  box-shadow:
    0 12px 24px rgba(167, 120, 60, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blag-footer__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 34px rgba(167, 120, 60, 0.36),
    0 0 16px rgba(214, 176, 122, 0.16);
}

.blag-footer__btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);
  transform: skewX(-24deg);
}

.blag-footer__btn--primary:hover::after {
  left: 130%;
  transition: left 0.8s ease;
}

/* ===== Headings ===== */
.blag-footer__heading {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== Lists ===== */
.blag-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.blag-footer__list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.blag-footer__list li a:hover {
  color: #d6b07a;
  transform: translateX(4px);
}

/* ===== Contact ===== */
.blag-footer__contact-list {
  display: grid;
  gap: 16px;
}

.blag-footer__contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blag-footer__contact-item span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6b07a;
}

.blag-footer__contact-item a,
.blag-footer__contact-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}

/* ===== Bottom ===== */
.blag-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.blag-footer__copy {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

.blag-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.blag-footer__bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blag-footer__bottom-links a:hover {
  color: #d6b07a;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .blag-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .blag-footer {
    padding: 84px 0 24px;
  }

  .blag-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blag-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .blag-footer__btn {
    width: 100%;
  }
}

.ct-footer [data-row]>div {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* =========================================
Back To Top Button - Luxury Style
========================================= */

.ct-back-to-top {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%) !important;
  box-shadow:
    0 14px 30px rgba(167, 120, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.35s ease !important;
  overflow: hidden !important;
}

.ct-back-to-top:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow:
    0 20px 38px rgba(167, 120, 60, 0.4),
    0 0 18px rgba(214, 176, 122, 0.18) !important;
}

.ct-back-to-top:before,
.ct-back-to-top:after {
  transition: all 0.35s ease !important;
}

.ct-back-to-top svg {
  width: 18px !important;
  height: 18px !important;
  fill: #16110a !important;
}

.ct-back-to-top:hover svg {
  transform: translateY(-1px) !important;
}

.ct-back-to-top::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent) !important;
  transform: skewX(-24deg) !important;
}

.ct-back-to-top:hover::after {
  left: 130% !important;
  transition: left 0.8s ease !important;
}

/* =========================================================
   BLAG Projects Grid — 2 columns on mobile
========================================================= */

@media (max-width: 767px) {

  /* Grid layout */
  .blag-projects__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  /* Card */
  .blag-project {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  /* Image */
  .blag-project_img {
    height: 160px !important;
    object-fit: cover !important;
  }

  /* Content overlay (text inside image) */
  .blag-project_content {
    padding: 14px !important;
  }

  /* Category (ROOF INSTALLATION) */
  .blag-project_content span {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  /* Title */
  .blag-project_content h3 {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
}

/* =========================================================
   BLAG Roofing — Mobile Layout Refinement
   Put this block at the very end of roofing.css
========================================================= */

@media (max-width: 767px) {

  /* ===== Global section rhythm ===== */
  .blag-services,
  .blag-why,
  .blag-process,
  .blag-projects,
  .blag-cta,
  .blag-faq,
  .blag-area,
  .blag-footer {
    padding: 72px 0 !important;
  }

  .blag-services__header,
  .blag-why__header,
  .blag-process__header,
  .blag-projects__header,
  .blag-area__header {
    margin-bottom: 34px !important;
  }

  .blag-services__subtitle,
  .blag-why__subtitle,
  .blag-process__subtitle,
  .blag-projects__subtitle,
  .blag-area__subtitle,
  .blag-faq__text,
  .blag-cta__text {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  /* ===== Hero ===== */
  .blag-hero__grid {
    gap: 20px !important;
    padding: 24px 0 18px !important;
  }

  .blag-hero__content {
    padding: 0 !important;
  }

  .blag-hero__eyebrow {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 14px !important;
    margin-bottom: 18px !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
  }

  .blag-hero__title {
    margin-bottom: 16px !important;
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 0.98 !important;
  }

  .blag-hero__text {
    margin-bottom: 22px !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  /* Hero buttons in one row */
  .blag-hero__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  .blag-hero__actions .blag-btn {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
  }

  /* Hero info cards in one row */
  .blag-hero__info {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .blag-hero__info-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px 14px !important;
    border-radius: 18px !important;
  }

  .blag-hero__info-label {
    margin-bottom: 6px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }

  .blag-hero__info-link,
  .blag-hero__info-text {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .blag-hero__visual {
    margin-top: 6px !important;
  }

  .blag-hero__image-wrap {
    border-radius: 24px !important;
  }

  .blag-hero__image-wrap::before {
    inset: 12px !important;
    border-radius: 16px !important;
  }

  .blag-hero__image {
    height: 300px !important;
  }

  .blag-hero__badge--top {
    top: 12px !important;
    left: 12px !important;
    padding: 9px 12px !important;
    font-size: 10px !important;
  }

  .blag-hero__badge--bottom {
    right: 12px !important;
    bottom: 12px !important;
    max-width: calc(100% - 24px) !important;
    padding: 14px 14px 12px !important;
  }

  .blag-hero__badge--bottom strong {
    font-size: 15px !important;
  }

  .blag-hero__badge--bottom span {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  /* ===== Services ===== */
  .blag-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .blag-service-card {
    padding: 18px 16px !important;
    border-radius: 20px !important;
    min-height: 188px !important;
  }

  .blag-service-card__number {
    margin-bottom: 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
  }

  .blag-service-card h3 {
    margin-bottom: 10px !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
  }

  .blag-service-card p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  /* ===== Why ===== */
  .blag-why__layout {
    gap: 16px !important;
  }

  .blag-why__feature {
    min-height: 360px !important;
    border-radius: 24px !important;
  }

  .blag-why__feature-inner {
    padding: 20px !important;
  }

  .blag-why__icon-wrap {
    margin-bottom: 18px !important;
  }

  .blag-why__icon {
    width: 64px !important;
    height: 64px !important;
    font-size: 17px !important;
  }

  .blag-why__content h3 {
    font-size: 23px !important;
    margin-bottom: 10px !important;
  }

  .blag-why__content p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .blag-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .blag-why__card {
    padding: 18px 16px !important;
    border-radius: 20px !important;
    min-height: 210px !important;
  }

  .blag-why__mini-icon {
    min-width: 42px !important;
    height: 42px !important;
    margin-bottom: 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }

  .blag-why__card h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .blag-why__card p {
    font-size: 13px !important;
    line-height: 1.58 !important;
  }

  /* ===== Process ===== */
  .blag-process__layout {
    gap: 16px !important;
  }

  .blag-process__steps {
    gap: 14px !important;
  }

  .blag-process__item {
    grid-template-columns: 64px 1fr !important;
    gap: 14px !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
    align-items: start !important;
  }

  .blag-process__num {
    width: 64px !important;
    height: 64px !important;
    font-size: 18px !important;
  }

  .blag-process__content h3 {
    margin: 2px 0 8px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .blag-process__content p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .blag-process__image-wrap {
    border-radius: 24px !important;
  }

  .blag-process__visual::before {
    inset: 12px !important;
    border-radius: 16px !important;
  }

  .blag-process__image {
    min-height: 300px !important;
  }

  .blag-process__badge {
    right: 12px !important;
    bottom: 12px !important;
    max-width: calc(100% - 24px) !important;
    padding: 14px 14px 12px !important;
    border-radius: 16px !important;
  }

  .blag-process__badge strong {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* ===== Projects ===== */
  .blag-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .blag-project {
    border-radius: 18px !important;
  }

  .blag-project::before {
    inset: 10px !important;
    border-radius: 12px !important;
  }

  .blag-project__img {
    height: 170px !important;
  }

  .blag-project__content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .blag-project__tag {
    margin-bottom: 6px !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  .blag-project__content h3 {
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  /* ===== CTA ===== */
  .blag-cta__wrap {
    border-radius: 24px !important;
  }

  .blag-cta__wrap::before {
    inset: 12px !important;
    border-radius: 16px !important;
  }

  .blag-cta__grid {
    padding: 22px 18px !important;
    gap: 18px !important;
  }

  .blag-cta__title {
    margin-bottom: 14px !important;
    font-size: clamp(30px, 8vw, 42px) !important;
    line-height: 1 !important;
  }

  .blag-cta__text {
    margin-bottom: 18px !important;
  }

  /* CTA buttons in one row */
  .blag-cta__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .blag-cta__btn {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
  }

  .blag-cta__card {
    width: 100% !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .blag-cta__card-label {
    margin-bottom: 10px !important;
    font-size: 10px !important;
  }

  .blag-cta__card-title {
    margin-bottom: 10px !important;
    font-size: 22px !important;
    line-height: 1.08 !important;
  }

  .blag-cta__card-text {
    margin-bottom: 16px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .blag-cta__meta {
    gap: 10px !important;
  }

  .blag-cta__meta-item {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .blag-cta__meta-item strong {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  /* ===== FAQ ===== */
  .blag-faq__grid {
    gap: 22px !important;
  }

  .blag-faq__plaque {
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .blag-faq__item {
    border-radius: 18px !important;
  }

  .blag-faq__item summary {
    padding: 18px 16px !important;
  }

  .blag-faq__item summary span {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .blag-faq__item summary i {
    min-width: 38px !important;
    width: 38px !important;
    height: 38px !important;
  }

  .blag-faq__answer {
    padding: 0 16px 18px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  /* ===== Service area ===== */
  .blag-area__header {
    margin-bottom: 28px !important;
  }

  .blag-area__rows {
    gap: 12px !important;
    margin-bottom: 22px !important;
  }

  .blag-area__row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    justify-content: stretch !important;
  }

  .blag-area__city {
    width: 100% !important;
    min-height: 56px !important;
    padding: 0 14px !important;
    justify-content: flex-start !important;
    border-radius: 999px !important;
    font-size: 14px !important;
  }

  /* Area buttons in one row */
  .blag-area__bar {
    padding: 18px 16px !important;
    border-radius: 20px !important;
    gap: 16px !important;
  }

  .blag-area__bar-copy strong {
    font-size: 18px !important;
  }

  .blag-area__bar-copy span {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .blag-area__bar-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .blag-area__btn {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
  }

  /* ===== Footer ===== */
  .blag-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    padding: 0 0 28px !important;
    align-items: start !important;
  }

  .blag-footer__brand {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  .blag-footer__brand .blag-footer__btn {
    width: 100% !important;
  }

  .blag-footer__col:last-child {
    grid-column: 1 / -1 !important;
  }

  .blag-footer__title {
    font-size: 34px !important;
    line-height: 1.02 !important;
  }

  .blag-footer__text {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .blag-footer__heading {
    margin-bottom: 12px !important;
    font-size: 15px !important;
  }

  .blag-footer__list {
    gap: 10px !important;
  }

  .blag-footer__contact-list {
    gap: 10px !important;
  }

  .blag-footer__contact-item {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .blag-footer__contact-item a,
  .blag-footer__contact-item p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .blag-footer__bottom {
    gap: 10px !important;
    padding-top: 18px !important;
  }

  .blag-footer__bottom-links {
    gap: 12px !important;
  }

  /* ===== Back to top ===== */
  .ct-back-to-top {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .ct-back-to-top svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* =========================================================
   Mobile H2 spacing fix
========================================================= */

@media (max-width: 767px) {

  .blag-why__title,
  .blag-services__title,
  .blag-process__title,
  .blag-projects__title,
  .blag-area__title,
  .blag-cta__title,
  .blag-faq__title {
    margin-top: 12px !important;
    margin-bottom: 18px !important;
    line-height: 1.2 !important;
  }
}

/* =========================================================
   BLAG Roofing — Legal Pages
   Privacy Policy / Terms of Use
========================================================= */

.legal-page {
  width: 100%;
  max-width: 100%;
  position: relative !important;
  padding: 120px 0 90px !important;
  background:
    radial-gradient(circle at top left,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(212, 175, 55, 0) 28%),
    radial-gradient(circle at bottom right,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(212, 175, 55, 0) 30%),
    linear-gradient(180deg, #050608 0%, #080b11 48%, #050608 100%) !important;
  overflow: hidden !important;
}

.legal-page::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  opacity: 0.16 !important;
  pointer-events: none !important;
}

.legal-page::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 18%) !important;
  pointer-events: none !important;
}

.legal-page .blag-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 980px !important;
}

/* ===== Main legal card ===== */
.legal-page .blag-container>* {
  position: relative !important;
  z-index: 2 !important;
}

.legal-page .blag-container {
  padding: 46px 44px !important;
  border: 1px solid rgba(212, 175, 55, 0.16) !important;
  border-radius: 34px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.015) 100%) !important;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  overflow: hidden !important;
}

.legal-page .blag-container::before {
  content: "" !important;
  position: absolute !important;
  inset: 14px !important;
  border: 1px solid rgba(212, 175, 55, 0.08) !important;
  border-radius: 24px !important;
  pointer-events: none !important;
}

.legal-page .blag-container::after {
  content: "" !important;
  position: absolute !important;
  top: -140px !important;
  right: -120px !important;
  width: 320px !important;
  height: 320px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(212, 175, 55, 0) 72%) !important;
  pointer-events: none !important;
}

/* ===== Effective date ===== */
.legal-page p:first-child {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 46px !important;
  padding: 10px 18px !important;
  margin: 0 0 24px !important;
  border: 1px solid rgba(212, 175, 55, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #d9b36a !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

/* ===== H1 ===== */
.legal-page h1 {
  margin: 0 0 24px !important;
  font-size: clamp(38px, 5vw, 62px) !important;
  line-height: 0.98 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
}

.legal-page h1::after {
  content: "" !important;
  display: block !important;
  width: 120px !important;
  height: 4px !important;
  margin-top: 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,
      #b88638 0%,
      #f3d796 45%,
      #c89a4a 100%) !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.22) !important;
}

/* ===== Intro paragraph ===== */
.legal-page h1+p {
  margin: 0 0 30px !important;
  max-width: 850px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
}

/* ===== H2 blocks ===== */
.legal-page h2 {
  position: relative !important;
  margin: 34px 0 14px !important;
  padding: 20px 22px !important;
  border: 1px solid rgba(212, 175, 55, 0.12) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  color: #fff6e2 !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.legal-page h2::before {
  content: "" !important;
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  margin-right: 12px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #f1d38f 0%, #b98739 100%) !important;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.28) !important;
  vertical-align: middle !important;
}

/* ===== Paragraphs ===== */
.legal-page p {
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* ===== Lists ===== */
.legal-page ul,
.legal-page ol {
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.legal-page li {
  position: relative !important;
  margin: 0 0 12px !important;
  padding: 16px 18px 16px 48px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.015) 100%) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.legal-page li::before {
  content: "" !important;
  position: absolute !important;
  top: 23px !important;
  left: 20px !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #f1d38f 0%, #ba8a3b 100%) !important;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25) !important;
}

/* ===== Strong text ===== */
.legal-page strong {
  color: #f2d594 !important;
  font-weight: 700 !important;
}

/* ===== Links ===== */
.legal-page a {
  color: #f2d594 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(242, 213, 148, 0.35) !important;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease !important;
}

.legal-page a:hover,
.legal-page a:focus-visible {
  color: #fff4d4 !important;
  border-color: rgba(255, 244, 212, 0.6) !important;
  outline: none !important;
}

/* ===== Contact block at bottom ===== */
.legal-page p:last-child {
  margin-bottom: 0 !important;
  padding: 22px 24px !important;
  border: 1px solid rgba(212, 175, 55, 0.14) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%) !important;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* ===== Better spacing between sections ===== */
.legal-page h2+p,
.legal-page h2+ul,
.legal-page h2+ol {
  margin-top: 0 !important;
}

/* ===== Tablet ===== */
@media (max-width: 991px) {
  .legal-page {
    padding: 100px 0 76px !important;
  }

  .legal-page .blag-container {
    padding: 38px 30px !important;
    border-radius: 28px !important;
  }

  .legal-page h1 {
    font-size: clamp(34px, 6vw, 52px) !important;
  }

  .legal-page h2 {
    font-size: 22px !important;
    padding: 18px 18px !important;
  }
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .legal-page {
    padding: 82px 0 58px !important;
  }

  .legal-page::before {
    background-size: 28px 28px !important;
    opacity: 0.12 !important;
  }

  .legal-page .blag-container {
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .legal-page .blag-container::before {
    inset: 10px !important;
    border-radius: 16px !important;
  }

  .legal-page p:first-child {
    min-height: 40px !important;
    padding: 8px 14px !important;
    margin-bottom: 18px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }

  .legal-page h1 {
    margin-bottom: 18px !important;
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.02 !important;
  }

  .legal-page h1::after {
    width: 88px !important;
    height: 3px !important;
    margin-top: 14px !important;
  }

  .legal-page h1+p {
    margin-bottom: 22px !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .legal-page h2 {
    margin: 24px 0 12px !important;
    padding: 16px 16px !important;
    border-radius: 16px !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
  }

  .legal-page h2::before {
    width: 8px !important;
    height: 8px !important;
    margin-right: 10px !important;
  }

  .legal-page p {
    margin-bottom: 16px !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .legal-page li {
    margin-bottom: 10px !important;
    padding: 14px 14px 14px 40px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .legal-page li::before {
    top: 20px !important;
    left: 16px !important;
    width: 8px !important;
    height: 8px !important;
  }

  .legal-page p:last-child {
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }
}

/* =========================================================
   BLAG Roofing — Modal FINAL CLEAN VERSION
   Delete old modal CSS and use only this block
========================================================= */

/* ===== Overlay ===== */
.gama-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(3, 6, 12, 0.78) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  overflow-y: auto !important;
}

/* Remove random pseudo layers */
.gama-modal::before,
.gama-modal::after,
.gama-modal__dialog::before,
.gama-modal__dialog::after,
.gama-modal__body::before,
.gama-modal__body::after {
  display: none !important;
  content: none !important;
}

/* ===== Modal window ===== */
.gama-modal .gama-modal__dialog {
  position: relative !important;
  width: min(100%, 980px) !important;
  max-width: min(860px, calc(100% - 36px)) !important;
  max-height: calc(100vh - 48px) !important;
  margin: auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 175, 55, 0.14) !important;
  border-radius: 32px !important;
  background: linear-gradient(180deg,
      #0a0d13 0%,
      #10151d 48%,
      #0a0d13 100%) !important;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(212, 175, 55, 0.07) !important;
  opacity: 0 !important;
  isolation: isolate !important;
  display: none !important;
}

.gama-modal.is-open .gama-modal__dialog {
  overflow: hidden !important;
  opacity: 1 !important;
  display: block !important;
}

.ct-icon,
.ct-icon-container svg {
  fill: #d0ad73 !important;
}

[class*="animated-submenu"]>.sub-menu {
  background:
    radial-gradient(circle at top center,
      rgba(214, 176, 122, 0.1),
      transparent 24%),
    radial-gradient(circle at bottom left,
      rgba(214, 176, 122, 0.06),
      transparent 22%),
    linear-gradient(180deg, #090909 0%, #121212 100%) !important;
}

/* Inner luxury frame */
.gama-modal__dialog>.gama-modal__body {
  position: relative !important;
}

.gama-modal__dialog>.gama-modal__body::before {
  content: "" !important;
  position: absolute !important;
  inset: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  pointer-events: none !important;
}

/* ===== Modal body ===== */
.gama-modal__body {
  position: relative !important;
  z-index: 2 !important;
  padding: 34px 34px 30px !important;
  background: transparent !important;
  color: #ffffff !important;
  overflow-y: auto !important;
  min-height: min(90vh, 920px) !important;
}

/* ===== Title ===== */
.gama-modal__title {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 0.9 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
}

/* ===== Subtitle ===== */
.gama-modal__subtitle {
  margin: 0 0 17px !important;
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

/* ===== Close button ===== */
.gama-modal__close,
.gama-modal button[aria-label="Close"],
.gama-modal .ct-toggle-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  border: 1px solid rgba(212, 175, 55, 0.14) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%) !important;
  color: #f2d594 !important;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22) !important;
  cursor: pointer !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease !important;
}

.gama-modal__close:hover,
.gama-modal button[aria-label="Close"]:hover,
.gama-modal .ct-toggle-close:hover {
  transform: rotate(90deg) !important;
  border-color: rgba(212, 175, 55, 0.24) !important;
  background: linear-gradient(180deg,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(255, 255, 255, 0.03) 100%) !important;
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(212, 175, 55, 0.08) !important;
}

/* ===== WPForms variable reset ===== */
.gama-modal #wpforms-5 {
  --wpforms-background-color: transparent !important;
  --wpforms-container-border-width: 0px !important;
  --wpforms-container-border-radius: 0px !important;
  --wpforms-container-padding: 0px !important;
  --wpforms-field-size-input-height: 58px !important;
  --wpforms-field-size-font-size: 16px !important;
  --wpforms-label-size-font-size: 14px !important;
  --wpforms-button-size-height: 56px !important;
  --wpforms-button-size-font-size: 13px !important;
  --wpforms-button-size-padding-h: 28px !important;
  --wpforms-button-size-margin-top: 10px !important;
  margin: 0 !important;
  width: 100% !important;
  background: transparent !important;
}

/* ===== Hidden spam fields ===== */
.gama-modal #wpforms-5-field_5-container,
.gama-modal #wpforms-5-field_7-container {
  display: none !important;
}

/* ===== Form layout ===== */
.gama-modal #wpforms-5 .wpforms-field-container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  width: 100% !important;
}

/* ===== Field block ===== */
.gama-modal #wpforms-5 .wpforms-field {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== Labels ===== */
.gama-modal #wpforms-5 .wpforms-field-label {
  display: block !important;
  margin: 0 0 7px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em !important;
}

.gama-modal #wpforms-5 .wpforms-required-label {
  color: #d8b57c !important;
}

/* ===== Inputs ===== */
.gama-modal #wpforms-5 input[type="text"],
.gama-modal #wpforms-5 input[type="email"],
.gama-modal #wpforms-5 textarea,
.gama-modal #wpforms-5 .wpforms-field-medium {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  border: 1px solid rgba(212, 175, 55, 0.16) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.015) 100%) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 22px rgba(0, 0, 0, 0.14) !important;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease !important;
}

/* Single-line fields */
.gama-modal #wpforms-5 input[type="text"],
.gama-modal #wpforms-5 input[type="email"],
.gama-modal #wpforms-5 .wpforms-field-medium:not(textarea) {
  height: 44px !important;
  padding: 0 18px !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  height: calc(var(--wpforms-field-size-input-height) * 1.8) !important;
}

/* Textarea */
.gama-modal #wpforms-5 textarea {
  min-height: 180px !important;
  padding: 16px 18px !important;
  resize: vertical !important;
}

/* Placeholder */
.gama-modal #wpforms-5 input::placeholder,
.gama-modal #wpforms-5 textarea::placeholder {
  color: rgba(255, 255, 255, 0.42) !important;
}

/* Focus */
.gama-modal #wpforms-5 input:focus,
.gama-modal #wpforms-5 textarea:focus {
  outline: none !important;
  border-color: rgba(212, 175, 55, 0.34) !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%) !important;
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* ===== Submit area ===== */
.gama-modal #wpforms-5 .wpforms-submit-container {
  margin-top: 22px !important;
  padding: 0 !important;
}

/* ===== Submit button ===== */
.gama-modal #wpforms-5 .wpforms-submit {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  border: 1px solid rgba(212, 175, 55, 0.28) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg,
      #d8b57c 0%,
      #b3874c 45%,
      #f1d6a2 70%,
      #9f6e35 100%) !important;
  color: #16110a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow:
    0 14px 30px rgba(167, 120, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  cursor: pointer !important;
  overflow: hidden !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease !important;
}

.gama-modal #wpforms-5 .wpforms-submit::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent) !important;
  transform: skewX(-24deg) !important;
}

.gama-modal #wpforms-5 .wpforms-submit:hover,
.gama-modal #wpforms-5 .wpforms-submit:focus-visible {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 22px 40px rgba(167, 120, 60, 0.4),
    0 0 18px rgba(214, 176, 122, 0.2) !important;
  filter: brightness(1.02) !important;
  outline: none !important;
}

.gama-modal #wpforms-5 .wpforms-submit:hover::after,
.gama-modal #wpforms-5 .wpforms-submit:focus-visible::after {
  left: 130% !important;
  transition: left 0.8s ease !important;
}

/* ===== Validation ===== */
.gama-modal #wpforms-5 label.wpforms-error,
.gama-modal #wpforms-5 .wpforms-error {
  margin-top: 8px !important;
  color: #f0b4b4 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.gama-modal #wpforms-5 input.wpforms-error,
.gama-modal #wpforms-5 textarea.wpforms-error {
  border-color: rgba(220, 110, 110, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(220, 110, 110, 0.08) !important;
}

/* ===== Success ===== */
.gama-modal #wpforms-5 .wpforms-confirmation-container,
.gama-modal #wpforms-5 .wpforms-confirmation-container-full {
  padding: 18px 20px !important;
  border: 1px solid rgba(212, 175, 55, 0.14) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.015) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18) !important;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .gama-modal {
    padding: 14px !important;
  }

  .gama-modal__dialog {
    width: 100% !important;
    max-height: calc(100vh - 28px) !important;
    border-radius: 24px !important;
  }

  .gama-modal__dialog>.gama-modal__body::before {
    inset: 10px !important;
    border-radius: 16px !important;
  }

  .gama-modal__body {
    padding: 22px 18px 20px !important;
  }

  .gama-modal__title {
    margin-bottom: 10px !important;
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.02 !important;
  }

  .gama-modal__subtitle {
    margin-bottom: 20px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .gama-modal__close,
  .gama-modal button[aria-label="Close"],
  .gama-modal .ct-toggle-close {
    top: 14px !important;
    right: 14px !important;
    width: 46px !important;
    height: 42px !important;
    border-radius: 16px !important;
  }



  .gama-modal #wpforms-5 .wpforms-field-container {
    gap: 16px !important;
  }

  .gama-modal #wpforms-5 .wpforms-field-label {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }

  .gama-modal #wpforms-5 input[type="text"],
  .gama-modal #wpforms-5 input[type="email"],
  .gama-modal #wpforms-5 .wpforms-field-medium:not(textarea) {
    height: 54px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
  }

  .gama-modal #wpforms-5 textarea {
    min-height: 150px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
  }

  .gama-modal #wpforms-5 .wpforms-submit {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border-radius: 16px !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
  }
}