
/* WordPress reset */
body { margin: 0 !important; padding: 0 !important; }
.wp-site-blocks, .entry-content, .wp-block-post-content, 
.wp-block-group, .wp-block-template-part,
.site, .site-content, .site-main, #page, #content, #primary, #main,
.content-area, .page, article, .entry { 
    padding: 0 !important; 
    margin: 0 !important; 
}

/*
Theme Name: Mazal Law
Theme URI: https://mazallaw.com
Author: Mazal Law APC
Description: Custom theme for Mazal Law APC
Version: 1.0
*/


    :root {
      --black: #0a0a0a;
      --gold: #D4A017;
      --canary: #F5C842;
      --brown: #8B5E3C;
      --slate: #6B7280;
      --slate-light: #9CA3AF;
      --off-white: #F5F0E8;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--off-white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 60px;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212,160,23,0.2);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 56px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--slate-light);
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--canary); }

    .nav-cta {
      background: var(--gold);
      color: var(--black) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 600 !important;
      letter-spacing: 1.5px !important;
      transition: background 0.3s !important;
    }

    .nav-cta:hover { background: var(--canary) !important; color: var(--black) !important; }

    /* ── HERO ── */
    #hero {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 120px 40px 60px;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139,94,60,0.08) 0%, transparent 55%),
        var(--black);
    }

    .hero-inner { max-width: 860px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .hero-inner > img { height: 220px !important; width: auto !important; max-width: none !important; }

    .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(212,160,23,0.4);
    }

    .hero-logo {
      width: clamp(180px, 25vw, 320px);
      margin: 0 auto 36px;
      display: block;
      animation: fadeUp 0.9s ease both;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 7vw, 88px);
      font-weight: 600;
      line-height: 1.05;
      color: var(--white);
      animation: fadeUp 1s 0.2s ease both;
      margin-top: 0;
      margin-bottom: 0;
    }

    .hero h1 span { color: var(--canary); }

    .hero-sub {
      margin: 28px auto 44px;
      max-width: 560px;
      font-size: 15px;
      color: var(--slate-light);
      letter-spacing: 0.5px;
      animation: fadeUp 1s 0.4s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s 0.6s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 16px 36px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--canary); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--off-white);
      padding: 15px 36px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
      display: inline-block;
    }

    .btn-outline:hover { border-color: var(--canary); color: var(--canary); }

    .hero-divider {
      display: none;
    }

    /* ── SECTION SHARED ── */
    section { padding: 100px 60px; }

    .section-label {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 600;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .section-body {
      font-size: 15px;
      color: var(--slate-light);
      max-width: 680px;
      line-height: 1.85;
    }

    /* ── STATS BAR ── */
    #stats {
      padding: 0;
      border-top: 1px solid rgba(212,160,23,0.15);
      border-bottom: 1px solid rgba(212,160,23,0.15);
      background: rgba(212,160,23,0.04);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 900px;
      margin: 0 auto;
    }

    .stat-item {
      padding: 48px 40px;
      text-align: center;
      border-right: 1px solid rgba(212,160,23,0.15);
    }

    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--canary);
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--slate);
      margin-top: 10px;
    }

    /* ── ABOUT ── */
    #about {
      background:
        radial-gradient(ellipse at 90% 50%, rgba(139,94,60,0.07) 0%, transparent 60%),
        var(--black);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: center;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .feature-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(212,160,23,0.1);
      border: 1px solid rgba(212,160,23,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-top: 3px;
    }

    .feature-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
    }

    .feature-text p { font-size: 14px; color: var(--slate-light); }

    .about-right {
      border-left: 1px solid rgba(212,160,23,0.2);
      padding-left: 80px;
    }

    .attorney-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(212,160,23,0.15);
      padding: 40px;
    }

    .attorney-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
    }

    .attorney-title {
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .attorney-bio {
      font-size: 14px;
      color: var(--slate-light);
      line-height: 1.85;
    }

    /* ── QUALIFY ── */
    #qualify {
      background: rgba(212,160,23,0.04);
      border-top: 1px solid rgba(212,160,23,0.1);
      border-bottom: 1px solid rgba(212,160,23,0.1);
    }

    .qualify-inner { max-width: 1100px; margin: 0 auto; }

    .qualify-header { text-align: center; margin-bottom: 64px; }

    .qualify-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(212,160,23,0.1);
    }

    .qualify-card {
      background: var(--black);
      padding: 50px 38px;
      position: relative;
    }

    .qualify-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 72px;
      font-weight: 700;
      color: rgba(212,160,23,0.12);
      line-height: 1;
      position: absolute;
      top: 20px;
      right: 28px;
    }

    .qualify-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--canary);
      margin-bottom: 8px;
    }

    .qualify-card p { font-size: 14px; color: var(--slate-light); line-height: 1.8; }

    /* ── MANUFACTURERS ── */
    #manufacturers { max-width: 1200px; margin: 0 auto; padding: 100px 60px; }

    .mfr-header { text-align: center; margin-bottom: 60px; }

    .mfr-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 2px;
      background: rgba(212,160,23,0.1);
    }

    .mfr-card {
      background: var(--black);
      padding: 32px 20px;
      text-align: center;
      cursor: pointer;
      transition: background 0.25s;
      border: none;
      color: inherit;
      font-family: inherit;
      text-decoration: none;
      display: block;
    }

    .mfr-card:hover { background: rgba(212,160,23,0.07); }

    .mfr-card:hover .mfr-name { color: var(--canary); }

    .mfr-icon { font-size: 28px; margin-bottom: 10px; }

    .mfr-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.5px;
      transition: color 0.25s;
    }

    /* Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .modal-overlay.active { display: flex; }

    .modal {
      background: #111;
      border: 1px solid rgba(212,160,23,0.25);
      max-width: 680px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      padding: 52px;
      position: relative;
      animation: fadeUp 0.3s ease;
    }

    .modal-close {
      position: absolute;
      top: 20px; right: 24px;
      background: none;
      border: none;
      color: var(--slate);
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--canary); }

    .modal h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }

    .modal-subtitle {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .modal-section { margin-bottom: 28px; }

    .modal-section h4 {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--slate-light);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .modal-section ul { list-style: none; }

    .modal-section ul li {
      padding: 7px 0;
      font-size: 14px;
      color: var(--slate-light);
      padding-left: 16px;
      position: relative;
    }

    .modal-section ul li::before {
      content: '—';
      color: var(--gold);
      position: absolute;
      left: 0;
      font-size: 12px;
    }

    .modal-cta {
      margin-top: 32px;
      display: block;
      width: 100%;
      text-align: center;
    }

    /* ── FAQ ── */
    #faq { max-width: 800px; margin: 0 auto; padding: 100px 60px; }

    .faq-header { text-align: center; margin-bottom: 56px; }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      text-align: left;
      padding: 24px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--canary); }

    .faq-icon {
      color: var(--gold);
      font-size: 22px;
      line-height: 1;
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      font-size: 14px;
      color: var(--slate-light);
      line-height: 1.85;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }

    .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

    /* ── CONTACT ── */
    #contact {
      background:
        radial-gradient(ellipse at 30% 60%, rgba(212,160,23,0.06) 0%, transparent 60%),
        var(--black);
      border-top: 1px solid rgba(212,160,23,0.1);
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 3vw, 50px);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.15;
    }

    .contact-info p { font-size: 15px; color: var(--slate-light); margin-bottom: 40px; }

    .contact-details { display: flex; flex-direction: column; gap: 18px; }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      color: var(--slate-light);
    }

    .contact-detail strong { color: var(--white); font-weight: 500; }

    .contact-detail-icon {
      width: 38px;
      height: 38px;
      background: rgba(212,160,23,0.08);
      border: 1px solid rgba(212,160,23,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-group { display: flex; flex-direction: column; gap: 8px; }

    .form-group label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--slate);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      padding: 14px 18px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--slate); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }

    .form-group select option { background: #111; }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-disclaimer {
      font-size: 11px;
      color: var(--slate);
      line-height: 1.6;
      margin-top: 0;
      margin-bottom: 0;
    }

    .form-success {
      display: none;
      padding: 20px;
      background: rgba(212,160,23,0.1);
      border: 1px solid rgba(212,160,23,0.3);
      text-align: center;
      color: var(--canary);
      font-size: 14px;
    }

    /* ── FOOTER ── */
    footer {
      padding: 48px 60px 32px;
      border-top: 1px solid rgba(212,160,23,0.15);
      background: #050505;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .footer-logo img { height: 80px; opacity: 0.9; width: auto; }

    .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

    .footer-links a {
      color: var(--slate);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--canary); }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 24px;
    }

    .footer-disclaimer {
      font-size: 11px;
      color: var(--slate);
      line-height: 1.7;
      max-width: 900px;
    }

    /* ── SMS CHECKBOX ── */
    .sms-consent-box {
      background: rgba(212,160,23,0.05);
      border: 1px solid rgba(212,160,23,0.2);
      padding: 16px 18px;
      border-radius: 2px;
      margin-top: 0;
      margin-bottom: 0;
    }

    .sms-consent-label {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      cursor: pointer;
      font-size: 13px;
      color: var(--slate-light);
      line-height: 1.6;
    }

    .sms-consent-label input[type="checkbox"] {
      width: 17px;
      height: 17px;
      min-width: 17px;
      margin-top: 2px;
      accent-color: var(--gold);
      cursor: pointer;
    }

    .sms-types {
      font-size: 11px;
      color: var(--slate);
      margin-top: 8px;
      padding-left: 29px;
      line-height: 1.6;
    }

    /* ── PRIVACY POLICY MODAL ── */
    .privacy-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 300;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }

    .privacy-overlay.active { display: flex; }

    .privacy-modal {
      background: #111;
      border: 1px solid rgba(212,160,23,0.2);
      max-width: 760px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      padding: 52px;
      position: relative;
      animation: fadeUp 0.3s ease;
    }

    .privacy-modal h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
    }

    .privacy-modal .pp-date {
      font-size: 11px;
      color: var(--slate);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .privacy-modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--canary);
      margin: 28px 0 10px;
    }

    .privacy-modal p, .privacy-modal li {
      font-size: 13.5px;
      color: var(--slate-light);
      line-height: 1.85;
      margin-bottom: 8px;
    }

    .privacy-modal ul { padding-left: 20px; }

    .privacy-modal .pp-highlight {
      background: rgba(212,160,23,0.08);
      border-left: 3px solid var(--gold);
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 13px;
      color: var(--slate-light);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */



    .hamburger {
      display: none;
      border: 2px solid rgba(212,160,23,0.7);
      border-radius: 6px;
      color: #F5C842;
      font-size: 24px;
      cursor: pointer;
      padding: 6px 14px;
      line-height: 1;
      margin-left: auto;
      user-select: none;
      -webkit-user-select: none;
    }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; position: relative; flex-wrap: wrap; }
      .nav-links { display: none; width: 100%; }
      .hamburger { display: block; }



      section { padding: 72px 28px; }
      #manufacturers { padding: 72px 28px; }
      #faq { padding: 72px 28px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(212,160,23,0.2); padding-top: 40px; }
      .qualify-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 52px; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(212,160,23,0.15); }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; }
    }
  