@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - PNW Organic / Warm */
  --bg-primary: #FAFAF7;
  --bg-secondary: #F0EFE9;
  --accent-primary: #8A9A86;
  --accent-secondary: #D4A373;
  --accent-highlight: #E9C46A;
  --text-primary: #2D312E;
  --text-secondary: #4A504C;
  --text-muted: #7A827B;
  --white: #FFFFFF;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 7.5rem; /* 120px desktop */
  
  /* Layout */
  --max-width: 1320px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows */
  --shadow-soft: 0 8px 30px rgba(45, 49, 46, 0.04);
  --shadow-hover: 0 12px 40px rgba(45, 49, 46, 0.08);
  --glass-bg: rgba(250, 250, 247, 0.85);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; margin-bottom: var(--spacing-sm); }
h3 { font-size: 1.5rem; margin-bottom: var(--spacing-xs); }

p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

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

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

ul {
  list-style: none;
}

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

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

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

.bg-secondary {
  background-color: var(--bg-secondary);
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(138, 154, 134, 0.3);
}

.btn-primary:hover {
  background-color: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 49, 46, 0.2);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

/* Header & Glass Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: var(--spacing-sm) 0;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  padding: var(--spacing-xs) 0;
}

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

.brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-logo span {
  color: var(--accent-primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

#nav-checkbox {
  display: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250,250,247,0.95) 0%, rgba(250,250,247,0.7) 50%, rgba(250,250,247,0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper img {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-hover);
  max-width: 200px;
}

/* Experience / Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

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

.benefit-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  color: var(--accent-highlight);
  font-size: 2rem;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  object-fit: cover;
}

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

.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  position: relative;
  background-color: var(--accent-primary);
  border-radius: var(--border-radius-lg);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin: var(--spacing-lg) auto;
  max-width: calc(var(--max-width) - 2rem);
}

.cta-section h2, .cta-section p {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; font-size: 1.125rem; opacity: 0.9; }

.cta-section .btn-secondary {
  position: relative;
  z-index: 2;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }

/* Internal Pages Headers */
.page-header {
  padding: 180px 0 80px;
  background-color: var(--bg-secondary);
  text-align: center;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  margin-bottom: var(--spacing-lg);
}

.page-header h1 { margin-bottom: 1rem; }
.page-header p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; }

/* Content Blocks */
.content-block {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.content-block h2 { margin-top: 2rem; margin-bottom: 1rem; }
.content-block p { margin-bottom: 1.5rem; }
.content-block ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style: disc; color: var(--text-secondary); }
.content-block li { margin-bottom: 0.5rem; }

/* Contact Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  background: var(--bg-secondary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

.info-content h4 { margin-bottom: 0.25rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  padding: 1rem;
  border: 1px solid #E2E1DB;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
}

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

/* Footer */
.site-footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #A0A5A1;
  max-width: 350px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #A0A5A1;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A0A5A1;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}