/* === Torwyn main.css (fully merged) === */

/* Source: consultation.css */
/* ========================================
   CONSULTATION PAGE SPECIFIC STYLES
   ======================================== */

/* === HERO - SHORT === */
.hero-consultation {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 100vw;
}

.hero-consultation .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  image-rendering: auto;
  z-index: 1;
  display: block;
}

.hero-consultation .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .55), rgba(0, 0, 0, .78));
  z-index: 2;
}

.hero-consultation .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 100px 24px 60px 24px;
}

.hero-consultation .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-consultation .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* === TIERS SECTION === */
.tiers-section {
  background: var(--c-warm-bg);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tier-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(26, 58, 82, 0.08);
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tier-featured {
  border-color: var(--accent-copper);
  border-width: 2px;
}

.tier-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.tier-featured .tier-badge {
  background: var(--accent-copper);
}

.tier-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.tier-duration {
  font-size: 0.875rem;
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: 12px;
}

.tier-purpose {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tier-includes li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.tier-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-copper);
  font-weight: bold;
}

.tier-best-for,
.tier-outcome {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.tier-best-for strong,
.tier-outcome strong {
  color: var(--primary-navy);
}

.tier-investment {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 58, 82, 0.1);
  font-size: 0.875rem;
  color: var(--accent-copper);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* === CONSULTATION FORM SECTION === */
.consultation-form-section {
  background: var(--bg-pearl);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-copper);
  margin-bottom: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: #333;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Tier Selection */
.tier-select-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-select-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tier-select-option:hover {
  border-color: var(--primary-navy);
}

.tier-select-option input[type="radio"] {
  margin-right: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-copper);
}

.tier-select-option input[type="radio"]:checked + .tier-select-content {
  color: var(--primary-navy);
}

.tier-select-option:has(input:checked) {
  border-color: var(--accent-copper);
  background: rgba(184, 115, 51, 0.05);
}

.tier-select-content {
  font-size: 0.9375rem;
  color: #555;
}

.tier-select-content strong {
  color: var(--primary-navy);
}

/* File Upload */
.file-upload-area {
  position: relative;
}

.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px dashed #ddd;
  border-radius: 4px;
  cursor: pointer;
  color: #666;
  font-size: 0.9375rem;
  background: #F8F6F2;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.file-upload-label svg {
  flex-shrink: 0;
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  font-size: 0.875rem;
  color: #555;
  padding: 8px 12px;
  background: var(--bg-pearl);
  border-radius: 4px;
}

/* Submit */
.form-submit {
  margin-top: 16px;
  text-align: center;
}

.form-submit .btn {
  min-width: 220px;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 60px 24px;
}

.form-success .success-icon {
  color: var(--accent-copper);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 1.0625rem;
  color: #555;
  max-width: 450px;
  margin: 0 auto 12px auto;
}

.form-success .success-note {
  font-size: 0.9375rem;
  color: #888;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 640px) {
  .form-wrapper {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .consultation-form {
    gap: 32px;
  }
  
  .tier-select-option {
    padding: 14px 16px;
  }
}


/* Source: about.css */
/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* === HERO - COMPACT === */
.hero-about {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 100vw;
}

.hero-about .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  z-index: 1;
  display: block;
}

.hero-about .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .55), rgba(0, 0, 0, .78));
  z-index: 2;
}

.hero-about .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 100px 24px 60px 24px;
}

.hero-about .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-about .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* === STORY SECTION === */
.story-section {
  background: var(--c-warm-bg);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.story-text {
  font-size: 1.0625rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 24px;
}

.story-text:last-child {
  margin-bottom: 0;
}

/* === APPROACH SECTION === */
.approach-section {
  background: var(--bg-pearl);
  padding: 80px 0;
}

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

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

.approach-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.approach-description {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .approach-section {
    padding: 60px 0;
  }
}

/* === PARTNERS SECTION === */
.partners-section {
  background: var(--c-warm-bg);
  padding: 60px 0;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.partner-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 640px) {
  .partners-logos {
    gap: 32px;
  }
  
  .partner-logo {
    height: 32px;
    max-width: 100px;
  }
}

/* === ADVISORY SECTION === */
.advisory-section {
  background: var(--bg-pearl);
  padding: 48px 0;
  border-top: 1px solid rgba(26, 58, 82, 0.06);
}

.advisory-text {
  font-size: 1.125rem;
  color: #555555;
  margin: 0;
}

.advisory-text a {
  color: var(--primary-navy);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.advisory-text a:hover {
  color: var(--accent-copper);
}


/* Source: torwyn-foundation.css */
/* ========================================
   TORWYN SOLUTIONS - FOUNDATION CSS
   Master stylesheet with brand colors, typography, and components
   ======================================== */

/* === CSS VARIABLES === */
:root {
  /* NEW Brand Colors - Navy + Copper + Steel */
  --primary-navy: #1a3a52;        /* Deep professional navy */
  --accent-copper: #b87333;       /* Warm metallic copper accent */
  --accent-steel: #8b9dc3;        /* Muted blue-gray steel */
  --text-charcoal: #2c3e50;       /* Richer dark text */
  --text-light: #D9D9D9;          /* Light gray text */
  --text-dark: #2c3e50;           /* Dark text (updated) */
  --bg-main: #F4F2EC;             /* Warm architectural neutral */
  --bg-pearl: #F4F2EC;            /* Pearl background */
  --bg-dark: #1a3a52;             /* Dark navy background */
  --bg-white: #FFFFFF;            /* Pure white for cards */
  --c-warm-bg: #F4F2EC;           /* Cream page background */
  --border-color: #1a3a52;        /* Primary navy border */
  --border-light: #D9D9D9;        /* Light borders */
  
  /* Typography - Google Fonts */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  
  /* Breakpoints */
  --mobile-breakpoint: 640px;
  --tablet-breakpoint: 1024px;
}

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Global cream background for page areas */
html,
body,
main,
.page,
.content-area,
.section,
.band,
.strip {
  background: var(--c-warm-bg);
}

/* Override light band utilities */
.band--light,
.section--light,
.strip--light {
  background: var(--c-warm-bg) !important;
}

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

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

a:hover {
  color: var(--accent-copper);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--text-charcoal);
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.text-large {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.text-small {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-xxl) 0;
}

/* === GRID SYSTEM === */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--accent-copper);
  color: #FFFFFF;
  border-color: var(--accent-copper);
}

.btn-primary:hover {
  background-color: #a36229;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 115, 51, 0.3);
}

.btn-primary:focus {
  outline: 2px solid var(--accent-copper);
  outline-offset: 2px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-copper);
  border-color: var(--accent-copper);
  font-size: 0.9rem;
  padding: 12px 24px;
}

.btn-ghost:hover {
  background-color: var(--accent-copper);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    min-height: 44px;
  }
}

/* === CARDS === */
.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-header {
  margin-bottom: var(--spacing-sm);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.card-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-blue);
}

/* === SERVICE CARDS === */
.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-subtitle {
  font-size: 0.9rem;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.service-card-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

/* === PROJECT CARDS === */
.project-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-card-content {
  padding: var(--spacing-md);
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.project-card-location {
  font-size: 0.9rem;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

.project-card-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

/* === HERO SECTIONS === */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 100vw;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: var(--spacing-md);
}

.hero-title {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

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

@media (max-width: 640px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* === SECTION HEADINGS === */
.section-heading {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
}

/* === DIVIDERS === */
.divider {
  height: 3px;
  background-color: var(--primary-blue);
  border: none;
  margin: var(--spacing-lg) 0;
}

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

/* === VALUE PROPS / WHY US === */
.value-prop {
  background-color: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
}

.value-prop-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-prop-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonial {
  background-color: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666666;
}

/* === CREDENTIALS / TRUST BADGES === */
.credentials {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1rem;
}

.credential-icon {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

@media (max-width: 640px) {
  .credentials-list {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

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

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

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }


/* Source: contact.css */
/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

/* === HERO - COMPACT === */
.hero-contact {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 100vw;
}

.hero-contact .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}

.hero-contact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 2;
}

.hero-contact .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 100px 24px 60px 24px;
}

.hero-contact .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-contact .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* === CONTACT SECTION === */
.contact-section {
  background: var(--c-warm-bg);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #333;
  background: #F8F6F2;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* File Upload */
.file-upload-area {
  position: relative;
}

.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px dashed #ddd;
  border-radius: 4px;
  cursor: pointer;
  color: #666;
  font-size: 0.9375rem;
  background: #F8F6F2;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.file-upload-label svg {
  flex-shrink: 0;
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  font-size: 0.875rem;
  color: #555;
  padding: 8px 12px;
  background: var(--bg-pearl);
  border-radius: 4px;
}

/* Submit Button */
.form-submit {
  margin-top: 16px;
}

.form-submit .btn {
  min-width: 200px;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-top: 16px;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 60px 24px;
}

.form-success .success-icon {
  color: var(--accent-copper);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 1.0625rem;
  color: #555;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form {
    gap: 20px;
  }
}


/* Source: homepage.css */
/* ========================================
   HOMEPAGE SPECIFIC STYLES
   Updated for Phase 1 refinements
   ======================================== */

/* === HERO SECTION - 75vh, neutral dark overlay === */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.hero-home .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 1;
}

/* Bradford-style dark overlay - actually dark */
.hero-home .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  z-index: 2;
}

.hero-home .hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 48px;
  text-align: center;
  width: 100%;
}

.hero-home .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-home .hero-micro-cta {
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 100%;
}

.hero-home .hero-micro-cta a {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.hero-home .hero-micro-cta a:hover {
  border-bottom-color: #FFFFFF;
}

/* Home hero responsive */
@media (max-width: 768px) {
  .hero-home {
    min-height: 85vh;
  }
  .hero-home .hero-content {
    padding: 100px 24px 40px 24px;
  }
  .hero-home .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 28px;
  }
  .hero-home .btn-outline-white-hero {
    padding: 12px 32px;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hero-home .hero-content {
    padding: 90px 16px 32px 16px;
  }
  .hero-home .hero-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .hero-home .btn-outline-white-hero {
    padding: 10px 28px;
    font-size: 0.75rem;
  }
  .hero-home .hero-micro-cta {
    font-size: 0.8rem;
  }
}

/* White outline button - single centered CTA */
.btn-outline-white-hero {
  display: inline-block;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 14px 40px;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-outline-white-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* === GET STARTED SECTION === */
.get-started-section {
  background: #F4F2EC;
  padding: 60px 0;
  border-top: 1px solid rgba(26, 58, 82, 0.08);
  border-bottom: 1px solid rgba(26, 58, 82, 0.08);
}

/* Homepage sections - force cream background */
.has-hero .section,
.has-hero .section-lg,
.has-hero .projects-section,
.has-hero .testimonials-section,
.has-hero .why-section,
.has-hero .stats-section-animated {
  background: #F4F2EC !important;
}

.get-started-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.get-started-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #555555;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.get-started-section .btn {
  min-width: 180px;
}

/* === WHY SECTION === */
.why-section {
  background-color: #F4F2EC;
}

/* === ANIMATED STATS SECTION === */
.stats-section-animated {
  background: var(--c-warm-bg);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item-animated {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number-animated {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -1px;
  line-height: 1.1;
}

.stat-label-animated {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: var(--primary-navy);
  font-weight: 500;
  line-height: 1.4;
  max-width: 180px;
}

/* Stats responsive - 4 → 2 → 1 */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-section-animated {
    padding: 60px 0;
  }
  
  .stat-number-animated {
    font-size: 2.25rem;
  }
}

/* === CLIENT LOGO STRIP === */
.logo-strip-section {
  background: var(--c-warm-bg);
  padding: 48px 0;
  border-top: 1px solid rgba(26, 58, 82, 0.06);
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 48px;
}

.client-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-strip {
    gap: 24px 32px;
  }
  
  .client-logo {
    height: 28px;
    max-width: 100px;
  }
  
  .logo-strip-section {
    padding: 36px 0;
  }
}

@media (max-width: 480px) {
  .client-logo {
    height: 24px;
    max-width: 80px;
  }
  
  .logo-strip {
    gap: 20px 24px;
  }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background: #F4F2EC;
}

/* === CTA SECTION === */
.cta-section {
  background: #F4F2EC;
  color: #333333;
  padding: 80px 0;
}

.cta-section .section-title {
  color: var(--primary-navy);
}

.cta-section .section-subtitle {
  color: #555555;
  opacity: 1;
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section > * {
  animation: fadeInUp 0.6s ease-out;
}

/* === CREDENTIALS SECTION === */
.credentials-section {
  background: var(--bg-pearl);
  padding: 48px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.credential-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.credential-item p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
}

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


/* Source: questionnaire.css */
/* ========================================
   QUESTIONNAIRE MODAL - TORWYN SOLUTIONS
   Multi-step consultation form styling
   ======================================== */

/* === MODAL OVERLAY === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 82, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === MODAL CONTAINER === */
.modal-container {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  padding: 48px 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

/* === CLOSE BUTTON === */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #1a3a52;
}

/* === PROGRESS BAR === */
.modal-progress {
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #b87333, #d4935a);
  width: 9.09%;
  transition: width 0.4s ease;
  border-radius: 2px;
}

.progress-text {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 32px;
}

/* === FORM STEPS === */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 24px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}

.optional-badge {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === FORM INPUTS === */
.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #b87333;
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}

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

/* === OPTION CARDS (Radio Buttons) === */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: #b87333;
  background: rgba(184, 115, 51, 0.03);
}

.option-card input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 14px;
  accent-color: #b87333;
}

.option-card input[type="radio"]:checked + .option-text {
  color: #1a3a52;
  font-weight: 500;
}

.option-card:has(input:checked) {
  border-color: #b87333;
  background: rgba(184, 115, 51, 0.05);
}

.option-text {
  font-size: 1rem;
  color: #444;
}

/* === FILE UPLOAD === */
.upload-area {
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.2s ease;
  background: #fafafa;
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: #b87333;
  background: rgba(184, 115, 51, 0.03);
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #666;
}

.upload-label svg {
  color: #b87333;
}

.upload-hint {
  font-size: 13px;
  color: #999;
}

.file-list {
  margin-top: 16px;
  text-align: left;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 14px;
}

.file-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
}

.file-remove:hover {
  color: #e74c3c;
}

/* === SUCCESS STEP === */
.success-step {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  color: #27ae60;
  margin-bottom: 20px;
}

.success-icon svg {
  width: 80px;
  height: 80px;
}

.success-message {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* === NAVIGATION BUTTONS === */
.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.modal-nav .btn {
  min-width: 120px;
}

.modal-nav .btn-ghost {
  color: #666;
}

.modal-nav .btn-ghost:hover {
  color: #1a3a52;
}

/* Hide nav on success step */
.form-step.success-step ~ .modal-nav {
  display: none;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 600px) {
  .modal-container {
    padding: 32px 24px;
    margin: 10px;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
  
  .modal-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }
  
  .modal-nav .btn {
    width: 100%;
  }
  
  .modal-nav #btn-back {
    visibility: visible !important;
  }
}


/* Source: services.css */
/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

/* === HERO SECTION ENHANCEMENTS === */
.hero {
  min-height: 65vh !important;  /* Bigger hero */
}

.hero-overlay {
  opacity: 0.30 !important;  /* More see-through */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg) auto;
}

/* === PHILOSOPHY SECTION === */
.philosophy-section {
  background-color: #F4F2EC;
  border-bottom: 3px solid #6495ED;
  padding: 60px 0;
}

.philosophy-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content p {
  color: #333333;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.9;
  font-weight: 400;
}

.philosophy-content strong {
  color: #344152;
  font-weight: 700;
}

/* === SERVICES GRID SECTION === */
.services-grid-section {
  background-color: #F4F2EC;
}

/* Force 2x2 grid - no 3+1 layout */
.services-grid-section .grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--spacing-xl);
}

@media (max-width: 900px) {
  .services-grid-section .grid-2 {
    grid-template-columns: 1fr !important;  /* Stack on smaller screens */
  }
}

/* === LARGE SERVICE CARDS === */
.service-card-large {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 56px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: 6rem;
  font-weight: 900;
  color: #6495ED;
  opacity: 0.08;
  line-height: 1;
  font-family: var(--font-main);
  z-index: 1;
}

.service-card-large .service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent-copper);
}

.service-card-large .service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-large .service-card-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #1a1a1a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-card-large .service-card-subtitle {
  font-size: 0.95rem;
  color: #6495ED;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.service-card-large .divider {
  margin: 28px 0;
  background-color: #6495ED;
  height: 3px;
  border: none;
  max-width: 80px;
}

.service-card-large .service-card-description {
  font-size: 1.0625rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* === SERVICE DETAILS === */
.service-details {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 2px solid #E8E8E8;
  position: relative;
  z-index: 2;
}

.service-details h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 12px 0 12px 36px;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  font-weight: 400;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #C67C48;
  font-weight: 700;
  font-size: 1.25rem;
  top: 10px;
}

/* === MOBILE ADJUSTMENTS === */
@media (max-width: 640px) {
  .service-card-large {
    padding: 40px 28px;
  }
  
  .service-number {
    font-size: 4rem;
    top: 16px;
    right: 20px;
    opacity: 0.06;
  }
  
  .service-card-large .service-card-title {
    font-size: 1.375rem;
  }
  
  .service-card-large .service-card-description {
    font-size: 1rem;
  }
  
  .service-details {
    margin-top: 28px;
    padding-top: 28px;
  }
  
  .service-list li {
    font-size: 0.9375rem;
  }
}

/* === CTA SECTION === */
.cta-section {
  background: #F4F2EC;
  color: #333333;
  padding: 80px 0;
}

.cta-section .section-title {
  color: var(--primary-navy);
}

.cta-section .section-subtitle {
  color: #555555;
  opacity: 1;
}


/* Source: torwyn-improvements.css */
/* ========================================
   TORWYN SOLUTIONS - CRITICAL IMPROVEMENTS
   All design upgrades from critique
   ======================================== */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === HOMEPAGE HERO - CROP TO SHOW POOL === */
.hero {
  background-position: center bottom !important;  /* Show bottom of image (pool) instead of sky */
}

/* === HERO OVERLAY - LIGHTEN TO 40% === */
.hero-overlay {
  opacity: 0.40 !important;  /* Was 0.65 - way too dark */
  background: linear-gradient(135deg, 
    rgba(26, 58, 82, 0.5) 0%, 
    rgba(44, 62, 80, 0.3) 100%
  );
}

/* === SERVICE CARDS - FULLY CLICKABLE === */
.service-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '→';
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--accent-copper);
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.12);
  border-color: var(--accent-copper);
}

/* Hide "Learn More" buttons inside cards - cards are clickable */
.service-card .btn {
  display: none;
}

/* === PROJECT CARDS - FULLY CLICKABLE === */
.project-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-card .btn {
  display: none;  /* Hide buttons, card is clickable */
}

.project-card::after {
  content: '→';
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 1.25rem;
  color: var(--accent-copper);
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover::after {
  opacity: 1;
}

/* === REMOVE EMOJIS - USE LUCIDE ICONS INSTEAD === */
.service-card-icon {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-copper);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.1);
  border-radius: 8px;
  margin: 0 auto var(--spacing-md) auto;
  font-family: 'Lucide Icons', sans-serif;
}

/* === VALUE PROPS - LEFT BORDER + HOVER === */
.value-prop {
  border-left: 4px solid var(--accent-copper);
  padding-left: var(--spacing-md);
  transition: all 0.3s ease;
  background-color: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: 4px;
}

.value-prop:hover {
  border-left-color: var(--primary-navy);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-prop-title {
  font-size: 1.375rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: var(--spacing-sm);
}

.value-prop-description {
  color: #555555;
  line-height: 1.7;
}

/* === SECTION TITLES - LESS AGGRESSIVE === */
.section-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-copper);
  margin-bottom: var(--spacing-md);
}

/* === HIDE LICENSE IN PROGRESS === */
.credential-item:contains("In Progress"),
.credential-item.pending {
  display: none !important;
}

/* === SUBTLE TEXTURE ON ALTERNATING SECTIONS === */
.section:nth-child(even) {
  background: 
    linear-gradient(rgba(248, 249, 250, 0.98), rgba(248, 249, 250, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(26, 58, 82, 0.01) 0px,
      rgba(26, 58, 82, 0.01) 2px,
      transparent 2px,
      transparent 4px
    );
}

/* === TESTIMONIAL STYLING === */
.testimonial {
  border-left: 4px solid var(--accent-copper);
  background-color: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: 4px;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666666;
}

/* === DIVIDER UPDATES === */
.divider {
  height: 3px;
  background-color: var(--accent-copper);
  border: none;
  margin: var(--spacing-lg) 0;
  max-width: 80px;
}

/* === MOBILE FIXES === */
@media (max-width: 640px) {
  .btn {
    width: auto !important;
    min-width: 200px;
    max-width: 90%;
  }
  
  .service-card::after,
  .project-card::after {
    display: none; /* Hide arrows on mobile for cleaner look */
  }
}


/* Source: header-footer.css */
/* ========================================
   HEADER & FOOTER - TORWYN SOLUTIONS
   Updated with mobile hamburger menu
   ======================================== */

/* ========================================
   HEADER / NAVIGATION - TRANSPARENT ON HERO
   ======================================== */

/* Prevent sticky header from covering anchor targets */
section[id],
div[id] {
  scroll-margin-top: 100px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Transparent header for pages with hero */
.site-header-transparent {
  background: rgba(26, 26, 26, 0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: none;
}

/* Solid header fallback (for scrolled state or pages without hero) */
.site-header-solid {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop: Centered Logo */
.site-logo-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.site-logo-desktop a {
  display: block;
}

.site-logo-desktop img {
  max-height: 64px;
  height: auto;
  width: auto;
  transition: max-height 0.3s ease;
}

/* Mobile: Left Logo - hidden on desktop */
.site-logo-mobile {
  display: none;
}

.site-logo-mobile a {
  display: block;
}

.site-logo-mobile img {
  max-height: 42px;
  height: auto;
  width: auto;
}

/* Navigation - Left Side */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  margin: 0 1.5vw;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-nav a:hover {
  color: #FFFFFF;
  opacity: 0.8;
}

/* Slender vertical dividers between nav items */
.site-nav a:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.5vw;
  margin-left: 0.5vw;
}

/* Request Consultation Button - Right Side (Outlined) */
.header-cta {
  flex-shrink: 0;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* Hamburger Menu Button - Hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Slide-out Menu - Hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 80px 24px 32px 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 14px 24px !important;
  background: transparent;
  border: 1px solid #FFFFFF !important;
  text-align: center;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* Body when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   BODY - NO PADDING FOR HERO PAGES
   ======================================== */

body {
  padding-top: 0;
}

body.has-hero {
  padding-top: 0;
  background: #F4F2EC;
}

/* ========================================
   HEADER RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
  .site-header {
    padding: 16px 24px;
  }
  
  .site-logo-desktop img {
    height: 48px;
  }
  
  .site-nav a {
    font-size: 13px;
    margin: 0 1.2vw;
  }
  
  .site-nav a:not(:first-child) {
    padding-left: 1.2vw;
  }
  
  .btn-outline-white {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ========================================
   HEADER RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
    justify-content: space-between;
  }
  
  /* Mobile: Show left logo, hide desktop center logo */
  .site-logo-mobile {
    display: block;
    order: 1;
  }
  
  .site-logo-desktop {
    display: none;
  }
  
  /* Hide desktop nav and CTA */
  .site-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Show hamburger */
  .hamburger {
    display: flex;
    order: 2;
  }
}

/* ========================================
   FOOTER WITH BLURRED IMAGE BACKGROUND
   ======================================== */

.footer {
  position: relative;
  background-color: #1a1a1a;
  color: #D9D9D9;
  padding: 60px 0 30px 0;
  overflow: hidden;
}

/* Blurred background image with navy overlay */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/specialty-banner.webp');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: 0;
}

/* Navy overlay on top of blurred image */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1a3a52;
  opacity: 0.92;
  z-index: 1;
}

/* Footer content on top of background */
.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.footer-logo img {
  max-width: 80px;
  width: auto;
  height: auto;
  margin-bottom: 0;
}

/* Footer navigation - inline with thin dividers */
.footer-inline-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0;
  row-gap: 8px;
}

.footer-inline-nav a {
  position: relative;
  padding: 4px 16px;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-inline-nav a:hover {
  opacity: 0.8;
}

/* Thin vertical dividers on desktop */
@media (min-width: 641px) {
  .footer-inline-nav a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, 0.4);
  }
}

/* Footer tagline - centered */
.footer-tagline {
  font-size: 15px;
  font-style: italic;
  color: #FFFFFF;
  margin: 8px 0;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Legal links row */
.footer-legal-links {
  text-align: center;
  margin-top: 12px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

@media (min-width: 641px) {
  .footer-legal-links a + a::before {
    content: "|";
    margin: 0 10px 0 0;
    color: rgba(255, 255, 255, 0.4);
  }
}

/* ========================================
   FOOTER RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 640px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer::before {
    filter: blur(6px);
  }
  
  .footer-logo img {
    width: 55px;
  }
  
  .footer-tagline {
    font-size: 13px;
  }
  
  .footer-inline-nav {
    justify-content: center;
  }
  
  .footer-inline-nav a {
    padding: 6px 8px;
    font-size: 13px;
  }
  
  /* Pipe separators on mobile */
  .footer-inline-nav a + a::before {
    content: "|";
    position: static;
    transform: none;
    background: none;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px 0 2px;
    display: inline;
  }
  
  .footer-legal-links a {
    display: inline-block;
    margin: 6px;
    font-size: 12px;
  }
}

/* Copyright text */
.footer-copyright {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/*
=========================
Services — custom styles
=========================
*/

/* Service Page Body */
.page-service {
  background: var(--bg-main);
}

/* Service Hero */
.hero--service {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .55), rgba(0, 0, 0, .78));
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 120px 24px 60px 24px;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFFFFF;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Intro Section with Left Accent */
.section--intro {
  background: var(--c-warm-bg);
  padding: 60px 0;
}

.accent-copper {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: #333;
}

.left-accent {
  border-left: 4px solid var(--accent-copper);
  padding-left: 24px;
  max-width: 900px;
}

/* Ideal For Section */
.section--ideal {
  background: var(--bg-pearl);
  padding: 60px 0;
}

.section--ideal h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ideal-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
}

.ideal-list li {
  font-size: 1.0625rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Service Breakdown Cards */
.section--breakdown {
  background: var(--c-warm-bg);
  padding: 80px 0;
}

.section--breakdown h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card-grid .service-card {
  background: var(--bg-pearl);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 58, 82, 0.08);
  position: relative;
}

.card-grid .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-copper);
}

.card-grid .service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.card-grid .service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-grid .service-card p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.hover-arrow {
  color: var(--accent-copper);
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 8px;
}

.card-grid .service-card:hover .hover-arrow {
  opacity: 1;
}

/* Timeline/Process Section */
.section--timeline {
  background: var(--bg-pearl);
  padding: 80px 0;
}

.section--timeline h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline--vertical {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.timeline--vertical li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 24px;
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.6;
}

.timeline--vertical li:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent-copper);
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px var(--accent-copper);
}

.timeline--vertical li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background: rgba(184, 115, 51, 0.3);
}

/* Gallery Section */
.section--gallery {
  background: var(--c-warm-bg);
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* FAQ Section */
.section--faq {
  background: var(--bg-pearl);
  padding: 80px 0;
}

.section--faq h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section--faq details {
  background: #F8F6F2;
  border: 1px solid rgba(26, 58, 82, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.section--faq details:hover {
  border-color: var(--accent-copper);
}

.section--faq summary {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section--faq summary::-webkit-details-marker {
  display: none;
}

.section--faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-copper);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.section--faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.section--faq details p {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  padding-left: 0;
}

/* CTA Section */
.section--cta {
  background: linear-gradient(135deg, #344152 0%, #4a5a6f 100%);
  padding: 80px 0;
}

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

.cta-block p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero__content {
    padding: 100px 20px 50px 20px;
  }
  
  .left-accent {
    padding-left: 16px;
  }
}

/* ========================================
   VISUAL REFINEMENTS - SERVICE PAGES ONLY
   ======================================== */

/* 1. Card Grid - Responsive columns for service pages only */
.page-service .section--breakdown .card-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .page-service .section--breakdown .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .page-service .section--breakdown .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .page-service .section--breakdown .card-grid {
    grid-template-columns: 1fr;
  }
}

/* 2. Card Image Presentation - 3:2 aspect ratio */
.page-service .section--breakdown .service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

/* 3. Card Container - Premium elevation & rounded corners */
.page-service .section--breakdown .service-card {
  background: #F8F6F2;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 82, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.page-service .section--breakdown .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(184, 115, 51, 0.3);
}

/* 4. Card Typography & Spacing */
.page-service .section--breakdown .service-card h3 {
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 12px;
  padding: 18px 18px 0 18px;
}

.page-service .section--breakdown .service-card p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding: 0 18px 18px 18px;
}

/* 5. Hover Arrow Behavior */
.page-service .section--breakdown .service-card .hover-arrow {
  display: inline-block;
  color: var(--accent-copper);
  opacity: 0.7;
  margin-left: 6px;
  transition: all 0.3s ease;
}

.page-service .section--breakdown .service-card:hover .hover-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* 6. Hero Refinement - Service pages only */
.page-service .hero--service {
  min-height: 55vh;
}

.page-service .hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-service .hero-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.5;
}

.page-service .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.65) 0%,
    rgba(26, 26, 26, 0.60) 50%,
    rgba(17, 17, 17, 0.70) 100%
  );
}

/* 7. Section Heading Accent - Copper underline for service pages only */
.page-service .section h2 {
  position: relative;
  display: inline-block;
  width: 100%;
}

.page-service .section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-copper);
  border-radius: 2px;
}

/* 8. Timeline Cleanup - Service pages only */
.page-service .timeline--vertical {
  max-width: 700px;
  padding: 0;
}

.page-service .timeline--vertical li {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
  font-size: 1.0625rem;
  color: #444;
  line-height: 1.7;
}

.page-service .timeline__dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent-copper);
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 0 8px rgba(184, 115, 51, 0.15);
}

.page-service .timeline--vertical li:not(:last-child)::before {
  left: 4px;
  width: 2px;
  background: rgba(184, 115, 51, 0.25);
  top: 28px;
}

/* 9. Gallery Consistency - Service pages only */
.page-service .section--gallery {
  padding: 80px 0;
}

.page-service .gallery-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 1024px) {
  .page-service .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .page-service .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .page-service .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.page-service .gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.page-service .gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 10. FAQ Styling - Service pages only */
.page-service .section--faq details {
  background: #F8F6F2;
  border: 1px solid rgba(26, 58, 82, 0.12);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.page-service .section--faq details:hover {
  background: rgba(247, 245, 240, 0.8);
  border-color: rgba(184, 115, 51, 0.3);
}

.page-service .section--faq summary {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
}

.page-service .section--faq summary:focus {
  outline: 2px solid var(--accent-copper);
  outline-offset: 4px;
}

.page-service .section--faq summary::after {
  content: '→';
  font-size: 1.25rem;
  color: var(--accent-copper);
  font-weight: 400;
  transition: transform 0.2s ease-in-out;
  transform: rotate(0deg);
  display: inline-block;
}

.page-service .section--faq details[open] summary::after {
  transform: rotate(90deg);
}

.page-service .section--faq details p {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
  padding-left: 0;
}

/* 11. Section Spacing - Service pages only */
.page-service .section--intro {
  padding: 72px 0;
}

.page-service .section--ideal {
  padding: 72px 0;
}

.page-service .section--breakdown {
  padding: 90px 0;
}

.page-service .section--timeline {
  padding: 90px 0;
}

.page-service .section--gallery {
  padding: 90px 0;
}

.page-service .section--faq {
  padding: 90px 0;
}

.page-service .section--cta {
  padding: 90px 0;
}

/* Hero Support Text */
.page-service .hero-support {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Ideal For List - Alias for ideal-list */
.idealfor-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}

.idealfor-list li {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.6;
}

/* CTA Headline Styling */
.page-service .section--cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.page-service .section--cta h2::after {
  display: none;
}

/* Section Alias - idealfor same as ideal */
.page-service .section--idealfor {
  background: var(--bg-pearl);
  padding: 72px 0;
}

.page-service .section--idealfor h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Process Section Alias - Same as timeline */
.page-service .section--process {
  background: var(--bg-pearl);
  padding: 90px 0;
}

.page-service .section--process h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .idealfor-list {
    grid-template-columns: 1fr;
  }
  
  .page-service .hero-support {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .idealfor-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ========================================
   SERVICE PAGE REBUILD - NEW STYLES
   ======================================== */

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-copper);
  color: #FFFFFF;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* Visually Hidden Heading */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Solutions Grid (replaces card-grid for What We Solve) */
.section--solutions {
  background: var(--c-warm-bg);
  padding: 64px 0;
}

.section--solutions h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 48px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-tile {
  background: #F8F6F2;
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid rgba(26, 58, 82, 0.08);
  transition: border-color 0.15s ease-in-out;
  text-align: center;
  cursor: default;
}

.solution-tile:hover {
  border-color: rgba(184, 115, 51, 0.4);
}

.solution-icon {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-tile h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-tile p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Service Breakdown with Image Support */
.breakdown-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.breakdown-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breakdown-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.breakdown-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-copper);
  border-radius: 50%;
}

.breakdown-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Process Grid (replaces timeline) */
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: process-counter;
}

.process-grid li {
  position: relative;
  padding: 0;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent-copper);
  border-radius: 50%;
  color: var(--accent-copper);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: all 0.15s ease-in-out;
}

.process-grid li:hover .process-number {
  background: var(--accent-copper);
  color: #FFFFFF;
  transform: scale(1.05);
}

.process-grid h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-grid p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* High-Value Sections */
.section--highvalue {
  background: var(--bg-pearl);
  padding: 64px 0;
}

.section--highvalue h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* Format A: Deliverables List */
.highvalue-deliverables {
  max-width: 900px;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-list li {
  background: #F8F6F2;
  border: 1px solid rgba(26, 58, 82, 0.1);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.15s ease-in-out;
}

.deliverables-list li:hover {
  border-color: var(--accent-copper);
}

.deliverables-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.deliverables-list span {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

/* Format B: Technical Advantages */
.highvalue-technical {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.technical-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.technical-item h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.technical-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.technical-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Format C: Case Insight */
.highvalue-case {
  max-width: 1000px;
}

.case-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 24px;
}

.case-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 58, 82, 0.1);
}

.case-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.case-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Service Navigation Band */
.service-nav {
  background: var(--bg-pearl);
  padding: 32px 0;
  border-top: 1px solid rgba(26, 58, 82, 0.1);
}

.service-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.service-nav-spacer {
  flex: 1;
}

.service-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #F8F6F2;
  border: 2px solid rgba(26, 58, 82, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 400px;
}

.service-nav-link:hover {
  border-color: var(--accent-copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-nav-prev {
  flex-direction: row;
}

.service-nav-next {
  flex-direction: row-reverse;
  text-align: right;
}

.service-nav-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: 4px;
}

.service-nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.3;
}

.service-nav-arrow {
  color: var(--accent-copper);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-nav-prev:hover .service-nav-arrow {
  transform: translateX(-4px);
}

.service-nav-next:hover .service-nav-arrow {
  transform: translateX(4px);
}

/* Final CTA End-Cap */
.section--cta-endcap {
  background: linear-gradient(135deg, #1a3a52 0%, #2a4a62 100%);
  padding: 80px 0;
}

.cta-endcap-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-endcap-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.cta-endcap-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-endcap-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-endcap-buttons .btn {
  min-width: 180px;
}

.cta-endcap-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: #FFFFFF;
  border-width: 2px;
}

.cta-endcap-buttons .btn-secondary:hover {
  background-color: var(--accent-copper);
  color: #FFFFFF;
  border-color: var(--accent-copper);
}

.cta-endcap-buttons .btn-secondary:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

/* === CTA ENDCAP LIGHT VARIANT === */
.cta-endcap.is-light .cta-endcap-content h2 {
  color: var(--text-charcoal);
}

.cta-endcap.is-light .cta-endcap-content p {
  color: var(--text-charcoal);
  opacity: 0.85;
}

.cta-endcap.is-light .cta-endcap-buttons .btn-secondary {
  background-color: #FFFFFF;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
  border-width: 2px;
}

.cta-endcap.is-light .cta-endcap-buttons .btn-secondary:hover {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

.cta-endcap.is-light .cta-endcap-buttons .btn-secondary:focus {
  outline: 2px solid var(--text-charcoal);
  outline-offset: 2px;
}

/* Section Dividers */
.section-divider {
  height: 1px;
  background: rgba(26, 58, 82, 0.08);
  margin: 0 auto 48px auto;
  max-width: 1200px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .solution-tile:hover,
  .process-grid li:hover .process-number,
  .service-nav-link:hover,
  .service-nav-prev:hover .service-nav-arrow,
  .service-nav-next:hover .service-nav-arrow {
    transform: none;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .breakdown-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .highvalue-technical {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-nav-content {
    flex-direction: column;
  }
  
  .service-nav-link {
    max-width: 100%;
  }
  
  .service-nav-prev,
  .service-nav-next {
    flex-direction: row;
    text-align: left;
  }
  
  .cta-endcap-buttons {
    flex-direction: column;
  }
  
  .cta-endcap-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section--solutions,
  .section--highvalue {
    padding: 48px 0;
  }
  
  .solution-tile {
    padding: 24px 20px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .service-nav-link {
    padding: 16px 20px;
  }
}

/* ========================================
   IDEAL FOR SECTION - POLISH
   ======================================== */

.section--idealfor {
  position: relative;
  margin-top: 48px;
  margin-bottom: 32px;
  padding-top: 48px;
}

.section--idealfor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(26, 58, 82, 0.12);
}

.section--idealfor .container {
  max-width: 1200px;
  background: rgba(247, 246, 242, 0.6);
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(184, 115, 51, 0.08);
}

.idealfor-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px 36px;
}

.idealfor-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-charcoal);
  text-align: left;
}

.idealfor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-copper);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .idealfor-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
  }
}

@media (max-width: 640px) {
  .idealfor-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .section--idealfor .container {
    padding: 32px 24px;
  }
}

/* ========================================
   LAYOUT A - SPLIT RAIL (Consulting, Modernization)
   ======================================== */

.section--intro.layout-a {
  padding: 64px 0;
}

.intro-split-rail {
  display: grid;
  grid-template-columns: 1.15fr 3px 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-split-rail__left {
  padding-right: 24px;
  align-self: center;
}

.intro-split-rail__left p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  max-width: 60ch;
}

.intro-split-rail__rail {
  width: 3px;
  height: 70%;
  background: var(--accent-copper);
  align-self: center;
  border-radius: 3px;
}

.intro-split-rail__right {
  padding-left: 24px;
  align-self: center;
}

@media (max-width: 1024px) {
  .intro-split-rail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-split-rail__rail {
    display: none;
  }
  
  .intro-split-rail__left,
  .intro-split-rail__right {
    padding: 0;
  }
}

/* ========================================
   LAYOUT C - IMAGE-LED SPLIT (Construction, Specialty)
   ======================================== */

.section--intro.layout-c {
  padding: 64px 0;
}

.intro-image-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-image-split__left {
  padding-right: 24px;
}

.intro-image-split__left p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  max-width: 65ch;
  margin-bottom: 32px;
}

.intro-image-split__right {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.intro-image-split__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-image-split__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

@media (max-width: 900px) {
  .intro-image-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-image-split__left {
    padding: 0;
  }
  
  .intro-image-split__right {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .intro-image-split__right {
    aspect-ratio: 4 / 3;
  }
}

/* Update Ideal For List - Remove Arrows */
.idealfor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-copper);
  border-radius: 50%;
}

.idealfor-list li {
  position: relative;
  padding-left: 20px;
}

/* Update H2 Styling - Title Case, No All Caps */
.page-service h2 {
  text-transform: none;
}

.section--idealfor h2,
.section--solutions h2,
.section--breakdown h2,
.section--process h2,
.section--highvalue h2,
.section--faq h2 {
  text-transform: capitalize;
}

/* ========================================
   EXPLICIT CREAM BACKGROUND ENFORCEMENT
   Force all main sections to use site cream color
   ======================================== */

/* About page sections */
.story-section {
  background: #F4F2EC !important;
}

.partners-section {
  background: #F4F2EC !important;
}

/* Consultation page sections */
.tiers-section {
  background: #F4F2EC !important;
}

/* Contact page sections */
.contact-section {
  background: #F4F2EC !important;
}

/* Homepage sections */
.stats-section-animated {
  background: #F4F2EC !important;
}

.get-started-section {
  background: #F4F2EC !important;
}

/* Services page sections */
.philosophy-section {
  background: #F4F2EC !important;
}

.cta-section {
  background: #F4F2EC !important;
}

/* ========================================
   SERVICE PAGES - FORCE ALL SECTIONS TO CREAM
   Explicit overrides for individual service pages only
   ======================================== */

/* All section backgrounds on service pages */
.page-service .section--intro,
.page-service .section--ideal,
.page-service .section--idealfor,
.page-service .section--solutions,
.page-service .section--breakdown,
.page-service .section--process,
.page-service .section--timeline,
.page-service .section--highvalue,
.page-service .section--faq,
.page-service .section--gallery {
  background: #F4F2EC !important;
}

/* Generic section classes on service pages */
.section--intro,
.section--ideal,
.section--idealfor,
.section--solutions,
.section--breakdown,
.section--process,
.section--timeline,
.section--highvalue,
.section--faq,
.section--gallery {
  background: #F4F2EC !important;
}

/* HERO IMAGE FIX - Force full coverage */
.hero,
.hero-home,
.hero-consultation,
.hero-about,
.hero-contact,
.hero--service {
  width: 100% !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

.hero-image,
.hero-consultation .hero-image,
.hero-about .hero-image,
.hero-contact .hero-image,
.hero-home .hero-image,
.hero__bg img {
  min-width: 100% !important;
  min-height: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* FORCE CREAM BACKGROUND ON HOMEPAGE - OVERRIDE ALL */
body.has-hero,
body.has-hero main,
body.has-hero .section,
body.has-hero .section-lg,
body.has-hero #what-we-do,
body.has-hero #get-started,
body.has-hero .projects-section,
body.has-hero .testimonials-section,
body.has-hero .why-section,
body.has-hero .stats-section-animated,
body.has-hero .logo-strip-section {
  background: #F4F2EC !important;
}
