/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --forest:  #3d5a3d;
  --moss:    #5c7548;
  --sand:    #ded8b1;
  --cream:   #f0ead6;
  --bg:      #faf8f3;
  --bark:    #2c241d;
  --stone:   #6b6356;
  --line:    #e6e0d0;
  --accent:  #a4895a;
  --white:   #ffffff;
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --radius:  4px;
  --shadow:  0 8px 32px rgba(44,36,29,.11);
  --trans:   all .25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 17px; line-height: 1.65; color: var(--bark); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 { font-family: var(--display); line-height: 1.2; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--body); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--moss);
  display: block; margin-bottom: .6rem;
}
.section-title { margin-bottom: .5rem; }
.divider { width: 50px; height: 2px; background: var(--accent); margin: .9rem 0 1.6rem; }
.divider-center { margin: .9rem auto 1.6rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .divider { margin: .9rem auto 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; padding: .9rem 2rem; font-weight: 600; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase; border-radius: var(--radius);
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-primary:hover { background: var(--moss); border-color: var(--moss); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--bark); }
.btn-sand { background: var(--sand); color: var(--bark); border-color: var(--sand); }
.btn-sand:hover { background: var(--white); border-color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  background: rgba(250,248,243,.96); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 200; border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.logo-ring {
  width: 50px; height: 50px; border-radius: 50%; background: var(--sand);
  border: 2px dashed var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 700; color: var(--bark); text-transform: uppercase;
  text-align: center; line-height: 1.2; padding: 6px; flex-shrink: 0;
}
.nav-brand-text { font-family: var(--display); font-size: 1.25rem; font-weight: 600; line-height: 1.1; }
.nav-brand-text small { display: block; font-family: var(--body); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--moss); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  font-size: .9rem; font-weight: 500; color: var(--bark);
  display: flex; align-items: center; gap: .3rem; padding: .3rem 0;
  background: none; border: none; cursor: pointer; transition: color .2s;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--forest); }
.nav-links > li > a.active-link { color: var(--forest); border-bottom: 2px solid var(--accent); }
.caret { font-size: .65rem; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + .6rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); min-width: 210px; max-height: 80vh; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 300;
}
.dropdown.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: .7rem 1.25rem; font-size: .88rem; font-weight: 500; color: var(--bark);
  border-bottom: 1px solid var(--line); transition: background .15s, color .15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--forest); }
.nav-cta {
  background: var(--forest); color: var(--white) !important;
  padding: .6rem 1.3rem; border-radius: var(--radius); font-size: .84rem; font-weight: 600;
  transition: var(--trans);
}
.nav-cta:hover { background: var(--moss) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--bark); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; background: var(--white); border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem; max-height: 75vh; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: .7rem 0; font-size: 1rem; font-weight: 500;
  color: var(--bark); border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--forest); }
.mobile-group-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--moss); padding: .9rem 0 .2rem; display: block; border-bottom: none;
}
.mobile-sub a { padding-left: 1.25rem; font-size: .92rem; color: var(--stone); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bark); color: #b8af9f; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: .9rem; }
.footer-brand .nav-brand-text { color: var(--white); }
.footer-brand .nav-brand-text small { color: var(--sand); }
.footer-col h4 {
  color: var(--white); font-family: var(--body); font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--sand); }
.footer-social { display: flex; gap: .65rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .83rem;
}
.footer-bottom a:hover { color: var(--sand); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative; min-height: 44vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white); padding: 5rem 1.5rem 3.5rem;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(20,32,20,.55), rgba(20,32,20,.72)); }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner .eyebrow { color: var(--sand); }
.page-banner h1 { color: var(--white); }
.page-banner p { color: #f0ead6; max-width: 680px; margin: 1rem auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }
.breadcrumb a { color: var(--sand); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   HERO (homepage only)
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  background: linear-gradient(rgba(20,32,20,.52), rgba(20,32,20,.68)),
    url('https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  padding: 4rem 1.5rem;
}
.hero-inner { max-width: 860px; }
.hero .eyebrow { color: var(--sand); margin-bottom: 1rem; }
.hero h1 { color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,.3); margin-bottom: 1.25rem; }
.hero p { font-size: clamp(1rem,1.5vw,1.2rem); color: #f0ead6; max-width: 600px; margin: 0 auto 2.5rem; }

/* ============================================================
   ABOUT PILLARS
   ============================================================ */
.about-section { background: var(--bg); }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 1rem; }
.pillar {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-icon { width: 62px; height: 62px; border-radius: 50%; background: var(--cream); margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--forest); }
.pillar h3 { color: var(--forest); margin-bottom: .6rem; }
.pillar p { font-size: .95rem; color: var(--stone); margin: 0; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.svc-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; display: block; cursor: pointer; }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover img { transform: scale(1.08); }
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,32,20,.88) 0%, rgba(20,32,20,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
}
.svc-card h3 { color: var(--white); font-size: 1.25rem; margin: 0; }
.svc-arr {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: background .25s;
}
.svc-card:hover .svc-arr { background: var(--accent); }

/* ============================================================
   PORTFOLIO GRID (homepage)
   ============================================================ */
.portfolio-section { background: var(--bg); }
.port-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .9rem; }
.port-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.port-item:hover img { transform: scale(1.1); }

/* ============================================================
   OUR PROMISE
   ============================================================ */
.promise-section { background: var(--forest); color: var(--cream); }
.promise-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.promise-photo { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--stone); }
.promise-photo img { width: 100%; height: 100%; object-fit: cover; }
.promise-copy h2 { color: var(--white); margin-bottom: .25rem; }
.promise-copy .role { font-family: var(--body); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; }
.promise-copy p { color: #ddd5c0; }
.testimonial-block { margin-top: 2.25rem; padding: 1.6rem; background: rgba(255,255,255,.07); border-left: 3px solid var(--accent); border-radius: var(--radius); font-style: italic; color: #ddd5c0; }
.testimonial-block cite { display: block; margin-top: .75rem; font-style: normal; font-weight: 600; color: var(--sand); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; padding: 1.2rem 1.4rem; font-size: 1rem; font-weight: 600; color: var(--bark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .2s; cursor: pointer; }
.faq-q:hover { color: var(--forest); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; transition: transform .25s, background .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.4rem; color: var(--stone); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; }
.contact-form-wrap { background: var(--white); padding: 2.4rem; border: 1px solid var(--line); border-radius: var(--radius); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: .45rem; color: var(--bark); letter-spacing: .04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .82rem 1rem; font-family: var(--body); font-size: 1rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s; color: var(--bark);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c5e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(61,90,61,.12); }
.form-note { font-size: .78rem; color: var(--stone); margin-top: .75rem; }
.contact-info h3 { color: var(--forest); margin-bottom: .5rem; }
.contact-info p { color: var(--stone); margin-bottom: 1.5rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--forest); flex-shrink: 0; }
.info-list strong { display: block; color: var(--bark); font-size: .9rem; margin-bottom: .1rem; }
.info-list span, .info-list a { font-size: .92rem; color: var(--stone); }
.info-list a:hover { color: var(--forest); }

/* ============================================================
   SERVICE INNER PAGE
   ============================================================ */
.svc-overview { background: var(--bg); }
.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.svc-split-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.svc-split-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-lead { font-size: 1.1rem; color: var(--stone); margin-bottom: 1.25rem; }
.features-section { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.feat-card { background: var(--white); padding: 1.9rem; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-card::before { content: ''; display: block; width: 32px; height: 3px; background: var(--accent); margin-bottom: 1.1rem; }
.feat-card h3 { font-family: var(--body); font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: .4rem; }
.feat-card p { font-size: .92rem; color: var(--stone); margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--forest); text-align: center; padding: 4rem 0; }
.cta-strip h2 { color: var(--white); margin-bottom: .9rem; }
.cta-strip p { color: var(--sand); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.about-card { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.about-card-img { width: 110px; height: 110px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.about-card-img img { width: 100%; height: 100%; object-fit: cover; }
.about-card h3 { color: var(--forest); margin-bottom: .4rem; }
.about-card p { font-size: .94rem; color: var(--stone); margin: 0; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.75rem; }
.filter-btn {
  padding: .55rem 1.15rem; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; background: var(--white); color: var(--bark);
  border: 1px solid var(--line); border-radius: 999px; cursor: pointer; transition: var(--trans);
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.proj-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.proj-card:hover img { transform: scale(1.07); }
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,20,.92) 0%, rgba(20,32,20,.05) 65%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; color: var(--white); }
.cat-badge { position: absolute; top: .9rem; left: .9rem; background: rgba(255,255,255,.93); color: var(--bark); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .32rem .7rem; border-radius: 999px; }
.proj-card h3 { color: var(--white); font-size: 1.25rem; margin: 0 0 .2rem; }
.proj-loc { font-size: .83rem; color: var(--sand); }
.proj-card.hidden { display: none; }

/* ============================================================
   AREA PAGE CHIPS
   ============================================================ */
.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; max-width: 800px; margin: 0 auto; }
.chip { display: inline-block; padding: .5rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--bark); transition: var(--trans); }
.chip:hover { background: var(--cream); border-color: var(--accent); color: var(--forest); }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.consul-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .port-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .pillars, .svc-split { grid-template-columns: 1fr; gap: 1.75rem; }
  .services-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
  .promise-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .promise-photo { max-width: 340px; margin: 0 auto; aspect-ratio: 4/3; }
  .contact-grid, .consul-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .about-cards { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  .svc-split-img { max-width: 380px; margin: 0 auto; aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero { min-height: 70vh; }
  .page-banner { min-height: 36vh; }
  .proj-grid { grid-template-columns: 1fr; }
}
