/* ===================================================
   LAZARRE LAW FIRM — Modern HTML5 Stylesheet
   Design: Dark navy + warm gold, editorial refinement
   =================================================== */

:root {
  --navy:    #0d1b2a;
  --navy2:   #162639;
  --gold:    #c9973a;
  --gold2:   #e0b05a;
  --cream:   #f7f3ee;
  --text:    #2c2c2c;
  --muted:   #666;
  --light:   #f0ebe3;
  --white:   #ffffff;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
  --trans:   all 0.25s ease;
  --max-w:   1160px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold2); }
ul { list-style: none; }
address { font-style: normal; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* CONTAINERS */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* SECTION LABEL */
.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===========================
   TOP CONTACT BAR
   =========================== */
#top-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(201,151,58,0.25);
  padding: 7px 0;
  font-size: 0.82rem;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.top-bar-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-bar-divider {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}
.top-bar-loc {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-loc-name {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}
.top-bar-tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: var(--trans);
  text-decoration: none;
}
.top-bar-tel:hover {
  background: var(--gold2);
  color: var(--navy) !important;
}
.top-bar-tel .tel-icon { font-size: 0.75rem; }

/* ===========================
   HEADER & NAV
   =========================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--gold2); }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* NAV */
#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Only the TOP-LEVEL ul gets flex — not the dropdown ul */
#main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
#main-nav > ul > li { position: relative; }
#main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 400;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}
#main-nav ul li a:hover,
#main-nav ul li a.active {
  color: var(--gold2);
  background: rgba(255,255,255,0.06);
}

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  /* Flush to bottom of li — no gap. Padding-top creates visual breathing room */
  top: 100%;
  left: 0;
  padding-top: 8px;   /* visual gap — but mouse never leaves the li */
  flex-direction: column !important;
  min-width: 210px;
  z-index: 200;
}
/* The visible panel sits inside a ::before-less wrapper via the inner box */
.dropdown-inner {
  background: var(--navy2);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.dropdown li {
  width: 100%;
  position: static;
}
.dropdown li a {
  padding: 9px 18px !important;
  font-size: 0.88rem !important;
  border-radius: 0 !important;
}
.has-dropdown:hover > .dropdown { display: flex; }

/* Dropdown arrow indicator */
.drop-arrow {
  font-size: 0.7rem;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}
.has-dropdown:hover .drop-arrow,
.has-dropdown.open .drop-arrow { transform: rotate(180deg); }

/* Highlight parent nav item when a child page is active */
.has-dropdown.active-parent > a.dropdown-toggle {
  color: var(--gold2);
}

/* NAV CTA */
.nav-cta {
  margin-left: 12px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  border-radius: var(--radius);
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--trans);
}
.nav-cta:hover {
  background: var(--gold2);
  color: var(--navy) !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 990;
}
.nav-overlay.active { display: block; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(22,38,57,0.88) 60%, rgba(13,27,42,0.95) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,151,58,0.03) 40px,
      rgba(201,151,58,0.03) 41px
    );
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.12);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.07);
  pointer-events: none;
}
.hero-columns {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 40px;
}
.hero-content {
  flex: 1 1 0;
  min-width: 0;
  padding: 80px 0;
  margin-top: -250px;
}
.hero-right-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.hero-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 br { display: block; }
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--trans);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.35);
}
.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--trans);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-dark {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: var(--trans);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.full-w { width: 100%; text-align: center; }

/* ===========================
   PRACTICE AREAS CARDS
   =========================== */
.practice-areas { background: var(--cream); }
.practice-areas h2 { margin-bottom: 40px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--trans);
  display: block;
  color: var(--text);
}
.card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  color: var(--text);
}
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; color: var(--navy); }
.card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===========================
   ABOUT STRIP
   =========================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: #444; }
.about-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #444;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ASIDE BOX */
.aside-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.aside-box h3 {
  color: var(--gold2);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.aside-addr {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.aside-phone {
  display: block;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.aside-fax {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.map-link {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.map-link:hover { color: var(--gold); }

/* ===========================
   ATTORNEY HIGHLIGHT
   =========================== */
.attorney-highlight { background: var(--light); }
.attorney-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: center;
}
.attorney-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--gold);
  flex-shrink: 0;
}
.attorney-bio h2 { margin-bottom: 14px; }
.attorney-bio p { color: #444; margin-bottom: 12px; }

/* ===========================
   INNER PAGE LAYOUT
   =========================== */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-top: 8px; }

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}
.page-main h2 { margin: 28px 0 12px; font-size: 1.4rem; }
.page-main h2:first-child { margin-top: 0; }
.page-main p { color: #444; }
.page-main ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1em;
  color: #444;
}
.page-main ul li { margin-bottom: 6px; }
.page-main ul li a { color: var(--gold); }
.page-main ul li a:hover { color: var(--gold2); }
.page-main strong { color: var(--navy); }

/* SIDEBAR */
.page-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--gold);
}
.sidebar-box h4 { color: var(--navy); margin-bottom: 14px; }
.sidebar-box ul { display: flex; flex-direction: column; gap: 4px; }
.sidebar-box ul li a {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #444;
  transition: var(--trans);
}
.sidebar-box ul li a:hover { background: var(--light); color: var(--navy); }
.sidebar-box ul li ul { padding-left: 14px; }
.sidebar-box ul li ul li a { font-size: 0.85rem; color: var(--muted); }

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.contact-form-wrap h4 { color: var(--navy); margin-bottom: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--trans);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.form-btn {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  font-family: inherit;
}
.form-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px 0 80px;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: #444; }
.contact-detail {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-detail-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-detail-item .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-item p { margin: 0; font-size: 0.95rem; color: #444; }
.contact-detail-item a { color: var(--gold); font-weight: 600; }

/* ===========================
   FOOTER
   =================================================== */
#site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 6px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--trans);
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact address {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold2); color: var(--navy); transform: translateY(-2px); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .aside-box { max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .attorney-inner { grid-template-columns: 1fr; text-align: center; }
  .attorney-avatar { margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .hamburger { display: flex; }
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 88px 24px 32px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  #main-nav.open { right: 0; }
  #main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    display: flex;
  }
  #main-nav > ul > li { width: 100%; }
  #main-nav ul li a {
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    width: 100%;
  }
  .dropdown {
    position: static;
    display: none;
    padding-top: 0;
    flex-direction: column;
  }
  .dropdown-inner {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .has-dropdown.open .dropdown { display: flex; }
  .dropdown li a { padding: 10px 24px !important; font-size: 0.9rem !important; border-bottom: 1px solid rgba(255,255,255,0.04) !important; }
  .has-dropdown > a.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-cta {
    margin: 20px 0 0 0;
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* Page layout */
  .section { padding: 56px 0; }
  .hero { min-height: 80vh; }
  .hero-columns { flex-direction: column; gap: 0; padding: 0; }
  .hero-content { margin-top: 0; }
  .hero-content { padding: 60px 24px 32px; margin: 0; }
  .hero-right-column { padding: 0 24px 60px; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .header-inner { height: 64px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  .top-bar-inner { justify-content: center; gap: 4px; }
  .top-bar-label { display: none; }
  .top-bar-divider { display: none; }
  .top-bar-loc-name { display: none; }
}

/* FOOTER LOCATIONS */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-location-item h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-location-item address {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer-location-item a { color: var(--gold); font-weight: 600; }
@media (max-width: 768px) {
  .footer-locations { grid-template-columns: 1fr; gap: 16px; }
}
