:root {
  --bg: #faf7f2;
  --ink: #15202b;
  --ink-soft: #3b4753;
  --line: #e6e1d7;
  --blue: #1e6bf0;
  --blue-deep: #1450c4;
  --accent: #ffb800;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(20,30,45,.04), 0 8px 24px rgba(20,30,45,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

h1, h2, h3 { color: var(--ink); letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

/* ---------- Header ---------- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 30;
}
.logo { display: inline-flex; align-items: center; }
.wordmark { height: 38px; width: auto; display: block; }
.letter {
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 64px;
  fill: var(--ink);
}
.letter.pros { fill: var(--ink-soft); }
.nut {
  fill: var(--blue);
  stroke: var(--blue-deep);
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.phone-top {
  font-weight: 700;
  font-size: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}
.phone-top:hover { color: #fff; background: var(--blue-deep); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 96px) 24px;
  background:
    radial-gradient(1100px 400px at 80% -10%, rgba(30,107,240,.10), transparent 60%),
    radial-gradient(700px 300px at 0% 110%, rgba(255,184,0,.10), transparent 60%),
    var(--bg);
}
.hero-inner { max-width: 980px; margin: 0 auto; }
.lede {
  font-size: clamp(1.05rem, 1vw + .8rem, 1.3rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.02rem;
  border: 2px solid transparent;
  transition: transform .05s ease, background .15s, color .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.trust li { position: relative; padding-left: 22px; }
.trust li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--bg);
}

/* ---------- Sections ---------- */
section { padding: clamp(40px, 6vw, 72px) 24px; }
section > h2 { max-width: 1100px; margin: 0 auto 24px; }
.services, .area, .hours, .contact { max-width: 1100px; margin: 0 auto; }

/* ---------- Services grid ---------- */
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s;
}
.card:hover { transform: translateY(-2px); border-color: #d8d1c1; }
.card p { color: var(--ink-soft); margin: 6px 0 0; font-size: .97rem; }

/* ---------- Area / Hours ---------- */
.area { border-top: 1px solid var(--line); }
.area p { font-size: 1.1rem; }
.area .small { color: var(--ink-soft); font-size: .9rem; }

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--ink-soft); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 18px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s;
}
.contact-card:hover { border-color: var(--blue); transform: translateY(-2px); color: var(--ink); }
.contact-card .label { color: var(--ink-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card .value { font-weight: 800; font-size: 1.35rem; color: var(--blue-deep); word-break: break-all; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 26px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: .9rem;
}

/* ---------- Floating call (mobile) ---------- */
.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(30,107,240,.35);
  z-index: 40;
}
.floating-call:hover { background: var(--blue-deep); color: #fff; }
@media (min-width: 720px) {
  .floating-call { display: none; }
}

/* ---------- Small screens ---------- */
@media (max-width: 480px) {
  .top { padding: 14px 16px; }
  .wordmark { height: 30px; }
  .phone-top { font-size: .9rem; padding: 8px 12px; }
  .btn { width: 100%; text-align: center; }
}
