:root {
  /* same palette as ops-web, so the public site and the internal app read as one product */
  --bg: #f3f4f6;
  --panel: #ffffff;
  --panel2: #f9fafb;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --gold: #a38745;
  --gold-bright: #b8954a;
  --gold-wash: #f2e9d3;
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: var(--gold-bright); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 640px; }

/* ---- header ---- */
.top {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1.5rem;
}
.brand img { height: 72px; display: block; }
.topnav { display: flex; align-items: center; gap: 1.5rem; }
.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.topnav a:hover { color: var(--text); }
.topnav .btn { color: var(--text); }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  background: var(--gold-bright);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: .8rem 1.4rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover { background: var(--gold); text-decoration: none; }
.btn.large { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn.outline:hover { background: rgba(255,255,255,.12); }

/* ---- hero (the one place a real photo carries the visual weight) ---- */
.hero {
  position: relative;
  background: var(--text);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg svg, .hero-bg img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(17,24,39,.85) 0%,
    rgba(17,24,39,.68) 32%,
    rgba(17,24,39,.25) 60%,
    rgba(17,24,39,.05) 100%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4.5rem 1.5rem 2rem;
  text-align: center;
  color: #fff;
}
.hero-copy .kicker {
  display: inline-block;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.hero-copy p {
  color: #e5e7eb;
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---- sections ---- */
section.section { padding: 3.75rem 1.5rem; }
.section-h { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.section-h .kicker {
  display: block;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-h h2 { font-size: clamp(2.5rem, 4.8vw, 3.4rem); margin: 0 0 .6rem; letter-spacing: -0.01em; color: var(--text); }
.section-h p { color: var(--muted); margin: 0; }
.section.alt { background: var(--panel2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.grid3 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); max-width: 1080px; margin: 0 auto; }
.value-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}
.value-card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; color: var(--text); }
.value-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); max-width: 1080px; margin: 0 auto; }
.step { position: relative; padding-left: 3.2rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2.3rem; height: 2.3rem;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.step h3 { margin: .1rem 0 .4rem; font-size: 1.02rem; color: var(--text); }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.testimonial-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 3rem 1.5rem;
}
.testimonial-strip p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-bright); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin: .75rem 0 0; font-size: .95rem; }

.cta-band {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2.75rem 2rem;
  text-align: center;
  margin: 0 0 3.5rem;
}
.cta-band h2 { margin: 0 0 .5rem; font-size: 2.3rem; color: var(--text); }
.cta-band p { color: var(--muted); margin: 0 0 1.5rem; }
.cta-band .btn { color: #fff; }

footer.foot {
  background: var(--panel2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 2.5rem 1.5rem 2rem;
}
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; }
.foot-grid img { height: 42px; margin-bottom: .6rem; }
.foot-grid .muted-list a { color: var(--muted); display: block; text-decoration: none; font-size: .92rem; margin-bottom: .4rem; }
.foot-grid .muted-list a:hover { color: var(--text); }
.foot-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ---- request-offer form page ---- */
.form-page { padding: 3rem 1.5rem 4rem; }
.form-page h1 { font-size: 1.9rem; margin: 0 0 .4rem; color: var(--text); }
.form-page > .wrap > p.lead { color: var(--muted); margin-bottom: 1.75rem; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.card label { display: block; margin: .85rem 0; font-size: .92rem; font-weight: 500; color: var(--text); }
.card input, .card textarea, .card select {
  width: 100%;
  margin-top: .35rem;
  padding: .65rem .75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: var(--panel2);
  color: var(--text);
}
.card input:focus, .card textarea:focus, .card select:focus {
  outline: 2px solid var(--gold-bright);
  outline-offset: 1px;
}
.row { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .88rem; color: var(--muted); }
.check input { width: auto; margin: .2rem 0 0; }
.status { min-height: 1.25rem; color: var(--muted); font-size: .9rem; }
.form-page .btn { width: 100%; margin-top: .5rem; color: #fff; }

@media (max-width: 720px) {
  .topnav a:not(.btn) { display: none; }
  .cta-band { margin: 0 0 2.5rem; padding: 2rem 1.25rem; }
}
