/*
Theme Name: Anchor Commercial Management
Theme URI: https://anchorsolution.co.uk
Author: Anchor Commercial Management Ltd
Author URI: https://anchorsolution.co.uk
Description: A light, professional commercial real estate WordPress theme for Anchor Commercial Management Ltd, Poynton, Stockport.
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: anchor
Tags: real-estate, commercial, property, professional, clean, light
*/

/* =============================================
   DESIGN TOKENS — Light Professional / CRE
   Palette: Deep navy + sky blue + warm white
   Type: Playfair Display (display) + Inter (body)
   Signature: A thin double-rule divider motif —
   echoing architectural drawing conventions and
   the clean lines of commercial property plans.
   ============================================= */
:root {
  --navy:       #1B3A5C;
  --navy-mid:   #1F4E79;
  --navy-lt:    #2E86C1;
  --sky:        #5DADE2;
  --sky-lt:     #AED6F1;
  --white:      #FFFFFF;
  --offwhite:   #F8FAFC;
  --stone:      #F1F4F8;
  --stone-dk:   #E2E8F0;
  --text-body:  #374151;
  --text-muted: #6B7280;
  --border:     #DDE3EC;
  --border-dk:  #C5D0E0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --radius:    4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 4px rgba(27,58,92,0.07);
  --shadow:    0 4px 20px rgba(27,58,92,0.09);
  --shadow-lg: 0 12px 48px rgba(27,58,92,0.13);
  --transition: 0.22s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-lt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* Eyebrow — double-rule signature motif */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-lt);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 8px;
  background:
    linear-gradient(var(--navy-lt), var(--navy-lt)) top/100% 1.5px no-repeat,
    linear-gradient(var(--sky-lt), var(--sky-lt)) bottom/100% 1.5px no-repeat;
  flex-shrink: 0;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 14px; max-width: 620px; line-height: 1.8; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,58,92,0.25);
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--navy-lt);
  color: var(--white);
  border-color: var(--navy-lt);
}
.btn-blue:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  transform: translateY(-1px);
}

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

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

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-logo img { height: 46px; width: auto; display: block; }
.site-logo { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--navy-lt);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
  transition: all var(--transition);
}

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

/* Subtle architectural grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Diagonal wash — right half lighter */
.hero-wash {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(46,134,193,0.08) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-lt);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 8px;
  background:
    linear-gradient(var(--sky-lt), var(--sky-lt)) top/100% 1.5px no-repeat,
    linear-gradient(rgba(174,214,241,0.4), rgba(174,214,241,0.4)) bottom/100% 1.5px no-repeat;
  flex-shrink: 0;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--sky-lt); }

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky-lt);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Hero panel */
.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.hp-head {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-head-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-lt);
}

.hp-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(93,173,226,0.15);
  color: var(--sky-lt);
  border-radius: 100px;
  border: 1px solid rgba(93,173,226,0.25);
}

.hp-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }

.hp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hp-row:hover { background: rgba(255,255,255,0.08); }

.hp-row-icon {
  width: 34px; height: 34px;
  background: rgba(46,134,193,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-row-icon svg { width: 16px; height: 16px; color: var(--sky-lt); }

.hp-row h4 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.hp-row p  { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin: 0; }

.hp-foot {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-foot span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.hp-foot a    { font-size: 0.75rem; font-weight: 600; color: var(--sky-lt); }

/* =============================================
   METRICS BAR
   ============================================= */
.metrics-bar {
  background: var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.metrics-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.metric-item:last-child { border-right: none; }

.metric-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.metric-rule {
  width: 24px;
  height: 1.5px;
  background: var(--navy-lt);
  margin: 8px auto 6px;
}

.metric-item .lab {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   SERVICES HOME PREVIEW
   ============================================= */
.services-home { background: var(--white); }

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

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Double-rule top accent */
.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card::before { background: var(--navy); }
.service-card::after  { top: 3px; background: var(--sky-lt); }

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dk);
  transform: translateY(-3px);
}
.service-card:hover::before,
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 50px; height: 50px;
  background: var(--stone);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.sc-icon svg { width: 24px; height: 24px; color: var(--navy-lt); }
.service-card:hover .sc-icon { background: rgba(46,134,193,0.1); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.7; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-lt);
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-card:hover .sc-link { gap: 10px; }

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview { background: var(--stone); }

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.an-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.an-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.an-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.an-card .rule {
  width: 20px; height: 1.5px;
  background: var(--navy-lt);
  margin: 8px auto 6px;
}
.an-card .lab {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about-preview-text h2 { margin-bottom: 16px; }
.about-preview-text p  { color: var(--text-muted); line-height: 1.85; }
.about-preview-text .btn { margin-top: 8px; }

/* =============================================
   WHY ANCHOR
   ============================================= */
.why-anchor { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-anchor .section-header h2 { color: var(--white); }
.why-anchor .section-header p  { color: rgba(255,255,255,0.55); }

.why-features { display: flex; flex-direction: column; gap: 0; }

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-feature:last-child { border-bottom: none; }

.wf-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-lt);
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 24px;
  opacity: 0.7;
}

.why-feature h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.why-feature p  { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin: 0; line-height: 1.75; }

/* Testimonial card right */
.why-testi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 96px;
}

.why-testi blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
}

.why-testi-rule {
  width: 28px; height: 1.5px;
  background: var(--sky-lt);
  margin-bottom: 16px;
}
.why-testi-rule::after {
  content: '';
  display: block;
  width: 18px; height: 1.5px;
  background: rgba(174,214,241,0.3);
  margin-top: 3px;
}

.cite-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.cite-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

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

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.testi-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-family: var(--font-display); font-size: 0.97rem; font-style: italic; color: var(--text-body); line-height: 1.75; margin-bottom: 22px; }
.testi-rule  { width: 20px; height: 1.5px; background: var(--navy-lt); margin-bottom: 12px; }
.testi-name  { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role  { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner .btn-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 152px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 2px;
  background: linear-gradient(90deg, var(--sky-lt), transparent);
}
.page-hero-accent-2 {
  position: absolute;
  bottom: 3px; left: 0;
  width: 20%; height: 1.5px;
  background: linear-gradient(90deg, rgba(174,214,241,0.35), transparent);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 620px; line-height: 1.8; }

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

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-text p { color: var(--text-muted); line-height: 1.85; }
.about-story-text h3 { margin-top: 32px; margin-bottom: 12px; font-size: 1.3rem; }

.about-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

.sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: var(--stone);
}
.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-lt);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dk);
}
.sidebar-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.sidebar-list li::before {
  content: '';
  display: block;
  width: 14px; height: 1.5px;
  background: var(--navy-lt);
  flex-shrink: 0;
}

/* Values */
.values { background: var(--stone); }

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

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-dk); }

.value-icon {
  width: 52px; height: 52px;
  background: var(--stone);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--navy-lt); }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* Team */
.team-section { background: var(--white); }

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

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.team-photo {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--sky-lt);
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-lt), var(--sky-lt));
}

.team-info { padding: 22px 24px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info .role { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-lt); margin-bottom: 10px; }
.team-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full { background: var(--white); }
.services-full-list { display: flex; flex-direction: column; }

.sfl-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 40px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.sfl-item:first-child { padding-top: 0; }
.sfl-item:last-child  { border-bottom: none; }

.sfl-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-dk);
  line-height: 1;
  transition: color var(--transition);
}
.sfl-item:hover .sfl-num { color: var(--navy-lt); }

.sfl-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.sfl-content > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; max-width: 680px; }

.sfl-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sfl-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--navy-lt);
  color: var(--navy-lt);
  border-radius: 100px;
}

/* =============================================
   CAREERS PAGE
   ============================================= */
.careers-intro { background: var(--white); }
.careers-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.perks-list { display: flex; flex-direction: column; gap: 16px; }
.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.perk:hover { border-color: var(--navy-lt); background: rgba(46,134,193,0.04); box-shadow: var(--shadow-sm); }

.perk-icon {
  width: 40px; height: 40px;
  background: rgba(46,134,193,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 20px; height: 20px; color: var(--navy-lt); }
.perk h4 { font-size: 0.9rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.perk p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.roles-section { background: var(--stone); }
.roles-list { display: flex; flex-direction: column; }

.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.role-item:last-child { border-bottom: none; }
.role-item:hover .role-title { color: var(--navy-lt); }

.role-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; transition: color var(--transition); }
.role-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.role-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
}
.rt-dept { background: rgba(46,134,193,0.1); color: var(--navy-lt); }
.rt-type { background: var(--stone-dk); color: var(--text-muted); }
.rt-loc  { background: rgba(27,58,92,0.07); color: var(--navy); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--navy-lt); }

.ci-icon {
  width: 36px; height: 36px;
  background: rgba(46,134,193,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy-lt);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy-lt); margin-bottom: 3px; }
.ci-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; line-height: 1.5; }
.ci-value a { color: var(--navy); }
.ci-value a:hover { color: var(--navy-lt); }

.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 26px; font-size: 0.92rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-lt);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 14px; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 0;
  border-top: 3px solid var(--navy-lt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin: 14px 0 0;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sky-lt);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sky-lt); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--sky-lt); }

/* =============================================
   PAGE ROUTING
   ============================================= */
.page-section { display: none; }
.page-section.active { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .metrics-bar .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero .container,
  .about-preview .container,
  .about-story .container,
  .why-grid,
  .careers-intro .container,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero-panel { display: none; }
  .hero-stats  { flex-wrap: wrap; }
  .hero-stat   { border-right: none; margin-right: 0; padding-right: 0; }
  .about-sidebar { position: static; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .sfl-item      { grid-template-columns: 1fr; gap: 8px; }
  .role-item     { flex-direction: column; align-items: flex-start; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
    gap: 4px;
  }
  .nav-cta.open { display: block; padding: 0 28px 16px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .metrics-bar .container { grid-template-columns: 1fr 1fr; }
}
