/* RenewItHQ — full stylesheet (async; critical above-the-fold CSS is inline in <head>)
   Design system taken from the five page mockups, not the content blueprint.
   Hand-written. No framework, no build step, no web fonts. */

/* ---------- section furniture ---------- */
.sec{padding:82px 0}
.sec-head{max-width:880px;margin:0 auto 46px;text-align:center}
.sec-num{display:block;font-size:.82rem;font-weight:800;letter-spacing:.18em;color:var(--orange);margin:0 0 .55rem}
.sec-head p{margin:0;font-size:1.03rem}
.more{display:inline-block;color:var(--orange);font-weight:800;font-size:.85rem;letter-spacing:.06em}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-dark{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.btn-dark:hover{background:rgba(255,255,255,.12)}
/* Focus ring: brand #F97316 stays, made legible by thickness + a two-tone edge.
   Ring geometry from the border box outward: 0-2px white hairline, 2-6px orange
   outline, 6-8px near-black edge. On white/cream the #111 outer edge carries the
   boundary; inside a black band the white inner hairline does, and the orange ring
   itself is 7.49:1 there. Outline is kept (not replaced by shadow) so the ring
   survives Windows High Contrast Mode. */
.btn:focus-visible,a:focus-visible,button:focus-visible,summary:focus-visible,
input:focus-visible,textarea:focus-visible,select:focus-visible,details:focus-visible{
  outline:4px solid var(--orange);outline-offset:2px;
  box-shadow:0 0 0 2px #fff,0 0 0 8px #111;border-radius:2px}
.btn-primary:hover{background:var(--orange-dark);border-color:var(--orange-dark)}
/* CTA label is #111 on the brand orange fill: 6.74:1, WCAG AA. The fill itself is
   unchanged brand #F97316 — only the label colour moved. Mirrored in each page's
   inlined critical CSS so first paint is correct too. */
.btn-primary{color:#111}
.btn-primary:hover{color:#111}
.nav-menu a:hover{color:var(--orange)}

/* orange checkmark bullets — mockup uses a filled orange disc with a white tick */
.checks li{position:relative;padding-left:30px;margin-bottom:.55em;font-size:.93rem}
.checks li::before{content:"";position:absolute;left:0;top:.28em;width:18px;height:18px;border-radius:50%;background:var(--orange);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23111' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E");
  background-size:13px 13px;background-repeat:no-repeat;background-position:center}

/* ---------- 1. services ---------- */
.sec-services{background:#fff}
.cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .18s ease,box-shadow .18s ease}
.card:hover{transform:translateY(-3px);box-shadow:0 16px 38px rgba(0,0,0,.14)}
.card-link{display:flex;flex-direction:column;height:100%;text-decoration:none}
.card-media{position:relative}
.card-icon{position:absolute;left:18px;bottom:-24px;width:52px;height:52px;border-radius:50%;background:var(--orange);display:grid;place-items:center;box-shadow:0 4px 14px rgba(0,0,0,.28)}
.card-icon svg{width:26px;height:26px;fill:none;stroke:#111;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.card-body{padding:40px 22px 24px;display:flex;flex-direction:column;flex:1}
.card-body h3{font-size:1.08rem;margin-bottom:.5em}
.card-body p{font-size:.95rem;margin-bottom:.9rem}
.card-body .checks{margin-bottom:1.1rem}
.card-body .more{margin-top:auto}
.cta-bar{margin-top:44px;border:1px solid var(--line);border-radius:var(--radius);background:var(--cream);padding:28px 32px;display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;text-align:center}
.cta-bar p{margin:0;font-weight:800;font-size:1.15rem;color:var(--ink)}

/* ---------- 2. why choose — full-width black band ---------- */
.band{background:#000;color:#fff;padding:82px 0}
.band h2,.band .sec-head h2{color:#fff}
.band .sec-head p{color:#C9CDD3}
.band .sec-num{color:var(--orange)}
.why-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:46px;align-items:start}
.vid{position:relative;display:block;border-radius:var(--radius);overflow:hidden;background:#111}
.vid-play{position:absolute;inset:0;margin:auto;width:78px;height:78px;border-radius:50%;background:rgba(255,255,255,.92);display:grid;place-items:center;box-shadow:0 6px 22px rgba(0,0,0,.5)}
.vid-play svg{width:42px;height:42px;fill:#000}
.vid:hover .vid-play{background:#fff}
.why-points{display:grid;grid-template-columns:1fr 1fr;gap:28px 30px}
.why-points li{display:flex;gap:14px;align-items:flex-start}
.pt-icon{flex:none;width:48px;height:48px;border-radius:50%;border:2px solid var(--orange);display:grid;place-items:center}
.pt-icon svg{width:24px;height:24px;fill:none;stroke:var(--orange);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.why-points h3{font-size:.95rem;color:#fff;margin-bottom:.35em}
.why-points p{font-size:.9rem;margin:0;color:#C9CDD3}

/* ---------- 3. our process ---------- */
.sec-process{background:var(--cream);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:30px;position:relative}
.steps::before{content:"";position:absolute;top:33px;left:12.5%;right:12.5%;height:2px;background:#DAD7D1}
.steps li{position:relative;text-align:center}
.step-icon{position:relative;z-index:1;display:grid;place-items:center;width:66px;height:66px;margin:0 auto 16px;border-radius:50%;background:#fff;border:2px solid #000}
.step-icon svg{width:30px;height:30px;fill:none;stroke:#000;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.step-num{display:block;font-size:.82rem;font-weight:800;letter-spacing:.18em;color:var(--orange);margin-bottom:.4rem}
.steps h3{font-size:1rem;margin-bottom:.45em}
.steps p{font-size:.92rem;margin:0}

/* ---------- 4. featured projects ---------- */
.sec-projects{background:#fff}
.projects{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.pj{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.pj a{display:block;text-decoration:none}
.pj-media{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--line)}
.pj-media figure{margin:0;position:relative;background:#ddd;overflow:hidden}
.pj-tag{position:absolute;top:10px;font-size:.62rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;padding:5px 10px;border-radius:6px;color:#fff}
.pj-media figure .pj-tag{left:10px;background:rgba(0,0,0,.85)}
.pj-media .is-after .pj-tag{left:auto;right:10px;background:var(--orange);color:#111}
.pj-body{padding:20px 22px 24px}
.pj-body h3{font-size:1.02rem;margin-bottom:.4em}
.pj-meta{font-size:.9rem;margin-bottom:.9rem}
.projects-cta{text-align:center;margin:42px 0 0}
.photo-badge{display:inline-flex;align-items:center;gap:10px;margin:0 auto 30px;padding:10px 18px;border:1px solid var(--line);border-radius:999px;background:var(--cream);font-size:.85rem;font-weight:700;color:var(--ink)}
.photo-badge svg{width:20px;height:20px;fill:none;stroke:var(--orange);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex:none}

/* ---------- 5. consultation ---------- */
.sec-cta{background:var(--cream);border-top:1px solid var(--line)}
.cta-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:40px;align-items:start}
.cta-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;min-height:640px}
.cta-form iframe{display:block;width:100%;border:0;min-height:640px}
.contact-list li{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:12px;padding:16px 18px;margin-bottom:14px}
.contact-list svg{width:22px;height:22px;fill:none;stroke:var(--orange);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex:none;margin-top:2px}
.contact-list b{display:block;color:var(--ink);font-size:.95rem}
.contact-list span{font-size:.94rem}
.contact-list a{text-decoration:none}

/* ---------- footer ---------- */
.foot{background:#000;color:#B7BCC4;font-size:.94rem;padding:64px 0 26px}
.foot-top{display:grid;grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(0,1fr));gap:40px}
.foot h2{color:#fff;font-size:.92rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.15em}
.foot a{text-decoration:none}
.foot a:hover{color:var(--orange)}
.foot-top ul li{margin-bottom:.65em;line-height:1.55}
.foot-brand p{margin:16px 0 18px;max-width:38ch}
.foot-contact li{display:flex;gap:11px;align-items:flex-start}
.foot-contact svg{width:18px;height:18px;fill:none;stroke:var(--orange);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:none;margin-top:3px}
.foot-brand .social{gap:12px}
.foot-brand .social a{width:36px;height:36px;border-radius:50%;background:var(--orange);color:#111;display:grid;place-items:center}
.foot-brand .social a:hover{background:var(--orange-dark)}
.foot-legal{margin-top:46px;padding-top:20px;border-top:1px solid rgba(255,255,255,.14);display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:.86rem}
.foot-legal ul{display:flex;gap:22px}

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .sec,.band{padding:60px 0}
  .cards{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr;gap:34px}
  .projects{grid-template-columns:1fr}
  .cta-grid{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr 1fr;gap:32px}
  .nav-menu.is-open{display:flex;position:absolute;top:100%;left:0;right:0;flex-direction:column;gap:0;background:#fff;border-bottom:1px solid var(--line);padding:8px 24px 16px;box-shadow:var(--shadow)}
  .nav-menu.is-open a{padding:12px 0;border-bottom:1px solid var(--line)}
  .nav-menu.is-open a[aria-current]{border-bottom-color:var(--line)}
}
@media (max-width:767px){
  .sec,.band{padding:46px 0}
  .sec-head{margin-bottom:32px}
  .cards{grid-template-columns:1fr}
  .why-points{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:32px}
  .steps::before{display:none}
  .cta-bar{padding:22px}
  .cta-bar .btn{width:100%}
  .foot-top{grid-template-columns:1fr}
  .foot-legal{flex-direction:column}
}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}.card{transition:none}}
