/* 
 * Glacier Services - Professional Property Management Website
 * Color Scheme:
 * - Primary Brown: #5a4a3a (warm, professional)
 * - Secondary Silver: #a0a0a0 (modern, sophisticated)
 * - Accent Copper: #c1815e (warm, elegant)
 * - Light Silver: #f5f3f0 (clean backgrounds)
 * - Dark Black: #2a2a2a (text/headings)
 */

:root {
  --primary-brown: #8b7355;
  --primary-dark: #6b5a47;
  --secondary-grey: #a8a8a8;
  --accent-brown: #b8956a;
  --light-gray: #e5d5c0;
  --dark-gray: #2d2d2d;
  --border-light: #e5e0d8;
  --success: #6b8e23;
  --warning: #d4771c;
  --text-dark: #1a1a1a;
  --text-light: #696969;
  --spacing-unit: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Poppins', 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f5f0e6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header/Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(100, 80, 60, 0.4);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: none;
  z-index: 1000;
  min-height: 120px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url('assets/landing%20building.png');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  filter: blur(15px);
  z-index: -1;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: darken;
}

.logo-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--primary-brown);
  line-height: 1.4;
}

.logo-contact p {
  margin: 0;
  color: var(--primary-brown);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-brown);
}

.nav-cta {
  background-color: var(--primary-brown);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-brown);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 90, 71, 0.3);
}

.btn-secondary {
  background-color: var(--accent-brown);
  color: white;
}

.btn-secondary:hover {
  background-color: #9d8060;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
}

.btn-outline:hover {
  background-color: var(--primary-brown);
  color: white;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b7355 0%, #b8956a 100%);
  color: white;
  padding: 100px 2rem;
  text-align: center;
}

/* Modern Realistic Skyline Hero */
.hero-landing {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-landing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url('assets/landing%20building.png');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  filter: blur(15px);
  z-index: 5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero-landing-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.skyline-svg {
  display: none;
}

/* Landing Page Content Overlay */
.hero-landing-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
  color: white;
}

.hero-landing-content h1 {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 16px 32px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  animation: fadeInDown 0.8s ease-out;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-landing-content p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  letter-spacing: 0.5px;
}

.hero-landing-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Button styles for landing hero */
.hero-landing-cta .btn-primary {
  background-color: rgba(139, 115, 85, 0.85);
  color: white;
  border: 2px solid rgba(184, 149, 106, 0.6);
  backdrop-filter: blur(10px);
}

.hero-landing-cta .btn-primary:hover {
  background-color: rgba(139, 115, 85, 0.95);
  border-color: rgba(184, 149, 106, 1);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.4);
  transform: translateY(-2px);
}

.hero-landing-cta .btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.hero-landing-cta .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Sun/Sunset Glow */
/* (Removed - using SVG-based realistic skyline instead) */

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

.container-full {
  max-width: 100%;
  padding: 0 2rem;
}

/* Section Spacing */
section {
  padding: 80px 2rem;
}

section:nth-child(even) {
  background-color: var(--light-gray);
}

/* Why Choose Glacier Services Section */
.container > .section-header {
  margin-bottom: 3rem;
}

.container > .grid-3 {
  margin: 60px auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}

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

/* Cards */
.card {
  background: linear-gradient(135deg, #8B5A2B 0%, #6B4423 50%, #4A3728 100%);
  border-radius: 12px;
  padding: 40px;
  border: none;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset -2px -2px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Wood Antique Frame Style for Why Choose Section */
.container > .grid-3 .card {
  background: linear-gradient(135deg, #6B4423 0%, #5C3D1F 50%, #4A3015 100%);
  border: 12px solid;
  border-color: #704214 #5C3A0F #4A2F0A #704214;
  border-radius: 0;
  box-shadow: 
    inset 0 0 0 1px #8B5A2B,
    inset 2px 2px 4px rgba(139, 115, 85, 0.4),
    inset -3px -3px 6px rgba(0, 0, 0, 0.6),
    0 10px 25px rgba(0, 0, 0, 0.4);
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 115, 85, 0.1) 2px, rgba(139, 115, 85, 0.1) 4px),
    linear-gradient(135deg, #6B4423 0%, #5C3D1F 50%, #4A3015 100%);
}

/* Wood Antique Frame Style for Services Section */
.container > .grid-2 .card {
  background: linear-gradient(135deg, #6B4423 0%, #5C3D1F 50%, #4A3015 100%);
  border: 12px solid;
  border-color: #704214 #5C3A0F #4A2F0A #704214;
  border-radius: 0;
  box-shadow: 
    inset 0 0 0 1px #8B5A2B,
    inset 2px 2px 4px rgba(139, 115, 85, 0.4),
    inset -3px -3px 6px rgba(0, 0, 0, 0.6),
    0 10px 25px rgba(0, 0, 0, 0.4);
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 115, 85, 0.1) 2px, rgba(139, 115, 85, 0.1) 4px),
    linear-gradient(135deg, #6B4423 0%, #5C3D1F 50%, #4A3015 100%);
}

.card-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.card-icon-svg {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  display: block;
}

.card-icon-img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
  mix-blend-mode: darken;
  filter: brightness(0.6);
  border: none;
  outline: none;
  background: transparent;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 12px;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset -2px -2px 5px rgba(0, 0, 0, 0.25),
    inset 2px 2px 5px rgba(255, 255, 255, 0.4);
  transform: translateY(-6px);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8dcc8, #d9cbb7);
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card p {
  margin-bottom: 0;
  margin-top: -0.5rem;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* Testimonial Cards */
.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-brown);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b7355, #b8956a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.testimonial-author-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

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

/* Testimonial Stars */
.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Blog Post Cards */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

.blog-thumbnail {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8dcc8, #d9cbb7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-card h3 {
  margin-top: 0;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 60px 2rem 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: var(--accent-brown);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.mt-1 { margin-top: var(--spacing-unit); }
.mt-2 { margin-top: calc(var(--spacing-unit) * 2); }
.mt-3 { margin-top: calc(var(--spacing-unit) * 3); }
.mt-4 { margin-top: calc(var(--spacing-unit) * 4); }

.mb-1 { margin-bottom: var(--spacing-unit); }
.mb-2 { margin-bottom: calc(var(--spacing-unit) * 2); }
.mb-3 { margin-bottom: calc(var(--spacing-unit) * 3); }
.mb-4 { margin-bottom: calc(var(--spacing-unit) * 4); }

.py-4 { padding: 2rem 0; }
.py-6 { padding: 3rem 0; }

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-brown);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Service Highlight Section */
.service-highlight {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.service-highlight:nth-child(even) {
  flex-direction: row-reverse;
}

.service-highlight-content {
  flex: 1;
}

.service-highlight-image {
  flex: 1;
  height: 300px;
  background: linear-gradient(135deg, #e8dcc8, #d9cbb7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Areas */
.service-areas-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-map-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b7355, #b8956a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.contact-info-text h4 {
  margin: 0 0 0.25rem 0;
}

.contact-info-text p {
  margin: 0;
  color: var(--text-light);
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-landing-content h1 {
    font-size: 4rem;
    letter-spacing: -0.015em;
  }

  .hero-landing-content p {
    font-size: 1.4rem;
    font-weight: 400;
  }

  .tall-building {
    flex: 0 0 18%;
  }

  .mid-building {
    flex: 0 0 15%;
  }

  .cube-building {
    flex: 0 0 18%;
  }

  .right-building {
    flex: 0 0 16%;
  }

  .service-highlight {
    flex-direction: column !important;
  }

  .service-highlight-image {
    height: 250px;
    font-size: 3rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section {
    padding: 60px 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem;
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-landing-content h1 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
  }

  .hero-landing-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .hero-landing-cta {
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 90%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .window-row {
    gap: 5px;
  }

  .window-grid {
    gap: 5px;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 40px 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-landing-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0em;
  }

  .hero-landing-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .hero-landing-cta {
    flex-direction: column;
    gap: 0.75rem;
    width: 90%;
  }

  .hero-landing-cta .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 30px 1rem;
  }

  .grid {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .stars {
    justify-content: center;
  }

  .tall-building {
    flex: 0 0 20%;
  }

  .mid-building {
    flex: 0 0 18%;
  }

  .cube-building {
    flex: 0 0 20%;
  }

  .right-building {
    flex: 0 0 18%;
  }

  .window-row {
    gap: 3px;
  }

  .window-grid {
    gap: 3px;
    padding: 10px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Accessibility Improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-brown);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Focus Visible for Keyboard Navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-brown);
  outline-offset: 2px;
}
