/* ================================================
   SheridanLawfirm — site.css
   Modern redesign: navbar, layout, typography
   ================================================ */

/* -------- Variables -------- */
:root {
  --navy:       #0d2137;
  --navy-mid:   #122842;
  --navy-dark:  #091929;
  --gold:       #c9a440;
  --gold-dark:  #a8872e;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --text:       #2c3e50;
  --text-light: #5a6a7a;
  --border:     #dde3ec;
  --radius:     6px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; }

/* -------- Container -------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.tb-left, .tb-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.tb-link {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tb-link:hover { color: var(--gold); }
.tb-link svg { flex-shrink: 0; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 3px 20px rgba(0,0,0,.45);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* --- Brand / Logo --- */
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
}
.brand-name em {
  color: var(--gold);
  font-style: normal;
}
.brand-tagline {
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* --- Nav Menu --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  border-radius: var(--radius);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a {
  color: var(--gold);
  background: rgba(255,255,255,.05);
}

/* --- Contact CTA Button --- */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  font-weight: 800 !important;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(201,164,64,.35);
  transition: background .18s, transform .12s, box-shadow .18s !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(201,164,64,.45) !important;
}

/* --- Dropdown --- */
.has-dropdown { position: relative; }
.chevron {
  font-size: .55rem;
  opacity: .7;
  transition: transform .2s;
  display: inline-block;
}
.has-dropdown:hover .chevron,
.has-dropdown.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 215px;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
  display: none;
  padding: 6px 0;
  z-index: 9100;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .035em;
  color: rgba(255,255,255,.78);
  text-transform: none;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.dropdown li a:hover {
  background: rgba(255,255,255,.06);
  border-left-color: var(--gold);
  color: var(--gold);
}

/* --- Hamburger button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 27px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ================================================
   RESPONSIVE MOBILE NAVBAR
   ================================================ */
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-container { height: 62px; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 32px rgba(0,0,0,.55);
    padding: 6px 0 14px;
    gap: 0;
    z-index: 8999;
  }
  .nav-menu.open { display: flex; }
  .nav-item > a {
    padding: 13px 22px;
    border-radius: 0;
    border-left: 3px solid transparent;
    font-size: .8rem;
  }
  .nav-item > a:hover,
  .nav-item.active > a {
    border-left-color: var(--gold);
    background: rgba(255,255,255,.04);
  }
  .nav-cta {
    margin: 10px 22px 4px !important;
    border-radius: var(--radius) !important;
    justify-content: center;
    padding: 12px 20px !important;
  }
  /* Mobile dropdown */
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin: 0 0 4px 22px;
    min-width: auto;
    display: none;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown { display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown li a { padding: 10px 18px; border-left: none; }
  .dropdown li a:hover { background: rgba(255,255,255,.05); border-left: none; color: var(--gold); }
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 52px 0 46px;
  border-bottom: 3px solid var(--gold);
}
.page-hero .container { position: relative; }
.page-hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: var(--white);
}
.page-hero .page-hero-sub {
  font-size: .94rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  max-width: 560px;
}

/* ================================================
   HERO (index.html)
   ================================================ */
.hero {
  background:
    linear-gradient(135deg, rgba(9,25,41,.92) 0%, rgba(16,44,72,.85) 60%, rgba(9,25,41,.95) 100%),
    url('https://www.sheridanlawfirm.online/wp-content/uploads/2015/08/slide2.jpg') center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 90px 0;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Reusable Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(201,164,64,.35);
  transition: background .18s, transform .15s, box-shadow .18s;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,164,64,.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: var(--radius);
  transition: border-color .18s, color .18s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: 88px 0;
  background: var(--white);
}
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.section-sub {
  font-size: .96rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: box-shadow .22s, transform .22s, border-top-color .22s;
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(13,33,55,.1);
  transform: translateY(-5px);
  border-top-color: var(--gold);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 16px;
}
.service-card .card-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s, color .15s;
}
.service-card:hover .card-link { gap: 8px; }

/* ================================================
   ABOUT / INTRO SECTION
   ================================================ */
.about-section {
  padding: 90px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 760px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  font-size: .94rem;
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 16px;
}
.about-text .btn-gold { margin-top: 10px; }
.quote-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 42px 38px;
  position: relative;
}
.quote-box::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}
.quote-box blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.78;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.quote-box blockquote cite {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  margin-bottom: 30px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #070f1a;
  color: rgba(255,255,255,.62);
  padding-top: 62px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-tagline {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col p, .footer-col address {
  font-size: .86rem;
  line-height: 1.88;
  font-style: normal;
}
.footer-col a { color: rgba(255,255,255,.58); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-col h4 {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .86rem; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: rgba(255,255,255,.07);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.62) !important;
  transition: background .18s, color .18s;
}
.footer-social:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom p {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  line-height: 1.7;
}

/* ================================================
   INNER PAGE — CONTENT WRAPPER
   ================================================ */
.page-content {
  padding: 60px 0;
}
.page-content-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================
   PRACTICE AREAS PAGE
   ================================================ */
.practice-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 8px;
}
@media (max-width: 700px) { .practice-areas-grid { grid-template-columns: 1fr; } }
.pa-group { margin-bottom: 8px; }
.pa-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 0 10px 14px;
  border-left: 3px solid var(--gold);
  margin-bottom: 12px;
  background: rgba(13,33,55,.03);
}
.pa-group ul {
  list-style: disc;
  padding-left: 22px;
}
.pa-group ul li {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ================================================
   ATTORNEY PROFILE PAGE
   ================================================ */
.attorney-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 820px) { .attorney-layout { grid-template-columns: 1fr; } }
.attorney-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.attorney-sidebar-card img {
  width: 100%;
  display: block;
}
.attorney-card-body {
  padding: 22px 20px 24px;
}
.attorney-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-card-body .atty-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.attorney-card-body .atty-info {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.75;
}
.attorney-card-body .atty-info a { color: var(--gold); }
.attorney-card-body .atty-info a:hover { color: var(--gold-dark); text-decoration: underline; }
.attorney-card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.attorney-card-body .linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  margin-top: 8px;
  transition: background .18s;
}
.attorney-card-body .linkedin-btn:hover { background: var(--gold); color: var(--navy); }

/* Attorney bio content */
.attorney-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.attorney-content .atty-subtitle {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.atty-section { margin-bottom: 28px; }
.atty-section-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.atty-section-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
}
.atty-section p {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 6px;
}
.atty-section ul {
  list-style: disc;
  padding-left: 20px;
}
.atty-section ul li {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 6px;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.contact-col p { margin-bottom: 14px; line-height: 1.75; }
.contact-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 22px 0;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-card address { font-style: normal; line-height: 1.8; margin-bottom: 10px; }
.contact-attorneys { margin-top: 28px; }
.contact-attorneys h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.contact-attorneys .contact-detail {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.contact-attorneys .contact-detail strong { display: block; color: var(--navy); font-size:1rem; margin-bottom: 4px; }
.contact-attorneys .contact-detail a[href*="sheridan.html"] { color: var(--gold); font-size:.85rem; display:inline-block; margin-bottom:8px; }
.contact-athletes .contact-detail p { margin: 0 0 4px; font-size:.9rem; }
.connect-card { background: var(--navy); color: #e0dddd; }
.connect-card p { color: #d0cece; margin-bottom: 0; }
.connect-card strong { color: #fff; }
.contact-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 26px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-detail .c-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail .c-info strong {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-detail .c-info {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
}
.contact-detail .c-info a { color: var(--gold); }
.contact-detail .c-info a:hover { color: var(--gold-dark); text-decoration: underline; }
.contact-connect p {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 14px;
}
.linkedin-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .18s;
  margin-bottom: 24px;
}
.linkedin-cta:hover { background: var(--gold); color: var(--navy); }
.disclaimer-box {
  background: #fef9e7;
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.72;
}
.disclaimer-box strong {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
