/* ============================================
   LegalSolv — Modern Aesthetic Redesign
   Color System: Navy, Gold & Cream
   ============================================ */

:root {
  --black: #0D1F3C;
  --black-light: #1A3158;
  --black-soft: #243D5E;
  --grey-900: #2C2C2C;
  --grey-700: #C9A84C;
  --grey-500: #B8953E;
  --grey-400: #D4B05C;
  --grey-300: #E8D5A0;
  --grey-200: #E4E8EE;
  --grey-100: #F0F4F8;
  --grey-50: #FAF8F5;
  --white: #FFFFFF;
  --text-primary: #0D1F3C;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --border: #DDE3EC;
  --accent: #C9A84C;

  /* Legacy variable mappings for inner pages */
  --navy: #0D1F3C;
  --navy-light: #1A3158;
  --navy-dark: #08152A;
  --gold: #C9A84C;
  --gold-light: #D4B05C;
  --gold-dark: #A8872E;
  --cream: #FAF8F5;
  --warm-white: #FEFDFB;
  --success: #38A169;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.text-gold { color: var(--grey-700); }
.text-navy { color: var(--black); }
.text-white { color: #fff; }
.bg-navy { background-color: var(--black); }
.bg-cream { background-color: var(--grey-50); }
.bg-white { background-color: #fff; }

.section-label {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 4rem;
}

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

.section-header.center .section-label {
  padding-left: 0;
}

.section-header.center .section-label::before {
  display: none;
}

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

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--black);
  margin: 1.5rem 0;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}

.btn-gold {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn-gold:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn-navy:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.15rem 2.75rem;
  font-size: 0.85rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.top-bar {
  background: var(--black);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a {
  color: rgba(255,255,255,0.6);
}

.top-bar a:hover {
  color: #fff;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar i {
  color: rgba(255,255,255,0.4);
  margin-right: 0.4rem;
}

.navbar {
  background: var(--black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.nav-brand h1,
.nav-brand .nav-brand-name {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav-brand span {
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.nav-brand-sub {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  height: 100%;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-top: 2px solid var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--grey-100);
}

.dropdown-menu a:hover {
  background: var(--grey-50);
  color: var(--black);
  padding-left: 1.75rem;
}

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

.nav-cta .btn {
  padding: 0.6rem 1.75rem;
  font-size: 0.7rem;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}

.nav-cta .btn:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 2rem;
  }

  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--black-light);
    display: none;
  }

  .nav-links li.dropdown-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.06);
    padding-left: 3rem;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.03);
    color: #fff;
  }

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

  .top-bar {
    display: none;
  }
}

/* ============================================
   HERO — Modern Split Layout
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 0;
  position: relative;
  z-index: 3;
  max-width: none;
}

.hero .container {
  display: contents;
}

.hero-content-inner {
  max-width: 600px;
  margin-left: auto;
  padding-left: 2rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 .gold-text {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-buttons .btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.hero-buttons .btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.hero-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.hero-feature i {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  mask-image: none;
  -webkit-mask-image: none;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
    order: -1;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-content-inner {
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 40vh;
  }

  .hero-content {
    padding: 2.5rem 0;
  }

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

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================
   TRUST BAR / STATS — Bold Numbers
   ============================================ */
.trust-bar {
  background: var(--black);
  padding: 0;
  position: relative;
  z-index: 10;
}

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

.trust-item {
  text-align: center;
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255,255,255,0.03);
}

.trust-number {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 2.5rem 1.5rem;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .trust-number {
    font-size: 2.75rem;
  }
}

/* ============================================
   PRACTICE AREAS — Minimal Cards
   ============================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--grey-200);
}

.practice-card {
  background: #fff;
  border-radius: 0;
  padding: 3rem 2.5rem;
  border: none;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}

.practice-card:nth-child(3n) {
  border-right: none;
}

.practice-card:nth-child(n+4) {
  border-bottom: none;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.practice-card:hover {
  background: var(--grey-50);
  transform: none;
  box-shadow: none;
  border-color: var(--grey-200);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  border: none;
}

.practice-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.practice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.practice-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.practice-card .card-link {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.practice-card .card-link i {
  transition: transform 0.3s ease;
  font-size: 0.65rem;
}

.practice-card:hover .card-link i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-card:nth-child(3n) {
    border-right: 1px solid var(--grey-200);
  }

  .practice-card:nth-child(2n) {
    border-right: none;
  }

  .practice-card:nth-child(n+4) {
    border-bottom: 1px solid var(--grey-200);
  }

  .practice-card:nth-child(n+5) {
    border-bottom: none;
  }
}

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

  .practice-card {
    border-right: none !important;
    border-bottom: 1px solid var(--grey-200) !important;
  }

  .practice-card:last-child {
    border-bottom: none !important;
  }
}

/* ============================================
   ABOUT PREVIEW — Modern Layout
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: none;
}

.about-image-accent {
  display: none;
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: #fff;
  padding: 2rem 2.25rem;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
}

.about-experience-badge .number {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.about-experience-badge .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
  color: rgba(255,255,255,0.5);
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content > p {
  margin-bottom: 1.5rem;
}

.about-features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
}

.about-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--grey-100);
}

.about-features-list li:last-child {
  border-bottom: none;
}

.about-features-list li i {
  color: var(--black);
  margin-top: 0.3rem;
  font-size: 0.7rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 450px;
  }
}

/* ============================================
   TESTIMONIALS — Editorial Style
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-200);
}

.testimonial-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:last-child {
  border-right: none;
}

.testimonial-card:hover {
  background: var(--grey-50);
  box-shadow: none;
  transform: none;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author-info h4 {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    border-top: none;
  }

  .testimonial-card {
    border-right: none;
    border: 1px solid var(--grey-200);
    margin-bottom: -1px;
  }
}

/* ============================================
   FAQ — Clean Minimal
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  border-bottom: 1px solid var(--grey-200);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--black);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--grey-500);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--black);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ============================================
   CTA SECTION — Bold Minimal
   ============================================ */
.cta-section {
  background: var(--black);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-section::after {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-gold {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.cta-buttons .btn-gold:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
  letter-spacing: 0.5px;
}

.cta-phone i {
  color: rgba(255,255,255,0.3);
}

.cta-phone a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.cta-phone a:hover {
  opacity: 0.7;
}

/* ============================================
   FOOTER — Refined
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}

.footer-brand h3 span {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--black);
}

.footer h4 {
  color: #fff;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: rgba(255,255,255,0.25);
  margin-top: 0.2rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-contact-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.4);
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links a:hover {
  color: #fff;
}

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

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

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

/* ============================================
   TEAM PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  filter: none;
  transition: filter 0.4s ease;
}

.team-card:hover .team-photo {
  filter: none;
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.team-area-tag {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  background: var(--grey-50);
  color: var(--text-secondary);
  border-radius: 0;
  font-weight: 500;
  border: 1px solid var(--grey-200);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--black);
  border-radius: 0;
  padding: 3rem;
  color: #fff;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

.contact-detail h4 {
  color: #fff;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.contact-detail a:hover {
  color: #fff;
}

.contact-hours {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-hours h4 {
  color: #fff;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 0;
  padding: 3rem;
  border: 1px solid var(--grey-200);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--grey-200);
  border-radius: 0;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  margin-top: 0.75rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

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

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

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */
.page-header {
  background: var(--black);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  display: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255,255,255,0.2);
}

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

.page-header h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.page-header p {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================
   PRACTICE AREA DETAIL PAGE
   ============================================ */
.pa-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
}

.pa-main h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.pa-main h2:first-child {
  margin-top: 0;
}

.pa-main p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.pa-main ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.pa-main ul li {
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.pa-image {
  border-radius: 0;
  overflow: hidden;
  margin: 2.5rem 0;
}

.pa-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0;
  filter: none;
}

.pa-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-cta {
  background: var(--black);
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sidebar-cta h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta .phone-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
}

.sidebar-nav {
  background: #fff;
  border-radius: 0;
  border: 1px solid var(--grey-200);
  overflow: hidden;
}

.sidebar-nav h4 {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--grey-200);
  margin: 0;
}

.sidebar-nav-links {
  list-style: none;
}

.sidebar-nav-links a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--grey-100);
  transition: all 0.3s ease;
}

.sidebar-nav-links li:last-child a {
  border-bottom: none;
}

.sidebar-nav-links a:hover,
.sidebar-nav-links a.active {
  color: var(--gold);
  background: var(--cream);
  padding-left: 1.75rem;
}

@media (max-width: 1024px) {
  .pa-content {
    grid-template-columns: 1fr;
  }

  .pa-sidebar {
    position: static;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--grey-200);
}

.value-card {
  text-align: center;
  padding: 3rem 2.25rem;
  background: #fff;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}

.value-card:nth-child(3n) {
  border-right: none;
}

.value-card:nth-child(n+4) {
  border-bottom: none;
}

.value-card:hover {
  background: var(--grey-50);
  transform: none;
  box-shadow: none;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

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

  .value-card {
    border-right: none !important;
    border-bottom: 1px solid var(--grey-200) !important;
  }

  .value-card:last-child {
    border-bottom: none !important;
  }
}

/* ============================================
   PHOTO SECTIONS — Homepage
   ============================================ */

/* Full-width cinematic banner between PA header and PA grid */
.pa-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.pa-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.pa-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,60,0.82) 0%, rgba(13,31,60,0.35) 55%, rgba(13,31,60,0.1) 100%);
}

.pa-banner-text {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.pa-banner-text h3 {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #fff;
}

.pa-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  line-height: 1.7;
}

/* 3-column photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

.photo-strip-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(13,31,60,0.88) 0%, transparent 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Testimonials with dark background photo */
.testimonials-photo-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.testimonials-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonials-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 45, 0.9);
}

.testimonials-photo-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-photo-section .section-label {
  color: var(--gold) !important;
  padding-left: 0 !important;
}

.testimonials-photo-section .section-label::before {
  background: var(--gold);
}

.testimonials-photo-section .section-title {
  color: #fff;
}

.testimonials-photo-section .divider {
  background: var(--gold);
}

.testimonials-photo-section .testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonials-photo-section .testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: none;
  transform: none;
}

.testimonials-photo-section .testimonial-text {
  color: rgba(255,255,255,0.82) !important;
}

.testimonials-photo-section .testimonial-author h4 {
  color: #fff;
}

.testimonials-photo-section .testimonial-author p {
  color: rgba(255,255,255,0.5);
}

.testimonials-photo-section .testimonial-avatar {
  background: var(--gold);
  color: var(--black);
}

/* CTA section background image */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 38, 0.93);
}

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

/* Responsive — photo sections */
@media (max-width: 1024px) {
  .pa-banner {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .pa-banner {
    height: 240px;
  }

  .pa-banner-text h3 {
    font-size: 1.4rem;
  }

  .pa-banner-text p {
    font-size: 0.9rem;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip-item {
    height: 210px;
  }

  .testimonials-photo-section {
    padding: 4rem 0;
  }
}

/* ============================================
   MAP
   ============================================ */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   BLOG — Listing & Posts
   ============================================ */

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

.blog-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(13,31,60,0.1);
  transform: translateY(-3px);
}

.blog-card-image {
  overflow: hidden;
  height: 200px;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.blog-card-body h3 a {
  color: inherit;
  transition: color 0.2s ease;
}

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

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-100);
}

.blog-card-meta i {
  font-size: 0.7rem;
  color: var(--gold);
  margin-right: 0.3rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-read-more:hover {
  color: var(--gold);
  gap: 0.7rem;
}

/* Blog post page */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.post-main {
  min-width: 0;
}

.post-header {
  margin-bottom: 2.5rem;
}

.post-header .blog-category {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--navy);
}

.post-meta i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.post-hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
}

.post-content h2 {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.post-content h3 {
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.post-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
}

.post-content ul, .post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.post-content ul li, .post-content ol li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.post-content strong {
  color: var(--navy);
  font-weight: 600;
}

.post-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.post-callout p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  font-style: italic;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  margin-top: 3rem;
}

.post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Century Schoolbook', 'Century', 'Georgia', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.post-author-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.post-author-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* Post sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Blog index hero */
.blog-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
}

.blog-hero-inner {
  max-width: 640px;
}

.blog-hero .section-label {
  color: var(--gold);
  padding-left: 0;
}

.blog-hero .section-label::before {
  background: var(--gold);
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

/* Category filter bar */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Responsive — blog */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }

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

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

  .blog-hero h1 {
    font-size: 2rem;
  }

  .post-header h1 {
    font-size: 1.6rem;
  }

  .post-hero-image {
    height: 240px;
  }
}
