/* ===== PEARLTON ASSOCIATES - MAIN STYLESHEET ===== */
/* Author: Pearlton Associates
   Version: 1.5
   Colors: --gold: #C6A43F, --charcoal: #2D2D2D, --light-gray: #F5F5F7
*/

/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C6A43F;
  --charcoal: #2D2D2D;
  --light-gray: #F5F5F7;
  --dark-overlay: rgba(0, 0, 0, 0.8);
  --text-dark: #1a1a2a;
  --text-light: #4a4a5a;
  --border-light: rgba(255,255,255,0.25);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

/* Serif text class (Cormorant Garamond) */
.serif {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-weight: 500;
}

/* Headings - Playfair Display for special pages */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  font-weight: 500;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--gold);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 2rem;
}

.header-center {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.logo-icon {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transition: width 0.3s ease;
  display: block;
}

.site-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.site-title .gold {
  color: var(--gold);
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.desktop-menu li a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.header-separator {
  width: 100%;
  height: 2px;
  background: var(--border-light);
  margin-top: 0.2rem;
}

/* ===== MOBILE SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  box-shadow: -5px 0 25px rgba(0,0,0,0.4);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.open { right: 0; }

.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  color: var(--gold);
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 2rem;
}

.sidebar li { margin-bottom: 1.8rem; }

.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  transition: 0.2s;
}

.sidebar a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.sidebar-contact {
  border-top: 1px solid #3a4a5a;
  padding-top: 2rem;
  margin-top: auto;
  color: #b0b0c0;
  font-size: 0.95rem;
}

.sidebar-contact i {
  width: 20px;
  color: var(--gold);
  margin-right: 8px;
  text-align: center;
}

.sidebar-contact div { 
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.sidebar-contact .address-line {
  white-space: normal;
  word-break: break-word;
}

.sidebar-contact .email-line {
  font-size: 0.9rem;
  white-space: normal;
  word-break: break-all;
  line-height: 1.3;
}

.sidebar-social {
  margin-top: 1.5rem;
}

.sidebar-social a {
  color: white;
  font-size: 1.5rem;
  margin-right: 1.2rem;
  transition: color 0.2s;
}

.sidebar-social a:hover {
  color: var(--gold);
}

.overlay {
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  display: none;
}

.overlay.active { display: block; }

/* ===== PAGE HERO (Static) ===== */
.page-hero {
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070&auto=format&fit=crop') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.page-hero-content {
  max-width: 900px;
  padding: 0 2rem;
  margin-top: 2rem;
}

.page-hero-content h1 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.page-hero-content p {
  font-size: 1.5rem;
  opacity: 0.95;
  font-family: 'Cormorant Garamond', serif;
}

/* ===== HOMEPAGE KEN BURNS SLIDER ===== */
.kenburns-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenburns 24s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.slide:nth-child(1) {
  background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070&auto=format&fit=crop');
}
.slide:nth-child(2) {
  background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2070&auto=format&fit=crop');
  animation-delay: 8s;
}
.slide:nth-child(3) {
  background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop');
  animation-delay: 16s;
}

@keyframes kenburns {
  0% { opacity: 0; transform: scale(1); }
  4% { opacity: 1; transform: scale(1.05); }
  29% { opacity: 1; transform: scale(1.1); }
  33% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1); }
}

.slide-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
  color: white !important;
  margin-top: 40px;
}

.slide:nth-child(2) .slide-content {
  margin-top: 60px;
}

.slide-content h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  color: white !important;
}

.slide-content p {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  color: white !important;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.2s;
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border: none !important;
}

.btn:hover { 
  transform: scale(1.05);
  background: #b38f3a !important;
}

/* ===== BUTTONS & LINKS ===== */
.learn-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.learn-more:hover { 
  border-bottom-color: var(--gold); 
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-text {
  font-size: 1.2rem;
  max-width: 900px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-text p { margin-bottom: 1.5rem; }

.about-image-bottom {
  margin-top: 3rem;
  text-align: center;
}

.about-image-bottom img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== INFOGRAPHIC / STATS SECTION ===== */
.infographic-section,
.stats-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
  padding: 5rem 0;
}

.infographic-section::before,
.stats-section::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: var(--dark-overlay);
}

.infographic-content,
.stats-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  color: white;
  text-align: center;
}

.stat-item {
  flex: 1 1 180px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CAPABILITIES SECTION (Homepage) ===== */
.capabilities-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.capabilities-wrapper {
  position: relative;
}

.capabilities-bg {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.capabilities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.capabilities-overlay {
  opacity: 0.85;
  background: #000;
  z-index: 1;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.capabilities-content {
  padding: 100px 0;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.capabilities-header {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}

.capabilities-header-left {
  width: 50%;
  flex: 0 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.capabilities-eyebrow {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 20px;
  font-family: 'Playfair Display', arial, sans-serif;
  color: white;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.capabilities-header-left h2 {
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 24px;
  font-family: 'Playfair Display', arial, sans-serif;
  font-weight: 600;
  color: white;
  margin-top: 0;
}

.capabilities-header-left h2:after {
  background: var(--gold);
}

.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}

.capability-item {
  width: 50%;
  flex: 0 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.capability-inner {
  position: relative;
  width: 100%;
}

.capability-image {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.capability-link {
  font-size: 28px;
  line-height: 38px;
  padding: 40px 20px;
  letter-spacing: -1px;
  text-decoration: none;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
  border-width: 1px 0 0 0;
  font-family: 'Playfair Display', arial, sans-serif;
  font-weight: 500;
  color: white;
  height: 102px;
  z-index: 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s ease;
}

.capability-link:hover {
  background: rgba(0,0,0,0.1);
}

.capability-link .arrow-icon {
  color: var(--gold);
  max-height: 22px;
  height: 22px;
  max-width: 35px;
  width: 100%;
}

.capability-inner:hover .capability-image {
  opacity: 1;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--light-gray);
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,40,60,0.1);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.blog-content {
  padding: 1.8rem;
}

.blog-meta {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.blog-card h4 {
  font-size: 1.4rem;
  margin: 0.5rem 0 1rem;
  color: var(--text-dark);
}

.blog-card p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 5rem 0;
  background: var(--light-gray);
  position: relative;
  border-top: 1px solid rgba(198,164,63,0.15);
  border-bottom: 1px solid rgba(198,164,63,0.15);
}

.newsletter-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid rgba(198,164,63,0.1);
}

.newsletter-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: inline-block;
}

.newsletter-content h2:after {
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.newsletter-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(198,164,63,0.1);
}

.newsletter-btn {
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
}

.newsletter-btn:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(198,164,63,0.15);
}

.form-note {
  color: #999;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-note i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?q=80&w=2070&auto=format&fit=crop') center/cover;
  color: #ddd;
  padding: 4rem 0 2rem;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.footer-content { 
  position: relative; 
  z-index: 2; 
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.footer-logo img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo span {
  font-size: 1.6rem;
  color: white;
  white-space: nowrap;
  font-weight: 500;
}

.footer-logo span span { 
  color: var(--gold); 
}

.footer-tagline {
  font-style: italic;
  margin: 1rem 0 1.8rem;
  color: #b0b0c0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.footer-grid h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li { 
  margin-bottom: 1rem; 
}

.footer-grid a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1rem;
}

.footer-grid a:hover { 
  color: var(--gold); 
}

.contact-details { 
  line-height: 2; 
  color: #b0b0c0;
  font-size: 1rem;
}

.contact-details i {
  width: 24px;
  color: var(--gold);
  margin-right: 8px;
}

.contact-details br {
  margin-bottom: 0.5rem;
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  margin-right: 1.2rem;
  font-size: 1.6rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #3a4a5a;
  color: #9aa0b0;
  font-size: 0.95rem;
}

.copyright a {
  color: #9aa0b0;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 5px;
}

.copyright a:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .logo-icon { width: 240px; }
  .site-title { font-size: 1.3rem; }
  .footer-logo span { font-size: 1.4rem; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 1000px) {
  .desktop-menu { display: none; }
  .hamburger { display: flex; }
  .logo-icon { width: 200px; }
  .site-title { font-size: 1.2rem; }
  .header-center { gap: 10px; }
  .header-row { padding: 0 1rem; }
  .footer-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-content h1 { font-size: 3.5rem; }
  .page-hero-content { margin-top: 1rem; }
  .capabilities-header-left { width: 100%; }
  .capabilities-header-left h2 { font-size: 36px; line-height: 46px; }
  .capability-link { font-size: 24px; line-height: 32px; padding: 30px 15px; height: auto; min-height: 90px; }
  .slide-wrapper { padding-top: 100px; }
  .slide-content { margin-top: 30px; }
  .slide:nth-child(2) .slide-content { margin-top: 40px; }
  .slide-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
  .capability-item { width: 100%; }
  .slide-wrapper { padding-top: 90px; }
  .slide-content { margin-top: 20px; }
  .slide:nth-child(2) .slide-content { margin-top: 30px; }
  .slide-content h1 { font-size: 3rem; }
  .capabilities-header-left h2 { font-size: 32px; line-height: 42px; }
  .footer-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  /* Newsletter responsive */
  .newsletter-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .newsletter-content h2 {
    font-size: 2.2rem;
  }
  .newsletter-content p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  .newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  .newsletter-btn {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 700px) {
  .logo-icon { width: 150px; }
  .site-title { font-size: 1rem; }
  .header-center { gap: 5px; }
  .hamburger { width: 45px; height: 45px; font-size: 1.8rem; }
  .header-row { padding: 0 0.8rem; }
  .page-hero-content h1 { font-size: 2.5rem; }
  .page-hero-content p { font-size: 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h2 { font-size: 2.2rem; }
  .stat-number { font-size: 3rem; }
  .capability-link { font-size: 22px; line-height: 30px; padding: 25px 15px; }
  .footer-logo span { font-size: 1.3rem; }
  .footer-logo img { width: 120px; }
  
  /* Mobile-specific hero padding */
  .slide-wrapper { padding-top: 80px; }
  .slide-content { margin-top: 10px; }
  .slide:nth-child(2) .slide-content { margin-top: 15px; }
  .slide-content h1 { font-size: 2.4rem; margin-bottom: 1rem; }
  .slide-content p { font-size: 1.1rem; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .logo-icon { width: 120px; }
  .site-title { font-size: 0.9rem; }
  .hamburger { width: 40px; height: 40px; font-size: 1.5rem; }
  .footer-logo span { font-size: 1.2rem; }
  .footer-logo img { width: 100px; }
  
  /* Extra small mobile adjustments */
  .slide-wrapper { padding-top: 70px; }
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 1rem; }
  .capability-link { font-size: 20px; line-height: 28px; padding: 20px 12px; }
  
  /* Newsletter extra small */
  .newsletter-section {
    padding: 3rem 0;
  }
  .newsletter-wrapper {
    padding: 2rem 1.2rem;
  }
  .newsletter-content h2 {
    font-size: 1.8rem;
  }
  .newsletter-content p {
    font-size: 1rem;
  }
  .form-note {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
}

/* ===== IMAGE FIXES ===== */
img {
  max-width: 100%;
  height: auto;
}

/* ===== CAPABILITIES GRID FIXES ===== */
@media (max-width: 768px) {
  .capabilities-grid {
    margin-left: -12px;
    margin-right: -12px;
  }
  .capability-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}