/* ============================================================
   WALTHAM PRINT — site stylesheet
   Brand: cream, ink navy, mustard, coral, teal
   ============================================================ */

:root {
  --cream: #FAF5EC;
  --paper: #FFFDF8;
  --ink: #1F2A44;
  --ink-soft: #4C566E;
  --mustard: #E8B54D;
  --mustard-soft: #F3D695;
  --coral: #E2766F;
  --coral-soft: #F2B5B0;
  --teal: #5BBFC9;
  --teal-soft: #BFE6EA;
  --line: rgba(31, 42, 68, 0.12);
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.10);
  --radius: 14px;
  --font-head: "Space Grotesk", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Poppins", "Avenir", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

a { color: inherit; }

.wrap { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .bar {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}

.logo img { height: 52px; width: auto; }

.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }

.nav a {
  text-decoration: none; font-weight: 400; font-size: 15.5px;
  color: var(--ink-soft); letter-spacing: 0.01em;
}

.nav a:hover, .nav a.active { color: var(--ink); }

.nav a.active { border-bottom: 2px solid var(--mustard); padding-bottom: 2px; }

.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--font-head); font-weight: 500; font-size: 16px;
  padding: 12px 22px; border-radius: 999px; transition: transform .12s ease, box-shadow .12s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ink { background: var(--ink); color: #fff; }

.btn-call {
  background: var(--coral); color: #fff; font-weight: 700;
  box-shadow: 0 4px 14px rgba(226, 118, 111, 0.45);
}

.btn-call:hover { background: #D5645C; color: #fff; }

.btn-outline { border: 2px solid var(--ink); color: var(--ink); padding: 10px 20px; }

.btn-mustard { background: var(--mustard); color: var(--ink); }

.btn-big { font-size: 18px; padding: 15px 30px; }

.nav .btn { padding: 9px 18px; font-size: 15px; }

/* mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; margin-left: auto; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block; width: 26px; height: 3px; background: var(--ink);
  border-radius: 2px; position: relative; content: ""; transition: all .2s;
}
.nav-toggle-label span::before { position: absolute; top: -8px; }
.nav-toggle-label span::after { position: absolute; top: 8px; }

@media (max-width: 820px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); padding: 8px 0 16px;
  }
  .nav a { padding: 12px 6%; width: 100%; }
  .nav a.active { border-bottom: none; }
  .nav .btn { margin: 10px 6% 0; width: 88%; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav-toggle-label { display: block; }
}

/* ---------- hero ---------- */

.hero { padding: 28px 0 40px; }

.banner-img { width: 100%; height: auto; border-radius: 18px; }

.hero-sub {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px 28px; flex-wrap: wrap; margin-top: 26px;
}

.hero-sub h1 { font-size: clamp(22px, 2.8vw, 31px); max-width: 22em; }

.hero .trust { margin-top: 20px; }

.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 500;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--mustard-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}

.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; color: var(--ink-soft); }

.trust span { display: flex; align-items: center; gap: 7px; }

.trust b { color: var(--ink); font-weight: 600; }

/* ---------- shared section styles ---------- */

section { padding: 64px 0; }

.section-head { max-width: 640px; margin-bottom: 40px; }

.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 10px; }

.section-head p { color: var(--ink-soft); }

.tab {
  display: inline-block; font-family: var(--font-head); font-weight: 500;
  font-size: 20px; padding: 6px 16px; color: var(--ink);
  box-shadow: 5px 7px 0 rgba(31, 42, 68, 0.16);
  margin-bottom: 16px;
}

.tab-mustard { background: var(--mustard); }
.tab-coral { background: var(--coral); }
.tab-teal { background: var(--teal); }

/* ---------- icons ---------- */

.ic {
  width: 30px; height: 30px; flex: 0 0 30px;
  stroke: var(--ink); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.svc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }

.svc-head .tab { margin-bottom: 0; }

.feature .ic { margin-top: 4px; }

/* ---------- service cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } }

.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 4px 14px rgba(31, 42, 68, 0.05);
  transition: transform .15s ease, box-shadow .15s ease;
}

.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.svc .tab { margin-bottom: 4px; font-size: 18px; align-self: flex-start; }

.svc p { color: var(--ink-soft); font-size: 15.5px; flex-grow: 1; }

.svc a.more {
  font-family: var(--font-head); font-weight: 500; text-decoration: none;
  color: var(--ink); font-size: 15.5px;
}

.svc a.more:hover { text-decoration: underline; }

/* ---------- price cards ---------- */

.paper-note { text-align: center; color: var(--ink-soft); font-size: 14.5px; max-width: 46em; margin: 0 auto 36px; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
}

.price-card table { width: 100%; border-collapse: collapse; font-size: 15.5px; }

.price-card th {
  text-align: left; font-family: var(--font-head); font-weight: 500;
  padding: 6px 8px 10px 0; font-size: 15px;
}

.price-card td { padding: 5px 8px 5px 0; border-top: 1px dashed var(--line); color: var(--ink-soft); }

.price-card td.amount { color: var(--ink); font-weight: 400; }

.price-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }

.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-weight: 700; font-size: 30px;
  color: var(--mustard); display: block; margin-bottom: 8px;
}

.step h3 { font-size: 19px; margin-bottom: 6px; }

.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- banded CTA / quote ---------- */

.band { background: var(--mustard); }

.band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

@media (max-width: 880px) { .band .wrap { grid-template-columns: 1fr; } }

.band h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }

.band p { max-width: 28em; }

.band .phone-big {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(24px, 3vw, 32px); color: var(--ink); text-decoration: none;
  margin-top: 18px; border-bottom: 3px solid var(--ink);
}

/* form */
.quote-form { background: var(--paper); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }

.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 560px) { .quote-form .row { grid-template-columns: 1fr; } }

.quote-form label { font-size: 13.5px; font-weight: 400; color: var(--ink-soft); display: block; margin: 12px 0 4px; }

.quote-form input, .quote-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--ink);
}

.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--teal); border-color: transparent; }

.quote-form button {
  margin-top: 18px; width: 100%; border: none; cursor: pointer;
  background: var(--ink); color: #fff; font-family: var(--font-head);
  font-weight: 500; font-size: 17px; padding: 14px; border-radius: 999px;
}

.quote-form button:hover { opacity: .92; }

.quote-form .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; text-align: center; }

/* ---------- service page hero ---------- */

.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--line); }

.page-hero .crumb { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }

.page-hero .crumb a { color: var(--ink-soft); }

.page-hero h1 { font-size: clamp(30px, 4vw, 44px); max-width: 18em; margin-bottom: 14px; }

.page-hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 36em; margin-bottom: 24px; }

.accent-mustard .page-hero h1 .underline { background-image: linear-gradient(transparent 68%, var(--mustard) 68%); }
.accent-coral .page-hero h1 .underline { background-image: linear-gradient(transparent 68%, var(--coral-soft) 68%); }
.accent-teal .page-hero h1 .underline { background-image: linear-gradient(transparent 68%, var(--teal-soft) 68%); }

/* ---------- feature list ---------- */

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 36px; }

@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }

.feature { display: flex; gap: 14px; align-items: flex-start; }

.feature .dot {
  flex: 0 0 12px; width: 12px; height: 12px; border-radius: 50%; margin-top: 8px;
}

.dot-mustard { background: var(--mustard); }
.dot-coral { background: var(--coral); }
.dot-teal { background: var(--teal); }

.feature h3 { font-size: 17.5px; margin-bottom: 3px; }

.feature p { color: var(--ink-soft); font-size: 15px; }

/* ---------- FAQs ---------- */

.faqs { max-width: 760px; }

.faqs details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 20px; margin-bottom: 12px;
}

.faqs summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 500; font-size: 16.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}

.faqs summary::after { content: "+"; font-size: 22px; color: var(--ink-soft); }

.faqs details[open] summary::after { content: "–"; }

.faqs details p { color: var(--ink-soft); padding-top: 10px; font-size: 15.5px; }

/* ---------- projects ---------- */

.project { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); }

.project:first-of-type { border-top: none; }

.project img { border-radius: var(--radius); box-shadow: var(--shadow); }

.project .num { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink-soft); }

.project h2 { font-size: 26px; margin: 6px 0 10px; }

.project p { color: var(--ink-soft); font-size: 15.5px; }

.project:nth-child(even) .media { order: 2; }

@media (max-width: 800px) {
  .project { grid-template-columns: 1fr; gap: 20px; }
  .project:nth-child(even) .media { order: 0; }
}

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: #EAE6DC; padding: 56px 0 30px; margin-top: 30px; }

.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }

@media (max-width: 820px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }

.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }

.site-footer a { color: #EAE6DC; text-decoration: none; }

.site-footer a:hover { color: var(--mustard); }

.site-footer p, .site-footer li { font-size: 14.5px; line-height: 1.9; }

.site-footer ul { list-style: none; }

.site-footer .brand-line { font-family: var(--font-head); font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 10px; }

.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: rgba(234,230,220,.75);
}

/* ---------- announcement bar ---------- */

.announce {
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: 14px;
  text-align: center; padding: 9px 14px; letter-spacing: .02em;
}

.announce b { color: var(--mustard); font-weight: 700; }

.announce a { color: #fff; text-decoration: none; font-weight: 700; white-space: nowrap; }

.announce a:hover { color: var(--mustard); }

/* ---------- category menu ---------- */

.cat-menu { background: var(--paper); border-bottom: 1px solid var(--line); }

.cat-menu .wrap {
  display: flex; gap: 4px; justify-content: space-between;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}

.cat-menu .wrap::-webkit-scrollbar { display: none; }

.cat-menu a {
  white-space: nowrap; text-decoration: none; font-family: var(--font-head);
  font-weight: 500; font-size: 14px; color: var(--ink-soft);
  padding: 12px 9px; border-bottom: 3px solid transparent;
}

.cat-menu a:hover { color: var(--ink); border-bottom-color: var(--mustard); }

/* ---------- product catalogue grid ---------- */

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

@media (max-width: 1020px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 430px) { .prod-grid { grid-template-columns: 1fr; } }

.prod {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  scroll-margin-top: 110px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.prod .ph { position: relative; aspect-ratio: 4 / 3; background: var(--cream); }

.prod .ph img { width: 100%; height: 100%; object-fit: cover; }

.badge-day {
  position: absolute; top: 10px; left: 10px;
  background: var(--mustard); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 4px 11px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(31, 42, 68, 0.18);
}

.prod .body { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 5px; flex-grow: 1; }

.prod h3 { font-size: 16.5px; }

.prod h3 a { text-decoration: none; }

.prod h3 a:hover { text-decoration: underline; }

.prod .from { font-size: 14px; color: var(--ink-soft); }

.prod .from b { color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 16.5px; }

/* ---------- misc ---------- */

.center { text-align: center; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.pill {
  font-size: 13.5px; background: var(--paper); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; color: var(--ink-soft);
}
