:root {
  --primary-wood: #8B4513;
  --dark-walnut: #3E2723;
  --navy-accent: #1A3A52;
  --soft-cream: #F5F3EF;
  --warm-beige: #E8DCC4;
  --charcoal: #2C2C2C;
  --hover-gold: #C19A6B;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--soft-cream);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-walnut);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.75rem; }

.masthead-navigation {
  background: linear-gradient(135deg, var(--dark-walnut) 0%, var(--navy-accent) 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brand-signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-beige);
  text-decoration: none;
  letter-spacing: 1px;
}

.brand-signature:hover {
  color: var(--hover-gold);
}

.navigation-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.navigation-links a {
  color: var(--soft-cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.navigation-links a:hover,
.navigation-links a.current-page {
  color: var(--hover-gold);
  border-bottom-color: var(--hover-gold);
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--soft-cream);
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-showcase {
  background: linear-gradient(rgba(26, 58, 82, 0.7), rgba(62, 39, 35, 0.85)),
              url('/site_graphics/hero-8f3137e573f763b98544bd040a0dbfac.jpg') center/cover no-repeat;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  padding: 80px 0;
}

.hero-showcase h1 {
  color: white;
  font-size: 4rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero-showcase p {
  font-size: 1.35rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.primary-action-btn {
  background-color: var(--primary-wood);
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  min-height: 54px;
}

.primary-action-btn:hover {
  background-color: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: white;
}

.secondary-action-btn {
  background-color: transparent;
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
  white-space: nowrap;
  min-height: 54px;
}

.secondary-action-btn:hover {
  background-color: white;
  color: var(--navy-accent);
}

.content-section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.section-heading p {
  font-size: 1.15rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-item-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.service-item-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-item-content {
  padding: 2rem;
}

.service-item-content h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-wood);
  margin: 1.5rem 0;
}

.service-item-content p {
  color: #555;
  line-height: 1.7;
}

.benefits-display {
  background: linear-gradient(135deg, var(--navy-accent) 0%, var(--dark-walnut) 100%);
  color: white;
  padding: 80px 0;
}

.benefits-display h2 {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-feature {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.benefit-feature h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.testimonial-carousel {
  background-color: var(--warm-beige);
  padding: 80px 0;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-details p {
  color: #777;
  font-size: 0.95rem;
}

.contact-info-section {
  padding: 80px 0;
  background: white;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-method-item {
  text-align: center;
  padding: 2rem;
  border: 2px solid var(--warm-beige);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  border-color: var(--primary-wood);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-wood);
}

.contact-method-item h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.contact-method-item a {
  color: var(--navy-accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-method-item a:hover {
  color: var(--primary-wood);
}

.site-footer {
  background: linear-gradient(135deg, var(--dark-walnut) 0%, var(--navy-accent) 100%);
  color: var(--soft-cream);
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  color: var(--warm-beige);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.footer-section p,
.footer-section a {
  color: var(--soft-cream);
  line-height: 1.8;
}

.footer-section a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
  background-color: white;
  color: var(--charcoal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-wood);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

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

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 450px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent-banner.show {
  display: block;
}

.cookie-consent-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cookie-consent-banner p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-accept-btn {
  background-color: var(--primary-wood);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
  background-color: var(--hover-gold);
}

.cookie-decline-btn {
  background-color: #666;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-decline-btn:hover {
  background-color: #555;
}

.cookie-consent-banner a {
  color: var(--navy-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .masthead-navigation {
    padding: 1rem 0;
  }

  .mobile-menu-trigger {
    display: block;
  }

  .navigation-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-walnut);
    padding: 1.5rem;
    gap: 1rem;
  }

  .navigation-links.active {
    display: flex;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero-showcase {
    min-height: 500px;
    padding: 60px 0;
  }

  .hero-showcase h1 {
    font-size: 2.75rem;
  }

  .hero-showcase p {
    font-size: 1.1rem;
  }

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

  .content-section {
    padding: 60px 0;
  }

  .service-showcase-grid,
  .benefits-grid,
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 1.5rem;
  }
}
