:root {
  --brand-green: #6CB23F;
  --brand-green-dark: #4F8C2E;
  --brand-grey: #4d4d4d;
  --green-900: #1f3d2b;
  --green-700: #2f5d3f;
  --green-500: #4a8a5e;
  --wood: #b07a3b;
  --wood-dark: #8a5a26;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1c1c1c;
  --ink-muted: #5c5c5c;
  --line: #e4dfd6;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --maxw: 1080px;
  --font-display: "Droid Sans", "Noto Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--brand-green-dark); }
a:hover { color: var(--green-900); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.3em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-row,
.brand-logo,
.brand-name {
  transition: min-height 0.2s ease, height 0.2s ease, font-size 0.2s ease;
}
@media (min-width: 721px) {
  .site-header.scrolled .header-row { min-height: 64px; }
  .site-header.scrolled .brand-logo { height: 48px; }
  .site-header.scrolled .brand-name { font-size: 1.3rem; letter-spacing: 1px; }
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-height: 104px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  height: 84px;
  width: auto;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}
.brand-green,
.brand-grey {
  display: block;
}
.brand-green { color: var(--brand-green); }
.brand-grey { color: var(--brand-grey); }
.site-header nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
.site-header nav a:hover { color: var(--brand-green-dark); }
.site-header nav a.active {
  color: var(--brand-green-dark);
  border-bottom: 2px solid var(--brand-green);
  padding-bottom: 4px;
}

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(31, 61, 43, 0.86), rgba(47, 93, 63, 0.78)),
    repeating-linear-gradient(
      90deg,
      var(--wood-dark) 0 14px,
      var(--wood) 14px 28px
    );
  color: #fff;
  padding: 96px 0 88px;
}
.hero h1 { color: #fff; max-width: 780px; }
.lede {
  font-size: 1.15rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-list li {
  padding: 6px 0 6px 30px;
  position: relative;
}
.hero-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-green);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-green-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* Sections */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-lede {
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

/* Service cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; color: var(--ink-muted); }

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--green-500);
  border-bottom: 2.5px solid var(--green-500);
  transform: rotate(-45deg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card h3 { margin-bottom: 4px; }
.contact-card p { margin: 0 0 4px; }
.muted { color: var(--ink-muted); font-size: 0.92rem; }

/* Recent work */
.work-grid {
  display: grid;
  gap: 36px;
}
.work-item h3 {
  margin-bottom: 12px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.work-item figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.work-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.work-item.single img {
  aspect-ratio: 16 / 9;
}
.ba-pair figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .ba-pair { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 60px 28px 44px;
  margin: 0;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before,
.testimonial::after {
  position: absolute;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--brand-green);
  opacity: 0.3;
  font-family: Georgia, "Times New Roman", serif;
}
.testimonial::before {
  content: "\201C";
  top: 20px;
  left: 20px;
}
.testimonial::after {
  content: "\201D";
  bottom: 4px;
  right: 20px;
}
.testimonial blockquote {
  margin: 0 0 12px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.55;
}
.testimonial figcaption {
  font-weight: 600;
  color: var(--brand-green-dark);
  font-size: 0.95rem;
  padding-right: 56px;
}
.testimonial figcaption::before {
  content: "— ";
  color: var(--ink-muted);
}

/* Contact form */
.contact-form {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 4px; }
.form-intro { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.contact-form label.full { margin-bottom: 18px; }
.contact-form label span { display: block; margin-bottom: 6px; }
.contact-form label em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.88rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand-green);
  outline-offset: 1px;
  border-color: var(--brand-green);
}
.contact-form textarea { resize: vertical; }
.contact-form button { border: 0; cursor: pointer; }
.hp-field { position: absolute; left: -9999px; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 24px 0;
  margin-top: 0;
  font-size: 0.92rem;
}
.site-footer p { margin: 0; }
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.site-footer a:hover { color: #fff; border-bottom-color: #fff; }
.footer-line { line-height: 1.8; }

/* Responsive */
@media (max-width: 720px) {
  .site-header nav a { margin-left: 14px; font-size: 0.95rem; }
  .hero { padding: 72px 0 64px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 56px 0; }
}

@media (max-width: 720px) {
  .header-row { min-height: 84px; }
  .brand-logo { height: 64px; }
  .brand-name { font-size: 1.5rem; letter-spacing: 1px; }
}
@media (max-width: 560px) {
  .header-row { min-height: 72px; }
  .brand-logo { height: 56px; }
  .brand-name { font-size: 1.2rem; }
  .site-header nav a { margin-left: 10px; font-size: 0.85rem; }
}
@media (max-width: 420px) {
  .brand-logo { height: 48px; }
  .brand-name { font-size: 1.05rem; letter-spacing: 0.8px; }
  .site-header nav a { margin-left: 8px; font-size: 0.8rem; }
}

/* Page header (mini hero on inner pages) */
.page-header {
  background:
    linear-gradient(135deg, rgba(31, 61, 43, 0.86), rgba(47, 93, 63, 0.78)),
    repeating-linear-gradient(
      90deg,
      var(--wood-dark) 0 14px,
      var(--wood) 14px 28px
    );
  color: #fff;
  padding: 64px 0 56px;
}
.page-header h1 { color: #fff; margin-bottom: 0.2em; }
.lede-dark {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* CTA strip */
.cta-strip {
  background: var(--brand-green);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 6px; }
.cta-strip p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}
.cta-strip .cta-row { justify-content: center; }
.btn-light {
  background: #fff;
  color: var(--brand-green-dark);
}
.btn-light:hover { background: #f3f3f3; color: var(--green-900); }

/* "See more" link with arrow */
.cta-link {
  margin-top: 24px;
  text-align: center;
}
.cta-link a {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--brand-green);
  padding-bottom: 2px;
}
.cta-link a:hover { color: var(--green-900); border-bottom-color: var(--green-900); }

/* Thumbnail grid (home page) */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.thumb {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.15s ease;
}
.thumb:hover { transform: translateY(-2px); }
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 720px) {
  .thumb-grid { grid-template-columns: 1fr 1fr; }
  .thumb-grid .thumb:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .thumb-grid { grid-template-columns: 1fr; }
  .thumb-grid .thumb:nth-child(3) { grid-column: auto; }
}

/* Reviews ticker (desktop only) */
.reviews-ticker {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.95);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--brand-green);
}
.reviews-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 90s linear infinite;
}
.reviews-strip {
  display: flex;
  gap: 60px;
  padding: 0 60px 0 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.ticker-item::before {
  content: "\2605";
  color: var(--brand-green);
  font-size: 0.95rem;
  margin-right: 6px;
}
.ticker-item em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.reviews-ticker:hover .reviews-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .reviews-ticker { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-ticker { display: none; }
}
