/* ═══ RH CONSTRUCT — static site styles ═══ */
:root {
  --green: #1E8A63;
  --green-hover: #26A57C;
  --dark: #0B0B0B;
  --dark-2: #141414;
  --light: #FFFFFF;
  --off: #F6F6F4;
  --ink: #1A1A1A;
  --ink-on-dark: #E6E6E6;
  --line: #E5E5E1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline:hover { border-color: var(--green-hover); color: var(--green-hover); }
.btn-full { width: 100%; }

/* ── Sticky nav ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled, .site-header.solid { background: #000; box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-menu a.nav-link {
  color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; position: relative; padding: 6px 0;
}
.nav-menu a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green); transition: width .3s ease;
}
.nav-menu a.nav-link:hover, .nav-menu a.nav-link.active { color: #fff; }
.nav-menu a.nav-link:hover::after, .nav-menu a.nav-link.active::after { width: 100%; }
.nav-quote { padding: 11px 22px; font-size: .8rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--dark); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 0 24px; max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    box-shadow: 0 18px 30px rgba(0,0,0,.45);
  }
  .nav-menu.open { max-height: 520px; padding: 12px 24px 22px; }
  .nav-menu li { width: 100%; }
  .nav-menu a.nav-link { display: block; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-menu .nav-quote-li { padding: 16px 0 4px; }
  .nav-quote { width: 100%; }
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background-size: cover; background-position: center; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.35));
}
.hero .container { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 90px; }
.hero-logo { width: 150px; height: auto; margin-bottom: 28px; }
.hero-eyebrow {
  color: var(--green-hover); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,.8);
}
.hero-display {
  font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08; max-width: 15ch; margin-bottom: 36px;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Intro block (H1 below hero) ── */
.intro-block h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.12; max-width: 20ch; margin-bottom: 20px;
}
.intro-copy { max-width: 720px; font-size: 1.06rem; color: #4d4d4a; }

/* ── Section with background photo ── */
.section-bg { position: relative; background-size: cover; background-position: center; }
.section-bg::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.93); }
.section-bg > .container { position: relative; z-index: 1; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-light { background: var(--light); }
.section-off { background: var(--off); }
.section-dark { background: var(--dark-2); color: var(--ink-on-dark); }
.section-dark h2 { color: #fff; }

.label {
  display: block; color: var(--green); font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px;
}
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 18px; }
.section-intro { max-width: 640px; color: #4d4d4a; margin-bottom: 52px; }
.section-dark .section-intro { color: rgba(230,230,230,.72); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Services overview cards ── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 38px 30px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.08); border-color: rgba(30,138,99,.4); }
.card .icon {
  width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: rgba(30,138,99,.1); color: var(--green); margin-bottom: 22px;
}
.card h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.card p { font-size: .96rem; color: #4d4d4a; }

/* ── Why choose us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; margin-top: 44px; }
.why-item { display: flex; gap: 18px; padding: 26px 26px 26px 0; border-top: 1px solid var(--line); }
.why-num { color: var(--green); font-weight: 700; font-size: .95rem; letter-spacing: .08em; padding-top: 3px; flex-shrink: 0; }
.why-item h3 { color: var(--ink); font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: .95rem; color: #4d4d4a; }

/* ── Meet the team ── */
.team-card {
  max-width: 520px; margin: 48px auto 0; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
}
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-body { padding: 32px 34px 38px; }
.team-badge {
  display: inline-block; background: rgba(30,138,99,.1); color: var(--green);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 16px;
}
.team-body h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.team-role { color: var(--green); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin: 6px 0 16px; }
.team-body p.bio { color: #4d4d4a; font-size: .97rem; text-align: left; }
.team-body p.bio + p.bio { margin-top: 14px; }

/* ── Video section ── */
.video-frame {
  position: relative; max-width: 900px; margin: 44px auto 0;
  aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Placeholder note (swap before launch) ── */
.placeholder-note {
  border: 1px dashed rgba(30,138,99,.55); color: #5a5a56;
  background: rgba(30,138,99,.06); border-radius: 6px;
  padding: 12px 16px; font-size: .88rem; font-style: italic; margin-top: 18px;
}
.section-dark .placeholder-note { color: rgba(230,230,230,.8); }

/* ── Scope of work tiles (static, no links/hover) ── */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.work-tile { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-tile-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 20px 22px;
  background: linear-gradient(transparent 42%, rgba(0,0,0,.78));
}
.work-tile-label h3 { color: #fff; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.crosslinks { margin-top: 34px; font-size: .95rem; color: #4d4d4a; }
.crosslinks a { font-weight: 600; margin: 0 6px; }

/* ── Image banners (static, desktop + mobile) ── */
.banner {
  position: relative; min-height: 440px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-size: cover; background-position: center;
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.3));
}
.banner-inner { position: relative; z-index: 1; padding: 64px 24px; }
.banner .label { color: var(--green-hover); margin-bottom: 12px; }
.banner-line { color: #fff; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
.banner-cta h3 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.banner-body { color: rgba(255,255,255,.9); margin: 12px auto 0; font-size: 1.05rem; max-width: 520px; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.banner-cta .btn { margin-top: 28px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-copy p { color: #4d4d4a; margin-bottom: 16px; }
.contact-copy .urgency { color: var(--ink); font-weight: 600; }
.contact-call { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 1.1rem; }
.plans-line { font-weight: 600; color: var(--ink); }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 42px; color: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; }
.req { color: var(--green); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: .95rem; color: var(--ink);
  border: 1px solid #D9D9D6; border-radius: 6px; padding: 13px 14px;
  background: #fff; transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,138,99,.18);
}
.field textarea { resize: vertical; }
.quote-card .btn { margin-top: 22px; }
.captcha-row { margin-top: 22px; }
.form-note { font-size: .82rem; color: #6b6b67; margin-top: 14px; text-align: center; }

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(230,230,230,.75); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; padding: 72px 0 52px; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-grid h4 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(230,230,230,.75); font-size: .94rem; }
.footer-grid a:hover { color: var(--green-hover); }
.footer-tagline { font-size: .95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .84rem; color: rgba(230,230,230,.5);
}

/* ── Sticky mobile CTA ── */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  body { padding-bottom: 62px; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 100; box-shadow: 0 -6px 24px rgba(0,0,0,.35);
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 18px 10px; font-weight: 700; font-size: .88rem; letter-spacing: .04em;
    text-transform: uppercase;
  }
  .mobile-cta .m-call { background: var(--dark); color: #fff; }
  .mobile-cta .m-quote { background: var(--green); color: #fff; }
  .mobile-cta .m-quote:hover { background: var(--green-hover); color: #fff; }
  .mobile-cta .m-call:hover { color: var(--green-hover); }
}

/* ── Thank you / simple pages ── */
.simple-page { padding: 180px 0 120px; min-height: 70vh; }
.simple-page h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.simple-page .tick {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(30,138,99,.12);
  color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
.simple-page p { max-width: 560px; color: #4d4d4a; margin-bottom: 14px; }
.simple-page .hero-ctas { margin-top: 30px; }
.simple-page .btn-outline { color: var(--ink); border-color: #c9c9c5; }
.simple-page .btn-outline:hover { border-color: var(--green); color: var(--green); }
.prose p { max-width: 720px; margin-bottom: 16px; color: #4d4d4a; }
.prose h2 { font-size: 1.3rem; margin: 34px 0 10px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .quote-card { padding: 30px 22px; }
  .hero-logo { width: 118px; }
  .banner { min-height: 300px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
