/* ============================================================
   LOWNDES, REID & CO — Solicitors
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #0F1A30;
  --navy-mid:    #243660;
  --gold:        #C4A35A;
  --gold-light:  #D4B978;
  --gold-dark:   #A8883C;
  --cream:       #F8F6F0;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-mid:    #444444;
  --text-light:  #777777;
  --border:      #E4DFD5;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --radius:      4px;
  --transition:  all 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
}
.divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider.centered { margin: 1.25rem auto; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5.5rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,163,90,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.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: 1.1rem 2.5rem; font-size: 0.85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled,
.navbar.solid {
  background: var(--navy-dark);
  padding: 0.9rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 0.4rem; line-height: 1; }
.nav-logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(44%) sepia(100%) saturate(200%);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

.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(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  display: none;
}
.nav-overlay.active { display: block; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(196,163,90,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem 5rem;
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.3);
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.hero-badge i { color: var(--gold); font-size: 0.85rem; }
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.trust-item i { color: var(--gold); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(10px);
}
.hero-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(15,26,48,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,26,48,0.65);
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-section { background: var(--white); }
.intro-grid {
  display: block;
  max-width: 720px;
}
.intro-checklist {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.intro-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.intro-checklist li i {
  color: var(--gold);
  font-size: 0.75rem;
  width: 20px; height: 20px;
  min-width: 20px;
  background: rgba(196,163,90,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PRACTICE AREAS — HOME GRID
   ============================================================ */
.practice-home-section { background: var(--cream); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.area-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.area-card:hover::after { transform: scaleX(1); }
.area-icon {
  width: 54px; height: 54px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.area-card:hover .area-icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.area-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.area-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.area-link:hover { gap: 0.75rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--navy);
}
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }
.why-section .divider { background: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-item { text-align: center; padding: 1rem; }
.why-item-icon {
  width: 68px; height: 68px;
  background: rgba(196,163,90,0.1);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.why-item:hover .why-item-icon {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.why-item h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-size: 0.93rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.author-desc { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(196,163,90,0.1), transparent 55%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin: 0; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 0.875rem; }
.page-hero .lead {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: block;
  max-width: 720px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card .value-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.value-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

/* Timeline */
.timeline { position: relative; padding-left: 2.25rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-4px);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.2);
}
.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* Accreditations */
.accreditations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.acc-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 150px;
}
.acc-badge .acc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
}
.acc-badge .acc-detail {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* ============================================================
   PRACTICE AREAS PAGE
   ============================================================ */
.pa-intro-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pa-stat { }
.pa-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.pa-stat .lbl {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.pa-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pa-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}
.pa-detail-card:hover {
  border-color: rgba(196,163,90,0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pa-detail-icon {
  font-size: 2.2rem;
  color: var(--gold);
  min-width: 50px;
  padding-top: 4px;
  line-height: 1;
}
.pa-detail-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.pa-detail-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.pa-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pa-tag {
  background: rgba(196,163,90,0.12);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.approach-step { text-align: center; padding: 1rem; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196,163,90,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.approach-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.approach-step p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.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);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.team-info { padding: 1.75rem; }
.team-name { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-specialisms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.spec-tag {
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.contact-item-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.55;
}
.contact-item-value a {
  color: var(--navy);
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 0.35rem; }
.contact-form-box .form-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.07);
}
.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='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' 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;
  cursor: pointer;
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.form-disclaimer a { color: var(--navy); text-decoration: underline; }

.map-area {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.map-pin-group {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.map-pin-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.map-pin-icon i {
  display: none;
}
.map-label {
  background: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}
.footer-brand .footer-logo-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-row {
  display: flex;
  gap: 0.875rem;
  font-size: 0.855rem;
  color: rgba(255,255,255,0.45);
  align-items: flex-start;
}
.footer-contact-row i {
  color: var(--gold);
  font-size: 0.85rem;
  min-width: 16px;
  margin-top: 3px;
}
.footer-contact-row a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-bar p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.sra-bar {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.125rem 2rem;
  text-align: center;
}
.sra-bar p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.fw-600 { font-weight: 600; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .intro-grid { gap: 3rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pa-detail-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(15,26,48,0.12); }
  .intro-grid { grid-template-columns: 1fr; }

  .areas-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .values-grid { grid-template-columns: 1fr; }

  .about-photo-stack { display: none; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-wrap: wrap; gap: 1rem; }
  .pa-intro-stats { gap: 1.5rem; }
}
