:root {
  --orange: #ff7900;
  --orange-dark: #e86c00;
  --coral: #f05a3c;
  --charcoal: #303030;
  --grey: #666666;
  --light: #f7f5f2;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 23, 23, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Avenir, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(48, 48, 48, 0.08);
}

.brand img { width: 265px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 0.96rem; font-weight: 600; }
.nav a { color: var(--charcoal); opacity: 0.86; }
.nav a:hover { opacity: 1; color: var(--orange-dark); }
.nav-cta { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,121,0,.35); }

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 44%, rgba(255,255,255,.26) 100%), url("assets/hero-bg.png");
  background-size: cover;
  background-position: center right;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,121,0,.18), rgba(255,121,0,0) 66%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 96px);
  padding: 96px 0;
}
.eyebrow {
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .78rem;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .96;
  max-width: 900px;
  margin-bottom: 28px;
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
h3 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 12px; }
.hero-lead { font-size: clamp(1.15rem, 2vw, 1.45rem); max-width: 710px; color: #4b4b4b; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--orange), var(--coral)); color: white; box-shadow: 0 16px 36px rgba(255, 121, 0, .26); }
.button-secondary { background: rgba(255,255,255,.8); color: var(--charcoal); border: 1px solid rgba(48,48,48,.12); }
.full { width: 100%; }

.section { padding: clamp(72px, 9vw, 130px) clamp(24px, 5vw, 72px); }
.container { width: min(1180px, 100%); margin: 0 auto; }
.two-column { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: start; }
.text-block { font-size: 1.14rem; color: #555; }
.text-block p:last-child { margin-bottom: 0; }
.muted { background: var(--light); }
.cards { display: grid; gap: 24px; margin-top: 44px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 240px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(48,48,48,.06);
}
.number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(255,121,0,.11);
  font-weight: 900;
  margin-bottom: 30px;
}
.card p, .service-item p { color: #5a5a5a; margin-bottom: 0; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 42px; }
.service-item {
  border: 1px solid rgba(48,48,48,.08);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #fff8f1);
}
.accent-band {
  color: var(--white);
  background: radial-gradient(circle at 88% 0%, rgba(255,255,255,.18), transparent 30%), linear-gradient(135deg, #ff7900 0%, #f05a3c 100%);
}
.accent-band h2 { color: white; }
.light { color: rgba(255,255,255,.78); }
.light-block { color: rgba(255,255,255,.92); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.92); }
.checklist li::after { content: ""; position: absolute; left: 6px; top: .62em; width: 7px; height: 4px; border-left: 2px solid var(--orange-dark); border-bottom: 2px solid var(--orange-dark); transform: rotate(-45deg); }
.quote-section {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(48,48,48,.78), rgba(48,48,48,.25)), url("assets/closing-bg.png");
  background-size: cover;
  background-position: center;
}
.quote-content { position: relative; z-index: 2; color: white; }
blockquote { max-width: 920px; font-size: clamp(2rem, 4vw, 4.6rem); line-height: 1.04; letter-spacing: -0.05em; margin: 0; font-weight: 850; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: clamp(36px, 7vw, 90px); align-items: center; }
.contact p { font-size: 1.12rem; color: #555; max-width: 760px; }
.contact-card {
  background: white;
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(48,48,48,.08);
}
.contact-card img { width: 100%; margin-bottom: 10px; }
.tagline { color: var(--grey); font-style: italic; margin-bottom: 24px !important; }
dl { margin: 0 0 26px; }
dl div { padding: 16px 0; border-top: 1px solid rgba(48,48,48,.08); }
dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-dark); font-weight: 850; }
dd { margin: 3px 0 0; color: #404040; }
.footer { padding: 28px clamp(24px, 5vw, 72px); background: #282828; color: rgba(255,255,255,.78); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer a { color: white; }

@media (max-width: 920px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; gap: 14px; flex-wrap: wrap; }
  .brand img { width: 225px; }
  .two-column, .cards.three, .service-list, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; background-position: center; }
  .hero-content { margin: 0 auto; padding: 84px 0; }
}

@media (max-width: 560px) {
  .nav a:not(.nav-cta) { display: none; }
  h1 { font-size: 3rem; }
  .section { padding-left: 20px; padding-right: 20px; }
  .card, .service-item, .contact-card { border-radius: 22px; padding: 24px; }
}
