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

:root {
  --charcoal: #2a2a2a;
  --charcoal-light: #3a3a3a;
  --warm-dark: #1e1e1e;
  --amber: #d4920a;
  --amber-light: #e8a832;
  --honey: #f0c75e;
  --cream: #faf6ef;
  --warm-gray: #e8e2d8;
  --mid-gray: #8a8278;
  --text: #333;
  --text-light: #6b6560;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  background: var(--cream);
  padding-top: 70px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }

/* ========== HEADER & NAV ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  border-bottom: 3px solid var(--amber);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--amber); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-phone {
  background: var(--amber) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
  margin-left: 8px;
  white-space: nowrap;
}
.nav-phone:hover {
  background: var(--amber-light) !important;
}

.nav-dropdown { position: relative; }

.dropdown-trigger {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.nav-dropdown:hover .dropdown-trigger {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.92rem;
  transition: background 0.15s;
}
.dropdown-menu a:hover {
  background: var(--warm-gray);
  color: var(--charcoal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: url('images/acorn-seated.jpg') center/cover no-repeat;
  opacity: 0.15;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 800;
}
.hero h1 .accent { color: var(--amber); }
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-sm { padding: 56px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary { background: var(--amber); color: var(--charcoal); }
.btn-primary:hover { background: var(--amber-light); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-full { width: 100%; }

/* Trust Bar */
.trust-bar {
  background: var(--warm-gray);
  padding: 18px 0;
  border-bottom: 3px solid var(--amber);
}
.trust-bar ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ========== SERVICES ========== */
.services { padding: 72px 0; }
.services h2 { text-align: center; margin-bottom: 12px; font-size: 1.9rem; color: var(--charcoal); }
.services-intro { text-align: center; color: var(--text-light); margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--amber);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--warm-gray);
}
.service-card-body { padding: 24px; }
.service-card h3 { margin-bottom: 10px; color: var(--charcoal); font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 14px; line-height: 1.6; }
.service-card .card-link { color: var(--amber); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.service-card .card-link:hover { text-decoration: underline; }

/* ========== ABOUT ========== */
.about { padding: 72px 0; background: var(--warm-gray); }
.about-inner { display: flex; gap: 44px; align-items: center; }
.about-img { max-width: 380px; border-radius: var(--radius); flex-shrink: 0; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.about h2 { color: var(--charcoal); margin-bottom: 18px; font-size: 1.9rem; }
.about p { max-width: 700px; margin-bottom: 14px; color: var(--text-light); }

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 56px 0;
  text-align: center;
  background: var(--charcoal);
  color: #fff;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}
.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.testimonial cite { opacity: 0.7; font-size: 0.95rem; }

/* ========== CONTACT ========== */
.contact { padding: 72px 0; }
.contact h2 { text-align: center; color: var(--charcoal); margin-bottom: 8px; font-size: 1.9rem; }
.contact-sub { text-align: center; margin-bottom: 32px; color: var(--text-light); }
.contact form { max-width: 540px; margin: 0 auto; }
.form-row { display: flex; gap: 16px; }
.form-group { margin-bottom: 18px; flex: 1; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.92rem; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px;
  border: 2px solid var(--warm-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-note { text-align: center; font-size: 0.82rem; color: var(--mid-gray); margin-top: 12px; }

/* Contact Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { color: var(--charcoal); margin: 24px 0 12px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { margin-bottom: 8px; color: var(--text-light); }
.contact-form-wrap h2 { color: var(--charcoal); margin-bottom: 8px; }

/* Content Pages */
.content { padding: 72px 0; }
.content h2 { color: var(--charcoal); margin: 36px 0 16px; font-size: 1.6rem; }
.content h2:first-child { margin-top: 0; }
.content p { margin-bottom: 16px; max-width: 760px; color: var(--text-light); }

.benefit-list { margin-bottom: 20px; padding-left: 24px; }
.benefit-list li { margin-bottom: 12px; color: var(--text-light); }
.benefit-list li strong { color: var(--charcoal); }

.internal-link { text-align: center; padding: 16px 0; font-size: 0.95rem; }
.internal-link a { color: var(--amber); font-weight: 600; }

/* FAQ */
.faq { padding: 72px 0; background: var(--warm-gray); }
.faq h2 { text-align: center; color: var(--charcoal); margin-bottom: 32px; font-size: 1.9rem; }
details { background: #fff; margin-bottom: 12px; border-radius: var(--radius); overflow: hidden; border-left: 4px solid var(--amber); }
details summary { padding: 16px 20px; font-weight: 600; color: var(--charcoal); cursor: pointer; }
details p { margin: 0 20px 16px; color: var(--text-light); line-height: 1.7; }

/* CTA Banner */
.cta-banner { background: var(--charcoal); color: #fff; padding: 56px 0; text-align: center; border-top: 3px solid var(--amber); }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { opacity: 0.8; margin-bottom: 20px; }

/* Footer */
.footer { background: var(--warm-dark); color: #999; padding: 48px 0 32px; font-size: 0.88rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-links h4 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-links a { display: block; color: #999; text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { color: var(--amber); }
.footer-address { color: #666; font-size: 0.82rem; margin-top: 8px; }
.footer-phone a { color: var(--amber); font-size: 1.1rem; text-decoration: none; font-weight: 600; }

/* Honeypot */
.hp-field { display: none !important; }

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav > a {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-dropdown { width: 100%; }
  .dropdown-trigger {
    padding: 14px 16px;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 400px;
    padding: 8px 0;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.75); padding: 10px 24px; }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

  .nav-phone {
    margin-top: 16px;
    text-align: center !important;
    font-size: 1.05rem !important;
    padding: 14px 16px !important;
  }

  .hero h1 { font-size: 1.9rem; }
  .hero::after { width: 100%; opacity: 0.08; }
  .hero-sm h1 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-inner { flex-direction: column; }
  .about-img { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 500px) {
  .form-row { flex-direction: column; gap: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .trust-bar ul { gap: 14px; font-size: 0.85rem; }
}
