/* ============================================
   Slusky Construction — Stylesheet
   Palette: charcoal slate + roofing orange + warm off-white
   ============================================ */

:root {
  --orange: #F29E18;
  --orange-dark: #D6860A;
  --slate: #1E2124;
  --slate-soft: #2B2F33;
  --steel: #4A5A66;
  --paper: #FAF7F2;
  --paper-dim: #F0EBE1;
  --ink: #1E2124;
  --ink-soft: #52585D;
  --line: #DCD4C4;
  --white: #FFFFFF;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --max-w: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--slate);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.2rem; letter-spacing: 0.03em; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--slate);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--slate); }
.btn-outline-dark {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.btn-outline-dark:hover { background: var(--slate); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--slate);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--orange); }
.logo img { height: 68px; width: auto; display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  opacity: 0.88;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--orange); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slate-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 3px solid var(--orange);
  }
  .nav.open { display: flex; }
  .header-phone { order: -1; margin-bottom: 4px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-soft) 60%, var(--steel) 140%);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 720px;
}
.hero .eyebrow {
  color: var(--orange);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: block;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p.lede {
  color: #D9DCDE;
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--slate);
  padding: 0 0 34px;
  color: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-grid div {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #C9CDD0;
  border-left: 2px solid var(--orange);
  padding-left: 14px;
  text-align: left;
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-dim { background: var(--paper-dim); }
.section-dark { background: var(--slate); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #C9CDD0; }

.section-head { max-width: 640px; margin: 0 0 44px; position: relative; padding-top: 6px; }
.section-head::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 16px;
  border-radius: 2px;
}
.section-head .eyebrow {
  display: block;
  color: var(--orange-dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.section-dark .section-head .eyebrow { color: var(--orange); }

/* ---------- Card grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }
.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--orange-dark);
}

/* ---------- Why-choose list ---------- */
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
}
@media (max-width: 760px) {
  .why-list { grid-template-columns: 1fr; }
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--slate);
}
.section-dark .why-item h4 { color: var(--white); }
.why-item p { margin: 0; font-size: 0.95rem; }

/* ---------- Photo placeholders ---------- */
.photo-placeholder {
  background: repeating-linear-gradient(135deg, var(--paper-dim), var(--paper-dim) 12px, #E4DCC9 12px, #E4DCC9 24px);
  border: 2px dashed var(--steel);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--steel);
  font-size: 0.85rem;
}
.photo-placeholder strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ---------- Photo grid (recent work) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-grid img {
  border-radius: var(--radius);
  height: 220px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 760px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 240px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--slate);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--slate); }
.cta-band p { color: var(--slate); font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Process steps (insurance claims) ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 24px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  background: var(--orange);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .step-num::before { content: counter(step); }
.step h4 { margin: 4px 0 6px; font-size: 1.05rem; }
.step p { margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.testimonial p.quote {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial .author {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--steel);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--slate);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; }

.contact-info-box {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-box h3 { color: var(--white); }
.contact-info-box a { color: var(--orange); text-decoration: none; }
.contact-info-box .line { margin-bottom: 16px; font-size: 0.98rem; color: #D9DCDE; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate);
  color: #B7BBBE;
  padding: 50px 0 30px;
  border-top: 4px solid var(--orange);
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-grid a {
  color: #B7BBBE;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--slate-soft);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
}

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: var(--slate);
  color: var(--white);
  padding: 60px 0;
  border-bottom: 3px solid var(--orange);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #C9CDD0; max-width: 600px; margin: 0; }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 40px; }
.center { text-align: center; }
