/* ===================== LIGHT MODE TOKENS ===================== */
:root, [data-theme="light"] {
  --gold:         #D4AF37;
  --gold-dark:    #B8860B;
  --gold-light:   #FFF8E7;
  --black:        #0D0D0D;
  --black-mid:    #1A1A1A;
  --black-light:  #2A2A2A;
  --white:        #FFFFFF;
  --off-white:    #FDFBF7;
  --gray-light:   #EEECEA;
  --gray-mid:     #9A9590;
  --text-body:    #1A1A1A;
  --text-muted:   #5A5A5A;
  --border:       #D0CEC8;
  --card-bg:      #FFFFFF;
  --section-alt:  #FDFBF7;
  --input-bg:     rgba(255,255,255,0.08);
  --input-border: rgba(255,255,255,0.15);
  --input-color:  #FFFFFF;
  --placeholder:  rgba(255,255,255,0.3);
  --form-label:   rgba(255,255,255,0.55);
  --top-bar-bg:   #D4AF37;
  --top-bar-text: #0D0D0D;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.12);
}

/* ===================== DARK MODE TOKENS ===================== */
[data-theme="dark"] {
  --gold:         #D4AF37;
  --gold-dark:    #B8860B;
  --gold-light:   #1A1508;
  --black:        #0D0D0D;
  --black-mid:    #1A1A1A;
  --black-light:  #2A2A2A;
  --white:        #E8E8E8;
  --off-white:    #111111;
  --gray-light:   #1A1A1A;
  --gray-mid:     #4A4A4A;
  --text-body:    #CCCCCC;
  --text-muted:   #7A7A7A;
  --border:       #2A2A2A;
  --card-bg:      #0D0D0D;
  --section-alt:  #111111;
  --input-bg:     rgba(255,255,255,0.07);
  --input-border: rgba(255,255,255,0.12);
  --input-color:  #E8E8E8;
  --placeholder:  rgba(255,255,255,0.25);
  --form-label:   rgba(255,255,255,0.5);
  --top-bar-bg:   #0D0D0D;
  --top-bar-text: #D4AF37;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.6;
  padding-bottom: 80px;
  transition: background 0.3s, color 0.3s;
}

/* ===================== THEME TOGGLE ===================== */
.theme-toggle {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }
.theme-toggle svg { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sun, .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: block; }
[data-theme="light"] .toggle-label::after { content: 'Dark Mode'; }
[data-theme="dark"]  .toggle-label::after { content: 'Light Mode'; }

/* TOP ALERT BAR */
.top-bar {
  background: var(--top-bar-bg);
  color: var(--top-bar-text);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.top-bar a { color: var(--top-bar-text); text-decoration: none; font-weight: 800; }
[data-theme="dark"] .top-bar a { color: var(--gold); }

/* NAV */
nav {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,0.2);
  gap: 12px;
  flex-wrap: wrap;
  transition: background 0.3s;
}
[data-theme="dark"] nav { background: var(--black); border-bottom: 2px solid var(--gold); }

.logo-block img { height: 52px; width: auto; display: block; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--black-mid); color: #fff;
  text-decoration: none; padding: 9px 16px; border-radius: 4px;
  font-weight: 700; font-size: 15px; transition: background 0.15s; white-space: nowrap;
}
.nav-phone:hover { background: var(--black-light); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-work-link {
  color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px; border: 2px solid var(--gold);
  transition: background 0.15s; white-space: nowrap;
}
.nav-work-link:hover { background: rgba(255,255,255,0.1); }
.nav-free-badge {
  background: #fff; color: var(--black);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px; border: 2px solid #fff; white-space: nowrap;
}

/* HERO */
.hero {
  background: var(--black);
  position: relative; overflow: hidden;
  padding: 68px 24px 76px;
  transition: background 0.3s;
}
[data-theme="dark"] .hero { background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%); border-bottom: 3px solid var(--gold); }
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--gold); opacity: 0.18; pointer-events: none;
}
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block; background: var(--black-mid); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 76px); font-weight: 900; color: #fff;
  line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 22px;
}
.hero h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub { font-size: clamp(17px, 2.5vw, 21px); color: rgba(255,255,255,0.9); max-width: 580px; margin-bottom: 36px; font-weight: 400; line-height: 1.55; }
.hero-sub strong { color: #fff; font-weight: 700; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black-mid); color: #fff; text-decoration: none;
  font-size: 18px; font-weight: 700; font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 4px;
  transition: background 0.15s, transform 0.1s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--black-light); transform: translateY(-1px); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 600; padding: 13px 20px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.15s, background 0.15s; cursor: pointer;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-guarantee { display: flex; flex-wrap: wrap; gap: 16px 28px; }
.hero-badge { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-badge svg { width: 15px; height: 15px; color: var(--gold); }

/* TRUST BAR */
.trust-bar { background: var(--black); border-bottom: 4px solid var(--gold); padding: 18px 24px; transition: background 0.3s; }
[data-theme="dark"] .trust-bar { background: #080808; }
.trust-bar-inner { max-width: 980px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; white-space: nowrap; }
.trust-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* SECTIONS */
section { padding: 64px 24px; }
.section-inner { max-width: 840px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 4.5vw, 48px); font-weight: 800; text-transform: uppercase; color: var(--black); line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.01em; transition: color 0.3s; }
[data-theme="dark"] .section-title { color: var(--white); }

/* PAIN */
.pain-section { background: var(--section-alt); transition: background 0.3s; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 24px 0; }
.pain-box {
  background: var(--card-bg); border-left: 5px solid var(--gold);
  border-radius: 0 6px 6px 0; padding: 24px 22px; box-shadow: var(--shadow-sm);
  transition: background 0.3s;
}
.pain-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.pain-box p  { color: var(--text-body); line-height: 1.65; font-size: 15px; }

/* SERVICES */
.services-section { background: var(--card-bg); transition: background 0.3s; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 32px; }
.service-card {
  background: var(--section-alt); border: 1.5px solid var(--border); border-radius: 6px;
  padding: 24px 20px; transition: border-color 0.15s, box-shadow 0.15s, background 0.3s;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-icon { width: 44px; height: 44px; background: var(--gold-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background 0.3s; }
.service-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 8px; transition: color 0.3s; }
[data-theme="dark"] .service-card h3 { color: var(--white); }
.service-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }
.service-list { list-style: none; margin-top: 10px; }
.service-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-body); padding: 4px 0; }
.service-list li::before { content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* SEO / TESTIMONIALS */
.testimonials-section { background: var(--black); transition: background 0.3s; }
[data-theme="dark"] .testimonials-section { background: #080808; }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 32px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 24px 20px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.65; margin-bottom: 16px; font-style: italic; }

/* AREAS */
.areas-section { background: var(--section-alt); transition: background 0.3s; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 12px; margin-top: 26px; }
.area-chip {
  background: var(--card-bg); border: 1.5px solid var(--border); border-radius: 4px;
  padding: 11px 14px; display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--black);
  transition: border-color 0.15s, background 0.15s, color 0.3s;
}
[data-theme="dark"] .area-chip { color: var(--white); }
.area-chip:hover { border-color: var(--gold); background: var(--gold-light); }
.area-chip svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

/* FORM */
.form-section { background: var(--card-bg); transition: background 0.3s; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-left p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.why-list { list-style: none; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 15px; color: var(--text-body); border-bottom: 1px solid var(--gray-light); }
.why-list li:last-child { border-bottom: none; }
.why-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-right { background: var(--black); border-radius: 8px; padding: 32px 28px; transition: background 0.3s; }
[data-theme="dark"] .form-right { background: #080808; border: 1px solid var(--border); }
.form-right h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.form-right > p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--form-label); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--input-bg); border: 1.5px solid var(--input-border);
  border-radius: 4px; padding: 11px 14px; color: var(--input-color);
  font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; transition: border-color 0.15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--placeholder); }
.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--black); color: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-submit { width: 100%; background: var(--gold); color: var(--black); border: none; border-radius: 4px; padding: 15px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: background 0.15s; margin-top: 6px; }
.form-submit:hover { background: var(--gold-dark); }
.form-submit:disabled { background: var(--gray-mid); cursor: not-allowed; }
.form-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; }

.success-msg { display: none; background: rgba(212,175,55,0.15); border: 1.5px solid var(--gold); border-radius: 6px; padding: 18px 20px; margin-bottom: 16px; color: #fff; font-size: 15px; line-height: 1.6; text-align: center; }
.success-msg strong { color: var(--gold); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; margin-bottom: 4px; }

/* CLOSING CTA */
.closing-cta, .cta-section { background: var(--black); padding: 72px 24px; text-align: center; position: relative; overflow: hidden; transition: background 0.3s; }
[data-theme="dark"] .closing-cta, [data-theme="dark"] .cta-section { background: var(--black); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.closing-cta::before, .cta-section::before { content: ''; position: absolute; right: -80px; bottom: -80px; width: 320px; height: 320px; border-radius: 50%; background: var(--gold); opacity: 0.15; pointer-events: none; }
.closing-cta h2, .cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(34px, 6vw, 62px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.0; margin-bottom: 14px; position: relative; }
.closing-cta p, .cta-section p { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 32px; line-height: 1.55; position: relative; }
.cta-phone-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
.btn-cta-call { display: inline-flex; align-items: center; gap: 10px; background: var(--black-mid); color: #fff; text-decoration: none; font-size: 18px; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; padding: 15px 28px; border-radius: 4px; transition: background 0.15s, transform 0.1s; }
.btn-cta-call:hover { background: var(--black-light); transform: translateY(-1px); }
.btn-cta-call svg { width: 20px; height: 20px; }
.urgency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.2); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; position: relative; }
.pulse { display: inline-block; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* MAILING LIST */
.mailing-section { background: var(--section-alt); padding: 64px 24px; transition: background 0.3s; }
.mailing-inner { max-width: 860px; margin: 0 auto; }
.mailing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
@media (max-width: 680px) { .mailing-header { grid-template-columns: 1fr; gap: 20px; } }
.mailing-header-left p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.mailing-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mailing-perks li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-body); }
.perk-icon { width: 32px; height: 32px; border-radius: 4px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s; }
.perk-icon svg { width: 16px; height: 16px; color: var(--gold-dark); }
.perk-text strong { display: block; font-weight: 700; color: var(--black); font-size: 13.5px; transition: color 0.3s; }
[data-theme="dark"] .perk-text strong { color: var(--white); }
.perk-text span { font-size: 13px; color: var(--text-muted); }

.mailing-form-card { background: var(--card-bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 36px 32px; box-shadow: var(--shadow-sm); transition: background 0.3s, border-color 0.3s; }
.mailing-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 6px; transition: color 0.3s; }
[data-theme="dark"] .mailing-form-card h3 { color: var(--white); }
.mailing-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.ml-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 480px) { .ml-field-row { grid-template-columns: 1fr; } }
.ml-field { margin-bottom: 12px; }
.ml-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.ml-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--text-body); background: var(--card-bg); outline: none; transition: border-color 0.15s, box-shadow 0.15s, background 0.3s, color 0.3s; }
.ml-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.ml-input::placeholder { color: var(--gray-mid); }
.ml-select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--text-muted); background: var(--card-bg); outline: none; transition: border-color 0.15s, background 0.3s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ml-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.ml-interests { margin: 18px 0; padding: 16px; background: var(--section-alt); border-radius: 6px; border: 1px solid var(--gray-light); transition: background 0.3s; }
.ml-interests-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.ml-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 480px) { .ml-checkboxes { grid-template-columns: 1fr; } }
.ml-check-label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-body); cursor: pointer; padding: 6px 8px; border-radius: 4px; transition: background 0.1s; font-weight: 400; }
.ml-check-label:hover { background: var(--card-bg); }
.ml-check-label input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }
.ml-consent { display: flex; align-items: flex-start; gap: 9px; margin: 14px 0 20px; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.ml-consent input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.ml-submit { width: 100%; background: var(--gold); color: var(--black); border: none; border-radius: 4px; padding: 15px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: background 0.15s, transform 0.1s; }
.ml-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.ml-submit:disabled { background: var(--gray-mid); cursor: not-allowed; transform: none; }
.ml-fine-print { text-align: center; font-size: 11px; color: var(--gray-mid); margin-top: 10px; line-height: 1.6; }
.ml-success { display: none; background: #e6f5ea; border: 1.5px solid #4CAF50; border-radius: 6px; padding: 18px 20px; margin-bottom: 16px; color: #1a5c2a; font-size: 15px; line-height: 1.6; text-align: center; }
[data-theme="dark"] .ml-success { background: #0a2a10; color: #7FD99F; border-color: #2a7a3a; }
.ml-success strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; margin-bottom: 4px; }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; color: rgba(255,255,255,0.45); font-size: 13px; text-align: center; line-height: 1.9; transition: background 0.3s; }
[data-theme="dark"] footer { background: #080808; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-name { color: #fff; font-weight: 700; font-size: 16px; }
.footer-gold { color: var(--gold); font-weight: 600; }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--black); padding: 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.sticky-cta-inner { display: grid; grid-template-columns: 1fr 1fr; }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 14px 10px; }
.sticky-cta a:first-child { background: var(--black-mid); border-right: 1px solid rgba(255,255,255,0.15); }
.sticky-cta a:last-child  { background: var(--black-light); }
.sticky-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--black);
  position: relative; overflow: hidden;
  padding: 56px 24px 64px;
  transition: background 0.3s;
}
[data-theme="dark"] .page-hero { background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%); border-bottom: 3px solid var(--gold); }
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--gold); opacity: 0.15; pointer-events: none;
}
.page-hero-inner { max-width: 840px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block; background: var(--black); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 6.5vw, 70px); font-weight: 900; color: #fff;
  line-height: 0.96; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; display: block; }
.page-hero p { font-size: clamp(16px, 2.2vw, 19px); color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 32px; line-height: 1.55; }
.page-hero p strong { color: #fff; }

/* BREADCRUMB */
.breadcrumb { background: var(--card-bg); border-bottom: 1px solid var(--border); padding: 12px 24px; transition: background 0.3s; }
.breadcrumb-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--black); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-mid); }

/* PORTFOLIO */
.portfolio-section { padding: 52px 24px; background: var(--off-white); transition: background 0.3s; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.project-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.3s, transform 0.2s;
  cursor: default;
}
.project-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.project-card.hidden { display: none; }

.project-image {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--black);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-image .img-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px; z-index: 2;
}
.project-image .category-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}

.project-body { padding: 20px 18px 22px; }
.project-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); margin-bottom: 8px;
}
.project-location svg { width: 12px; height: 12px; flex-shrink: 0; }
.project-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px; font-weight: 800; text-transform: uppercase;
  color: var(--black); margin-bottom: 8px; line-height: 1.1;
  transition: color 0.3s;
}
[data-theme="dark"] .project-card h3 { color: var(--white); }
.project-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold-light); color: var(--black-mid);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 3px;
  transition: background 0.3s;
}

/* PROJECT LINK BUTTON */
.project-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--black); color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px; margin-top: 6px;
  transition: background 0.15s; cursor: pointer; border: none; font-family: 'Barlow', sans-serif;
}
.project-link:hover { background: var(--black-mid); }
.project-link svg { width: 14px; height: 14px; }

/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(6px);
  justify-content: center; align-items: center; padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: var(--card-bg); border-radius: 10px;
  max-width: 860px; width: 100%; padding: 28px 24px 32px;
  position: relative; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: background 0.3s;
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  background: var(--section-alt); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-body); transition: background 0.15s;
  font-family: 'Barlow', sans-serif; line-height: 1;
}
.modal-close:hover { background: var(--gray-light); }
.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; text-transform: uppercase;
  color: var(--black); margin-bottom: 20px; padding-right: 40px;
  transition: color 0.3s;
}
[data-theme="dark"] .modal-title { color: var(--white); }

.modal-gallery { display: grid; gap: 20px; }
.modal-img-wrap { border-radius: 6px; overflow: hidden; }
.modal-img-wrap img {
  width: 100%; height: auto; display: block;
  border-radius: 6px;
}
.modal-img-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.modal-img-label .badge {
  padding: 2px 8px; border-radius: 2px; font-size: 10px;
}
.badge-before { background: var(--gold); color: var(--black); }
.badge-during { background: var(--black); color: #fff; }
.badge-after  { background: #28a745; color: #fff; }

@media (min-width: 640px) {
  .modal-gallery { grid-template-columns: 1fr 1fr; }
  .modal-gallery .full-width { grid-column: 1 / -1; }
}
@media (max-width: 639px) {
  .modal-overlay { padding: 12px; }
  .modal-content { padding: 20px 16px; }
}

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 16px; grid-column: 1 / -1; }
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 12px; display: block; color: var(--gray-mid); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  nav { padding: 10px 14px; }
  .nav-phone { font-size: 13px; padding: 8px 12px; }
  .hero { padding: 44px 18px 56px; }
  .page-hero { padding: 40px 18px 52px; }
  .nav-free-badge { display: none; }
  .mailing-form-card { padding: 24px 18px; }
  .theme-toggle .toggle-label { display: none; }
}
@media (min-width: 769px) { .sticky-cta { display: none !important; } }
