/* =====================
   CONCEPT C — LIGHT & NATURAL
   Warm white background, brand green accents
   Font: Playfair Display (headers) + Lato (body)
===================== */

:root {
  --bg:        #F5F2EA;
  --surface:   #ECEADE;
  --surface2:  #E0DDD2;
  --text:      #1E2A14;
  --text-muted:#5A6248;
  --gold:      #626F35;
  --gold-light:#9EBB4D;
  --sage:      #8A8D7A;
  --cream:     #F5F2EA;
  --white:     #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
  --transition: all 0.3s ease;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg) !important;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  background-color: var(--bg) !important;
  color: var(--text);
  position: relative;
  min-height: 100vh;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg) !important;
  border-bottom: 1px solid rgba(98, 111, 53, 0.2);
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
}

.logo-text-wrapper {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #ffffff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--text) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 0;
  background: transparent !important;
}

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(30,42,20,0.65) 0%, rgba(30,42,20,0.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(158,187,77,0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); color: var(--text); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  padding: 1.8rem 0;
  background: var(--surface) !important;
  border-top: 1px solid rgba(98,111,53,0.15);
  border-bottom: 1px solid rgba(98,111,53,0.15);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item .icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ---- SECTIONS SHARED ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
  margin: 0 auto;
}

/* ---- SERVICES ---- */
.services {
  padding: 6rem 0;
  background: transparent !important;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-sub { margin: 0 auto; }

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

.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(98,111,53,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(30,42,20,0.06);
}

.service-card:hover {
  border-color: rgba(98,111,53,0.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30,42,20,0.1);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  display: block;
}

.service-card-body {
  padding: 1.8rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.service-link:hover { color: var(--gold-light); }

/* ---- CAROUSEL ---- */
.carousel-section {
  padding: 5rem 0 3rem;
  background: var(--surface) !important;
}

.carousel-section .section-title {
  margin-bottom: 2rem;
}

.carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: rgba(98,111,53,0.8); }
.carousel-btn--prev { left: 1.2rem; }
.carousel-btn--next { right: 1.2rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.carousel-dots button.active { background: var(--gold); }

/* ---- ABOUT ---- */
.about {
  padding: 6rem 0;
  background: var(--surface) !important;
}

.about-intro {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.team-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #ffffff !important;
  border-radius: 8px;
  padding: 1.8rem;
  border: 1px solid rgba(98,111,53,0.12);
  box-shadow: 0 2px 8px rgba(30,42,20,0.06);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(98,111,53,0.3);
}

.team-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.team-card .role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.cert-tag {
  background: rgba(98,111,53,0.1);
  border: 1px solid rgba(98,111,53,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

/* ---- SERVICE AREA ---- */
.area {
  padding: 5rem 0;
  background: transparent !important;
  text-align: center;
}

.area-cities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.area-pill {
  background: #ffffff !important;
  border: 1px solid rgba(98,111,53,0.25);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  box-shadow: 0 1px 4px rgba(30,42,20,0.06);
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 5.5rem 0;
  background: var(--gold) !important;
  border-top: none;
  border-bottom: none;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
}

.contact-method .icon { color: var(--gold-light); font-size: 1.2rem; }
.contact-method:hover { color: var(--gold-light); }

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--gold);
}
.cta-section .btn-primary:hover {
  background: var(--gold-light);
  color: var(--text);
}

/* ---- FOOTER ---- */
footer {
  padding: 2.5rem 0;
  background: var(--text) !important;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .footer-wordmark {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

footer p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

footer nav { display: flex; gap: 1.5rem; }
footer nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}
footer nav a:hover { color: var(--gold-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg) !important;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(98,111,53,0.2);
    gap: 1.2rem;
    z-index: 999;
  }
  .nav { position: relative; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  footer .container { flex-direction: column; text-align: center; }
  .trust-bar .container { gap: 1.5rem; }
}
