/*
Theme Name: Commercial Realty FLA
Theme URI: https://commercialrealtyfla.com
Author: Commercial Realty FLA
Author URI: https://commercialrealtyfla.com
Description: A sharp, corporate commercial real estate theme for Parkland, Florida.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: commercial-realty-fla
Tags: commercial-real-estate, corporate, florida, navy, professional
*/

/* =============================================
   DESIGN SYSTEM
   ============================================= */
:root {
  --navy:          #0B1628;
  --navy-mid:      #162240;
  --navy-light:    #1F3358;
  --blue:          #1A5FC8;
  --blue-bright:   #2472E8;
  --blue-pale:     #E8F0FB;
  --platinum:      #B8C4D4;
  --silver:        #D4DCE8;
  --white:         #FFFFFF;
  --off-white:     #F6F8FC;
  --paper:         #EEF2F8;
  --ink:           #0D1420;
  --ink-mid:       #2A3348;
  --ink-light:     #5A6680;
  --border:        #DDE3EE;
  --border-dark:   #C0CAD8;

  --font-display:  'Fraunces', 'Georgia', serif;
  --font-body:     'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.28s var(--ease);
  --transition-slow: all 0.5s var(--ease);

  --max-w:         1360px;
  --gutter:        clamp(1.25rem, 5vw, 5rem);
  --radius:        6px;
  --radius-lg:     14px;
  --radius-pill:   100px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-bright); }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 6.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

.overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.85rem;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section     { padding: clamp(4rem, 9vw, 9rem) 0; }
.section--sm { padding: clamp(2.5rem, 5vw, 5rem) 0; }
.section--xs { padding: clamp(1.5rem, 3vw, 3rem) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* =============================================
   BLUE ACCENT LINE
   ============================================= */
.accent-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.accent-line::before {
  content: '';
  display: block;
  width: 3px;
  height: 20px;
  background: var(--blue);
  flex-shrink: 0;
  border-radius: 2px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,22,40,0.3);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-bright);
  color: var(--white);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,200,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

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

.btn-ghost-blue {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: transparent;
}
.btn-ghost-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-lg { padding: 1.05rem 2.2rem; font-size: 0.88rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

.btn-arrow::after {
  content: ' →';
  transition: transform 0.18s ease;
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(11,22,40,0.07);
  height: 64px;
}
#site-header.dark-mode {
  background: transparent;
}
#site-header.dark-mode.scrolled {
  background: rgba(11, 22, 40, 0.97);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-mark span {
  display: block;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.logo-mark span:nth-child(1) { width: 22px; }
.logo-mark span:nth-child(2) { width: 16px; }
.logo-mark span:nth-child(3) { width: 22px; }
.site-logo:hover .logo-mark span:nth-child(2) { width: 22px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
#site-header.dark-mode .logo-name { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

#site-header.dark-mode .nav-links a { color: rgba(255,255,255,0.75); }
#site-header.dark-mode .nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
#site-header.dark-mode .hamburger span { background: var(--white); }

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--blue-bright); }

/* =============================================
   HERO — Full viewport with navy overlay
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 7rem);
}

/* Architectural grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, #0B1628 0%, #162240 40%, #0E2040 70%, #0B1628 100%);
}
/* Perspective grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,200,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,200,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Blue glow orb */
.hero-orb {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(36,114,232,0.18) 0%, rgba(26,95,200,0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,95,200,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Vertical lines */
.hero-vert-lines {
  position: absolute;
  top: 0; right: 15%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,95,200,0.25) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(26,95,200,0.4);
  background: rgba(26,95,200,0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  max-width: 900px;
  margin-bottom: 1.75rem;
  line-height: 1.0;
}
.hero-title .blue-word { color: var(--blue-bright); }

.hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-track {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero-scroll-track::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--blue);
  animation: scrollTrack 2.2s ease-in-out infinite;
}
@keyframes scrollTrack {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Ticker strip at bottom of hero */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--blue);
  padding: 0.7rem 0;
  overflow: hidden;
  z-index: 2;
}
.hero-ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}
.hero-ticker-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-ticker-item::after { content: '◆'; font-size: 0.4rem; opacity: 0.5; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   PROPERTY STATS BAR
   ============================================= */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide-x: 1px;
}
.stat-pill {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-pill:last-child { border-right: none; }
.stat-pill:hover { background: var(--blue-pale); }
.stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* =============================================
   PROPERTY TYPE CARDS
   ============================================= */
.property-types-section { background: var(--off-white); }

.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.prop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.prop-card:hover::before { transform: scaleX(1); }
.prop-card:hover {
  box-shadow: 0 16px 48px rgba(11,22,40,0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

.prop-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.prop-card__image .img-placeholder { transition: transform 0.5s var(--ease); }
.prop-card:hover .prop-card__image .img-placeholder { transform: scale(1.05); }

.prop-card__type-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.prop-card__body { padding: 1.5rem; }
.prop-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.prop-card__desc { font-size: 0.88rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 1rem; }
.prop-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.prop-card__link:hover { gap: 0.55rem; color: var(--blue-bright); }

/* =============================================
   LISTINGS TABLE / FEATURED
   ============================================= */
.listings-section { background: var(--white); }

.listing-table {
  width: 100%;
  border-collapse: collapse;
}
.listing-table thead th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 0.85rem 1rem;
  text-align: left;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.listing-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.listing-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }

.listing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.listing-table tbody tr:hover { background: var(--blue-pale); }
.listing-table tbody td {
  padding: 1.1rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
  vertical-align: middle;
}
.listing-table tbody td:first-child { font-weight: 600; color: var(--navy); }

.listing-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-available { background: rgba(16,185,129,0.1); color: #059669; }
.badge-leased    { background: rgba(239,68,68,0.1);  color: #DC2626; }
.badge-pending   { background: rgba(245,158,11,0.1); color: #D97706; }
.badge-new       { background: rgba(26,95,200,0.1);  color: var(--blue); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,200,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.why-section .container { position: relative; z-index: 1; }

.why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(26,95,200,0.12);
  border-color: rgba(26,95,200,0.3);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 48px; height: 48px;
  background: rgba(26,95,200,0.2);
  border: 1px solid rgba(26,95,200,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   ABOUT SNIPPET
   ============================================= */
.about-snippet { background: var(--white); }

.about-left { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.about-metric-tag {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--blue);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(26,95,200,0.3);
  min-width: 140px;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 0.2rem;
}
.metric-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-right {}
.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar:hover { background: var(--blue-pale); border-color: rgba(26,95,200,0.2); }
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pillar-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.pillar-desc  { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--paper); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blue-pale);
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(11,22,40,0.07);
  transform: translateY(-3px);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-initials {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); display: block; }
.author-title { font-size: 0.72rem; color: var(--ink-light); }

/* =============================================
   BLOG CARDS
   ============================================= */
.insights-section { background: var(--white); }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.insight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  box-shadow: 0 12px 40px rgba(11,22,40,0.09);
  transform: translateY(-4px);
  border-color: transparent;
}
.insight-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper);
}
.insight-card__img .img-placeholder { transition: transform 0.45s var(--ease); }
.insight-card:hover .insight-card__img .img-placeholder { transform: scale(1.06); }

.insight-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.insight-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  transition: color 0.2s;
}
.insight-card:hover .insight-card__title { color: var(--blue); }
.insight-card__excerpt {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.insight-card__meta {
  font-size: 0.72rem;
  color: var(--ink-light);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* =============================================
   SECTION HEADER FLEX
   ============================================= */
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}
.contact-sidebar-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-sidebar-block:last-of-type { border: none; }
.contact-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}
.contact-val a { color: var(--navy); }
.contact-val a:hover { color: var(--blue); }

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 4px 24px rgba(11,22,40,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--ink);
  padding: 0.78rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,200,0.12);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A5FC8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-success {
  background: rgba(16,185,129,0.08);
  border: 1.5px solid #059669;
  color: #065F46;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* =============================================
   PAGE HERO (interior)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: clamp(7rem, 12vw, 12rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,200,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(36,114,232,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 580px; font-size: 1.05rem; margin: 0; }
.page-crumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.page-crumb a { color: rgba(255,255,255,0.5); }
.page-crumb a:hover { color: var(--blue-bright); }
.page-crumb span { margin: 0 0.5rem; opacity: 0.35; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.8rem); }
.cta-inner p  { color: rgba(255,255,255,0.75); margin-top: 0.5rem; font-size: 1rem; }

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { box-shadow: 0 12px 36px rgba(11,22,40,0.08); transform: translateY(-4px); border-color: transparent; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--paper); position: relative; }
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,22,40,0.5), transparent);
}
.team-body { padding: 1.5rem; }
.team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.team-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; display: block; }
.team-bio  { font-size: 0.85rem; color: var(--ink-light); line-height: 1.65; margin: 0; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-item {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-item:hover { border-color: var(--blue); background: var(--blue-pale); }
.service-item-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-item-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.service-item-desc  { font-size: 0.83rem; color: var(--ink-light); line-height: 1.6; margin: 0; }

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,200,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.img-placeholder-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0.6;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--navy);
  padding: 5rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag  { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--blue-bright); }
.footer-lic { font-size: 0.72rem; color: rgba(255,255,255,0.25); font-family: var(--font-body); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

/* =============================================
   POST CONTENT
   ============================================= */
.post-body { max-width: 780px; margin: 0 auto; padding: 4rem var(--gutter); }
.post-body h2 { margin: 2.5rem 0 1rem; font-size: 1.7rem; }
.post-body h3 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.post-body p  { line-height: 1.9; margin-bottom: 1.5rem; }
.post-body ul, .post-body ol { margin: 1.5rem 0 1.5rem 1.5rem; line-height: 1.85; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.75rem;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 2rem 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .why-cards { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-strip .container { grid-template-columns: repeat(3, 1fr); }
  .stat-pill:nth-child(3) { border-right: none; }
  .stat-pill:nth-child(4) { border-top: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .insight-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .listing-table { font-size: 0.8rem; }
  .listing-table thead th, .listing-table tbody td { padding: 0.75rem 0.6rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr; }
  .stat-pill { border-right: none; border-bottom: 1px solid var(--border); }
}
