:root {
  --charcoal: #1F2D26;
  --charcoal-soft: #2A3B32;
  --green: #4A7C3F;
  --green-bright: #6B8E5A;
  --green-pale: #A8BDB0;
  --green-mist: #E8EFE6;
  --cream: #F5F0E8;
  --cream-warm: #FAF8F3;
  --ivory: #FDFCF7;
  --muted: #5C5853;
  --line: rgba(31, 45, 38, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ========== NAVIGATION ========== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal); color: var(--cream);
  padding: 14px 40px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(107, 142, 90, 0.2);
}

.logo-link { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--cream); }
.logo-img { height: 52px; width: auto; mix-blend-mode: screen; filter: brightness(1.15); }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; letter-spacing: 0.3px; line-height: 1; }
.logo-text .sub { font-size: 9px; letter-spacing: 2.5px; color: var(--green-pale); margin-top: 4px; font-weight: 500; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--green-bright); }
.nav-links a:not(.cta):after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--green-bright); transition: width 0.3s;
}
.nav-links a:not(.cta):hover:after { width: 100%; }
.nav-links a.active { color: var(--green-bright); }
.nav-links a.active:after { width: 100%; }
.nav-links .cta { background: var(--green); padding: 10px 20px; border-radius: 2px; transition: background 0.2s; }
.nav-links .cta:hover { background: var(--green-bright); color: var(--cream); }

.mobile-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; font-size: 24px; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--charcoal); padding: 20px;
  border-top: 1px solid rgba(107, 142, 90, 0.15); z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--cream); text-decoration: none;
  padding: 14px 0; font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase; border-bottom: 1px solid rgba(107, 142, 90, 0.1);
}

/* ========== HERO (home) ========== */
.hero {
  background: var(--charcoal); color: var(--cream);
  padding: 100px 40px 120px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at top right, rgba(74, 124, 63, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--green-pale); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 32px; font-weight: 500;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--green); }

.hero h1, .hero .h1 {
  font-family: 'Fraunces', serif; font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 28px;
  color: var(--cream);
}
.hero h1 em, .hero .h1 em { font-style: italic; color: var(--green-bright); font-weight: 400; }

.hero-tagline {
  font-family: 'Caveat', cursive; font-size: 30px;
  color: var(--green-bright); margin-bottom: 24px; font-weight: 500; line-height: 1;
}

.hero p {
  font-size: 18px; line-height: 1.6; color: var(--cream);
  opacity: 0.85; margin-bottom: 40px; max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; text-decoration: none; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  transition: all 0.2s; border-radius: 2px;
}
.btn-primary { background: var(--green); color: var(--cream); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-1px); color: var(--cream); }
.btn-secondary { color: var(--cream); border: 1px solid rgba(245, 240, 232, 0.3); }
.btn-secondary:hover { border-color: var(--green-bright); color: var(--green-bright); }

.hero-visual { position: relative; min-height: 440px; }
.hero-photo {
  position: relative; margin: 0; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(107, 142, 90, 0.2);
  aspect-ratio: 4/5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px 20px;
  background: linear-gradient(to top, rgba(31, 45, 38, 0.92) 0%, rgba(31, 45, 38, 0.6) 60%, transparent 100%);
  color: var(--cream); display: flex; flex-direction: column; gap: 4px;
}
.photo-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-pale); font-weight: 500; }
.photo-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; line-height: 1.2; }

.license-badge {
  display: inline-block; margin-top: 40px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green-pale);
  border-top: 1px solid rgba(107, 142, 90, 0.3); padding-top: 20px; font-weight: 500;
}

/* ========== PAGE HERO (service pages - smaller) ========== */
.page-hero {
  background: var(--charcoal); color: var(--cream);
  padding: 80px 40px 90px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(circle at top right, rgba(74, 124, 63, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.breadcrumbs {
  display: flex; gap: 10px; margin-bottom: 24px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-pale); font-weight: 500;
}
.breadcrumbs a { color: var(--green-pale); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--green-bright); }
.breadcrumbs span { color: rgba(168, 189, 176, 0.5); }

.page-hero h1 {
  font-family: 'Fraunces', serif; font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 20px; color: var(--cream); max-width: 900px;
}
.page-hero h1 em { font-style: italic; color: var(--green-bright); font-weight: 400; }

.page-hero p {
  font-size: 18px; line-height: 1.6; color: var(--cream);
  opacity: 0.85; max-width: 620px; margin-bottom: 32px;
}

.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== TRUST BAR ========== */
.trust-bar { background: var(--cream); padding: 32px 40px; border-bottom: 1px solid var(--line); }
.trust-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-item .val { font-family: 'Fraunces', serif; font-size: 22px; color: var(--green); font-weight: 500; }
.trust-item .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ========== SECTIONS ========== */
section { padding: 100px 40px; }
section.compact { padding: 80px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 80px; align-items: end;
}
.section-header.single { grid-template-columns: 1fr; gap: 20px; max-width: 900px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--green); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500; margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--green); }
.section-header h2 {
  font-family: 'Fraunces', serif; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1; font-weight: 400; letter-spacing: -0.02em; color: var(--charcoal);
}
.section-header h2 em { font-style: italic; color: var(--green); }
.section-header p { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 500px; }

/* ========== SERVICES CARDS (home page) ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.service {
  background: var(--ivory); padding: 40px 32px; transition: background 0.3s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.service:hover { background: var(--green-mist); }
.service-number { font-family: 'Fraunces', serif; font-size: 14px; color: var(--green); font-weight: 500; margin-bottom: 24px; letter-spacing: 1px; }
.service h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500; line-height: 1.15; margin-bottom: 14px; color: var(--charcoal); }
.service p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 20px; flex-grow: 1; }
.service .learn-more {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); font-weight: 500; padding-top: 16px; border-top: 1px solid var(--line);
}

/* ========== CONTENT BLOCKS (service pages) ========== */
.content-block { padding: 90px 40px; background: var(--ivory); }
.content-block.alt { background: var(--cream-warm); }
.content-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 {
  font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 24px; color: var(--charcoal);
}
.content-text h2 em { font-style: italic; color: var(--green); }
.content-text p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.content-text p:last-child { margin-bottom: 0; }
.content-text strong { color: var(--charcoal); font-weight: 500; }
.content-text ul {
  list-style: none; margin: 20px 0;
}
.content-text ul li {
  padding: 10px 0 10px 28px; position: relative;
  font-size: 15px; line-height: 1.6; color: var(--charcoal-soft);
  border-bottom: 1px solid var(--line);
}
.content-text ul li:last-child { border-bottom: none; }
.content-text ul li::before {
  content: '→'; position: absolute; left: 0; top: 10px;
  color: var(--green); font-weight: 500;
}

.content-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px;
  box-shadow: 0 20px 50px rgba(31, 45, 38, 0.18);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-image figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px 18px;
  background: linear-gradient(to top, rgba(31, 45, 38, 0.92) 0%, transparent 100%);
  color: var(--cream);
}
.content-image .tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-pale); font-weight: 500; display: block; margin-bottom: 4px; }
.content-image .title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; }

/* ========== PROCESS STEPS ========== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.step {
  padding: 32px 24px; background: var(--ivory);
  border-left: 3px solid var(--green); border-radius: 2px;
}
.step .num { font-family: 'Fraunces', serif; font-size: 36px; color: var(--green); font-weight: 400; line-height: 1; margin-bottom: 14px; font-style: italic; }
.step h4 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; color: var(--charcoal); }
.step p { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ========== SERVICE AREAS ========== */
.areas-section { background: var(--green-mist); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 40px;
}
.area-card {
  background: var(--ivory); padding: 24px 28px;
  border-left: 3px solid var(--green); transition: transform 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.area-card:hover { transform: translateX(4px); }
.area-card h3 { font-family: 'Fraunces', serif; font-size: 20px; color: var(--charcoal); margin-bottom: 4px; font-weight: 500; }
.area-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ========== PORTFOLIO ========== */
.work-section { background: var(--cream-warm); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 60px; }
.portfolio-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 2px; margin: 0; cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 10px 30px rgba(31, 45, 38, 0.1);
}
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-item:nth-child(2) { margin-top: 40px; }
.portfolio-item:nth-child(3) { margin-top: -40px; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(31, 45, 38, 0.95) 0%, rgba(31, 45, 38, 0.55) 60%, transparent 100%);
  color: var(--cream); display: flex; flex-direction: column; gap: 4px;
}
.portfolio-item .tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-pale); font-weight: 500; }
.portfolio-item .title { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.1; font-weight: 500; }
.portfolio-item::after {
  content: ''; position: absolute; top: 16px; right: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright); box-shadow: 0 0 0 4px rgba(107, 142, 90, 0.35); z-index: 2;
}

/* ========== FAQ ========== */
.faq-section { background: var(--ivory); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.faq-item summary {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--charcoal); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--green); font-size: 28px;
  font-weight: 300; transition: transform 0.3s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 800px; }

/* ========== QUOTE / CTA ========== */
.quote-section {
  background: var(--charcoal); color: var(--cream);
  padding: 120px 40px; position: relative; overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74, 124, 63, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.quote-grid {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: center; position: relative; z-index: 2;
}
.quote-left h2 {
  font-family: 'Fraunces', serif; font-size: clamp(40px, 5vw, 60px);
  line-height: 1; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 24px;
  color: var(--cream);
}
.quote-left h2 em { font-style: italic; color: var(--green-bright); }
.quote-tagline { font-family: 'Caveat', cursive; font-size: 26px; color: var(--green-bright); margin-bottom: 24px; }
.quote-left p { font-size: 17px; line-height: 1.7; color: var(--cream); opacity: 0.82; max-width: 440px; }

.contact-block {
  background: var(--cream); color: var(--charcoal);
  padding: 48px; border-radius: 2px; border-top: 4px solid var(--green);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--charcoal); transition: color 0.2s;
}
.contact-item:first-of-type { padding-top: 0; }
.contact-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-item:hover { color: var(--green); }
.contact-icon {
  width: 44px; height: 44px; background: var(--green-mist);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.contact-value { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; line-height: 1.2; }
.contact-hours {
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); line-height: 1.7;
}
.contact-hours strong {
  color: var(--charcoal); font-weight: 500; display: block;
  margin-bottom: 6px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}

/* ========== FOOTER ========== */
footer {
  background: var(--charcoal); color: var(--green-pale);
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(107, 142, 90, 0.15);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo img { height: 48px; width: auto; mix-blend-mode: screen; filter: brightness(1.15); }
.footer-logo .brand { font-family: 'Fraunces', serif; font-size: 22px; color: var(--cream); font-weight: 500; line-height: 1; }
.footer-logo .sub { font-size: 9px; letter-spacing: 2.5px; color: var(--green-pale); margin-top: 4px; font-weight: 500; }
.footer-brand .tagline { font-family: 'Caveat', cursive; font-size: 22px; color: var(--green-bright); margin-bottom: 10px; }
.footer-brand .desc { font-size: 14px; line-height: 1.7; color: var(--green-pale); max-width: 340px; }
.footer-col h4 {
  color: var(--cream); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 500;
}
.footer-col a {
  display: block; color: var(--green-pale); text-decoration: none;
  font-size: 14px; padding: 6px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(107, 142, 90, 0.15);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .logo-img { height: 44px; }
  .logo-text .brand { font-size: 17px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .hero { padding: 60px 20px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: auto; }
  .hero-photo { max-width: 500px; margin: 0 auto; }

  .page-hero { padding: 50px 20px 60px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); }

  .trust-bar { padding: 24px 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  section, section.compact { padding: 70px 20px; }
  .content-block { padding: 60px 20px; }
  .quote-section { padding: 80px 20px; }

  .section-header { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .content-image { max-width: 500px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(2), .portfolio-item:nth-child(3) { margin-top: 0; }

  .faq-item summary { font-size: 18px; }

  .quote-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-block { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
