/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Copper-inspired Palette */
  --color-background: #FCF6F1;
  --color-foreground: #2C1A16;
  --color-brand: #B66A2C;
  --color-brand-light: #D4843B;
  --color-brand-lighter: #EAA05C;
  --color-brand-soft: #F8E0CF;
  --color-muted: #F7EBE3;
  --color-muted-foreground: #6F4F43;
  --color-border: #E8D5C8;
  --color-accent: #C7763A;
  --color-gold: #E4A15F;
  --color-ink: #2C1A16;
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Crimson Pro', Georgia, serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(182, 106, 44, 0.15), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(234, 160, 92, 0.25), transparent 35%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-foreground);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  line-height: 1.7;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 12px 40px rgba(15, 34, 58, 0.08);
  backdrop-filter: blur(18px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-brand);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1.75rem;
  left: 0;
  right: 0;
  height: 2px;
  background-image: linear-gradient(90deg, var(--color-brand), var(--color-brand-lighter));
  border-radius: 999px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  position: relative;
  transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  transition: transform 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #74301C 0%, #2C1A16 90%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  z-index: 2;
  background-image: url('public/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.8) brightness(0.85) sepia(0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--spacing-3xl) 0;
  display: flex;
  justify-content: center;
}

.hero-credit {
  position: absolute;
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  z-index: 11;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
}

.hero-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.hero-text {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  max-width: 48rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-sm);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  width: 100%;
  max-width: 64rem;
}

.metric-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.hero-trust p {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--spacing-sm);
}

.hero-logos {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
}

.hero-logos img {
  height: 48px;
  opacity: 1;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.logo-white {
  filter: brightness(0) invert(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(23, 37, 84, 0.15);
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--color-brand) 0%, #7C3A1F 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(124, 58, 31, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background-color: white;
  color: var(--color-brand);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.btn-outline:hover {
  background-color: var(--color-muted);
  border-color: var(--color-brand);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(182, 106, 44, 0.15), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(234, 160, 92, 0.25), transparent 65%);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

.section-gray {
  background-color: #EEF2F8;
  background-color: var(--color-brand-soft);
  background-image: linear-gradient(135deg, rgba(252, 246, 241, 0.9), rgba(247, 235, 227, 0.95));
}

.section-dark {
  background: radial-gradient(circle at top, rgba(234, 160, 92, 0.65), rgba(78, 36, 23, 0.95));
  color: white;
  border-radius: var(--radius-lg);
  margin: var(--spacing-3xl) var(--spacing-md);
  box-shadow: 0 30px 60px rgba(44, 26, 22, 0.45);
}

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

.section.section-gray::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(228, 161, 95, 0.3), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(182, 106, 44, 0.2), transparent 60%);
}

.section-content-narrow {
  max-width: 56rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-title-center {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.divider {
  width: 5rem;
  height: 4px;
  background-color: var(--color-brand);
  margin: 0 auto var(--spacing-lg);
}

.text-content {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.8;
}

.text-content p {
  margin-bottom: var(--spacing-lg);
}

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

.mt-40 {
  margin-top: 2.5rem;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 75rem;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl);
  background-image: linear-gradient(165deg, white, rgba(248, 224, 207, 0.9));
  border: 1px solid rgba(232, 213, 200, 0.9);
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 25px 45px rgba(44, 26, 22, 0.12);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(44, 26, 22, 0.2);
}

.feature-bg {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(228, 161, 95, 0.4), transparent 70%);
  border-radius: 50%;
  transition: transform 0.3s;
  filter: blur(6px);
}

.feature-card:hover .feature-bg {
  transform: scale(1.5);
}

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

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  background-color: rgba(182, 106, 44, 0.12);
  color: var(--color-brand);
  border-radius: var(--radius);
  margin-bottom: var(--spacing-md);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2;
}

.feature-card h3 {
  margin-bottom: var(--spacing-md);
}

.feature-card p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-brand);
  font-weight: 600;
  transition: all 0.2s;
}

.feature-card:hover .feature-link {
  transform: translateX(4px);
}

/* Testimonial */
.testimonial-large {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: 0 25px 45px rgba(14, 23, 38, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.quote-mark {
  position: absolute;
  top: -.5rem;
  left: .5rem;
  font-size: 8rem;
  font-family: var(--font-serif);
  color: var(--color-brand-soft);
  line-height: 1;
  user-select: none;
}

.testimonial-large blockquote {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
}

.testimonial-author {
  text-align: center;
}

.author-name {
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* CTA Section */
.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.section-dark h2 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

.section-dark p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

/* Impact Strip */
.impact-strip {
  background: linear-gradient(120deg, rgba(252, 246, 241, 0.95), rgba(244, 224, 209, 0.95));
  border-bottom: 1px solid rgba(232, 213, 200, 0.85);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-3xl);
  box-shadow: 0 25px 45px rgba(44, 26, 22, 0.1);
  z-index: 1;
}

.impact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(228, 161, 95, 0.35), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.impact-item {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(232, 213, 200, 0.9);
  box-shadow: 0 20px 45px rgba(44, 26, 22, 0.1);
}

.impact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted-foreground);
}

.impact-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0.25rem 0;
}

.impact-text {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Page Headers */
.page-header {
  position: relative;
  background: radial-gradient(circle at 0% 0%, rgba(228, 161, 95, 0.45), transparent 45%), linear-gradient(135deg, var(--color-brand), #35160F);
  color: white;
  padding: 5rem 0;
  overflow: hidden;
}

.page-header-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 25%,
    currentColor 25%,
    currentColor 50%
  );
  background-size: 20px 20px;
}

.page-header-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-header-simple {
  background-color: var(--color-muted);
  padding: 4rem 0;
}

.page-header-simple h1 {
  margin-bottom: var(--spacing-md);
}

.page-header-simple p {
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
  max-width: 48rem;
}

/* Bio Section */
.bio-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--spacing-3xl);
  max-width: 75rem;
  margin: 0 auto;
}

.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.bio-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.bio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.bio-title {
  font-size: 1.25rem;
  color: var(--color-brand);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.bio-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  max-width: 8rem;
  height: 3px;
  background-color: var(--color-brand);
  border-radius: 999px;
}

.bio-text {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.8;
}

.bio-text p {
  margin-bottom: var(--spacing-lg);
}

.bio-text strong {
  color: var(--color-foreground);
  font-weight: 600;
}

.bio-quote {
  border-left: 4px solid var(--color-brand);
  padding-left: var(--spacing-md);
  padding-top: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-muted-foreground);
}

.quote-text {
  margin-bottom: var(--spacing-sm);
}

.quote-author {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-foreground);
}

/* Charter Card */
.charter-card {
  max-width: 48rem;
  margin: 0 auto;
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-3xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.charter-icon {
  display: inline-flex;
  padding: var(--spacing-md);
  background-color: rgba(182, 106, 44, 0.12);
  color: var(--color-brand);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
}

.charter-icon svg {
  width: 2rem;
  height: 2rem;
}

.charter-card h2 {
  margin-bottom: var(--spacing-md);
}

.charter-card p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  max-width: 75rem;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-card-header {
  padding: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
}

.service-icon {
  display: inline-flex;
  padding: 0.875rem;
  background-color: rgba(182, 106, 44, 0.12);
  color: var(--color-brand);
  border-radius: var(--radius);
  margin-bottom: var(--spacing-md);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-card h2 {
  font-size: 1.875rem;
  margin-bottom: var(--spacing-sm);
}

.service-description {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

.service-list {
  list-style: none;
  padding: 0 var(--spacing-xl) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  transition: color 0.2s;
}

.service-list li:hover {
  color: var(--color-brand);
}

.service-list li:hover .check-icon {
  transform: scale(1.1);
}

.check-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-brand);
  margin-top: 0.125rem;
  transition: transform 0.2s;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-lg);
}

.client-card {
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.client-card-header {
  display: flex;
  align-items: start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.client-icon {
  flex-shrink: 0;
  padding: var(--spacing-xs);
  background-color: rgba(182, 106, 44, 0.12);
  color: var(--color-brand);
  border-radius: var(--radius);
}

.client-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.client-card h3 {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.client-list li {
  display: flex;
  align-items: start;
  gap: var(--spacing-xs);
  color: var(--color-muted-foreground);
}

.client-list li::before {
  content: '•';
  color: var(--color-brand);
  font-weight: bold;
  margin-top: 0.375rem;
}

/* Quote Banner */
.quote-banner {
  background-color: var(--color-brand);
  color: white;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.banner-quote {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.banner-author {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.testimonial-quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(182, 106, 44, 0.3);
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.testimonial-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--spacing-md) 0;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--color-foreground);
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.25rem;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.contact-info h2 {
  margin-bottom: var(--spacing-md);
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.contact-card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-card-subtitle {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: var(--spacing-md);
}

.contact-method {
  display: flex;
  align-items: start;
  gap: var(--spacing-md);
}

.contact-method-icon {
  flex-shrink: 0;
  padding: var(--spacing-xs);
  background-color: rgba(182, 106, 44, 0.12);
  color: var(--color-brand);
  border-radius: var(--radius);
}

.contact-method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-method-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}

.contact-method-value:hover {
  color: var(--color-brand);
}

.info-highlight {
  border-left: 4px solid var(--color-brand);
  padding-left: var(--spacing-md);
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  background-color: var(--color-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.info-highlight-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.info-highlight p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-cta-card {
  background: linear-gradient(135deg, rgba(182, 106, 44, 0.08) 0%, rgba(234, 160, 92, 0.15) 100%);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.contact-cta-image {
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background-color: var(--color-muted);
  margin: 0 auto var(--spacing-md);
}

.contact-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.contact-cta-card p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.expertise-card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.expertise-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.expertise-list li {
  display: flex;
  align-items: start;
  gap: var(--spacing-xs);
  color: var(--color-muted-foreground);
}

.expertise-list li::before {
  content: '•';
  color: var(--color-brand);
  font-weight: bold;
  margin-top: 0.375rem;
}

/* Footer */
.footer {
  background-color: var(--color-brand);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-sm);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.footer-logo .logo-mark {
  width: auto;
  height: 110px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  
  .bio-sidebar {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  
  .hero-text {
    text-align: center;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  
  .hero-logos {
    justify-content: center;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .section-dark {
    margin: var(--spacing-2xl) var(--spacing-sm);
    border-radius: var(--radius-lg);
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .testimonial-large blockquote {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
