/* ==========================================================================
   CounselCarolina — Main Stylesheet
   ==========================================================================

   TABLE OF CONTENTS
   -----------------
   01. CSS Custom Properties (Design Tokens)
   02. Typography
   03. Base / Reset
   04. Buttons
   05. Top Bar
   06. Site Header & Navbar
   07. Navbar — Scrolled State
   08. Navbar — Subpage State
   09. Logo
   10. Hamburger & Mobile Nav Drawer
   11. Dropdowns & Mega Menu
   12. Search Overlay
   13. Search Results Page
   14. Hero Slider
   15. Hero Banner (Subpage)
   16. Section Label
   17. Text / Image Block
   18. Recent Results
   19. Team
   20. Cases We Handle
   21. Awards
   22. Testimonials
   23. Job Listings
   24. Locations / Image Bleed
   25. Featured In Carousel
   26. Accordion
   27. Serving Section (CTA Block)
   28. Full Width Image
   29. Stat Banner
   30. Case Result Detail
   31. Three Column Cards Block
   32. Practice Areas Block
   33. Practice Detail Layout Block
   34. Case Evaluation Form Block
   35. Offices Block
   36. Partner / Team Member Page
   37. Weglot Language Toggle
   38. Footer
   39. Mobile / Responsive Overrides
   40. Production Layering / Z-index Safety

   ========================================================================== */


/* ==========================================================================
   01. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  --navy:          #113156;
  --navy-dark:     #113156;
  --blue-top-bar:  #218ec2;
  --blue-light:    #d5e8f2;
  --blue-mid:      #90c6e0;
  --sky:           #218ec2;
  --sky-bg:        #d7e7f2;
  --sky-section:   #d7e7f2;
  --orange:        #fc9a23;
  --orange-hover:  #e8881a;
  --white:         #ffffff;
  --off-white:     #f8f8f8;
  --gray-light:    #e6e6e6;
  --gray-bg:       #e6e6e6;
  --text-dark:     #1a1a1a;
  --text-white:    #ffffff;
  --text-body:     #000000;
}


/* ==========================================================================
   02. Typography
   ========================================================================== */

/* Headings use operetta-8; everything else uses calluna-sans */
h1, h2, h3, h4, .operetta {
  font-family: operetta-8, serif;
  font-weight: 600;
  font-style: normal;
}

h1 { font-size: 90px; line-height: 90px; }
h2 { font-size: 60px; line-height: 60px; }
h3 { font-size: 45px; line-height: 60px; }
h4 { font-size: 32px; line-height: 34px; }

h5 {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  margin: 20px 0 5px 0;
  color: var(--navy);
}

/* Formatted text block overrides */
.formatted-text-block h1 {
  font-size: 60px !important;
  line-height: 60px !important;
}

.formatted-text-block h2 {
  font-family: "calluna-sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  margin: 30px 0 10px 0;
  color: var(--navy);
}

.formatted-text-block strong {
  color: #218ec2 !important;
}
.formatted-text-block ul li {
	margin-bottom: 24px;
}


/* ==========================================================================
   03. Base / Reset
   ========================================================================== */

body {
  font-family: "calluna-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  font-size: 18px;
  line-height: 28px;
}

a {
  color: var(--sky);
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sky);
  text-decoration: underline;
  background-color: transparent;
}

/* WordPress admin bar offsets */
body.admin-bar #site-header        { top: 32px; }
body.subpage-body                  { padding-top: 134px; }
body.subpage-body.header-sticky    { padding-top: 92px; }

@media screen and (max-width: 782px) {
  body.admin-bar #site-header      { top: 46px; }
}


/* ==========================================================================
   04. Buttons
   ========================================================================== */

.btn-outline-orange {
  border: 3px solid var(--orange);
  color: var(--text-dark);
  background: var(--text-white);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-orange-light {
  border: 3px solid var(--orange);
  color: var(--white);
  background-color: transparent;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-orange-white {
  border: 3px solid var(--orange);
  color: var(--text-white);
  background: transparent;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-orange:hover,
.btn-outline-orange-white:hover,
.btn-outline-orange-light:hover {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
}

.btn-solid-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-solid-orange:hover {
  background: var(--orange-hover);
  color: #fff;
  text-decoration: none;
}


/* ==========================================================================
   05. Top Bar
   ========================================================================== */

.top-bar {
  background: var(--blue-top-bar);
  padding: 10px 0;
}

.top-bar .container-fluid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding-right: 40px;
}

.top-bar .btn-phone,
.site-footer .btn-phone {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 50px;
  padding: 6px 22px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.top-bar .btn-phone:hover,
.site-footer .btn-phone:hover {
  background: #fff;
  color: var(--navy);
}

.top-bar .btn-cta,
.site-footer .btn-cta {
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
}

.top-bar .btn-cta:hover,
.site-footer .btn-cta:hover {
  background: var(--orange-hover);
  color: #fff;
}
#contact {
  scroll-margin-top: 80px;
}

/* ==========================================================================
   06. Site Header & Navbar
   ========================================================================== */

#site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition: box-shadow 0.3s ease;
}

#site-header.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

#site-header.sticky .top-bar {
  display: none;
}

.main-nav {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  z-index: 100;
  padding: 16px 40px;
  transition: background 0.3s ease;
}

.main-nav .navbar-brand img {
  height: 120px;
}

.main-nav .nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px !important;
}

.main-nav .nav-link:hover {
  color: var(--sky) !important;
}

.nav-search {
  color: #fff;
  font-size: 16px;
}

.nav-right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: -40px;
  margin-right: -40px;
}

.nav-espanol {
  background: var(--sky);
  color: #fff !important;
  padding: 5px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 0;
}

.nav-espanol:hover {
  background: var(--navy);
  color: #fff !important;
}


/* ==========================================================================
   07. Navbar — Scrolled State
   ========================================================================== */

.main-nav.scrolled {
  background: #fff !important;
}

.main-nav.scrolled .nav-link         { color: var(--navy) !important; }
.main-nav.scrolled .nav-link:hover   { color: var(--orange) !important; }
.main-nav.scrolled .nav-espanol      { background: var(--sky); color: #fff !important; }

.main-nav.scrolled .nav-right-wrapper {
  gap: 10px;
  margin-top: -10px;
  margin-right: -40px;
}

.main-nav.scrolled .ham-bar {
  background: var(--navy);
}


/* ==========================================================================
   08. Navbar — Subpage State (fixed white from load)
   ========================================================================== */

#site-header.subpage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

body.admin-bar #site-header.subpage  { top: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar #site-header.subpage { top: 46px; }
}

#site-header.subpage .main-nav {
  background: #fff !important;
  position: relative;
  z-index: 10000;
  overflow: visible;
}

#site-header.subpage .main-nav .nav-link         { color: var(--navy) !important; }
#site-header.subpage .main-nav .nav-link:hover   { color: var(--orange) !important; }

#site-header.subpage .main-nav .navbar-brand img.logo-color { height: 60px; }

#site-header.subpage .main-nav .nav-right-wrapper {
  gap: 10px;
  margin-top: -10px;
  margin-right: -40px;
}

#site-header.subpage .ham-bar { background: var(--navy); }

/* Top bar collapses on scroll for subpages */
#site-header.subpage .top-bar {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
  opacity: 1;
}

#site-header.subpage.sticky .top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  display: block !important;
}

/* Overflow visible so dropdowns escape the fixed header */
#site-header.subpage .navbar,
#site-header.subpage .navbar-collapse,
#site-header.subpage .nav-right-wrapper,
#site-header.subpage .navbar-nav,
#site-header.subpage .cc-nav-list,
#site-header.subpage .cc-nav-item {
  position: relative;
  z-index: 10000;
  overflow: visible;
}

#site-header.subpage .cc-dropdown,
#site-header.subpage .cc-mega {
  z-index: 10001;
}

@media (max-width: 768px) {
  #site-header.subpage .top-bar { display: none !important; }
  body.subpage-body              { padding-top: 92px; }
}


/* ==========================================================================
   09. Logo
   ========================================================================== */

.logo-white { display: block; }
.logo-color  { display: none; }

.main-nav.scrolled .logo-white                           { display: none; }
.main-nav.scrolled .logo-color                           { display: block; }
.main-nav .navbar-brand img.logo-color                   { height: 60px; }

#site-header.subpage .main-nav .logo-white               { display: none; }
#site-header.subpage .main-nav .logo-color               { display: block; }


/* ==========================================================================
   10. Hamburger & Mobile Nav Drawer
   ========================================================================== */

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 300;
  flex-shrink: 0;
}

.ham-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

/* Open (X) state */
.hamburger.is-open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ── */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 190;
  overflow: hidden;
  pointer-events: none;
}

.mobile-nav-drawer.is-open {
  display: block;
  pointer-events: auto;
}

/* Two full-height screens that slide left/right */
.mnav-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mnav-screen-sub { transform: translateX(100%); }

.mobile-nav-drawer.sub-open .mnav-screen:not(.mnav-screen-sub) { transform: translateX(-100%); }
.mobile-nav-drawer.sub-open .mnav-screen-sub                   { transform: translateX(0); }

/* Accordion */
.mnav-accordion { flex: 1; padding: 50px; }

.mnav-row-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: "calluna-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.mnav-row-link { display: flex; }

.mnav-icon {
  font-size: 14px !important;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: #fff;
  opacity: 1;
}

.mnav-row-btn[aria-expanded="true"] .mnav-icon   { transform: rotate(180deg); }
.mnav-row-btn[aria-expanded="true"]              { border-bottom: 3px solid var(--orange); padding-bottom: 10px; }

.mnav-acc-body          { display: none; }
.mnav-acc-body.is-open  { display: block; padding: 10px 0; }

.mnav-acc-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0 0 20px;
  color: var(--text-white);
  font-family: "calluna-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

a.mnav-row-link:hover,
button.mnav-row-btn span:hover,
button.mnav-acc-link:hover,
a.mnav-acc-link:hover,
a.mnav-sub-link:hover {
  color: var(--orange) !important;
  text-decoration: none !important;
  cursor: pointer;
}

a.mnav-sub-link    { margin-left: 20px; }
.mnav-has-children { color: rgba(255, 255, 255, 0.9); font-weight: 700; }

/* CTA buttons */
.mnav-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 50px 50px;
  flex-shrink: 0;
}

.mnav-ctas .btn-cta {
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  display: inline-block;
}

.mnav-ctas .btn-cta:hover  { background: var(--orange-hover); }

.mnav-ctas .btn-phone {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 50px;
  padding: 6px 22px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

.mnav-ctas .btn-phone:hover { background: #fff; color: var(--navy); }

/* Sub-screen (level 3) */
.mnav-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 50px 50px 0;
  padding: 0 0 14px;
  background: none;
  border: none;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-family: "calluna-sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  width: calc(100% - 100px);
  text-align: left;
  flex-shrink: 0;
}

.mnav-back-btn i { font-size: 14px; }

.mnav-sub-panel            { display: none; flex-direction: column; padding: 0 50px; }
.mnav-sub-panel.is-active  { display: flex; }

.mnav-sub-title {
  font-family: "calluna-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  padding: 18px 0 10px;
  margin: 0;
}

.mnav-sub-link {
  display: block;
  padding: 7px 0;
  color: var(--text-white);
  font-family: "calluna-sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .mobile-nav-drawer {
    top: 100px !important;
    height: calc(100% - 100px) !important;
    z-index: 9999 !important;
  }
}


/* ==========================================================================
   11. Dropdowns & Mega Menu
   (styles live in nav partial CSS — placeholder for layering overrides)
   ========================================================================== */

/* Handled via z-index in sections 08 and 40 */


/* ==========================================================================
   12. Search Overlay
   ========================================================================== */

#search-overlay {
  display: none;
  z-index: 9999;
}

.block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(17, 49, 86, 0.95);
  border: #a0a0a0 solid 1px;
  margin: 0;
}

.block::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}

.centered {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 10px 15px;
  color: #fff;
  border: none;
  background: transparent;
}

#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}

#close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  font-size: 26px;
}

#close-btn:hover {
  color: #777;
  cursor: pointer;
}

li#search-toggle {
  cursor: pointer;
  margin: 0 0 0 20px;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 28px;
  line-height: 90px;
  color: #191919;
  transition: all 0.3s;
}

li#search-toggle:hover { color: #0074c8; }

#search-bar {
  position: absolute;
  top: 90px;
  width: 100%;
  z-index: 999;
  background: #eaeaea;
  padding: 15px 0;
  display: none;
}

#search-box input#s {
  -webkit-appearance: none;
  background: url(../img/arrow.svg) no-repeat right center;
  background-size: 60px;
  background-color: rgba(255, 255, 255, 1);
  border: none;
  padding: 0 5px 0 15px;
  margin: 0 !important;
  height: 57px;
  width: 100%;
  font-size: 16px;
  font-style: italic;
  transition: background 500ms ease;
}

#search-box input#s:focus {
  background-color: rgba(255, 255, 255, 1);
  outline: none;
}

#search-box input#searchsubmit {
  position: absolute;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
  width: 45px;
  height: 45px;
  top: 0;
  right: 15px;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 767px) {
  .centered { width: 95%; }
}


/* ==========================================================================
   13. Search Results Page
   ========================================================================== */

.search-results-page {
  padding: 0 0 80px;
}

/* Header */
.search-results-header  { margin-bottom: 48px; }

.search-results-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.search-results-count {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Search form */
.search-results-form { max-width: 560px; }

.search-results-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--navy);
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
}

.search-results-input-wrap input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 1rem;
  background: transparent;
  color: var(--navy);
  appearance: none;
  -webkit-appearance: none;
}

.search-results-input-wrap input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.search-results-input-wrap button {
  background: var(--navy);
  border: none;
  color: #fff;
  padding: 0 18px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-results-input-wrap button:hover { background: var(--sky); }

/* Result cards */
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-result-card {
  padding: 28px 32px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-result-card:hover { border-color: var(--navy); }

.search-result-type {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sky);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.search-result-title {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
}

.search-result-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.search-result-title a:hover { color: var(--orange); }

.search-result-excerpt {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin-bottom: 24px;
}

.search-result-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.search-result-cta:hover { color: var(--orange); text-decoration: none; }

/* No results */
.search-no-results { padding: 40px 0; }

.search-no-results p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 24px;
}

.search-no-results-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-no-results-links a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-no-results-links a:hover { background: var(--navy); color: #fff; }

/* Pagination */
.search-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 48px;
  align-items: center;
}

.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 0px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.search-pagination .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
}


/* ==========================================================================
   14. Hero Slider
   ========================================================================== */

.hero-wrapper { position: relative; }

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(17, 49, 86, 0.95) 0%, rgba(17, 49, 86, 0.25) 100%);
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}

.hero-content .hero-inner,
.hero-content .hero-inner h1,
.hero-content .hero-inner p { text-align: left; }

.hero-subheading {
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero h1 { color: #fff; font-size: 90px; line-height: 90px; }

.hero-dots { display: none; }

/* Swoosh */
.hero-swoosh {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 20;
  line-height: 0;
  overflow: hidden;
}

.hero-swoosh svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

.swoosh-mobile  { display: none; }
.swoosh-desktop { display: block; }

@media (max-width: 768px) {
  .hero-swoosh    { height: 80px; }
  .swoosh-desktop { display: none; }
  .swoosh-mobile  { display: block; }
}


/* ==========================================================================
   15. Hero Banner (Subpage)
   ========================================================================== */

.hero-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: visible;
  background: #ffffff;
}

.hero-banner__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-banner__blue {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #113156;
}

.hero-banner .hero-banner__blue h1 {
  color: var(--text-white);
  font-size: 36px;
  line-height: 36px;
  margin: 40px 0 10px;
}

.hero-banner .hero-banner__blue p,
.hero-banner .hero-banner__blue small { color: var(--text-white); }

.hero-banner .hero-banner__blue a {
  color: var(--text-white) !important;
  text-decoration: none;
  position: relative;
}

.hero-banner .hero-banner__blue a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fc9a23;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.hero-banner .hero-banner__blue a:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

@media (max-width: 991px) {
  .hero-banner          { height: auto; min-height: 350px; }
  .hero-banner__blue    { padding: 40px 0 80px; }
  .hero-banner__image   { background-position: center top; min-height: 350px; }
}

@media (max-width: 767px) {
  .hero-banner__image   { background-position: center top; min-height: 350px; }
}


/* ==========================================================================
   16. Section Label
   ========================================================================== */

.section-label {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: var(--orange);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 10px;
  text-align: left !important;
}

.section-label-line {
  width: 150px;
  height: 3px;
  background: var(--orange);
  margin-top: 6px;
  margin-bottom: 15px;
}


/* ==========================================================================
   17. Text / Image Block
   ========================================================================== */

.text-image-block {
  padding: 80px 0;
  background: #fff;
  overflow: visible;
}

.text-image-block .photo-col {
  position: relative;
  top: -225px;
  margin-bottom: -225px;
  z-index: 99;
}

@media (max-width: 991px) {
  .text-image-block .photo-col { top: 0; margin-bottom: 0; }
}

.text-image-block.img-fixed img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 4px;
}

.text-image-block.img-auto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.text-image-block ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-image-block ul.list li {
  padding: 5px 0;
  font-size: 17px;
  line-height: 28px;
  font-weight: 700;
}

.text-image-block ul.list li::before {
  content: "• ";
  color: var(--text-dark);
  font-weight: 900;
}

.text-image-block .mt-photo   { margin-top: 90px; }
.text-image-block img.mt-photo { max-width: 100%; height: auto; }

@media (max-width: 767px) {
  .text-image-block .mt-photo {
    margin-top: 0;
  }
}


/* ==========================================================================
   18. Recent Results
   ========================================================================== */

.results-section {
  background: var(--sky-bg);
  padding: 80px 0;
}

.results-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
  font-size: 60px;
}

.results-heading-banner {
  background-color: var(--navy);
  width: 100%;
  padding: 30px 0;
  margin-bottom: 40px;
}

.results-heading-banner h2 {
  color: #fff;
  margin: 0;
  font-size: 44px;
  line-height: 44px;
}

.results-heading-banner h3 {
  color: #fff;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
}

.result-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.results-section .row {
  align-items: stretch;
}

.results-section .row > [class*="col-"] {
  display: flex;
  margin-bottom: 28px;
}

.result-card .icon-row {
  flex: 1;
}

.result-card .learn-more {
  margin-top: auto;
}

.result-card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
   background: #fff;	
  text-decoration: none;
}

.result-card .label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.result-card .amount {
  font-family: operetta-8, serif;
  font-size: 42px;
  font-weight: 700;
  color: #218ec2;
  margin-bottom: 16px;
  line-height: 1;
}

.result-card .icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.result-card .case-icon {
  color: var(--orange);
  min-width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card .case-icon svg { width: 80px; height: 80px; fill: currentColor; }

.result-card .case-desc {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  text-align: left;
}

.result-card .learn-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  padding-top: 16px;
  display: block;
}

.result-card:hover .learn-more { color: var(--orange); }

.results-section--banner { padding-top: 0; }
.results-section .btn-outline-orange { margin-top: 16px; }


/* ==========================================================================
   19. Team
   ========================================================================== */

.team-section          { padding: 80px 0; background: #fff; }
.team-section-internal { padding: 0 0 40px; background: #fff; }

.team-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.team-photo-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.35s ease;
}

.team-photo-card:hover img { transform: scale(1.02); }

.team-photo-card .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; }

.team-photo-card .name-bar {
  background: rgba(10, 40, 80, 0.82);
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  padding: 10px;
  text-align: center;
}

.team-photo-card .role-bar {
  background: var(--blue-top-bar);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px 12px;
  text-align: center;
}

.team-photo-card .card-hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 35px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.team-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.team-photo-card:hover::after        { background: rgba(0, 0, 0, 0.45); }
.team-photo-card:hover .card-hover-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ── Team Filter Bar ───────────────────────────────────────────── */
.team-filter-bar {
  position: relative;
  background: var(--sky-bg, #d7e7f2);
  padding: 0;
  margin-bottom: 40px;
  border-top: 1px solid #113156;
}

/* ── Desktop Filter Tabs ───────────────────────────────────────── */
.team-filter-bar .team-filter-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

.team-filter-bar .team-filter-tabs > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.team-filter-bar .team-filter-tabs > li > button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--navy, #113156);
  font-family: "calluna-sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 18px 36px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.team-filter-bar .team-filter-tabs > li > button:hover {
  color: var(--orange, #fc9a23);
}

.team-filter-bar .team-filter-tabs > li > button[aria-selected="true"] {
  color: var(--navy, #113156);
}

/*
 * Prevent active borders or pseudo-elements from creating
 * a second orange bar beneath a tab.
 */
.team-filter-bar .team-filter-tabs > li.active,
.team-filter-bar .team-filter-tabs > li > button.active {
  border-bottom: 0 !important;
  background-image: none !important;
  box-shadow: none !important;
}

.team-filter-bar .team-filter-tabs > li::before,
.team-filter-bar .team-filter-tabs > li::after,
.team-filter-bar .team-filter-tabs > li > button::before,
.team-filter-bar .team-filter-tabs > li > button::after {
  content: none !important;
  display: none !important;
}

/* ── Sliding Desktop Indicator ─────────────────────────────────── */
.team-filter-indicator {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange, #fc9a23);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, width;
}

/* ── Mobile Dropdown ───────────────────────────────────────────── */

/* Hidden on desktop */
.team-mobile-filter {
  display: none;
}

/* ── Team Grid Transition ──────────────────────────────────────── */
#teamGrid {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  will-change: opacity, transform;
}

#teamGrid.is-filtering {
  opacity: 0;
  transform: translateY(6px);
}

/* ── Mobile Layout ─────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .team-filter-bar {
    padding: 16px 0;
  }

  /* Hide desktop tabs and indicator */
  .team-filter-bar .team-filter-tabs,
  .team-filter-indicator {
    display: none;
  }

  /* Show mobile dropdown */
  .team-mobile-filter {
    display: block;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }

  .team-filter-select {
    display: block;
    width: 100%;
    height: 42px;
    margin: 0;
        border: 1px solid #aac3d5;
    border-radius: 4px;
    padding: 8px 14px;
    background: #fff;
    color: var(--navy, #113156);
    font-family: "calluna-sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
    cursor: pointer;
    box-sizing: border-box;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
      linear-gradient(
        45deg,
        transparent 50%,
        var(--navy, #113156) 50%
      ),
      linear-gradient(
        135deg,
        var(--navy, #113156) 50%,
        transparent 50%
      );

    background-position:
      calc(100% - 19px) 50%,
      calc(100% - 14px) 50%;

    background-size:
      5px 5px,
      5px 5px;

    background-repeat: no-repeat;
  }

  .team-filter-select:hover {
    border-color: var(--navy, #113156);
  }

  .team-filter-select:focus {
    border-color: var(--navy, #113156);
    outline: 2px solid rgba(17, 49, 86, 0.2);
    outline-offset: 1px;
  }

  .team-filter-select::-ms-expand {
    display: none;
  }
}

/* ── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .team-filter-indicator,
  #teamGrid {
    transition: none;
  }
}


.team-col {
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.team-col.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

@media (max-width: 576px) {
  .team-filter-bar li button { padding: 14px 16px; font-size: 13px; }
}


/* ==========================================================================
   20. Cases We Handle
   ========================================================================== */

.cases-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cases-parallax-bg { position: absolute; inset: -80px 0; z-index: 0; }

.cases-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 49, 86, 0.5);
  z-index: 0;
}

.cases-section h2      { color: #fff; margin-bottom: 8px; }
.cases-section .sub-stat { font-size: 22px; font-weight: 400; margin-bottom: 48px; }
.cases-section .sub-stat span { font-family: "calluna-sans", sans-serif; font-size: 36px; font-weight: 700; }

.case-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 10px 15px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.case-card:hover { background: #fff; color: var(--navy); }

.case-card:hover .case-icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(749%) hue-rotate(182deg) brightness(95%) contrast(95%);
}

.case-card:hover .case-name { color: var(--navy); }

.case-card .case-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.case-card .case-icon img {
  width: 120px;
  height: 120px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.case-card .case-name {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.cases-section .cases-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: stretch;
}

.cases-section .cases-row .case-col {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 260px;
  display: flex;
}

.cases-section .btn-outline-orange:hover { color: #fff; }


/* ==========================================================================
   21. Awards
   ========================================================================== */

.awards-section { padding: 80px 0; background: #fff; }
.awards-section .awards-photo { margin-top: 90px; }
.awards-section img.awards-photo { max-width: 100%; height: auto; }

.awards-list { list-style: none; padding: 0; margin: 0; }

.awards-list li {
  padding: 5px 0;
  font-size: 17px;
  line-height: 28px;
  font-weight: 700;
}

.awards-list li::before { content: "• "; color: var(--text-dark); font-weight: 900; }


/* ==========================================================================
   22. Testimonials
   ========================================================================== */

.testimonials-section {
  background: #90c6e0;
  padding: 60px 0;
  text-align: center;
}

.testimonials-slider { position: relative; }

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.testimonial-slide.active { position: relative; opacity: 1; pointer-events: auto; }

.testimonials-section blockquote {
  font-family: operetta-8, serif;
  font-size: 38px;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 780px;
  margin: 0 auto 16px;
  font-weight: 600;
}

.testimonial-client {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

p.testimonial-client { text-align: left !important; }

/* Navy variant */
.testimonials-navy             { background: var(--navy); }
.testimonials-navy blockquote  { color: #fff; }
.testimonials-navy .testimonial-client { color: var(--text-white); }

/* Testimonial archive item */
.testimonial-item   { border-top: none; }
.testimonial-date   { font-size: 14px; color: #666; margin-top: -10px; }
.testimonial-body p { font-size: 18px; line-height: 28px; color: var(--text-dark); }


/* ==========================================================================
   23. Job Listings
   ========================================================================== */

.job-listings { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.job-listing-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 28px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.job-listing-btn:hover { background: var(--orange-hover); color: #fff; text-decoration: none; }
.job-listing-btn i     { font-size: 20px; flex-shrink: 0; margin-left: 16px; }


/* ==========================================================================
   24. Locations / Image Bleed
   ========================================================================== */

.image-bleed-section { overflow: hidden; background: #fff; }

.image-bleed-inner { display: flex; align-items: center; }

.image-bleed-text-col {
  flex: 0 0 auto;
  padding: 80px 48px 80px calc((100vw - 1140px) / 2 + 12px);
  width: calc((100vw - 1140px) / 2 + 1140px * 6 / 12);
  min-width: 400px;
  box-sizing: border-box;
}

.image-bleed-map-col { flex: 1 1 0; min-width: 0; align-self: stretch;margin-left: 50px; }

.image-bleed-map-col img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 325px;
  object-fit: cover;
  padding: 80px 0;
}

@media (max-width: 991.98px) {
  .image-bleed-inner        { flex-direction: column; }
  .image-bleed-text-col     { width: 100%; padding: 60px 24px 40px; }
  .image-bleed-map-col      { width: 100%; margin-left: 0; }
  .image-bleed-map-col img  { min-height: 260px; }
}

@media (min-width: 992px) and (max-width: 1343px) {
  .image-bleed-text-col     { padding: 80px 48px 80px 24px; width: 42%; }
}
@media (max-width: 575.98px) {
  .image-bleed-text-col {
    padding: 40px 20px 0px;
  }
}

/* ==========================================================================
   25. Featured In Carousel
   ========================================================================== */

.featured-in { background: var(--gray-bg); padding: 48px 0; text-align: center; }

.featured-in h4 {
  font-family: operetta-8, serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 36px;
}

.logo-carousel-wrap     { display: flex; align-items: center; justify-content: center; }
.logo-carousel-viewport { overflow: hidden; width: 1000px; }

.logo-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.logo-box {
  flex: 0 0 250px;
  border-right: 1px solid #c8c8c8;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  box-sizing: border-box;
}

.logo-box:first-child,
.logo-box.logo-box--first { border-left: 1px solid #c8c8c8; }

.logo-box img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}

.logo-box img:hover { filter: grayscale(0%); opacity: 1; }

.featured-nav {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0 20px;
  opacity: 0.5;
}

.featured-nav:hover { opacity: 1; }


/* ==========================================================================
   26. Accordion
   ========================================================================== */

.accordion-wrapper { padding: 80px 0; background: #fff; }

.accordion-item-custom { border-bottom: 1px solid #ccc; }

.accordion-item-custom .acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  user-select: none;
}

.accordion-item-custom .acc-header:hover { color: var(--blue-top-bar); }

.accordion-item-custom .acc-icon {
  font-size: 16px;
  color: var(--navy-dark);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.accordion-item-custom.open .acc-icon { transform: rotate(180deg); }

.accordion-item-custom .acc-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.accordion-item-custom.open .acc-body-wrap { grid-template-rows: 1fr; }

.accordion-item-custom .acc-body-inner { overflow: hidden; padding-bottom: 0; transition: padding-bottom 0.35s ease; }
.accordion-item-custom.open .acc-body-inner { padding-bottom: 20px; }

.accordion-item-custom .acc-body-inner p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-dark);
  margin: 0 0 20px 0;;
}

.acc-body-inner ul { list-style: none; padding: 0; margin: 0; }

.acc-body-inner ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
	margin-bottom: 18px;
}

.acc-body-inner ul li::before         { content: "•"; color: inherit; margin-right: 8px; }
.acc-body-inner ul li:has(a)::before  { color: var(--sky); }

/* Ready to Talk card */
.ready-card {
  background: #218ec2;
  border-radius: 16px;
  padding: 40px 50px;
}

.ready-card h4  { margin-bottom: 30px; color: #fff; }

.ready-card p {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.ready-card p a {
  font-size: 18px;
  line-height: 22px;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.ready-card p a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #f7ab22;
  transition: width 0.3s ease;
}

.ready-card p a:hover::after,
.ready-card p a:focus::after { width: 100%; }


/* ==========================================================================
   27. Serving Section (CTA Block)
   ========================================================================== */

.serving-section { padding: 60px 0; }

.serving-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
}

.serving-eyebrow {
  color: var(--white);
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.serving-headline { color: var(--white); margin-bottom: 30px; }

.serving-body {
  color: var(--white);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Light variants */
.serving-card--light { background: var(--blue-light); }

.serving-card--light .serving-eyebrow,
.serving-card--light .serving-headline { color: var(--navy); }
.serving-card--light .serving-body     { color: var(--navy); }

.serving-card--light-gray { background: #d0d6dc; }

.serving-card--light-gray .serving-eyebrow,
.serving-card--light-gray .serving-headline { color: var(--text-dark); }
.serving-card--light-gray .serving-body     { color: var(--text-dark); }


/* ==========================================================================
   28. Full Width Image
   ========================================================================== */

.fullwidth-image            { width: 100%; height: 500px; overflow: hidden; }
.fullwidth-image img        { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ==========================================================================
   29. Stat Banner
   ========================================================================== */

.stat-banner { background: #113156; padding: 40px 0; }

.sub-stat {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

#stat-countup { font-size: 44px; }


/* ==========================================================================
   30. Case Result Detail
   ========================================================================== */

.case-result-detail { margin-top: -250px; }

.settlement-negative-space {
  z-index: 99;
  padding: 50px 80px;
  background: #fff;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .settlement-negative-space {
  padding: 40px 20px;
  }
}
.case-result-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #218ec2;
  margin-bottom: 10px;
}

.case-result-amount {
  font-family: operetta-8, serif;
  font-size: clamp(56px, 8vw, 62px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
}

.case-result-amount span { text-transform: uppercase; }

.case-result-summary {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

.case-result-body        { padding-top: 30px; }
.case-result-body p      { font-size: 16px; line-height: 1.7; color: var(--text-dark); margin-bottom: 24px; }
.case-result-body a      { text-decoration: none; }
.case-result-body a:hover { text-decoration: underline; }

.case-result-share {
  padding-top: 30px;
  margin: 30px 0;
  display: flex;
  gap: 18px;
}

.case-result-share a {
  color: #aaa;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.case-result-share a:hover { color: var(--navy); }


/* ==========================================================================
   31. Three Column Cards Block
   ========================================================================== */

.three-col-cards-block        { display: flex; }
.three-col-cards-block .row   { width: 100%; align-items: stretch; }
.three-col-cards-block .col-lg-4 { padding: 0; }

.tcc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px;
  width: 100%;
  min-height: 400px;
}

.tcc-heading {
  font-size: 38px;
  line-height: 38px;
  font-family: operetta-8, serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.tcc-content {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  font-family: "calluna-sans", sans-serif;
  color: #fff;
  margin-bottom: auto;
}

.tcc-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tcc-link:hover { opacity: 0.7; text-decoration: none; color: #fff; }

@media (max-width: 991px) {
  .tcc-card    { min-height: 400px; padding: 50px 35px; }
  .tcc-heading { font-size: 34px; }
}

@media (max-width: 767px) {
  .tcc-card { min-height: auto; padding: 50px 30px; }
}


/* ==========================================================================
   32. Practice Areas Block
   ========================================================================== */

.practice-areas-block { padding: 0; }

.pa-row         { width: 100%; padding: 40px 0; }
.pa-row--light  { background-color: #d6e8f0; }
.pa-row--white  { background-color: #fff; }

.pa-row-inner { display: flex; align-items: center; gap: 60px; }

.pa-card-wrap { flex: 0 0 275px; width: 275px; }

.pa-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 10px 15px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.pa-card:hover { background: #fff; color: var(--navy); text-decoration: none; }

.pa-card:hover .pa-icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(749%) hue-rotate(182deg) brightness(95%) contrast(95%);
}

.pa-card:hover .pa-label { color: var(--navy); }

.pa-card .pa-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.pa-card .pa-icon img {
  width: 120px;
  height: 120px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.pa-card .pa-label {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s ease;
}

.pa-links     { flex: 1; display: flex; gap: 40px; }
.pa-links-col { flex: 1; display: flex; flex-direction: column; gap: 14px; }

.pa-link {
  color: #218ec2;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.pa-link:hover { color: #218ec2; text-decoration: underline; }

@media (max-width: 768px) {
  .pa-row       { padding: 30px 0; }
  .pa-row-inner { flex-direction: column; gap: 24px; }
  .pa-card-wrap { width: 100%; flex: none; }
  .pa-links     { flex-direction: column; gap: 12px; width: 100%; }
}


/* ==========================================================================
   33. Practice Detail Layout Block
   ========================================================================== */

.practice-detail-block  { padding: 70px 0; background: #fff; }
.practice-detail-main   { padding-right: 35px; }
.practice-detail-image  { margin: 0 0 45px; }
.practice-detail-image img { display: block; width: 100%; height: auto; }

.practice-detail-image-intro img,
.practice-detail-inline-image img { object-fit: cover; }

.practice-detail-inline-image figcaption { margin-top: 10px; font-size: 14px; color: #5e6770; }

.practice-content-section { margin-bottom: 42px; }

.practice-content-section h2,
.practice-accordion-wrap h2 {
  color: #113156;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.practice-content-copy,
.practice-content-copy p,
.practice-content-copy li,
.practice-accordion .acc-body-inner,
.practice-accordion .acc-body-inner p,
.practice-accordion .acc-body-inner li {
  color: #000;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.practice-content-copy h3 {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  color: #113156;
  margin: 10px 0 5px !important;
}

.practice-content-copy p,
.practice-content-copy ul,
.practice-content-copy ol { margin-bottom: 18px; }

.practice-content-copy ul,
.practice-content-copy ol,
.practice-accordion .acc-body-inner ul,
.practice-accordion .acc-body-inner ol { padding-left: 22px; }

.practice-content-copy li,
.practice-accordion .acc-body-inner li { margin-bottom: 4px; }

.practice-detail-sidebar { margin-top: 0; }

.practice-sidebar-inner { display: flex; flex-direction: column; gap: 38px; }

@media (min-width: 992px) {
  .practice-sidebar-inner.is-sticky { position: sticky; top: 115px; }
}

.practice-sidebar-card    { border-radius: 24px; overflow: hidden; }

.practice-sidebar-link-card,
.practice-sidebar-stat-card { padding: 30px 20px; }

.practice-sidebar-card h3 {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
}

.practice-sidebar-link-card.card-style-gray { background: #dce0e5; color: #000; }
.practice-sidebar-link-card.card-style-blue { background: #d7e8f2; color: #000; }

.practice-sidebar-link-card h3 {
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #000;
}

.sidebar-card-intro,
.sidebar-card-intro p { font-size: 18px; line-height: 22px; margin-bottom: 14px; }

.sidebar-link-list {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.sidebar-link-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 700;
}

.sidebar-link-list li::before { content: "•"; position: absolute; left: 0; top: 0; color: #000; }
.sidebar-link-list li:has(a)  { color: #218ec2; }
.sidebar-link-list li:has(a)::before { color: #218ec2; }

.sidebar-link-list a         { color: #218ec2; text-decoration: none; }
.sidebar-link-list a:hover,
.sidebar-link-list a:focus   { color: #072e56; text-decoration: underline; }

.practice-sidebar-cta-card   { padding: 0; background: #1598cf; color: #fff; }
.sidebar-cta-image img        { display: block; width: 100%; height: auto; }
.sidebar-cta-content          { padding: 25px 28px 30px; }

.sidebar-cta-copy,
.sidebar-cta-copy p { color: #fff; font-size: 18px; line-height: 22px; margin-bottom: 30px; }

.practice-sidebar-stat-card   { background: #08294d; color: #fff; }
.practice-sidebar-stat-card h3 { color: #fff; }

.sidebar-stat-copy,
.sidebar-stat-copy p,
.sidebar-stat-copy li { color: #fff; font-size: 18px; line-height: 22px; }

.sidebar-stat-copy p:last-child,
.sidebar-cta-copy p:last-child,
.sidebar-card-intro p:last-child { margin-bottom: 0; }

/* Practice accordion */
.practice-accordion-wrap { margin-top: 25px; }
.practice-accordion      { border-top: 1px solid #d9dde2; }

.practice-accordion .accordion-item-custom { border-bottom: 1px solid #d9dde2; }

.practice-accordion .acc-header {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #072e56;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.practice-accordion .acc-icon { flex: 0 0 auto; color: #072e56; font-size: 14px; transition: transform 0.2s ease; }
.practice-accordion .accordion-item-custom.open .acc-icon { transform: rotate(180deg); }

.practice-accordion .acc-body-wrap { display: none; padding: 0 0 24px; }
.practice-accordion .accordion-item-custom.open .acc-body-wrap { display: block; }
.practice-accordion .acc-body-inner > *:last-child { margin-bottom: 0; }

@media (max-width: 1199px) {
  .practice-content-section h2,
  .practice-accordion-wrap h2 { font-size: 28px; }
  .practice-sidebar-card h3   { font-size: 21px; }
}

@media (max-width: 991px) {
  .practice-detail-block    { padding: 50px 0; }
  .practice-detail-main     { padding-right: 15px; }
  .practice-detail-sidebar  { margin-top: 40px; }
  .practice-sidebar-inner   { gap: 25px; }
}

@media (max-width: 767px) {
  .practice-content-section h2,
  .practice-accordion-wrap h2   { font-size: 25px; }
  .practice-content-section     { margin-bottom: 34px; }
  .practice-detail-image        { margin-bottom: 34px; }
  .practice-accordion .acc-header { font-size: 18px; padding: 18px 0; }

  .practice-sidebar-link-card,
  .practice-sidebar-stat-card,
  .sidebar-cta-content          { padding: 24px; }
}
.practice-read-more-toggle {
  display: none;
}

@media (max-width: 991.98px) {
  .practice-mobile-read-more:not(.is-expanded) .practice-content-copy > *:not(:first-child) {
    display: none;
  }

  .practice-read-more-toggle {
    display: inline-flex;
    margin-top: 16px;
  }
}

@media (min-width: 992px) {
  .practice-mobile-read-more .practice-content-copy > * {
    display: block;
  }
}

/* ==========================================================================
   34. Case Evaluation Form Block
   ========================================================================== */

.cc-eval-block { background-color: #218ec2; padding: 80px 0; color: #fff; }

.cc-eval-inner { text-align: center; margin: 0 auto; }

.cc-eval-eyebrow {
  color: var(--white);
  font-family: "calluna-sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.cc-eval-heading { font-size: 60px; line-height: 60px; font-weight: 600; margin-bottom: 24px; color: #000; }

.cc-eval-desc    { max-width: 860px; margin: 0 auto; }
.cc-eval-desc p  { font-size: 18px; line-height: 28px; margin-bottom: 40px; color: #fff; }
.cc-eval-desc p a { color: #fff; }

/* Reset NF chrome */
.cc-eval-form .nf-form-cont,
.cc-eval-form .nf-form-layout,
.cc-eval-form .nf-form-content,
.cc-eval-form .nf-before-form-content,
.cc-eval-form .nf-after-form-content {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.cc-eval-form .nf-form-fields-required { display: none !important; }
.cc-eval-form .nf-field-label           { display: none !important; }

/* Inputs & textarea */
.cc-eval-form .nf-field-element input[type="text"],
.cc-eval-form .nf-field-element input[type="email"],
.cc-eval-form .nf-field-element input[type="tel"],
.cc-eval-form .nf-field-element textarea {
  background: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  padding: 16px 18px !important;
  font-size: 16px !important;
  color: #333 !important;
  width: 100% !important;
  box-shadow: none !important;
  outline: none !important;
}

.cc-eval-form .nf-field-element input::placeholder,
.cc-eval-form .nf-field-element textarea::placeholder { color: #555 !important; }

.cc-eval-form .nf-field-element textarea { height: 198px !important; resize: none !important; }
.cc-eval-form .nf-field-container        { margin-bottom: 12px !important; }

/* SMS consent */
.cc-eval-form .html-container .nf-field-element,
.cc-eval-form .html-container .nf-field-element small {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5 !important;
  text-align: left !important;
  display: block !important;
}

/* "I am human" checkbox */
.cc-eval-form .cf-human {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  padding: 10px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 10px !important;
  width: auto !important;
  margin-top: 15px;
}

.cc-eval-form .cf-human .nf-field {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 10px !important;
}

.cc-eval-form .cf-human .nf-field-label { display: block !important; margin: 0 !important; }

.cc-eval-form .cf-human .nf-field-label label {
  font-size: 16px !important;
  color: #fff !important;
  margin: 0 0 0 10px !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.cc-eval-form .cf-human .nf-field-element {
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.cc-eval-form .cf-human input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  border: 2px solid #fff !important;
  border-radius: 3px !important;
  background: transparent !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  position: relative !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

.cc-eval-form .cf-human input[type="checkbox"]:checked::after {
  content: '' !important;
  position: absolute !important;
  left: 3px !important;
  top: 0 !important;
  width: 5px !important;
  height: 10px !important;
  border: 2px solid #fff !important;
  border-top: none !important;
  border-left: none !important;
  transform: rotate(45deg) !important;
  display: block !important;
}

.cc-eval-form .cf-human .ninja-forms-req-symbol { display: none !important; }

.cc-eval-form .checkbox-container { text-align: left !important; }

.cc-eval-form .nf-row:has(.cf-human),
.cc-eval-form .nf-cell:has(.cf-human),
.cc-eval-form .nf-field-container.checkbox-container {
  display: flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Submit button */
.cc-eval-form .cf-send .nf-field-element { text-align: left !important; }

.cc-eval-form input[type="submit"].ninja-forms-field,
.cc-eval-form input[type="button"].ninja-forms-field {
  margin-top: 15px;
  background: transparent !important;
  border: 2px solid var(--orange) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 14px 0 !important;
  width: 150px !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s, color 0.2s !important;
  display: block !important;
}

.cc-eval-form input[type="submit"].ninja-forms-field:hover,
.cc-eval-form input[type="button"].ninja-forms-field:hover {
  background: var(--orange) !important;
  color: #fff !important;
}

.cc-eval-form input[type="submit"].ninja-forms-field:disabled,
.cc-eval-form input[type="button"].ninja-forms-field:disabled { opacity: 1 !important; cursor: pointer !important; }

/* Errors */
.cc-eval-form .nf-error-msg             { color: #ffe08a !important; font-size: 12px !important; text-align: left !important; }
.cc-eval-form .nf-error .ninja-forms-field { border-color: #ffe08a !important; }
.cc-eval-form .nf-form-errors .nf-error-msg { color: #ffe08a !important; font-size: 13px !important; margin-top: 8px !important; }


/* ==========================================================================
   35. Offices Block
   ========================================================================== */

.office-card { border-radius: 16px; overflow: hidden; background: #fff; height: 100%; padding: 30px; }

.office-card img { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: 10px; }

.office-card-body       { padding: 10px 0; }
.office-card-body h3    { font-size: 26px; line-height: 30px; margin-bottom: 5px; margin-top: 10px; }
.office-card-body p     { font-size: 16px; margin-bottom: 16px; }

.office-card-body a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}

.office-card-body a:hover { color: var(--orange); }


/* ==========================================================================
   36. Partner / Team Member Page
   ========================================================================== */

#partner-page h2 { font-size: 36px; line-height: 40px; margin: 20px 0 40px 0; }

.team-headshot        { display: block; margin-bottom: 40px; }
.team-headshot img    { max-width: 100%; height: auto; }

@media (max-width: 991px) {
  .team-headshot.d-block {
    height: 450px;
    background-size: cover;
    background-position: center top;
    margin-bottom: 0;
  }
}

.negative-space { margin-top: -275px; z-index: 99; }

@media (max-width: 991px) { .negative-space { margin-top: 0; } }

.team-details { border-top: 1px solid #ccc; display: block; margin-bottom: 40px; }

ul#team-awards { padding: 0; margin: 40px 0; display: block; width: 100%; list-style: none; float: left; }
ul#team-awards li { padding: 0; margin: 0 20px 0 0; list-style: none; float: left; }
ul#team-awards li img { max-width: 100px; height: auto; }

/* Photo carousel (team member page) */
.cc-section { background: var(--gray-bg); padding: 80px 0 0; position: relative; }

.cc-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: -120px;
}

.cc-section h3  { margin-bottom: 30px; }
.cc-body        { font-size: 18px; line-height: 1.7; color: var(--text-body); }

.cc-carousel-viewport { overflow: hidden; width: 100%; }

.cc-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-slide { flex: 0 0 calc(33.333% - 16px); border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.cc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.cc-arrow:hover   { opacity: 1; }
.cc-arrow--prev   { left: -20px; }
.cc-arrow--next   { right: -20px; }

.cc-section + section,
.cc-section + div { padding-top: 120px; }

@media (max-width: 991px) {
  .cc-slide                      { flex: 0 0 calc(50% - 12px); }
  .cc-section + section,
  .cc-section + div              { padding-top: 100px; }
}

@media (max-width: 767px) {
  .cc-slide            { flex: 0 0 100%; }
  .cc-carousel-wrap    { padding: 0 40px; }
  .cc-arrow--prev      { left: 0; }
  .cc-arrow--next      { right: 0; }
  .cc-section + section,
  .cc-section + div    { padding-top: 80px; }
}


/* ==========================================================================
   37. Weglot Language Toggle
   ========================================================================== */

/* Hide the Weglot widget — we render our own toggle link */
.weglot_switcher      { background: transparent !important; border: none !important; box-shadow: none !important; }
.country-selector label.wgcurrent  { display: none !important; }
.country-selector input.weglot_choice { display: none !important; }

a.cc-lang-toggle {
  display: block !important;
  background: #218ec2 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 5px 20px !important;
  text-decoration: none !important;
  border-radius: 0 !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

a.cc-lang-toggle:hover { background: #1a6e96 !important; text-decoration: none !important; }


.country-selector {
    display: none !important;
}

/* ==========================================================================
   38. Footer
   ========================================================================== */

.footer-cta-mobile  { display: none; }
.footer-cta-desktop { display: flex; gap: 1rem; margin-left: 20px; }

.site-footer { background: var(--navy-dark); color: #fff; padding: 60px 0 32px; }

.site-footer .footer-logo img          { height: 80px; margin-bottom: 20px; }
.site-footer .footer-logo .logo-text-main { font-family: operetta-8, serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1.1; }
.site-footer .footer-logo .logo-text-sub  { font-size: 11px; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; }

.site-footer p,
.site-footer a    { font-size: 18px; line-height: 28px; color: var(--text-white); }

.site-footer a           { text-decoration: none; }
.site-footer a:hover     { color: #fff; }
.site-footer .footer-email { color: #fff; font-weight: 700; display: inline-block; margin-bottom: 24px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--text-dark);
  font-size: 16px;
  margin-right: 8px;
}

.footer-social a:hover { background: var(--orange); }

.footer-offices h6            { font-size: 18px; text-transform: uppercase; color: var(--text-white); margin-bottom: 20px; }
.footer-offices .office-city  { font-weight: 700; font-size: 18px; line-height: 28px; color: var(--text-white); margin-bottom: 2px; }
.footer-offices .office-addr  { font-size: 18px; line-height: 28px; color: var(--text-white); margin-bottom: 20px; }

.footer-offices .btn-phone-footer {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-right: 12px;
  display: inline-block;
}

.footer-offices .btn-phone-footer:hover { background: #fff; color: var(--navy); }

.footer-member h6             { font-size: 18px; text-transform: uppercase; color: var(--text-white); margin-bottom: 20px; }
.footer-member .member-badge  { padding: 0; margin-bottom: 20px; }
.footer-member .member-badge img { max-height: 50px; width: auto; opacity: 0.5; }

.footer-bottom        { background: #218ec2; padding: 40px 0; }
.footer-bottom p      { font-size: 13px; color: var(--text-white); margin: 0; line-height: 20px; }
.footer-bottom .footer-copy { font-size: 17px; color: var(--text-white); margin-top: 12px; }
.footer-bottom a      { color: var(--text-white); }

.footer-brand       { margin-bottom: 40px; }
.footer-brand img   { max-width: 175px; height: auto; }


/* ==========================================================================
   39. Mobile / Responsive Overrides
   ========================================================================== */

@media (max-width: 768px) {
  h1                    { font-size: 60px; line-height: 60px; }
  h2,
  .results-section h2   { font-size: 50px; line-height: 50px; }
  h3                    { font-size: 36px; line-height: 36px; }

  .top-bar              { display: none; }

  .hero                 { height: 90vh; min-height: 90vh; }
  .hero h1              { font-size: 64px; line-height: 64px; }
  .hero-subheading      { font-size: 26px; line-height: 30px; margin-bottom: 8px; }
  .hero-slide           { align-items: flex-end; }
  .hero-content         { padding: 0 24px 130px; }

  .hamburger            { display: flex; }
  .navbar-collapse      { display: none !important; }

  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }

  .mobile-nav-drawer    { top: 92px; height: calc(100% - 92px); }

  .testimonials-section blockquote { font-size: 24px; }
  .team-photo-card img  { height: 300px; }

  /* Logo carousel: 1 at a time, no dividers */
  .logo-carousel-viewport   { width: 250px; }
  .logo-box                 { border-right: none; border-left: none; }
  .logo-box:first-child,
  .logo-box.logo-box--first { border-left: none; }

  /* Cases: disable parallax */
  .cases-parallax-bg {
    position: absolute;
    inset: 0;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .footer-cta-mobile  { display: flex; gap: 1rem; margin-top: 20px; margin-bottom: 3rem; margin-left: 15px; }
  .footer-cta-desktop { display: none; }
}


/* ==========================================================================
   40. Production Layering / Z-index Safety
   ========================================================================== */

#site-header        { z-index: 9999; }
#site-header.sticky { z-index: 9999; }

#site-header .main-nav,
#site-header .navbar,
#site-header .navbar-collapse,
#site-header .nav-right-wrapper,
#site-header .navbar-nav,
#site-header .cc-nav-list,
#site-header .cc-nav-item { overflow: visible; }

#site-header .cc-dropdown,
#site-header .cc-mega     { z-index: 10001; }

.hero-banner,
.hero-banner__blue,
.hero-banner__image { position: relative; z-index: 1; }

.hero-swoosh        { z-index: 2; }

#mobileNavDrawer,
.mobile-nav-drawer  { z-index: 10002; }

.post-padding {
  padding: 0 80px;
}
.post-negative-space {
    z-index: 99;
    padding: 50px 80px 0px 80px;
    background: #ffffff;
    border-radius: 16px;
}

/* ==========================================================================
   41. FAQs
   ========================================================================== */
ul.faq-category-list li.faq-category-list__item {
	margin-bottom: 5px;
}
.single-post-header {
  padding: 48px 0 0;
  margin-top: -250px;
}
.single-post-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #218ec2;
  margin-bottom: 8px;
	text-transform: uppercase;
}
.single-post-title {
  font-family: "calluna", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: var(--navy, #113156);
  margin-bottom: 20px;
}
.single-post-date {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
/* ── Featured Image ──────────────────────────────────────────── */
.single-post-image {
  margin-bottom: 40px;
}
.single-post-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}
/* ── Post Content ────────────────────────────────────────────── */

.single-post-content {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 24px;
}
.single-post-content p {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 24px;
}
.single-post-content h2 {
  font-family: "calluna-sans", sans-serif;
  font-size: 26px;
	line-height: 30px;
  font-weight: 700;
  color: var(--navy, #113156);
  margin-bottom: 20px;
}
.single-post-content h3 {
  font-family: "calluna-sans", sans-serif;
  font-size: 18px;
	line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #218ec2;
  margin-top: 32px;
  margin-bottom: 8px;
}
.single-post-content ul, .single-post-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.single-post-content li {
  margin-bottom: 8px;
}
/* Pull quote / blockquote */
.single-post-content blockquote, .single-post-content .wp-block-quote {
  border-left: 4px solid var(--orange, #f7ab22);
  margin: 32px 0;
  padding: 16px 24px;
  background: none;
}
.single-post-content blockquote p, .single-post-content .wp-block-quote p {
  font-family: operetta-8, serif;
font-weight: 600;
font-style: normal;
  font-size: 32px;
  line-height: 42px;
  color: #218ec2;
  margin-bottom: 0;
}
/* Horizontal rule before share */
.single-post-content > *:last-child {
  margin-bottom: 0;
}
/* ── Share Icons ─────────────────────────────────────────────── */
.single-post-share {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  padding-top: 32px;
}
.single-post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #b2b2b2;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
.single-post-share a:hover {
  color: var(--orange, #f7ab22);
}
