.elementor-4211 .elementor-element.elementor-element-54c4c63{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a04378c */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --crimson:   #ce0236;
    --crimson-d: #a8011d;
    --gold:      #e3b576;
    --gold-d:    #c9953a;
    --teal:      #027373;
    --teal-d:    #015555;
    --teal-l:    #e0f2f2;
    --white:     #ffffff;
    --off:       #faf8f5;
    --text:      #1c1c1c;
    --muted:     #5a5a5a;
    --border:    #e2ddd8;
  }

/* ── HERO ── */
  .hero {
    background: var(--text);
    position: relative;
    overflow: hidden;
    padding: 80px 40px 72px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: var(--teal);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.18;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 50%, var(--teal) 100%);
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top:50px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,181,118,0.15);
    border: 1px solid rgba(227,181,118,0.4);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--crimson);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--crimson-d); }
  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-call:hover { border-color: var(--gold); color: var(--gold); }
  .btn-call svg, .btn-primary svg { width: 15px; height: 15px; }

  /* ── HERO FORM CARD ── */
  .hero-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .hero-card-header {
    background: var(--teal);
    padding: 22px 28px;
    text-align: center;
  }
  .hero-card-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .hero-card-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 300;
  }
  .hero-card-body {
    padding: 28px;
  }
  
  /* ── TRUST BAR ── */
  .trust-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 64px);
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
  }
  .trust-check {
    width: 18px; height: 18px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .trust-check svg { width: 9px; height: 9px; }

  /* ── MAIN ── */
  .main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 80px;
  }

  /* ── SERVICES ── */
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-body {
    color: var(--muted);
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.75;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 56px;
  }
  .service-card {
    background: white;
    padding: 28px 22px;
    position: relative;
    transition: background 0.2s;
  }
  .service-card:hover { background: var(--off); }
  .service-card-bar {
    width: 32px; height: 3px;
    margin-bottom: 16px;
    border-radius: 2px;
  }
  .bar-crimson { background: var(--crimson); }
  .bar-gold    { background: var(--gold-d); }
  .bar-teal    { background: var(--teal); }
  .bar-dark    { background: var(--text); }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── TWO COL ── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
    align-items: start;
  }

  /* ── BENEFITS ── */
  .benefit {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .benefit-num {
    width: 28px; height: 28px;
    background: var(--crimson);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'DM Sans', sans-serif;
  }
  .benefit-text strong {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
    font-size: 0.95rem;
  }
  .benefit-text span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
  }

  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .stat {
    background: white;
    padding: 28px 20px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ── SUSAN ── */
  .susan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .susan-top {
    background: var(--text);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .susan-avatar {
    width: 64px; height: 64px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
  }
  .susan-name {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .susan-title {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .susan-body {
    padding: 24px 28px;
  }
  .susan-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .susan-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }
  .susan-contact a:hover { color: var(--teal-d); }
  .susan-contact svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* ── TESTIMONIAL ── */
  .testimonial {
    background: var(--teal);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
  }
  .testimonial::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    color: rgba(255,255,255,0.1);
    line-height: 1;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
  }
  .testimonial-stars span {
    color: var(--gold);
    font-size: 1rem;
  }
  .testimonial-cite {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ── CC FORM SECTION ── */
  .form-section {
    background: var(--text);
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 50%, var(--teal) 100%);
  }
  .form-section-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .form-section .section-eyebrow { color: var(--gold); }
  .form-section .section-title { color: white; margin-bottom: 12px; }
  .form-section .section-body { color: rgba(255,255,255,0.6); margin: 0 auto 36px; }
  .cc-form-wrap {
    background: white;
    border-radius: 4px;
    padding: 32px;
    text-align: left;
  }
  .cc-form-wrap .ctct-inline-form { width: 100% !important; }

  /* Contact chips */
  .contact-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .chip:hover { background: rgba(255,255,255,0.15); }
  .chip svg { width: 14px; height: 14px; flex-shrink: 0; }
  .chip-phone { border-color: rgba(206,2,54,0.5); }
  .chip-email { border-color: rgba(227,181,118,0.4); color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: #111;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 28px 40px;
    font-size: 0.78rem;
    line-height: 1.8;
  }
  footer a { color: var(--gold); text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    nav { padding: 0 20px; }
    .nav-email { display: none; }
    .hero { padding: 48px 20px; }
    .trust-bar { gap: 14px; padding: 14px 20px; }
    .main { padding: 40px 20px 60px; }
    .form-section { padding: 48px 20px; }
    .trust-bar{
      justify-content: flex-start;
  }
  .cc-form-wrap, .hero-card-body{
      padding: 0px !important;
  }
  .hero-inner{
      padding-top: 100px;
  }
  }
  
  @media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.9rem; }
  }
  .container.full-width {
    max-width: 100vw !important;
}
.page-wrap.padding-default {
    padding: 0px 0px;
}
.col-md-12 {
    padding: 0;
}
div.ctct-form-embed form.ctct-form-custom input.ctct-form-element:focus {
    outline: 1px solid #172b2b !important;
}
div.ctct-form-embed form.ctct-form-custom input.ctct-form-element{
    height: 35px !important;
    padding: 0px 10px !important;
}
div.ctct-form-embed form.ctct-form-custom label.ctct-form-label {
    margin-bottom: 5px !important;
    font-size: 18px !important;
}
.elementor-element.elementor-element-0a7897b.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded{
    display: none;
}
a.btn-primary {
    color: white;
}
a.btn-call {
    color: white;
}
a.btn-primary:hover {
    color: white;
}
a.btn-call:hover {
    color: white;
}
a.chip.chip-phone{
    background: #ce0236 !important;
    color: white;
}
a.chip.chip-email{
    background: #172b2b !important;
    color: white;
    border-color:#172b2b ;
}/* End custom CSS */