:root {
  --stone:       #f7f5f2;
  --linen:       #eeebe5;
  --mid:         #d4cfc6;
  --slate:       #4a4a46;
  --ink:         #1e1e1b;
  --white:       #ffffff;
  --rule:        #ddd9d2;
  --accent:      #2c4a3e;
  --accent2:     #3d6656;
  --hero-bg:     #e4eeea;   /* light green — page-hero background */
  --amber:       #c07b2e;
  --amber-light: #f5e6cc;
  --muted:       #7a7870;
  --serif:       'Lora', Georgia, serif;
  --sans:        'Source Sans 3', sans-serif;
  --max:         1160px;
  --pad:         clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAV ─────────────────────────────────────────────────── */
#site-nav { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--rule); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 1; }
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-logo small { display: block; font-family: var(--sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-style: normal; }
.footer-logo-img { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--slate); padding: 0.4rem 0.7rem; border-radius: 2px; letter-spacing: 0.02em; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--ink); background: var(--stone); }
.nav-links a.active { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: 0.45rem 1.1rem !important; border-radius: 2px; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent2) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); }
.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--rule); padding: 1rem var(--pad); }
.mobile-nav a { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--slate); padding: 0.65rem 0; display: block; border-bottom: 1px solid var(--rule); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── UTILITY ─────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 5rem 0; }
.section--stone { background: var(--stone); }
.section--linen { background: var(--linen); }

.eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.eyebrow--light { color: #c8ddd9; }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; letter-spacing: -0.015em; }
.h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; color: var(--ink); }
.h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--ink); }
.h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.h4 { font-size: 1rem; font-weight: 600; color: var(--ink); }
.h1--light, .h2--light { color: var(--white); }

.lead { font-size: 1.1rem; font-weight: 300; color: var(--slate); line-height: 1.75; max-width: 620px; }
.lead--light { color: #e2f2ee; }
.body-copy { font-size: 0.97rem; font-weight: 300; color: var(--slate); line-height: 1.8; }
.body-copy p + p { margin-top: 1em; }
.body-copy--light { color: var(--slate); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.88rem; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 2px; cursor: pointer; transition: all 0.2s; border: none; letter-spacing: 0.02em; text-decoration: none; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent2); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--slate); }
.btn--outline:hover { border-color: var(--ink); background: var(--stone); }
.btn--outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.9); }
.btn--outline-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.12); }

/* ── PHOTO PLACEHOLDER ───────────────────────────────────── */
.photo-block { background: var(--linen); border: 1px solid var(--rule); border-radius: 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--muted); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 2rem; text-align: center; }
.photo-block svg { opacity: 0.3; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { border-bottom: 1px solid var(--rule); padding: 5rem 0 0; background: var(--white); overflow: hidden; }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.hero-copy { padding-bottom: 4rem; }
.hero-copy::before { content: ''; display: block; width: 48px; height: 3px; background: var(--amber); margin-bottom: 2rem; border-radius: 2px; }
.hero-copy .h1 { margin-bottom: 1.5rem; max-width: 520px; }
.hero-copy .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { align-self: stretch; min-height: 480px; }
.hero-image .photo-block { height: 100%; min-height: 480px; border-bottom: none; border-radius: 3px 3px 0 0; }

/* ── CREDS ───────────────────────────────────────────────── */
.creds { background: var(--amber-light); border-top: 1px solid #e8d0a8; border-bottom: 1px solid #e8d0a8; padding: 1.5rem 0; }
.creds-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.cred-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 500; color: var(--slate); }
.cred-item svg { color: var(--amber); flex-shrink: 0; }

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 3rem; }
.service-card { background: var(--white); padding: 2.5rem; transition: background 0.2s; }
.service-card:hover { background: var(--stone); }
.service-card .photo-block { aspect-ratio: 16/9; margin-bottom: 1.5rem; }
.service-card .h3 { margin-bottom: 0.6rem; }
.service-card .body-copy { font-size: 0.9rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; font-size: 0.82rem; font-weight: 600; color: var(--amber); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── INTRO ───────────────────────────────────────────────── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-image .photo-block { aspect-ratio: 3/4; }
.intro-text .h2 { margin-bottom: 1.25rem; }
.intro-text .body-copy { margin-bottom: 1.5rem; }
.stats-row { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
.stat .num { font-family: var(--serif); font-size: 2.25rem; font-weight: 600; color: var(--amber); line-height: 1; }
.stat .label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; font-weight: 400; }

/* ── APPROACH STRIP ──────────────────────────────────────── */
.approach-strip { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #c2d6ce; margin-top: 3rem; }
.approach-item { padding: 2.5rem; border-left: 1px solid #c2d6ce; }
.approach-item:first-child { border-left: none; }
.approach-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: #a8c8bf; line-height: 1; margin-bottom: 1rem; }
.approach-item .h4 { color: var(--ink); margin-bottom: 0.5rem; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--white); border: 1px solid var(--rule); padding: 2rem; border-radius: 3px; }
.review-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; font-weight: 300; color: var(--slate); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.review-author { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.google-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.8rem; font-weight: 500; color: var(--muted); border: 1px solid var(--rule); padding: 0.5rem 1rem; border-radius: 2px; transition: border-color 0.2s; }
.google-badge:hover { border-color: var(--mid); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 4rem 0; }
.cta-band-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band .h2 { color: var(--white); max-width: 480px; margin-bottom: 0.5rem; }
.cta-band .lead { color: #d4ede8; font-size: 0.97rem; max-width: none; }
.cta-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero { background: var(--hero-bg); padding: 5rem 0; border-bottom: 1px solid #c2d6ce; }
.page-hero .h1 { color: var(--ink); max-width: 640px; margin-bottom: 1.25rem; }
.page-hero .lead { color: var(--slate); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .h1--light { color: var(--ink); }
.page-hero .lead--light { color: var(--slate); }
.page-hero .eyebrow--light { color: var(--accent); }
.section--ink { background: var(--hero-bg); border-top: 1px solid var(--hero-border); border-bottom: 1px solid var(--hero-border); }
.section--ink .eyebrow { color: var(--accent); }
.section--ink .h2 { color: var(--ink); }
.cta-band .eyebrow { color: rgba(255,255,255,0.85); }
.page-hero-inner::before { content: ''; display: block; width: 48px; height: 3px; background: var(--amber); margin-bottom: 2rem; border-radius: 2px; }

/* ── MAINTENANCE ─────────────────────────────────────────── */
.maintenance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.maint-item { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding: 2rem; border: 1px solid var(--rule); border-radius: 3px; background: var(--white); }
.maint-icon { width: 44px; height: 44px; background: var(--stone); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.maint-item .h4 { margin-bottom: 0.4rem; }
.maint-item .body-copy { font-size: 0.88rem; }
.full-width-photo .photo-block { aspect-ratio: 21/7; margin: 3rem 0; }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ── CARPENTRY ───────────────────────────────────────────── */
.carp-feature { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; margin-bottom: 2rem; }
.carp-feature:nth-child(even) .carp-photo { order: 2; }
.carp-feature:nth-child(even) .carp-copy  { order: 1; }
.carp-photo .photo-block { height: 100%; min-height: 320px; border: none; border-radius: 0; }
.carp-copy { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.carp-copy .h3 { margin-bottom: 0.75rem; }
.carp-copy .body-copy { font-size: 0.92rem; }
.carp-copy ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.carp-copy ul li { font-size: 0.88rem; color: var(--slate); padding-left: 1.1rem; position: relative; }
.carp-copy ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); font-weight: 600; }

/* ── HOW I WORK ──────────────────────────────────────────── */
.how-steps { display: flex; flex-direction: column; margin-top: 3rem; border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; }
.how-step { display: grid; grid-template-columns: 80px 1fr 60px; border-bottom: 1px solid var(--rule); background: var(--white); transition: background 0.2s; }
.how-step:last-child { border-bottom: none; }
.how-step:hover { background: var(--stone); }
.how-step-num { display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.75rem; font-weight: 600; color: var(--amber); border-right: 1px solid var(--rule); padding: 2rem; }
.how-step-content { padding: 2rem 2.5rem; }
.how-step-content .h4 { margin-bottom: 0.4rem; }
.how-step-content .body-copy { font-size: 0.88rem; }
.how-step-icon { display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: 0.5; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.principle { border-top: 3px solid var(--amber); padding-top: 1.5rem; }
.principle .h4 { margin-bottom: 0.6rem; }
.principle .body-copy { font-size: 0.88rem; }

/* ── PROJECTS ────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; margin-top: 3rem; }
.project-card { border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; background: var(--white); }
.project-photo .photo-block { aspect-ratio: 4/3; border: none; border-radius: 0; border-bottom: 1px solid var(--rule); }
.project-info { padding: 1.75rem; }
.project-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.project-info .h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.project-info .body-copy { font-size: 0.88rem; }
.project-meta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); display: flex; gap: 2rem; flex-wrap: wrap; }
.project-meta-item { font-size: 0.78rem; color: var(--muted); }
.project-meta-item strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.82rem; }

/* ── SERVICE AREA ────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.area-map .photo-block { aspect-ratio: 1; }
.area-region { margin-bottom: 2rem; }
.area-region .h4 { color: var(--accent); margin-bottom: 0.75rem; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--sans); }
.area-region ul { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area-region ul li { font-size: 0.82rem; font-weight: 400; color: var(--slate); background: var(--stone); border: 1px solid var(--rule); padding: 0.3rem 0.8rem; border-radius: 2px; }
.travel-note { background: var(--accent); color: var(--white); padding: 1.5rem 2rem; border-radius: 3px; margin-top: 2rem; font-size: 0.9rem; font-weight: 300; line-height: 1.65; }
.travel-note strong { font-weight: 600; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-method { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.75rem; border: 1px solid var(--rule); border-radius: 3px; margin-bottom: 1rem; transition: background 0.2s; }
.contact-method:hover { background: var(--stone); }
.contact-icon { width: 44px; height: 44px; background: var(--stone); border: 1px solid var(--rule); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-method .h4 { margin-bottom: 0.2rem; }
.contact-method .body-copy { font-size: 0.88rem; }
.form-note { font-size: 0.88rem; font-weight: 300; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--ink); background: var(--white); border: 1px solid var(--mid); border-radius: 2px; padding: 0.7rem 1rem; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.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 d='M1 1l5 5 5-5' stroke='%237a7870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.9rem 2rem; }
.form-success { display: none; background: var(--stone); border: 1px solid var(--rule); border-left: 4px solid var(--accent); padding: 1.5rem; border-radius: 2px; font-size: 0.92rem; color: var(--slate); margin-top: 1rem; line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer { background: var(--ink); padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.footer-logo { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-logo small { display: block; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 400; font-style: normal; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.92); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: right; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-copy { padding-bottom: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { display: none; }
  .approach-strip { grid-template-columns: 1fr; }
  .approach-item { border-left: none; border-top: 1px solid #c2d6ce; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .two-col-text { grid-template-columns: 1fr; }
  .carp-feature { grid-template-columns: 1fr; }
  .carp-feature:nth-child(even) .carp-photo,
  .carp-feature:nth-child(even) .carp-copy { order: unset; }
  .carp-photo .photo-block { min-height: 220px; }
  .how-step { grid-template-columns: 60px 1fr; }
  .how-step-icon { display: none; }
  .principles { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .area-map { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 560px) {
  .stats-row { gap: 2rem; }
  .cta-btns { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
