/* =========================
   1. VARIABLES & RESET
========================= */
:root {
  --navy: #1a2a40;      
  --gold: #c5a059;      
  --gold-dark: #b08d4a;
  --white: #ffffff;
  --grey-light: #f4f4f4;
  --text-dark: #333333;
  --text-grey: #666666;
  
  --font-serif: 'Playfair Display', serif; 
  --font-sans: 'Lato', sans-serif;         
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a { text-decoration: none; transition: 0.3s; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* =========================
   2. NAVBAR
========================= */
.navbar {
  background: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 100;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

/* LOGO & NAME WRAPPER */
.brand { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 45px; width: auto; }

.brand-text { display: flex; flex-direction: column; justify-content: center; }

/* COMPANY NAME (Desktop) */
.company { 
  font-family: var(--font-serif); 
  font-weight: 700; 
  color: var(--navy); 
  font-size: 16px; 
  line-height: 1.1;
  white-space: nowrap; /* Keeps it on one line */
}

/* TAGLINE (Desktop) */
.tagline { 
  font-size: 10px; 
  letter-spacing: 2px; 
  color: var(--gold); 
  font-weight: 700; 
  margin-top: 2px;
}

/* Nav Links (Desktop) */
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: var(--navy); font-weight: 400; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Consultation Button (Desktop) */
.btn-gold-nav {
  background: var(--gold); color: white;
  padding: 8px 20px; font-weight: bold; border-radius: 2px;
  font-size: 13px; letter-spacing: 1px;
  white-space: nowrap;
}
.btn-gold-nav:hover { background: var(--navy); }

/* =========================
   3. HERO SECTION
========================= */
.hero {
  position: relative; height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: white;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: rgba(26, 42, 64, 0.85); }

.hero-content { position: relative; max-width: 800px; }
.hero-sub { color: var(--gold); letter-spacing: 4px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.hero h1 { font-family: var(--font-serif); font-size: 52px; line-height: 1.1; margin-bottom: 20px; }
.hero-desc { font-size: 18px; color: #ddd; max-width: 600px; margin: 0 auto 40px; }

/* Buttons */
.btn-group { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--gold); color: white; padding: 15px 30px; font-weight: bold; border-radius: 2px; }
.btn-primary:hover { background: white; color: var(--navy); }
.btn-outline { border: 2px solid white; color: white; padding: 15px 30px; font-weight: bold; border-radius: 2px; }
.btn-outline:hover { background: white; color: var(--navy); }

/* =========================
   4. SECTIONS & ICONS
========================= */
.section-intro { padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }
.intro-text h2 { font-family: var(--font-serif); font-size: 36px; color: var(--navy); margin-bottom: 20px; }
.divider { width: 60px; height: 3px; background: var(--gold); margin-bottom: 30px; }
.intro-stat { display: flex; gap: 20px; }
.stat-box { background: var(--grey-light); padding: 30px; text-align: center; width: 50%; }
.stat-box .number { display: block; font-size: 36px; font-family: var(--font-serif); color: var(--gold); }
.stat-box .label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }

/* PRACTICE AREAS */
.section-areas { background: var(--grey-light); padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-serif); font-size: 40px; color: var(--navy); }
.section-header p { color: var(--text-grey); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.area-card {
  background: white; padding: 40px 30px;
  border-top: 4px solid var(--gold); transition: 0.3s;
}
.icon-box { margin-bottom: 20px; color: var(--gold); }
.icon-gold-lg { width: 45px; height: 45px; }

.area-card h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); margin-bottom: 15px; }
.area-card p { color: var(--text-grey); font-size: 15px; }

/* CONTACT */
.section-contact { background: var(--navy); color: white; padding: 80px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h2 { font-family: var(--font-serif); font-size: 36px; margin-bottom: 10px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.icon-gold-sm { width: 24px; height: 24px; color: var(--gold); min-width: 24px; }
.info-item p, .info-item a { color: white; font-size: 16px; }

/* FORM */
.contact-form-box { background: white; padding: 40px; border-radius: 4px; }
.contact-form-box h3 { color: var(--navy); font-family: var(--font-serif); margin-bottom: 20px; }
.contact-form-box input, .contact-form-box select { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; }
.contact-form-box button { width: 100%; padding: 15px; background: var(--gold); color: white; border: none; font-weight: bold; }

footer { background: #111; color: #666; padding: 30px 0; text-align: center; font-size: 12px; }

/* =========================
   MOBILE RESPONSIVE (CLEAN & SMALL)
========================= */
@media (max-width: 768px) {
  /* 1. Remove Button on Mobile */
  .btn-gold-nav { display: none; }
  .nav-links { display: none; }

  /* 2. Fix Logo & Name */
  .logo-img { height: 35px; } 

  .company { 
    font-size: 12px; /* Smaller font for Name */
    letter-spacing: 0;
    white-space: nowrap; /* Forces one line */
  }
  
  .tagline { 
    font-size: 9px; 
    margin-top: 2px;
  }

  /* 3. Hero Adjustments */
  .hero h1 { font-size: 32px; }
  
  /* Buttons: Side-by-Side */
  .btn-group { 
    flex-direction: row; 
    width: 100%; 
    gap: 10px; 
    padding: 0 10px; 
  }
  .btn-primary, .btn-outline { 
    width: 50%; 
    padding: 12px 5px; 
    font-size: 12px; 
    display: flex; align-items: center; justify-content: center;
  }

  /* 4. Layout Stacking */
  .grid-3 { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .intro-stat { flex-direction: row; gap: 10px; } 
}

/* =========================
   7. GOOGLE MAP SECTION
========================= */
.section-map {
  width: 100%;
  height: 400px; /* Nice big viewing area */
  border-top: 4px solid var(--gold); /* Connects it to the brand */
  border-bottom: 4px solid var(--navy);
}

.map-frame {
  width: 100%;
  height: 100%;
  filter: grayscale(100%); /* Makes the map Black & White to match the serious "Lawyer" vibe */
  transition: 0.5s;
}

/* When they hover, bring back the color! */
.map-frame:hover {
  filter: grayscale(0%);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block; /* Removes any tiny bottom gaps */
}