:root{
  --navy:#25282d;
  --navy-2:#343a40;
  --gold:#c9a45c;
  --gold-2:#e3c985;
  --text:#2b2f34;
  --muted:#555d66;
  --light:#f6f7f9;
  --white:#ffffff;
  --border:#e5e7eb;
  --shadow:0 18px 45px rgba(37,40,45,.14);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Georgia, 'Times New Roman', serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
}

a{text-decoration:none;color:inherit}

.container{
  width:min(1180px,92%);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px);
}

.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--navy);
}

.logo-mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:var(--gold-2);
  border:1px solid rgba(201,164,92,.45);
  font-weight:700;
  letter-spacing:.08em;
}

.logo strong{
  display:block;
  font-size:20px;
  line-height:1.1;
  letter-spacing:.02em;
}

.logo small{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-family:Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-top:2px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-family:Arial, sans-serif;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.main-nav a{
  color:var(--navy);
  position:relative;
}

.main-nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s;
}

.main-nav a:hover:after{width:100%}

.nav-toggle{
  display:none;
  border:0;
  background:var(--navy);
  color:white;
  width:42px;
  height:42px;
  font-size:22px;
}

.hero{
  min-height:720px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
  background:
    linear-gradient(120deg,rgba(37,40,45,.96),rgba(37,40,45,.76)),
    radial-gradient(circle at 80% 20%,rgba(201,164,92,.24),transparent 35%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80');
  background-size:cover;
  background-position:center;
}

.hero-content{
  position:relative;
  max-width:850px;
}

.eyebrow,.section-label{
  display:inline-block;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold-2);
  margin-bottom:16px;
}

.hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:1.05;
  margin:0 0 24px;
  max-width:980px;
}

.hero p{
  font-family:Arial, sans-serif;
  font-size:19px;
  max-width:760px;
  color:rgba(255,255,255,.88);
  margin:0 0 34px;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 24px;
  border-radius:2px;
  font-family:Arial, sans-serif;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:var(--gold);
  color:var(--navy);
}

.btn-secondary{
  color:white;
  border-color:rgba(255,255,255,.5);
}

.btn-light{
  background:white;
  color:var(--navy);
}

.section{
  padding:92px 0;
}

.split{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap:70px;
  align-items:start;
}

h2{
  color:var(--navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  margin:0 0 20px;
}

h3{
  color:var(--navy);
  font-size:24px;
  line-height:1.2;
  margin:0 0 12px;
}

h4{
  font-family:Arial, sans-serif;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:13px;
  margin:0 0 18px;
}

p{
  margin:0 0 16px;
}

.dark-section{
  background:var(--navy);
  color:white;
}

.dark-section h2,
.dark-section h3{color:white}

.dark-section p{color:rgba(255,255,255,.72)}

.section-heading{
  max-width:780px;
  margin-bottom:42px;
}

.section-heading.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.section-heading.center p{
  color:var(--muted);
  font-family:Arial, sans-serif;
}

.practice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.practice-card{
  padding:30px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.practice-grid.light .practice-card{
  background:white;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.practice-card h3{
  font-size:22px;
}

.practice-card p{
  font-family:Arial, sans-serif;
  font-size:15px;
}

.attorney-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.attorney-grid.compact{
  grid-template-columns:repeat(5,1fr);
}

.attorney-card{
  background:white;
  border:1px solid var(--border);
  padding:26px;
  box-shadow:var(--shadow);
  min-height:100%;
}

.attorney-photo{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:var(--gold-2);
  border:2px solid var(--gold);
  font-family:Arial, sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:20px;
}

.attorney-photo.large{
  width:120px;
  height:120px;
  font-size:28px;
  flex:0 0 120px;
}

.attorney-card h3{
  font-size:21px;
  margin-bottom:8px;
}

.attorney-card span{
  display:block;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:800;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.06em;
  line-height:1.45;
  margin-bottom:14px;
}

.attorney-card p{
  font-family:Arial, sans-serif;
  color:var(--muted);
  font-size:14px;
}

.page-hero{
  padding:120px 0;
  color:white;
  background:
    linear-gradient(120deg,rgba(37,40,45,.96),rgba(37,40,45,.82)),
    radial-gradient(circle at 80% 20%,rgba(201,164,92,.24),transparent 34%);
}

.page-hero h1{
  font-size:clamp(44px,6vw,72px);
  line-height:1.05;
  margin:0 0 18px;
}

.page-hero p{
  max-width:760px;
  font-family:Arial, sans-serif;
  color:rgba(255,255,255,.82);
  font-size:18px;
}

.attorney-list{
  display:grid;
  gap:32px;
}

.profile-card{
  display:flex;
  gap:34px;
  background:white;
  border:1px solid var(--border);
  padding:36px;
  box-shadow:var(--shadow);
}

.profile-card p{
  font-family:Arial, sans-serif;
  color:#3f454c;
}

.tag-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag-list li{
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--navy);
  background:#f3f4f6;
  border:1px solid var(--border);
  padding:8px 10px;
}

.cta-section{
  padding:70px 0;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:white;
}

.cta-box h2{
  color:white;
  margin-bottom:8px;
}

.cta-box p{
  color:rgba(255,255,255,.74);
  font-family:Arial, sans-serif;
  margin:0;
}

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:30px;
}

.contact-card{
  background:white;
  border:1px solid var(--border);
  padding:36px;
  box-shadow:var(--shadow);
}

.contact-form{
  display:grid;
  gap:16px;
  font-family:Arial, sans-serif;
}

.contact-form label{
  display:grid;
  gap:8px;
  font-weight:700;
  color:var(--navy);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  padding:14px;
  font:inherit;
}

.form-note{
  color:var(--muted);
  font-size:13px;
  margin:0;
}

.site-footer{
  background:#1f2227;
  color:rgba(255,255,255,.72);
  padding:26px 0;
  font-family:Arial, sans-serif;
  font-size:14px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-inner p{margin:0}

.center{text-align:center}
.mt{margin-top:34px}

@media(max-width:1050px){
  .practice-grid,
  .attorney-grid,
  .attorney-grid.compact{
    grid-template-columns:repeat(2,1fr);
  }

  .split,
  .contact-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
}

@media(max-width:760px){
  .header-inner{
    min-height:72px;
  }

  .nav-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:72px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:white;
    padding:24px 4%;
    border-bottom:1px solid var(--border);
  }

  .main-nav.active{
    display:flex;
  }

  .hero{
    min-height:640px;
  }

  .section{
    padding:66px 0;
  }

  .practice-grid,
  .attorney-grid,
  .attorney-grid.compact{
    grid-template-columns:1fr;
  }

  .profile-card{
    flex-direction:column;
    padding:28px;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .logo strong{
    font-size:17px;
  }

  .logo small{
    font-size:10px;
  }
}

/* Attorney real photos */
img.attorney-photo{
  object-fit:cover;
  object-position:center top;
  border-radius:0;
  display:block;
}

.attorney-card img.attorney-photo{
  width:100%;
  height:250px;
  margin-bottom:20px;
  border:0;
  background:#25282d;
}

.profile-card img.attorney-photo.large{
  width:180px;
  height:220px;
  flex:0 0 180px;
  margin-bottom:0;
  border:0;
  background:#25282d;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

@media(max-width:760px){
  .profile-card img.attorney-photo.large{
    width:100%;
    height:320px;
    flex:auto;
  }
}

/* Attorney catalog and individual profile pages */
.attorney-grid.catalog{
  grid-template-columns:repeat(3,1fr);
}

.attorney-card{
  display:flex;
  flex-direction:column;
}

.attorney-card .profile-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 18px;
  background:#25282d;
  color:#fff;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.attorney-card .profile-link:hover{
  background:#343a40;
}

.profile-hero{
  padding:92px 0;
  color:#fff;
  background:
    linear-gradient(120deg,rgba(37,40,45,.96),rgba(37,40,45,.86)),
    radial-gradient(circle at 80% 20%,rgba(201,164,92,.20),transparent 34%);
}

.profile-hero-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:54px;
  align-items:center;
}

.profile-main-photo{
  width:320px;
  height:420px;
  object-fit:cover;
  object-position:center top;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.profile-hero h1{
  font-size:clamp(42px,6vw,70px);
  line-height:1.05;
  margin:0 0 14px;
}

.profile-hero h4{
  color:#e3c985;
  margin-bottom:24px;
}

.profile-hero p{
  max-width:780px;
  color:rgba(255,255,255,.82);
  font-family:Arial, sans-serif;
  font-size:18px;
}

.back-link{
  display:inline-block;
  margin-bottom:24px;
  color:#e3c985;
  font-family:Arial, sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}

.profile-content{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:54px;
  align-items:start;
}

.profile-content article{
  font-family:Arial, sans-serif;
  color:#3f454c;
  font-size:17px;
}

.profile-content article h2{
  font-family:Georgia, 'Times New Roman', serif;
}

.profile-content aside{
  border:1px solid var(--border);
  background:#f6f7f9;
  padding:30px;
  position:sticky;
  top:110px;
}

.profile-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.profile-list li{
  background:#fff;
  border:1px solid var(--border);
  padding:10px 12px;
  font-family:Arial, sans-serif;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#25282d;
}

@media(max-width:1050px){
  .attorney-grid.catalog{
    grid-template-columns:repeat(2,1fr);
  }

  .profile-hero-grid,
  .profile-content{
    grid-template-columns:1fr;
  }

  .profile-main-photo{
    width:100%;
    max-width:420px;
  }

  .profile-content aside{
    position:static;
  }
}

@media(max-width:760px){
  .attorney-grid.catalog{
    grid-template-columns:1fr;
  }

  .profile-main-photo{
    height:360px;
  }
}

/* =========================================================
   GLOBAL PROFESSIONAL FOOTER
   ========================================================= */

.pro-footer{
  background:
    linear-gradient(135deg,rgba(31,34,39,.98),rgba(37,40,45,.96)),
    radial-gradient(circle at 15% 10%,rgba(201,164,92,.16),transparent 34%);
  color:rgba(255,255,255,.76);
  padding:70px 0 0;
  font-family:Arial, sans-serif;
}

.footer-main{
  display:grid;
  grid-template-columns:1.35fr .65fr 1fr 1fr;
  gap:44px;
  align-items:start;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  margin-bottom:22px;
}

.footer-logo strong{
  display:block;
  color:#fff;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:22px;
  line-height:1.1;
}

.footer-logo small{
  display:block;
  color:#e3c985;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-top:4px;
}

.footer-about p{
  max-width:420px;
  margin:0 0 22px;
  color:rgba(255,255,255,.70);
  line-height:1.75;
  font-size:14px;
}

.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer-badges span{
  border:1px solid rgba(227,201,133,.38);
  color:#e3c985;
  padding:7px 10px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pro-footer h4{
  color:#e3c985;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin:0 0 22px;
}

.footer-links a{
  display:block;
  color:rgba(255,255,255,.72);
  margin-bottom:12px;
  font-size:14px;
}

.footer-links a:hover{
  color:#e3c985;
}

.footer-contact p{
  margin:0 0 12px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.6;
}

.footer-contact strong{
  color:#fff;
}

.footer-mini-form{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.footer-mini-form input,
.footer-mini-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:12px 13px;
  font:inherit;
  outline:none;
}

.footer-mini-form input:focus,
.footer-mini-form textarea:focus{
  border-color:rgba(227,201,133,.7);
  background:rgba(255,255,255,.09);
}

.footer-mini-form input::placeholder,
.footer-mini-form textarea::placeholder{
  color:rgba(255,255,255,.48);
}

.footer-mini-form button{
  border:0;
  background:#c9a45c;
  color:#25282d;
  padding:13px 16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  cursor:pointer;
}

.footer-mini-form button:hover{
  background:#e3c985;
}

.footer-legal{
  margin-top:52px;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-legal p{
  margin:0;
  color:rgba(255,255,255,.52);
  font-size:12px;
}

@media(max-width:1050px){
  .footer-main{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .pro-footer{
    padding-top:52px;
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-legal{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   FORCED PROFESSIONAL FOOTER - MILLER COLLINS LAW
   ========================================================= */

.footer-professional{
  background:
    linear-gradient(135deg,rgba(25,27,31,.98),rgba(43,47,52,.97)),
    radial-gradient(circle at 15% 10%,rgba(201,164,92,.16),transparent 34%);
  color:rgba(255,255,255,.76);
  padding:72px 0 0;
  font-family:Arial, sans-serif;
}

.footer-professional-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr 1fr 1fr;
  gap:46px;
  align-items:start;
}

.footer-logo-pro{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  margin-bottom:22px;
}

.footer-logo-pro strong{
  display:block;
  color:#fff;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:22px;
  line-height:1.1;
}

.footer-logo-pro small{
  display:block;
  color:#e3c985;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-top:4px;
}

.footer-about-pro p{
  max-width:430px;
  margin:0 0 22px;
  color:rgba(255,255,255,.70);
  line-height:1.75;
  font-size:14px;
}

.footer-mini-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer-mini-tags span{
  border:1px solid rgba(227,201,133,.38);
  color:#e3c985;
  padding:7px 10px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-col h4{
  color:#e3c985;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin:0 0 22px;
}

.footer-col a{
  display:block;
  color:rgba(255,255,255,.72);
  margin-bottom:12px;
  font-size:14px;
}

.footer-col a:hover{
  color:#e3c985;
}

.footer-contact-pro p{
  margin:0 0 12px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.6;
}

.footer-contact-pro strong{
  color:#fff;
}

.footer-mini-form{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.footer-mini-form input,
.footer-mini-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:12px 13px;
  font:inherit;
  outline:none;
}

.footer-mini-form input:focus,
.footer-mini-form textarea:focus{
  border-color:rgba(227,201,133,.7);
  background:rgba(255,255,255,.09);
}

.footer-mini-form input::placeholder,
.footer-mini-form textarea::placeholder{
  color:rgba(255,255,255,.48);
}

.footer-mini-form button{
  border:0;
  background:#c9a45c;
  color:#25282d;
  padding:13px 16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  cursor:pointer;
}

.footer-mini-form button:hover{
  background:#e3c985;
}

.footer-legal-pro{
  margin-top:54px;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-legal-pro p{
  margin:0;
  color:rgba(255,255,255,.52);
  font-size:12px;
}

@media(max-width:1050px){
  .footer-professional-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .footer-professional{
    padding-top:52px;
  }

  .footer-professional-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-legal-pro{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   BIG PROFESSIONAL HOME
   ========================================================= */

.home-slider-large{
  position:relative;
  min-height:860px;
  overflow:hidden;
  background:#25282d;
}

.home-slide-large{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.home-slide-large.active{
  opacity:1;
  z-index:2;
}

.home-slide-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(25,27,31,.96) 0%,rgba(37,40,45,.82) 48%,rgba(37,40,45,.32) 100%),
    linear-gradient(0deg,rgba(0,0,0,.38),rgba(0,0,0,.05));
}

.home-slide-content{
  position:relative;
  z-index:3;
  color:#fff;
  max-width:980px;
}

.home-slide-content h1{
  font-size:clamp(50px,6.6vw,86px);
  line-height:1.02;
  margin:0 0 26px;
  max-width:1050px;
}

.home-slide-content p{
  font-family:Arial, sans-serif;
  font-size:21px;
  color:rgba(255,255,255,.88);
  max-width:780px;
  margin-bottom:36px;
}

.home-slider-dots{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:38px;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
}

.home-dot{
  width:13px;
  height:13px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.8);
  background:transparent;
  cursor:pointer;
}

.home-dot.active{
  background:#c9a45c;
  border-color:#c9a45c;
}

.home-about-large{
  padding:110px 0;
  background:#fff;
}

.home-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.home-about-image{
  position:relative;
}

.home-about-image:before{
  content:"";
  position:absolute;
  left:-24px;
  bottom:-24px;
  width:70%;
  height:70%;
  border:2px solid #c9a45c;
  z-index:0;
}

.home-about-image img{
  position:relative;
  z-index:1;
  width:100%;
  height:620px;
  object-fit:cover;
  box-shadow:0 24px 70px rgba(31,34,39,.18);
}

.home-about-content h2{
  font-size:clamp(38px,4.8vw,60px);
}

.home-about-content p{
  font-family:Arial, sans-serif;
  color:#555d66;
  font-size:17px;
}

.about-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:34px;
}

.about-points div{
  border:1px solid #dedbd3;
  padding:20px;
  background:#f6f7f9;
}

.about-points strong{
  display:block;
  color:#c9a45c;
  font-size:28px;
  margin-bottom:8px;
}

.about-points span{
  display:block;
  font-family:Arial, sans-serif;
  color:#25282d;
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.home-band-photo{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  color:#fff;
  background:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2000&q=85');
  background-size:cover;
  background-position:center;
}

.home-band-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(25,27,31,.94),rgba(25,27,31,.68),rgba(25,27,31,.40)),
    radial-gradient(circle at 80% 20%,rgba(201,164,92,.20),transparent 34%);
}

.home-band-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.home-band-content h2{
  color:#fff;
  font-size:clamp(38px,5vw,66px);
}

.home-band-content p{
  font-family:Arial, sans-serif;
  font-size:19px;
  color:rgba(255,255,255,.82);
  max-width:760px;
}

.home-practice-large{
  background:#f5f5f3;
}

.practice-large-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.practice-large-card{
  background:#fff;
  border:1px solid #dedbd3;
  padding:36px;
  min-height:310px;
  box-shadow:0 18px 50px rgba(31,34,39,.10);
  transition:.28s ease;
  display:flex;
  flex-direction:column;
}

.practice-large-card:hover{
  transform:translateY(-7px);
  box-shadow:0 28px 70px rgba(31,34,39,.18);
}

.practice-large-card span{
  color:#c9a45c;
  font-family:Arial, sans-serif;
  font-size:13px;
  font-weight:900;
  letter-spacing:.15em;
  margin-bottom:20px;
}

.practice-large-card h3{
  font-size:28px;
  color:#25282d;
}

.practice-large-card p{
  font-family:Arial, sans-serif;
  color:#555d66;
  font-size:15px;
}

.practice-large-card a{
  margin-top:auto;
  color:#25282d;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  border-bottom:2px solid #c9a45c;
  width:max-content;
}

.home-why-large{
  padding:110px 0;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(25,27,31,.97),rgba(43,47,52,.94)),
    url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=2000&q=85');
  background-size:cover;
  background-position:center;
  background-blend-mode:multiply;
}

.home-why-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.home-why-grid h2{
  color:#fff;
  font-size:clamp(38px,5vw,62px);
}

.home-why-grid p{
  font-family:Arial, sans-serif;
  color:rgba(255,255,255,.78);
  font-size:17px;
}

.why-card-list{
  display:grid;
  gap:18px;
}

.why-card-list article{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-left:4px solid #c9a45c;
  padding:28px;
  backdrop-filter:blur(4px);
}

.why-card-list h3{
  color:#fff;
  margin-bottom:10px;
}

.why-card-list p{
  margin:0;
  font-size:15px;
}

.home-office-large{
  padding:90px 0;
  background:#fff;
}

.office-card-large{
  min-height:330px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:64px;
  color:#fff;
  background:
    linear-gradient(120deg,rgba(25,27,31,.94),rgba(25,27,31,.72)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85');
  background-size:cover;
  background-position:center;
  box-shadow:0 24px 70px rgba(31,34,39,.18);
}

.office-card-large h2{
  color:#fff;
  font-size:clamp(34px,4vw,56px);
  max-width:760px;
}

.office-card-large p{
  font-family:Arial, sans-serif;
  color:rgba(255,255,255,.78);
  max-width:700px;
}

@media(max-width:1050px){
  .home-about-grid,
  .home-why-grid{
    grid-template-columns:1fr;
  }

  .practice-large-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .office-card-large{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:760px){
  .home-slider-large{
    min-height:720px;
  }

  .home-slide-content h1{
    font-size:42px;
  }

  .home-slide-content p{
    font-size:18px;
  }

  .home-about-large,
  .home-why-large{
    padding:72px 0;
  }

  .home-about-image img{
    height:420px;
  }

  .about-points,
  .practice-large-grid{
    grid-template-columns:1fr;
  }

  .home-band-photo{
    min-height:520px;
  }

  .office-card-large{
    padding:36px 26px;
  }
}

/* =========================================================
   FORCE FIX INTERNAL SLIDERS
   ========================================================= */

.internal-slider{
  position:relative !important;
  display:block !important;
  width:100% !important;
  min-height:620px !important;
  height:620px !important;
  overflow:hidden !important;
  background:#25282d !important;
}

.internal-slider .internal-slide{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-height:620px !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:opacity .9s ease, visibility .9s ease !important;
  background-size:cover !important;
  background-position:center !important;
  display:flex !important;
  align-items:center !important;
}

.internal-slider .internal-slide.active{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  z-index:2 !important;
}

.internal-slider .internal-slide-overlay{
  position:absolute !important;
  inset:0 !important;
  background:
    linear-gradient(90deg,rgba(25,27,31,.94) 0%,rgba(37,40,45,.76) 52%,rgba(37,40,45,.30) 100%),
    linear-gradient(0deg,rgba(0,0,0,.32),rgba(0,0,0,.06)) !important;
  z-index:1 !important;
}

.internal-slider .internal-slide-content,
.internal-slider .profile-slider-content{
  position:relative !important;
  z-index:3 !important;
  color:#fff !important;
  max-width:980px !important;
}

.internal-slider .internal-slide-content h1,
.internal-slider .profile-slider-content h1{
  color:#fff !important;
  font-size:clamp(46px,6vw,76px) !important;
  line-height:1.04 !important;
  margin:0 0 20px !important;
}

.internal-slider .internal-slide-content p,
.internal-slider .profile-slider-content p{
  color:rgba(255,255,255,.86) !important;
  font-family:Arial, sans-serif !important;
  font-size:19px !important;
  max-width:780px !important;
}

.internal-slider .internal-slider-dots{
  position:absolute !important;
  left:50% !important;
  bottom:30px !important;
  transform:translateX(-50%) !important;
  z-index:5 !important;
  display:flex !important;
  gap:12px !important;
}

.internal-slider .internal-dot{
  width:13px !important;
  height:13px !important;
  border-radius:50% !important;
  border:1px solid rgba(255,255,255,.8) !important;
  background:transparent !important;
  cursor:pointer !important;
  padding:0 !important;
  font-size:0 !important;
}

.internal-slider .internal-dot.active{
  background:#c9a45c !important;
  border-color:#c9a45c !important;
}

.contact-pro-section{
  padding-top:100px !important;
}

.contact-info-boxes div{
  display:block !important;
}

.contact-info-boxes strong{
  display:block !important;
  margin-bottom:8px !important;
}

.contact-info-boxes span{
  display:block !important;
}

@media(max-width:760px){
  .internal-slider{
    height:650px !important;
    min-height:650px !important;
  }

  .internal-slider .internal-slide{
    min-height:650px !important;
  }

  .internal-slider .internal-slide-content h1,
  .internal-slider .profile-slider-content h1{
    font-size:40px !important;
  }

  .internal-slider .internal-slide-content p,
  .internal-slider .profile-slider-content p{
    font-size:17px !important;
  }
}

/* =========================================================
   PROFESSIONAL STATIC ATTORNEY PROFILE HEADER
   ========================================================= */

.profile-static-hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(120deg,rgba(25,27,31,.96),rgba(37,40,45,.78),rgba(37,40,45,.38)),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=2000&q=85');
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.profile-static-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:90px;
  background:linear-gradient(0deg,rgba(255,255,255,1),rgba(255,255,255,0));
  z-index:1;
}

.profile-static-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 20%,rgba(201,164,92,.18),transparent 34%),
    linear-gradient(0deg,rgba(0,0,0,.20),rgba(0,0,0,.04));
  z-index:1;
}

.profile-static-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:190px 1fr;
  gap:42px;
  align-items:center;
}

.profile-static-photo-wrap{
  width:190px;
  height:230px;
  padding:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(227,201,133,.58);
  box-shadow:0 22px 55px rgba(0,0,0,.35);
}

.profile-static-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.profile-static-info{
  max-width:880px;
}

.profile-static-info h1{
  color:#fff;
  font-size:clamp(44px,6vw,74px);
  line-height:1.02;
  margin:0 0 14px;
}

.profile-static-info h4{
  color:#e3c985;
  margin:0 0 22px;
}

.profile-static-info p{
  color:rgba(255,255,255,.84);
  font-family:Arial, sans-serif;
  font-size:18px;
  max-width:760px;
}

/* Decorate profile body without removing content */
.profile-content{
  position:relative;
}

.profile-content article{
  background:#fff;
  border-left:4px solid #c9a45c;
  padding-left:34px;
}

.profile-content article h2{
  position:relative;
  padding-bottom:16px;
  margin-bottom:24px;
}

.profile-content article h2:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:72px;
  height:3px;
  background:#c9a45c;
}

.profile-content article p{
  line-height:1.85;
}

.profile-content article ul{
  margin-top:18px;
  padding-left:22px;
}

.profile-content article li{
  margin-bottom:10px;
  line-height:1.65;
}

.profile-content aside{
  background:
    linear-gradient(180deg,#ffffff 0%,#f6f7f9 100%);
  box-shadow:0 18px 50px rgba(31,34,39,.10);
}

.profile-content aside h3{
  font-size:24px;
  margin-bottom:20px;
}

.profile-list li{
  transition:.22s ease;
}

.profile-list li:hover{
  transform:translateX(4px);
  border-color:#c9a45c;
}

/* Disable old broken profile slider if still present by accident */
.profile-slider.internal-slider{
  display:none !important;
}

@media(max-width:760px){
  .profile-static-hero{
    min-height:620px;
    padding:70px 0;
  }

  .profile-static-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .profile-static-photo-wrap{
    width:165px;
    height:205px;
  }

  .profile-static-info h1{
    font-size:40px;
  }

  .profile-static-info p{
    font-size:17px;
  }

  .profile-content article{
    padding-left:22px;
  }
}

/* =========================================================
   ATTORNEY PHOTO CLEAN FIX
   ========================================================= */

.pro-attorney-card .photo-wrap{
  height:340px !important;
  background:#1f2227 !important;
}

.pro-attorney-card img.attorney-photo,
.attorney-card.pro-attorney-card img.attorney-photo{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center top !important;
  filter:saturate(.96) contrast(1.02);
}

.profile-static-photo-wrap{
  width:190px !important;
  height:235px !important;
  background:#1f2227 !important;
}

.profile-static-photo{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center top !important;
}

.attorney-body{
  min-height:300px !important;
}

.pro-attorney-card h3{
  min-height:auto !important;
}

@media(max-width:760px){
  .pro-attorney-card .photo-wrap{
    height:390px !important;
  }

  .profile-static-photo-wrap{
    width:165px !important;
    height:210px !important;
  }
}

/* =========================================================
   SIMPLE CLEAN CONTACT PAGE - FINAL
   ========================================================= */

.simple-contact-hero{
  padding:105px 0 90px !important;
  color:#fff !important;
  background:
    linear-gradient(120deg,rgba(25,27,31,.92),rgba(37,40,45,.76)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85') !important;
  background-size:cover !important;
  background-position:center !important;
}

.simple-contact-hero h1{
  color:#fff !important;
  font-size:clamp(38px,5vw,64px) !important;
  line-height:1.05 !important;
  margin:0 0 16px !important;
}

.simple-contact-hero p{
  max-width:680px !important;
  color:rgba(255,255,255,.84) !important;
  font-family:Arial, sans-serif !important;
  font-size:18px !important;
  margin:0 !important;
}

.simple-contact-section{
  padding:70px 0 !important;
  background:#f5f5f3 !important;
}

.simple-contact-grid{
  display:grid !important;
  grid-template-columns:.85fr 1.15fr !important;
  gap:28px !important;
  align-items:start !important;
}

.simple-contact-left{
  display:grid !important;
  gap:18px !important;
}

.simple-contact-card,
.simple-info-card,
.simple-note-card,
.simple-contact-form-card{
  background:#fff !important;
  border:1px solid #dedbd3 !important;
  box-shadow:0 14px 38px rgba(31,34,39,.08) !important;
}

.simple-contact-card{
  padding:28px !important;
  border-top:4px solid #c9a45c !important;
}

.simple-contact-card h2{
  font-size:34px !important;
  line-height:1.1 !important;
  margin:0 0 6px !important;
  color:#25282d !important;
}

.simple-contact-card p{
  margin:0 !important;
  color:#555d66 !important;
  font-family:Arial, sans-serif !important;
  font-size:15px !important;
}

.mini-label{
  display:block !important;
  color:#c9a45c !important;
  font-family:Arial, sans-serif !important;
  font-size:11px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.14em !important;
  margin-bottom:12px !important;
}

.simple-info-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.simple-info-card{
  padding:18px !important;
}

.simple-info-card span{
  display:block !important;
  color:#9b7a35 !important;
  font-family:Arial, sans-serif !important;
  font-size:11px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.10em !important;
  margin-bottom:7px !important;
}

.simple-info-card strong{
  display:block !important;
  color:#25282d !important;
  font-family:Arial, sans-serif !important;
  font-size:14px !important;
  line-height:1.45 !important;
}

.simple-note-card{
  padding:24px !important;
  background:#25282d !important;
  color:#fff !important;
}

.simple-note-card h3{
  color:#fff !important;
  font-size:22px !important;
  margin:0 0 10px !important;
}

.simple-note-card p{
  color:rgba(255,255,255,.76) !important;
  font-family:Arial, sans-serif !important;
  font-size:14px !important;
  line-height:1.65 !important;
  margin:0 !important;
}

.simple-contact-form-card{
  padding:32px !important;
  border-top:4px solid #c9a45c !important;
}

.simple-contact-form-card h2{
  font-size:38px !important;
  line-height:1.1 !important;
  color:#25282d !important;
  margin:0 0 22px !important;
}

.simple-contact-form{
  display:grid !important;
  gap:16px !important;
}

.simple-form-row{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.simple-contact-form label{
  display:grid !important;
  gap:7px !important;
  color:#25282d !important;
  font-family:Arial, sans-serif !important;
  font-size:13px !important;
  font-weight:800 !important;
}

.simple-contact-form input,
.simple-contact-form textarea{
  width:100% !important;
  border:1px solid #dedbd3 !important;
  background:#fff !important;
  padding:13px 14px !important;
  font-family:Arial, sans-serif !important;
  font-size:14px !important;
  outline:none !important;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus{
  border-color:#c9a45c !important;
  box-shadow:0 0 0 3px rgba(201,164,92,.15) !important;
}

.simple-contact-form textarea{
  resize:vertical !important;
}

.simple-contact-form .btn{
  width:max-content !important;
  margin-top:2px !important;
}

.simple-contact-bottom{
  padding:0 0 75px !important;
  background:#f5f5f3 !important;
}

.simple-bottom-card{
  min-height:245px !important;
  padding:42px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:28px !important;
  color:#fff !important;
  background:
    linear-gradient(120deg,rgba(25,27,31,.94),rgba(37,40,45,.72)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=85') !important;
  background-size:cover !important;
  background-position:center !important;
  box-shadow:0 18px 48px rgba(31,34,39,.12) !important;
}

.simple-bottom-card h2{
  color:#fff !important;
  font-size:34px !important;
  margin:0 0 10px !important;
}

.simple-bottom-card p{
  color:rgba(255,255,255,.78) !important;
  font-family:Arial, sans-serif !important;
  margin:0 !important;
  max-width:680px !important;
}

@media(max-width:950px){
  .simple-contact-grid{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:700px){
  .simple-contact-hero{
    padding:80px 0 70px !important;
  }

  .simple-info-grid,
  .simple-form-row{
    grid-template-columns:1fr !important;
  }

  .simple-contact-form-card,
  .simple-contact-card,
  .simple-note-card{
    padding:24px !important;
  }

  .simple-bottom-card{
    flex-direction:column !important;
    align-items:flex-start !important;
    padding:30px 24px !important;
  }
}

/* =========================================================
   FIX FOOTER LOGO ALIGNMENT
   ========================================================= */

.footer-professional .footer-about-pro .footer-logo-pro{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  width:max-content !important;
  margin-bottom:22px !important;
  color:#fff !important;
}

.footer-professional .footer-about-pro .footer-logo-pro .logo-mark{
  flex:0 0 46px !important;
  width:46px !important;
  height:46px !important;
  display:grid !important;
  place-items:center !important;
  margin:0 !important;
}

.footer-professional .footer-about-pro .footer-logo-pro span:last-child{
  display:block !important;
}

.footer-professional .footer-about-pro .footer-logo-pro strong{
  display:block !important;
  margin:0 !important;
  line-height:1.1 !important;
}

.footer-professional .footer-about-pro .footer-logo-pro small{
  display:block !important;
  margin-top:4px !important;
  line-height:1.2 !important;
}

@media(max-width:700px){
  .footer-professional .footer-about-pro .footer-logo-pro{
    width:100% !important;
  }
}

/* =========================================================
   LAWYER EMAILS + FOOTER EMAILS
   ========================================================= */

.profile-email-box{
  display:inline-grid;
  gap:5px;
  margin:0 0 22px;
  padding:12px 16px;
  border:1px solid rgba(227,201,133,.42);
  background:rgba(255,255,255,.08);
  font-family:Arial, sans-serif;
}

.profile-email-box strong{
  color:#e3c985;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.profile-email-box a{
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.profile-email-box a:hover{
  color:#e3c985;
}

.profile-side-email{
  background:#25282d;
  color:#fff;
  padding:18px;
  margin-bottom:24px;
  border-left:4px solid #c9a45c;
  font-family:Arial, sans-serif;
}

.profile-side-email span{
  display:block;
  color:#e3c985;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:7px;
}

.profile-side-email a{
  color:#fff;
  font-size:14px;
  word-break:break-word;
}

.profile-side-email a:hover{
  color:#e3c985;
}

.attorney-email-link{
  display:block;
  color:#9b7a35;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:800;
  margin:0 0 14px;
  word-break:break-word;
}

.attorney-email-link:hover{
  color:#25282d;
}

.footer-email-lines{
  margin-top:12px !important;
  line-height:1.8 !important;
}

.footer-email-lines a{
  color:#e3c985 !important;
  text-decoration:none !important;
  font-weight:700 !important;
}

.footer-email-lines a:hover{
  color:#fff !important;
}

/* Final 4 attorneys catalog layout */
.attorney-grid.catalog.pro-catalog-grid{
  grid-template-columns:repeat(4,1fr) !important;
}

@media(max-width:1150px){
  .attorney-grid.catalog.pro-catalog-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:700px){
  .attorney-grid.catalog.pro-catalog-grid{
    grid-template-columns:1fr !important;
  }
}
