/*
Theme Name: Voskos Advisory
Description: A minimal, sophisticated WordPress theme for Voskos Advisory - corporate advisory firm focused on discretion and authority.
Version: 1.0
Author: Custom Development
*/

/* ===== CSS CUSTOM PROPERTIES (TOKENS) ===== */
:root {
  /* Brand Neutrals & Core */
  --voskos-black-3: #222A26;   /* Pantone Black 3 U (approx) */
  --voskos-cg9:     #7C9499;   /* Pantone Cool Gray 9 U (approx) */
  --voskos-cream:   #FFE8AB;   /* Pantone 7499 U (C0 M9 Y33 K0) */
  --voskos-gold:    #FF8F0A;   /* Pantone 2013 U (C0 M44 Y96 K0) */
  --voskos-amber:   #D3832B;   /* Pantone 138 U (approx) */

  /* Surfaces */
  --bg:    #FFFFFF;
  --bg-2:  #FAFAF8;
  --ink:   var(--voskos-black-3);
  --muted: var(--voskos-cg9);
  --accent: var(--voskos-gold);

  /* Typography */
  --font-head: "Playfair Display", "Times New Roman", serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;

  /* Radii & Shadows */
  --radii: 10px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Emphasis styling for key values */
em {
  font-style: italic;
  color: var(--voskos-gold);
  font-weight: 400;
}

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

.section {
  padding: 4rem 0;
  margin: 0 auto;
  position: relative;
}

.section + .section {
  margin-top: 0;
}

/* Section dividers with subtle horizon gradients */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--voskos-amber) 50%, transparent 100%);
  opacity: 0.2;
}

.section:first-of-type::before {
  display: none;
}

/* Content sections (for inner page content) */
.content-section {
  margin-bottom: 3rem;
}

.content-section:last-of-type {
  margin-bottom: 0;
}

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

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(124, 148, 153, 0.2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 80px;
  display: flex;
  align-items: center;
}

/* Ensure consistent positioning when sticky */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* WordPress Admin Bar Compensation */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  width: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-title {
  margin: 0;
  line-height: 1;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  transition: all 0.3s ease;
}

.site-logo:hover .logo-image {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  align-items: center;
  height: 100%;
}

.main-nav li {
  margin-left: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--voskos-gold), var(--voskos-amber));
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.current::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.current {
  border-bottom-color: transparent;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  height: 100vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 3rem;
  font-family: var(--font-head);
  line-height: 1.4;
}

.hero .authority-statement {
  font-size: 1.375rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "↓";
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: var(--accent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed var(--muted);
  border-radius: var(--radii);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "📷";
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.image-placeholder.hero-bg {
  height: 400px;
  width: 100%;
}

.image-placeholder.section-bg {
  height: 300px;
  width: 100%;
}

.image-placeholder.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  font-size: 0.75rem;
}

.image-placeholder.service-icon::before {
  content: "⚡";
  font-size: 1.5rem;
  margin-bottom: 0;
}

.about-image {
  height: 250px;
  width: 100%;
  margin: 2rem 0;
  background-image: url('images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radii);
}

.placeholder-text {
  font-size: 0.75rem;
  line-height: 1.4;
  max-width: 200px;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(34, 42, 38, 0.8) 0%,
      rgba(124, 148, 153, 0.7) 50%,
      rgba(255, 143, 10, 0.15) 100%
  ),
  url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.about-intro {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
}


/* ===== SERVICES HERO ===== */
.services-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(34, 42, 38, 0.7) 0%,
      rgba(124, 148, 153, 0.6) 50%,
      rgba(211, 131, 43, 0.1) 100%
  ),
  url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-hero h1 {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.services-intro {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== SERVICES PERSPECTIVE ===== */
.services-perspective {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 3rem 2rem;
  position: relative;
}

.services-perspective::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--voskos-gold), transparent);
}

.services-perspective p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

.services-perspective em {
  color: var(--voskos-gold);
  font-weight: 400;
  font-style: italic;
}

/* ===== SERVICE CARDS (Homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 3rem;
  margin-bottom: 0;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  box-shadow: var(--shadow);
  border-radius: var(--radii);
  margin-bottom: 2rem;
  margin-right: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--voskos-gold), var(--voskos-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.service-card:last-child {
  margin-right: 0;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0;
}

/* ===== MINIMAL SERVICE LIST WITH HOVER PANELS (Services Page) ===== */
.services-list-minimal {
  margin-top: 3rem;
  margin-bottom: 0;
}

.service-item-minimal {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--bg-2);
  transition: border-color 0.3s ease;
  position: relative;
}

.service-item-minimal:last-child {
  border-bottom: none;
}

.service-item-main {
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  transition: all 0.3s ease;
}

.service-item-minimal .service-icon {
  width: 60px;
  height: 60px;
  margin-right: 2rem;
  margin-bottom: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  align-self: center;
}

.service-item-main h3 {
  flex: 1;
  font-size: 1.75rem;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  font-family: var(--font-head);
  transition: color 0.3s ease;
  align-self: center;
}

.service-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.service-item-panel {
  max-height: none;
  overflow: visible;
  opacity: 1;
}

.service-panel-content {
  padding: 0 0 2.5rem 5rem;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.service-list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

.service-list-compact li {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}

.service-list-compact li:before {
  content: '•';
  color: var(--voskos-gold);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Hover State */
.service-item-minimal:hover {
  border-color: var(--voskos-gold);
}

.service-item-minimal:hover .service-icon {
  opacity: 1;
}

.service-item-minimal:hover h3 {
  color: var(--voskos-gold);
}

.service-item-minimal:hover .service-arrow {
  color: var(--voskos-gold);
  transform: translateX(5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-icon.strategic {
  background-image: url('images/strategic-icon.svg');
}

.service-icon.transaction {
  background-image: url('images/transaction-icon.svg');
}

.service-icon.transformation {
  background-image: url('images/transformation-icon.svg');
}


.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0;
}

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

.service-list li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-list li:before {
  content: '•';
  color: var(--voskos-gold);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* ===== VALUES SECTION ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
  margin-bottom: 0;
}

.value-item {
  padding: 2rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.value-item h4 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}

.value-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team-container {
  margin-top: 3rem;
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 1rem;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 1rem;
}

.team-member:hover {
  background: var(--bg-2);
}

.team-member.selected {
  background: var(--voskos-cream);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-member-photo {
  width: 120px;
  height: 150px;
  border-radius: 8px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  object-fit: cover;
  display: block;
}

.team-member.selected .team-member-photo {
  box-shadow: 0 6px 24px rgba(255, 143, 10, 0.3);
  transform: scale(1.02);
}

.team-member h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  transition: color 0.3s ease;
}

.team-member.selected h4 {
  color: var(--voskos-gold);
}

.team-member-title {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.team-member.selected .team-member-title {
  color: var(--voskos-amber);
}

.team-bio-section {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-2);
}

.team-member-bio {
  display: none;
  max-width: none;
  text-align: left;
  padding: 2rem;
  background: var(--bg-2);
  border-radius: var(--radii);
  margin-bottom: 0;
}

.team-member-bio.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Mobile bio styling */
.mobile-bio {
  margin-top: 1rem;
  padding: 1.5rem;
}

/* Hide mobile bios on desktop */
@media (min-width: 769px) {
  .mobile-bio {
    display: none !important;
  }
  
  .desktop-bio {
    display: block;
  }
}

/* Hide desktop bio section on mobile */
@media (max-width: 768px) {
  .desktop-bio {
    display: none;
  }
  
  .mobile-bio.active {
    display: block;
  }
}

.team-member-bio h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--font-head);
}

.bio-title {
  font-size: 1rem;
  color: var(--voskos-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.team-member-bio p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0;
}

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

/* ===== GOLDEN DIVIDER ===== */
.golden-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--voskos-gold), transparent);
  margin: 3rem 0;
  opacity: 0.5;
}

/* ===== CONTACT FORM & INFO ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
  column-gap: 4rem;
  position: relative;
}

.contact-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--voskos-gold), transparent);
  opacity: 0.5;
  transform: translateX(-50%);
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
}

.contact-detail p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--ink);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Contact form success/error messages */
.contact-message {
  padding: 1rem;
  border-radius: var(--radii);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-form {
  padding-right: 3rem;
}

.contact-info {
  padding-left: 3rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(124, 148, 153, 0.4);
  border-radius: var(--radii);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 143, 10, 0.2);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--voskos-gold), var(--voskos-amber));
  color: #111;
  text-decoration: none;
  border-radius: var(--radii);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--voskos-amber), #ffb347);
  transition: left 0.3s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 143, 10, 0.3);
}

.btn span,
.btn {
  position: relative;
  z-index: 2;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 131, 43, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  font-size: 0.875rem;
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-content a {
  color: var(--accent);
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 999999;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
}

.skip-link:focus {
  top: 6px;
}

/* Screen reader text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 2px 8px rgba(0,0,0,.3);
  }
  
  .service-card,
  .contact-form input,
  .contact-form textarea {
    border: 2px solid var(--ink);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card {
    margin-right: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    margin-right: 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content::before {
    display: none;
  }
  
  .contact-form {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .contact-info {
    padding-left: 0;
    padding-top: 3rem;
  }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .site-header {
    height: auto;
    padding: 1rem 0;
  }
  
  .header-container {
    padding: 0 1.5rem;
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  
  .site-branding {
    height: auto;
    margin-bottom: 1rem;
  }
  
  .site-logo {
    height: auto;
  }
  
  .logo-image {
    height: 40px;
    max-width: 160px;
  }
  
  .main-nav {
    height: auto;
  }
  
  .main-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
  }
  
  .main-nav li {
    margin: 0 1rem 0.5rem 1rem;
    height: auto;
  }
  
  .main-nav a {
    height: auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.125rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    margin-right: 0;
  }
  
  .service-item-main {
    padding: 2rem 0;
  }
  
  .service-item-minimal .service-icon {
    width: 50px;
    height: 50px;
    margin-right: 1.5rem;
  }
  
  .service-item-main h3 {
    font-size: 1.375rem;
  }
  
  .service-arrow {
    font-size: 1.25rem;
  }
  
  .service-panel-content {
    padding: 0 0 2rem 0;
  }
  
  .service-list-compact {
    grid-template-columns: 1fr;
  }
  
  .service-description {
    font-size: 1rem;
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
    color: white;
  }
  
  .services-intro {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .services-perspective {
    padding: 2rem 1rem;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
    color: white;
  }
  
  .about-intro {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
  }
  

  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    padding: 0.5rem;
  }
  
  .team-member-photo {
    width: 100px;
    height: 125px;
  }
  
  .team-member-bio {
    padding: 1.5rem;
  }
  
  .team-member-bio h3 {
    font-size: 1.25rem;
  }
  
  .team-member-bio p {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .hero {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .tagline {
    font-size: 1.25rem;
  }
  
  .hero .authority-statement {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.125rem;
  }
  
  .hero .authority-statement {
    font-size: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
    margin-right: 0;
  }
  
  .logo-image {
    height: 35px;
    max-width: 140px;
  }
}
