/*
Theme Name: Newburst Financial
Theme URI: https://www.newburstfinancial.com/
Author: Newburst Financial
Author URI: https://www.newburstfinancial.com/
Description: Custom theme for Newburst Financial — Nassau County's independent insurance agency and professional tax firm. Deep Navy + Mustard Gold brand, Montserrat type.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newbrust
Tags: business, custom-colors, custom-menu, featured-images, responsive
*/

/* ============================================================
   NEWBURST FINANCIAL — MAIN STYLESHEET
   Version 1.0 | June 2026
   Brand: Deep Navy #0B2341 | Mustard Gold #C8922C
   Font: Montserrat (Google Fonts)
   ============================================================ */

/* === 1. CSS VARIABLES ===================================== */
:root {
  --navy: #0B2341;
  --navy-deep: #06162A;
  --navy-mid: #0d2e54;
  --gold: #C8922C;
  --gold-dark: #A87824;
  --warm-white: #F8F7F4;
  --grey: #6B7280;
  --lt-grey: #F3F4F6;
  --white: #FFFFFF;

  --font: 'Montserrat', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  --sh-sm: 0 1px 4px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --sh-md: 0 4px 20px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.05);
  --sh-lg: 0 10px 40px rgba(0, 0, 0, 0.13), 0 4px 12px rgba(0, 0, 0, 0.07);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(0, 0, 0, 0.09);

  --t: 0.22s ease;
  --max-w: 1280px;
  --pad: 24px;
  --section-y: 96px;
}

/* === 2. RESET ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: var(--font);
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

/* === 3. TYPOGRAPHY ======================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
}

h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
}

h3 {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--grey);
}

.display-heading {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* === 4. LAYOUT ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: var(--section-y) 0;
}

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

.section--alt {
  background-color: var(--lt-grey);
}

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

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

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .eyebrow {
  display: block;
}

.section-header p {
  margin-top: 14px;
  max-width: 600px;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-header--dark h2 {
  color: var(--white);
}

.section-header--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* === 5. BUTTONS =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t);
  line-height: 1;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

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

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 146, 44, 0.38);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn--lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn--full {
  width: 100%;
}

/* === 6. HEADER & NAVIGATION ============================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--t);
}

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

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--r-sm);
  transition: all var(--t);
  cursor: pointer;
  user-select: none;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform var(--t);
  flex-shrink: 0;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  padding: 28px 32px;
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(6px);
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mega-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lt-grey);
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--t), color var(--t);
}

.mega-link:hover {
  background: var(--warm-white);
  color: var(--gold);
}

.mega-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
}

.mega-cta {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--lt-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mega-cta p {
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t);
}

.header-phone:hover {
  color: var(--gold);
}

.header-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  stroke-width: 2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.mobile-nav-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.mobile-nav-link.open svg {
  transform: rotate(180deg);
}

.mobile-sub {
  display: none;
  padding: 0 4px 12px 16px;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--t);
}

.mobile-sub a:hover {
  color: var(--gold);
}

.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* === 7. HERO ============================================== */
.hero {
  background-color: var(--navy);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(200, 146, 44, 0.09) 0%, transparent 65%),
    repeating-linear-gradient(-55deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.018) 48px,
      rgba(255, 255, 255, 0.018) 49px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(200, 146, 44, 0.13);
  border: 1px solid rgba(200, 146, 44, 0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  stroke-width: 2;
}

.hero-headline {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
}

.hero-stat {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: var(--sh-xl);
}

.form-card-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
}

/* === 8. FORMS ============================================= */
.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--r-md);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 44, 0.14);
}

.form-input::placeholder {
  color: #B0B7C0;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--grey);
  pointer-events: none;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--grey);
  margin-top: 12px;
}

.form-note svg {
  width: 13px;
  height: 13px;
  stroke: var(--grey);
  flex-shrink: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 16px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: #16A34A;
  margin: 0 auto 12px;
}

.form-success h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-success p {
  font-size: 14px;
}

/* === 9. TRUST BAR ========================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #E9EBF0;
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--lt-grey);
  flex-shrink: 0;
}

/* === 10. SERVICE CARDS ==================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  box-shadow: var(--sh-sm);
  transition: all var(--t);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 146, 44, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 2;
}

.service-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  transition: gap var(--t);
}

.card-link:hover {
  gap: 9px;
}

.card-link svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.service-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.service-tag {
  background: rgba(200, 146, 44, 0.12);
  color: var(--gold-dark);
}



/* === 11. DIFFERENTIATOR / DUAL-SERVICE =================== */
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.diff-content {
  color: var(--white);
}

.diff-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.diff-headline em {
  font-style: normal;
  color: var(--gold);
}

.diff-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
}

.diff-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diff-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.diff-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 146, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2;
}

.diff-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.diff-feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.diff-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--t);
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 146, 44, 0.4);
}

.diff-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.diff-card-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
}

.diff-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.diff-card-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}

.diff-card-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.diff-card-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.diff-card-list li svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* === 12. CARRIERS ========================================= */
.carriers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.carrier-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 12px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--lt-grey);
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
  transition: border-color var(--t), color var(--t);
}

.carrier-item:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.carrier-item img {
  height: auto;
  max-width: 100%;
}

/* === 13. REVIEWS ========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid var(--lt-grey);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  stroke: none;
}

.review-text {
  font-size: 14px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.review-meta {
  font-size: 11px;
  color: var(--grey);
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
}

.review-badge svg {
  width: 14px;
  height: 14px;
  fill: #4285F4;
  stroke: none;
}

/* === 14. FAQ ============================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--lt-grey);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t);
}

.faq-q:hover .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lt-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  stroke-width: 2.5;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
}

/* === 15. LOCATIONS ======================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.loc-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  border: 1.5px solid var(--lt-grey);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--t);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.loc-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  color: var(--gold);
}

.loc-card svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
}

/* === 16. CTA BANNER ======================================= */
.cta-banner {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 146, 44, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* === 17. FOOTER =========================================== */
#site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 270px 1fr 1fr 1fr;
  gap: 52px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo .logo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo .logo-sub {
  color: var(--gold);
}

.footer-address {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--t);
}

.footer-contact-item:hover {
  color: var(--gold);
}

.footer-contact-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--t);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--t);
}

.footer-legal a:hover {
  color: var(--white);
}

/* === 18. FLOATING BUTTONS ================================= */
.floating-btns {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  border: none;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--sh-xl);
}

.float-btn--wa {
  background: var(--white);
  border: 2px solid #25D366;
}

.float-btn--call {
  background: var(--gold);
}

.float-btn--call svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
}

.float-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-deep);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* === 19. PAGE HERO (INNER PAGES) ========================= */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200, 146, 44, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.breadcrumb a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Content + Sidebar Layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  padding: 60px 0;
}

.content-body {}

.content-body h2 {
  font-size: 22px;
  margin-bottom: 14px;
  margin-top: 36px;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 28px;
}

.content-body p {
  font-size: 15px;
  margin-bottom: 14px;
}

.content-body ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

.content-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--sh-md);
  margin-bottom: 20px;
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

/* === 20. ABOUT PAGE ======================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--lt-grey);
  background-image: repeating-linear-gradient(-45deg,
      transparent, transparent 10px,
      rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 11px);
  border: 2px dashed #D1D5DB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey);
  margin-bottom: 18px;
  overflow: hidden;
}

.team-photo svg {
  width: 40px;
  height: 40px;
  stroke: #D1D5DB;
}

.team-photo span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D1D5DB;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
}

/* === 21. CONTACT PAGE ===================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(200, 146, 44, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item-sub {
  font-size: 13px;
  color: var(--grey);
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1.5px solid var(--lt-grey);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Contact Form */
.contact-form-wrap {}

.contact-form-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 28px;
}

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

.form-input--textarea {
  width: 100%;
  padding: 11px 13px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--navy);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--r-md);
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--t);
  outline: none;
}

.form-input--textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 44, 0.14);
}

/* === 22. QUOTE PAGE ======================================= */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-md);
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-benefit {
  display: flex;
  gap: 14px;
}

.quote-benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 146, 44, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2;
}

.quote-benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.quote-benefit-desc {
  font-size: 13px;
  color: var(--grey);
}

/* === 23. HUB PAGES ======================================== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hub-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--lt-grey);
  box-shadow: var(--sh-sm);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}

.hub-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 146, 44, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hub-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 2;
}

.hub-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.hub-card p {
  font-size: 13px;
  flex: 1;
  margin-bottom: 16px;
}

.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--t);
}

.hub-card-link:hover {
  gap: 9px;
}

.hub-card-link svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

/* === 24. RESPONSIVE ======================================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .carriers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-y: 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
    padding: 60px 0 72px;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .diff-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .main-nav,
  .header-phone,
  .header-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .carriers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hub-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 60px;
    --pad: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 0;
  }

  .hero-stat {
    padding: 12px 10px;
    flex: none;
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .diff-inner {
    gap: 40px;
  }

  .mega-menu {
    min-width: 90vw;
  }
}

/* ============================================================
   ENHANCEMENTS — Logo · Hero Images · Map · Social Media
   ============================================================ */

/* === BRAND LOGO =========================================== */
a.site-logo {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--r-lg);
  padding: 5px 14px;
  gap: 0;
  min-height: 52px;
}

.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 220px;
  object-fit: contain;
}

/* Footer logo — smaller, in white pill */
.footer-logo-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--r-md);
  padding: 4px 12px;
  line-height: 0;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* === HERO ILLUSTRATION OVERLAY ============================ */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero-illustration {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 46%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  display: block;
}

@media (max-width: 900px) {
  .page-hero-illustration {
    width: 100%;
    opacity: 0.35;
  }
}

@media (max-width: 640px) {
  .page-hero-illustration {
    opacity: 0.2;
  }
}

/* === MAP SECTION =========================================== */
.map-section {
  background: var(--lt-grey);
  padding: var(--section-y) 0;
}

.map-embed-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  height: 420px;
  margin-top: 36px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.map-info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
}

.map-info-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-info-card span {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .map-info-grid {
    grid-template-columns: 1fr;
  }

  .map-embed-wrap {
    height: 300px;
  }
}

/* === FOOTER SOCIAL MEDIA ================================== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   BLOG — Post index, cards, sidebar
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}

/* Media / featured image */
.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(200, 146, 44, 0.14) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.blog-card-media-fallback svg {
  width: 46px;
  height: 46px;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1.5;
}

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 100px;
  z-index: 1;
}

/* Body */
.blog-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: var(--navy);
  transition: color var(--t);
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card-date {
  font-size: 12px;
  color: var(--grey);
}

.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: gap var(--t), color var(--t);
}

.blog-card-more:hover {
  gap: 9px;
  color: var(--gold);
}

.blog-card-more svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Sidebar topics list */
.blog-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-topics a {
  color: var(--navy);
  font-size: 14px;
  transition: color var(--t);
}

.blog-topics a:hover {
  color: var(--gold);
}

/* Pagination */
.blog-pagination {
  margin-top: 40px;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--lt-grey);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--t);
}

.blog-pagination a.page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.blog-pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Sticky sidebar — desktop only (layout is single-column below 900px) */
@media (min-width: 901px) {
  .blog-sidebar {
    position: sticky;
    top: 90px;
  }
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CAREERS — Benefits, open roles, application form
   ============================================================ */
.career-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.career-benefit {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  text-align: center;
}

.career-benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--lt-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.career-benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}

.career-benefit h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.career-benefit p {
  font-size: 13px;
  margin: 0;
}

.open-roles {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.role-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow var(--t);
}

.role-card:hover {
  box-shadow: var(--sh-md);
}

.role-card-info {
  flex: 1;
}

.role-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.role-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.role-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--lt-grey);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
}

.role-tag--gold {
  background: rgba(200, 146, 44, 0.12);
  color: var(--gold);
}

.role-card p {
  font-size: 13px;
  margin: 0;
}

.application-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 48px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .career-benefits {
    grid-template-columns: 1fr 1fr;
  }

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

  .application-form-wrap {
    padding: 32px 24px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .career-benefits {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REVIEWS — Testimonials grid
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--lt-grey);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t), box-shadow var(--t);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--lt-grey);
  padding-top: 14px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-detail {
  font-size: 12px;
  color: var(--grey);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   EDITOR CONTENT — the_content() output inside .content-body
   Styles WYSIWYG / block HTML on-brand for simple pages.
   ============================================================ */
.content-body>*:first-child {
  margin-top: 0;
}

.content-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
}

.content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.content-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 8px;
}

.content-body p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-body strong,
.content-body b {
  color: var(--navy);
  font-weight: 700;
}

.content-body a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t);
}

.content-body a:hover {
  color: var(--gold-dark);
}

/* Ordered lists (unordered lists keep the gold-dot style from section 19) */
.content-body ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.content-body ol li {
  list-style: decimal;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  padding-left: 4px;
}

.content-body ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

/* Blockquote */
.content-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--lt-grey);
  padding: 16px 20px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 22px 0;
}

.content-body blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--navy);
}

/* Media */
.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin: 20px 0;
}

.content-body figure {
  margin: 22px 0;
}

.content-body figcaption {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
  margin-top: 8px;
}

.content-body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.content-body .alignright {
  float: right;
  margin: 6px 0 16px 22px;
  max-width: 50%;
}

.content-body .alignleft {
  float: left;
  margin: 6px 22px 16px 0;
  max-width: 50%;
}

.content-body .wp-caption {
  max-width: 100%;
}

/* Tables */
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14px;
}

.content-body th,
.content-body td {
  border: 1px solid #E5E7EB;
  padding: 10px 12px;
  text-align: left;
  color: var(--navy);
}

.content-body th {
  background: var(--lt-grey);
  font-weight: 700;
}

/* Rule + clearfix */
.content-body hr {
  border: 0;
  border-top: 1px solid var(--lt-grey);
  margin: 32px 0;
}

.content-body::after {
  content: '';
  display: block;
  clear: both;
}

/* ============================================================
   TEAM MEMBERS — Individual staff cards
   ============================================================ */
.team-member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border: 1px solid var(--lt-grey);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: row;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}

/* Photo / avatar area — fixed width on the left, stretches to card height */
.team-member-photo {
  position: relative;
  width: 150px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 80% at 50% 25%, rgba(200, 146, 44, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-photo>svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.25;
}

.team-member-dept {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(200, 146, 44, 0.9);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Body */
.team-member-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-member-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.team-member-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-member-bio {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.team-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.team-member-tags span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--lt-grey);
  color: var(--navy);
  padding: 4px 9px;
  border-radius: 100px;
}

/* Social / contact */
.team-member-social {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.team-member-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lt-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}

.team-member-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.team-member-social svg {
  width: 15px;
  height: 15px;
  stroke: var(--navy);
  stroke-width: 2;
  transition: stroke var(--t);
}

.team-member-social a:hover svg {
  stroke: var(--white);
}

@media (max-width: 860px) {
  .team-member-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {

  /* Stack photo on top on very narrow screens */
  .team-member {
    flex-direction: column;
  }

  .team-member-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

/* Blog article styles */
.blog-post-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-article {
  min-width: 0;
}

/* Featured image */
.blog-featured-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--navy);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  padding: 20px 20px 12px;
  text-align: right;
}

/* Article meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--grey);
}

.article-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Article body typography */
.article-body h2 {
  font-size: 24px;
  margin: 36px 0 14px;
  color: var(--navy);
}

.article-body h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--navy);
}

.article-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.article-body li {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 6px;
}

.article-body strong {
  color: var(--navy);
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
}

.article-body a:hover {
  color: var(--gold-dark);
}

.article-callout {
  background: var(--lt-grey);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.article-callout p {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

/* Author block */
.article-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--lt-grey);
  border-radius: var(--r-lg);
  margin-top: 40px;
}

@media (max-width: 640px) {
  .article-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.author-role {
  font-size: 12px;
  color: var(--grey);
}

/* Share */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lt-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  text-decoration: none;
}

.share-btn:hover {
  background: var(--gold);
}

.share-btn svg {
  width: 15px;
  height: 15px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.toc-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--r-lg);
  padding: 24px;
}

.toc-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-list a {
  font-size: 13px;
  color: var(--grey);
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  transition: color var(--t);
}

.toc-list a:hover {
  color: var(--gold);
}

.toc-list a::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .blog-post-wrap {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}
.author-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
