/*
 Theme Name:   Lidell Child
 Theme URI:    https://lidellcleaning.com
 Description:  Lidell Cleaning Services — child theme for Divi.
               Accra, Ghana. "Clean Spaces. Better Living."
 Author:       Lidell Cleaning Services
 Author URI:   https://lidellcleaning.com
 Template:     Divi
 Version:      1.0.0
*/

/* ============================================================
   LIDELL DESIGN TOKENS — Onyx & Gold
   Taken directly from the brand mark: gold leaf on deep black,
   with a warm ivory for breathing space. Premium, not clinical.
   ============================================================ */

:root {
  /* Brand core — onyx */
  --onyx:        #0B0B0B;   /* primary black — hero, footer, nav */
  --onyx-soft:   #161616;   /* elevated dark surfaces */
  --onyx-line:   #262626;   /* hairlines on dark */
  --charcoal:    #1F1F1F;   /* secondary dark panels */

  /* Accent — gold leaf */
  --gold:        #C9962F;   /* primary gold — buttons, accents */
  --gold-lt:     #E4C078;   /* light gold — logo highlight, hovers */
  --gold-pale:   #D2B477;   /* the mark's core gold */
  --gold-dk:     #A2761E;   /* deep gold — borders on light */

  /* Warm neutrals */
  --ivory:       #FAF7F1;   /* warm panel */
  --ivory-deep:  #F1EADC;   /* deeper warm panel */

  /* Ink */
  --ink:         #14161A;   /* body text on light */
  --ink-soft:    #4A5157;   /* muted body text */
  --ink-faint:   #838B92;   /* captions / meta */

  /* Lines */
  --line:        #E6DECB;   /* hairline on light surfaces */
  --line-dark:   rgba(255,255,255,0.12);

  --white:       #FFFFFF;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape — tight radii; this is a precision brand */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 12px rgba(11,11,11,0.07);
  --shadow:      0 12px 38px rgba(11,11,11,0.13);
  --shadow-lg:   0 26px 70px rgba(11,11,11,0.22);
  --shadow-gold: 0 8px 26px rgba(201,150,47,0.34);

  --wrap:        1180px;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ============================================================
   TYPOGRAPHY
   Oswald is condensed — it wants wider tracking and uppercase
   at display sizes, which matches the flyer's headline treatment.
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--onyx);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h1 { font-size: 4rem; font-weight: 700; }
h2 { font-size: 2.7rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.12rem; }

p { line-height: 1.78; color: var(--ink-soft); }

a { color: var(--gold-dk); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   GLOBAL FONT OVERRIDE — force the Lidell pairing everywhere
   ============================================================ */

body, body p, body li, body td, body th, body label, body input,
body textarea, body select, body button,
.et_pb_module, .et_pb_text, .et_pb_blurb_content, .et_pb_toggle_content,
.et_pb_button, .et_pb_contact_form_label,
#main-header, #et-secondary-nav, .nav li ul, .et_mobile_menu li a,
.et_pb_widget, #footer-widgets, #et-footer-nav {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.et_pb_module h1, .et_pb_module h2, .et_pb_module h3,
.et_pb_module h4, .et_pb_module h5, .et_pb_module h6,
.et_pb_toggle_title {
  font-family: var(--font-display) !important;
}

/* ============================================================
   DIVI CORE FIXES
   ============================================================ */

.et_pb_section { padding: 0; }
.et_pb_row { padding: 0; width: 90%; max-width: var(--wrap); }
.et_pb_column { margin-bottom: 0; }

@media (max-width: 980px) {
  .et_pb_column { margin-bottom: 30px; }
  .et_pb_row .et_pb_column:last-child { margin-bottom: 0; }
}

/* ============================================================
   NAVIGATION — onyx bar, gold underline grow
   ============================================================ */

#main-header {
  background: var(--onyx) !important;
  box-shadow: 0 1px 0 var(--onyx-line), 0 6px 30px rgba(0,0,0,0.28) !important;
}

#main-header .logo_container { padding: 8px 0; }

#top-menu li a {
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86) !important;
  padding-bottom: 20px !important;
  position: relative;
  transition: color .22s ease;
}

#top-menu li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 12px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .28s cubic-bezier(.4,0,.2,1);
}

#top-menu li a:hover,
#top-menu li.current-menu-item > a {
  color: var(--gold-lt) !important;
  opacity: 1;
}

#top-menu li a:hover::after,
#top-menu li.current-menu-item > a::after { width: 100%; }

#main-header.et-fixed-header { background: rgba(11,11,11,0.97) !important; }
#main-header.et-fixed-header #top-menu li a { color: rgba(255,255,255,0.86) !important; }

.mobile_menu_bar:before { color: var(--gold) !important; }

.et_mobile_menu {
  background: var(--onyx-soft) !important;
  border-top: 3px solid var(--gold) !important;
  box-shadow: var(--shadow);
}

.et_mobile_menu li a {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 22px !important;
  border-bottom: 1px solid var(--onyx-line) !important;
}

.et_mobile_menu li a:hover { background: var(--charcoal) !important; color: var(--gold-lt) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */

.et_pb_button {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: var(--radius-pill) !important;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease !important;
}

.et_pb_button:after { display: none !important; }
.et_pb_button:hover { padding: 17px 38px !important; }

.lidell-btn-gold .et_pb_button {
  background: var(--gold) !important;
  color: var(--onyx) !important;
  box-shadow: var(--shadow-gold);
}

.lidell-btn-gold .et_pb_button:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201,150,47,0.46);
}

.lidell-btn-ghost .et_pb_button:hover {
  background: rgba(255,255,255,0.10) !important;
  transform: translateY(-2px);
}

.lidell-btn-dark .et_pb_button {
  background: var(--onyx) !important;
  color: var(--white) !important;
}

.lidell-btn-dark .et_pb_button:hover {
  background: var(--charcoal) !important;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION SURFACES
   ============================================================ */

.lidell-section-ivory { background: var(--ivory); }
.lidell-section-deep  { background: var(--ivory-deep); }
.lidell-section-onyx  { background: var(--onyx); }

.lidell-section-onyx h1,
.lidell-section-onyx h2,
.lidell-section-onyx h3,
.lidell-section-onyx h4 { color: var(--white); }
.lidell-section-onyx p  { color: rgba(255,255,255,0.72); }

.lidell-eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.lidell-section-onyx .lidell-eyebrow { color: var(--gold); }

/* Gold rule under a heading — the flyer's divider motif */
.lidell-rule {
  width: 62px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 0 22px;
}

.lidell-rule--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */

.lidell-hero { position: relative; overflow: hidden; }

.lidell-hero::before {
  /* Gold sweep in the top-left — lifted from the flyer's corner arc */
  content: '';
  position: absolute;
  top: -230px; left: -230px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,47,0.30) 0%, rgba(201,150,47,0) 68%);
  pointer-events: none;
}

.lidell-hero .et_pb_row { position: relative; z-index: 2; }

.lidell-hero h1 {
  color: var(--white) !important;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: -0.005em;
}

.lidell-hero h1 .gold { color: var(--gold); display: block; }

.lidell-hero p { color: rgba(255,255,255,0.78); }

.lidell-hero__note {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 15px; line-height: 1.6;
}

.lidell-hero__note i,
.lidell-hero__note svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 980px) { .lidell-hero h1 { font-size: 3rem; } }
@media (max-width: 600px) { .lidell-hero h1 { font-size: 2.3rem; } }

/* ============================================================
   TRUST STRIP — badges under the hero
   ============================================================ */

.lidell-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.lidell-trust__item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lidell-trust__item i,
.lidell-trust__item svg { width: 24px; height: 24px; color: var(--gold-dk); flex-shrink: 0; stroke-width: 2; }

.lidell-trust__item span {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink); line-height: 1.4;
}

/* ============================================================
   SERVICE CARDS — the six services from the flyer
   ============================================================ */

.lidell-svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .3s ease;
}

.lidell-svc::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s cubic-bezier(.4,0,.2,1);
}

.lidell-svc:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--gold-lt);
}

.lidell-svc:hover::before { transform: scaleX(1); }

.lidell-svc__ic {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--onyx);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background-color .3s ease;
}

.lidell-svc__ic i,
.lidell-svc__ic svg { width: 26px; height: 26px; color: var(--gold); stroke-width: 1.8; }
.lidell-svc:hover .lidell-svc__ic { background: var(--gold); }
.lidell-svc:hover .lidell-svc__ic i,
.lidell-svc:hover .lidell-svc__ic svg { color: var(--onyx); }

.lidell-svc h3 { margin-bottom: 10px; font-size: 1.25rem; }
.lidell-svc p  { font-size: 15px; margin: 0; }

.lidell-svc__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

/* ============================================================
   VISION / MISSION PANELS
   ============================================================ */

.lidell-vm {
  background: var(--onyx-soft);
  border: 1px solid var(--onyx-line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lidell-vm::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 170px; height: 170px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transform: rotate(18deg);
  opacity: .13;
}

.lidell-vm__ic {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: rgba(201,150,47,0.14);
  border: 1px solid rgba(201,150,47,0.34);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.lidell-vm__ic i,
.lidell-vm__ic svg { width: 23px; height: 23px; color: var(--gold); stroke-width: 1.9; }

.lidell-vm h3 { color: var(--white) !important; margin-bottom: 12px; font-size: 1.35rem; }
.lidell-vm p  { color: rgba(255,255,255,0.76); font-size: 15.5px; margin: 0; position: relative; z-index: 1; }

/* ============================================================
   FEATURE ITEM GRID — icon + title + text
   ============================================================ */

.lidell-fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 28px;
}

.lidell-fitem { display: flex; gap: 15px; align-items: flex-start; }

.lidell-fitem__ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}

.lidell-fitem__ic i,
.lidell-fitem__ic svg { width: 20px; height: 20px; color: var(--gold-dk); stroke-width: 1.9; }

.lidell-section-onyx .lidell-fitem__ic {
  background: rgba(255,255,255,0.06);
  border-color: var(--line-dark);
}

.lidell-section-onyx .lidell-fitem__ic i,
.lidell-section-onyx .lidell-fitem__ic svg { color: var(--gold); }

.lidell-fitem h4 { font-size: 1.02rem; margin: 0 0 5px; }
.lidell-fitem p  { font-size: 14.5px; margin: 0; line-height: 1.68; }

.lidell-section-onyx .lidell-fitem h4 { color: var(--white); }
.lidell-section-onyx .lidell-fitem p  { color: rgba(255,255,255,0.70); }

/* ============================================================
   PROCESS STEPS — numbered, gold connector
   ============================================================ */

.lidell-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.lidell-step { position: relative; padding-top: 8px; }

.lidell-step__n {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--onyx);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}

.lidell-step h4 { font-size: 1.1rem; margin: 0 0 8px; }
.lidell-step p  { font-size: 14.5px; margin: 0; }

/* ============================================================
   STAT BLOCKS
   ============================================================ */

.lidell-stat { text-align: center; padding: 8px 12px; }

.lidell-stat__n {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}

.lidell-stat__l {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ============================================================
   CONTACT DETAIL ROWS
   ============================================================ */

.lidell-contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.lidell-contact-row:last-child { border-bottom: none; }

.lidell-contact-row__ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--onyx);
  display: flex; align-items: center; justify-content: center;
}

.lidell-contact-row__ic i,
.lidell-contact-row__ic svg { width: 20px; height: 20px; color: var(--gold); stroke-width: 1.9; }

.lidell-contact-row__l {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 5px;
}

.lidell-contact-row__v { font-size: 16px; color: var(--ink); line-height: 1.55; font-weight: 600; }
.lidell-contact-row__v a { color: var(--ink); }
.lidell-contact-row__v a:hover { color: var(--gold-dk); }

.lidell-section-onyx .lidell-contact-row { border-color: var(--onyx-line); }
.lidell-section-onyx .lidell-contact-row__ic { background: rgba(201,150,47,0.14); border: 1px solid rgba(201,150,47,0.32); }
.lidell-section-onyx .lidell-contact-row__v,
.lidell-section-onyx .lidell-contact-row__v a { color: var(--white); }

/* ============================================================
   FORM WRAPPER — WPForms, Lidell styled
   ============================================================ */

.lidell-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 42px 42px 36px;
}

.lidell-form-wrap .wpforms-field-label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin-bottom: 8px !important;
}

.lidell-form-wrap .wpforms-field-description { font-size: 13px; color: var(--ink-faint); }

.lidell-form-wrap input[type=text],
.lidell-form-wrap input[type=email],
.lidell-form-wrap input[type=tel],
.lidell-form-wrap input[type=url],
.lidell-form-wrap input[type=date],
.lidell-form-wrap input[type=number],
.lidell-form-wrap select,
.lidell-form-wrap textarea {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  background: var(--ivory) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  padding: 13px 15px !important;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.lidell-form-wrap input:focus,
.lidell-form-wrap select:focus,
.lidell-form-wrap textarea:focus {
  background: var(--white) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,150,47,0.20) !important;
  outline: none !important;
}

.lidell-form-wrap .wpforms-submit {
  font-family: var(--font-body) !important;
  background: var(--gold) !important;
  color: var(--onyx) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 16px 40px !important;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.lidell-form-wrap .wpforms-submit:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201,150,47,0.46);
}

.lidell-form-wrap .wpforms-confirmation-container-full {
  background: var(--ivory) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  color: var(--ink) !important;
}

@media (max-width: 600px) { .lidell-form-wrap { padding: 26px 22px 24px; } }

/* ============================================================
   CTA BAND — the flyer's gold booking bar
   ============================================================ */

.lidell-cta {
  background: linear-gradient(115deg, var(--gold-dk) 0%, var(--gold) 52%, var(--gold-lt) 100%);
  position: relative;
  overflow: hidden;
}

.lidell-cta h2 { color: var(--onyx) !important; }
.lidell-cta p  { color: rgba(11,11,11,0.72); }

.lidell-cta__phone {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--onyx);
  letter-spacing: .04em;
  line-height: 1;
  display: inline-block;
}

.lidell-cta__phone:hover { color: var(--onyx); opacity: .78; }

@media (max-width: 600px) { .lidell-cta__phone { font-size: 2.1rem; } }

/* ============================================================
   GENERIC PAGE HERO (interior pages)
   ============================================================ */

.lidell-page-hero {
  background: var(--onyx);
  position: relative;
  overflow: hidden;
}

.lidell-page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,47,0.26) 0%, rgba(201,150,47,0) 70%);
}

.lidell-page-hero h1 { color: var(--white) !important; font-size: 3.2rem; }
.lidell-page-hero p  { color: rgba(255,255,255,0.75); }

@media (max-width: 980px) { .lidell-page-hero h1 { font-size: 2.2rem; } }

.lidell-crumb {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.lidell-crumb a { color: var(--gold); }
.lidell-crumb span { margin: 0 8px; opacity: .5; }

/* ============================================================
   FAQ — Divi toggles, Lidell styled
   ============================================================ */

.lidell-faq .et_pb_toggle {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  padding: 4px 26px !important;
}

.lidell-faq .et_pb_toggle_open { border-color: var(--gold) !important; box-shadow: var(--shadow-sm); }

.lidell-faq .et_pb_toggle_title {
  color: var(--onyx) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  padding: 18px 34px 18px 0 !important;
}

.lidell-faq .et_pb_toggle_title:before { color: var(--gold-dk) !important; font-size: 22px; right: 0; }
.lidell-faq .et_pb_toggle_content { color: var(--ink-soft); font-size: 15px; line-height: 1.75; padding-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */

#main-footer { background: var(--onyx); }
#footer-widgets { padding: 64px 0 28px; }

#footer-widgets .footer-widget h4,
#footer-widgets .footer-widget h4 a {
  font-family: var(--font-display) !important;
  color: var(--white) !important;
  font-size: 17px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#footer-widgets .footer-widget,
#footer-widgets .footer-widget li,
#footer-widgets .footer-widget p {
  color: rgba(255,255,255,0.60);
  font-size: 14.5px;
  line-height: 1.85;
}

#footer-widgets .footer-widget li a { color: rgba(255,255,255,0.60); transition: color .2s ease, padding-left .2s ease; }
#footer-widgets .footer-widget li a:hover { color: var(--gold); padding-left: 5px; }
#footer-widgets .footer-widget li::before { display: none; }

#footer-bottom { background: rgba(0,0,0,0.42); padding: 20px 0; }
#footer-info, #footer-info a { color: rgba(255,255,255,0.46); font-size: 13.5px; }
#footer-info a:hover { color: var(--gold); }

/* ============================================================
   LUCIDE ICONS
   ============================================================ */

/* Lucide REPLACES <i data-lucide> with <svg class="lucide"> at runtime,
   so any rule written only against `i` stops matching once the script
   runs. Every icon rule in this file therefore lists both selectors.
   The svg draws with stroke="currentColor", so `color` is what tints it. */

i[data-lucide],
svg.lucide {
  display: inline-block;
  width: 20px; height: 20px;
  stroke-width: 1.9;
  vertical-align: middle;
}

/* Fallback tint for any icon with no component rule of its own, so a
   stray icon can never inherit near-black body ink and vanish on onyx.
   :where() keeps this at zero specificity — every rule above beats it,
   including the --gold-dk icons that need the darker tone on ivory. */
:where(i[data-lucide], svg.lucide) { color: var(--gold); }

/* ============================================================
   SOCIAL BUTTONS
   Lucide removed brand icons in v1.x, so Facebook and Instagram
   are inlined as SVG using Lucide's own original glyph paths —
   same 24px grid and stroke weight, so they sit correctly
   alongside the rest of the icon set.
   ============================================================ */

.lidell-socials { display: flex; gap: 10px; }

.lidell-social {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--onyx);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .22s ease, transform .22s ease;
}

.lidell-social svg {
  width: 20px; height: 20px;
  color: var(--gold);
  stroke-width: 1.9;
  transition: color .22s ease;
}

.lidell-social:hover { background: var(--gold); transform: translateY(-2px); }
.lidell-social:hover svg { color: var(--onyx); }

.lidell-section-onyx .lidell-social,
.lidell-page-hero .lidell-social {
  background: rgba(201,150,47,0.14);
  border: 1px solid rgba(201,150,47,0.32);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .lidell-form-wrap { padding: 32px 26px 28px; }
  .lidell-vm { padding: 30px 26px; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .lidell-stat__n { font-size: 2.3rem; }
  .lidell-svc { padding: 28px 24px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--onyx);
  padding: 12px 22px; z-index: 100000;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 800;
}

.skip-link:focus { left: 0; color: var(--onyx); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.et_pb_button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .lidell-svc:hover { transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  #main-header, #main-footer, .lidell-cta, .et_pb_button, .lidell-float-wa { display: none !important; }
  body { color: #000; background: #fff; }
}

@font-face { font-display: swap; }
