:root {
  --sand: #F5EDE4;
  --terracotta: #D4A574;
  --sage: #A8B5A0;
  --warm-brown: #9B7B5C;
  --deep-earth: #4A3F35;
  --cream: #FDFBF8;
  --soft-gray: #7A7A7A;
  --sunset-pink: #E8C4B8;
  --desert-gold: #D4A84B;
  --dusk-purple: #8B7B8E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--deep-earth);
  background-color: var(--cream);
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(196, 164, 132, 0.2);
}

nav > * {
  max-width: 1400px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep-earth);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft-gray);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 0.75rem 0;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(74, 63, 53, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  margin-top: 1rem;
}

.nav-links .dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-links .dropdown li {
  padding: 0;
}

.nav-links .dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-links .dropdown a:hover {
  background: rgba(212, 165, 116, 0.1);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu span {
  width: 25px;
  height: 2px;
  background: var(--deep-earth);
  transition: all 0.3s ease;
}

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

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--deep-earth);
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--terracotta);
}

/* Page Header */
.page-header {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sunset-pink) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--deep-earth);
  margin-bottom: 1rem;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--warm-brown);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  /* height: 100vh; */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #F5EDE4 0%, #E8C4B8 50%, #D4A574 100%);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  /* top: 60%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Video Play/Pause Control */
.video-control {
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  opacity: 0.6;
  /* Desktop: fixed position at bottom right of hero */
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  margin: 0;
}

.video-control:hover,
.video-control:focus {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  outline: none;
}

.video-control:focus {
  box-shadow: 0 0 0 2px var(--terracotta);
}

.video-control-icon {
  color: white;
  font-size: 0.9rem;
  line-height: 1;
}

.video-control-icon.play {
  margin-left: 2px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 63, 53, 0.6) 0%, rgba(74, 63, 53, 0.5) 50%, rgba(74, 63, 53, 0.6) 100%);
}

.hero-content {
  text-align: center;
  z-index: 1;
  /* padding: 2rem; */
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--sunset-pink);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 1.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero p.hero-closing {
  font-style: italic;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--terracotta);
}

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

.btn-primary:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  margin-left: 1rem;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--deep-earth);
  border-color: var(--terracotta);
}

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

/* Sections */
section {
  padding: 6rem 2rem;
}

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

/* Large screen centering */
@media (min-width: 1600px) {
  section {
    padding: 6rem calc((100vw - 1400px) / 2 + 2rem);
  }
  
  .quote-block {
    padding-left: calc((100vw - 1400px) / 2 + 2rem);
    padding-right: calc((100vw - 1400px) / 2 + 2rem);
  }
  
  footer {
    padding-left: calc((100vw - 1400px) / 2 + 2rem);
    padding-right: calc((100vw - 1400px) / 2 + 2rem);
  }
  
  .page-header {
    padding-left: calc((100vw - 1400px) / 2 + 2rem);
    padding-right: calc((100vw - 1400px) / 2 + 2rem);
  }
  
  nav {
    padding-left: calc((100vw - 1400px) / 2 + 2rem);
    padding-right: calc((100vw - 1400px) / 2 + 2rem);
  }
  
  .image-divider {
    /* max-width: 1800px; */
    margin: 0 auto;
  }
  
  .dual-image-section {
    max-width: 1800px;
    margin: 0 auto;
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--deep-earth);
}

.section-subtitle {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm-brown);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sunset-pink) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.quote-block.with-image {
  background: var(--deep-earth);
  position: relative;
  overflow: hidden;
}

.quote-block.with-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/desert-dusk.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.quote-block.with-image blockquote,
.quote-block.with-image cite {
  position: relative;
  z-index: 1;
  color: white;
}

.quote-block.with-image cite {
  color: var(--sunset-pink);
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-earth);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--warm-brown);
  letter-spacing: 0.1em;
}

/* About Section */
#about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
}

/* Cropped version for landing page - zooms in on Jenny */
.about-image-cropped {
  overflow: hidden;
}

.about-image-cropped img {
  object-position: center 25%;
  transform: scale(1.6);
  transform-origin: center 30%;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--terracotta);
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--soft-gray);
}

.credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.credentials h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
}

.credentials-list li {
  font-size: 0.9rem;
  color: var(--soft-gray);
}

/* Approach Section */
#approach {
  background: white;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.approach-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
}

.approach-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-5px);
}

.approach-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-earth);
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--soft-gray);
}

/* Image Divider */
.image-divider {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.image-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(74, 63, 53, 0.2), rgba(74, 63, 53, 0.4));
}

/* Gradient Divider */
.gradient-divider {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sunset-pink) 35%, var(--terracotta) 70%, var(--deep-earth) 100%);
  background-attachment: scroll;
}

.gradient-divider::after {
  display: none;
}

/* Dual Image Section */
.dual-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.dual-image {
  overflow: hidden;
}

.dual-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dual-image:hover img {
  transform: scale(1.05);
}

/* Specializations */
#specializations {
  background: var(--sand);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.spec-item {
  background: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-3px);
}

.spec-item h4 {
  font-size: 1rem;
  color: var(--deep-earth);
}

/* Services & Fees */
#services {
  background: var(--cream);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.service-card {
  background: white;
  padding: 3rem;
  border: 1px solid var(--sand);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-earth);
}

.price {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--soft-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--sand);
}

.service-card li:last-child {
  border-bottom: none;
}

.insurance-note {
  background: var(--sand);
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 2px;
}

.insurance-note h4 {
  color: var(--deep-earth);
  margin-bottom: 1rem;
}

.insurance-note p {
  font-size: 0.9rem;
  color: var(--soft-gray);
}

/* Contact Section */
#contact {
  background: var(--deep-earth);
  color: white;
}

#contact .section-title {
  color: white;
}

#contact .section-subtitle {
  color: var(--terracotta);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-earth);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.contact-item strong {
  display: block;
  color: var(--deep-earth);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--soft-gray);
  font-size: 0.95rem;
  margin: 0;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-details span {
  color: var(--terracotta);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 80px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border: 1px solid var(--sand);
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--deep-earth);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--sand);
  background: var(--cream);
  color: var(--deep-earth);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--soft-gray);
}

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

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Philosophy Section */
#philosophy {
  background: white;
}

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

.philosophy-content p {
  color: var(--soft-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.philosophy-content p:first-of-type {
  font-size: 1.1rem;
}

/* FAQ Section */
#faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 2px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deep-earth);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--sand);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--soft-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: none;
  margin: 1rem 0;
}

.faq-answer li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--soft-gray);
  font-size: 0.9rem;
}

.faq-answer li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.resource-category {
  background: white;
  padding: 2rem;
  border: 1px solid var(--sand);
}

.resource-category h3 {
  font-size: 1.5rem;
  color: var(--deep-earth);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand);
}

.resource-category ul {
  list-style: none;
}

.resource-category li {
  padding: 0.75rem 0;
  color: var(--soft-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--sand);
}

.resource-category li:last-child {
  border-bottom: none;
}

.resource-category a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-category a:hover {
  color: var(--warm-brown);
}

.crisis-box {
  background: var(--sunset-pink);
  padding: 2rem;
  border-radius: 2px;
  margin-top: 3rem;
  text-align: center;
}

.crisis-box h3 {
  color: var(--deep-earth);
  margin-bottom: 1rem;
}

.crisis-box p {
  color: var(--deep-earth);
  font-size: 0.95rem;
}

.crisis-box strong {
  font-size: 1.5rem;
  display: block;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-earth) 0%, #3D3028 100%);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

footer .legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

footer .legal-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

footer .legal-links a:hover {
  color: var(--terracotta);
}

/* Legal Content Pages */
.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--deep-earth);
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--deep-earth);
  margin: 2rem 0 1rem;
}

.legal-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--deep-earth);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  color: var(--soft-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.legal-content li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--soft-gray);
  font-size: 0.95rem;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.legal-content .effective-date {
  background: var(--sand);
  padding: 1rem;
  margin-bottom: 2rem;
}

.legal-content a {
  color: var(--terracotta);
  text-decoration: none;
}

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

/* Good Faith Estimate Specific */
.estimate-box {
  background: var(--sand);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 3px solid var(--terracotta);
}

.estimate-box h4 {
  margin-top: 0;
}

.estimate-box .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-earth);
  margin-bottom: 0.5rem;
}

.estimate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.estimate-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--soft-gray);
  font-size: 0.95rem;
}

.estimate-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--deep-earth);
}

/* Responsive */
@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 6rem;
    /* padding-bottom: 3rem; */
  }

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

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

  .video-control {
    position: static;
    margin: 2rem 0 0 auto
  }

  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .about-grid,
  .services-content,
  .contact-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    height: 400px;
  }

  .approach-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1.25rem;
  }

  .image-divider {
    background-attachment: scroll;
  }

  .dual-image-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dual-image img {
    min-height: 250px;
  }
}
