/* Mont Milan — shared styles for static service/blog pages.
   Plain CSS, no build step. Brand palette matches the home splash:
   ink #1C1C1E, cream #faf9f5, blue #1B3F6B, grey #8A8A8E. */

:root {
  --ink: #1C1C1E;
  --cream: #faf9f5;
  --blue: #1B3F6B;
  --blue-dark: #142f50;
  --grey: #8A8A8E;
  --line: #e5e3dc;
  --maxw: 880px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

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

/* Header */
.site-header {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: 0.2px; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 7px; background: var(--ink);
  border: 1px solid #333; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 17px;
}
.brand .mark span { display: block; }
.header-cta { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.header-cta a { color: #fff; }
.btn {
  display: inline-block; background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 8px; font-weight: 700; font-size: 15px; border: 0; cursor: pointer;
}
.btn:hover { background: var(--blue-dark); text-decoration: none; }
.btn-lg { padding: 14px 26px; font-size: 17px; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--grey); padding: 14px 0 0; }
.breadcrumb a { color: var(--grey); }

/* Hero */
.page-hero { padding: 28px 0 8px; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; font-weight: 700; color: var(--blue); }
h1 { font-size: 2.1rem; line-height: 1.15; margin: 10px 0 14px; font-weight: 800; }
.lead { font-size: 1.18rem; color: #3a3a3c; }

/* Content */
main section { padding: 26px 0; border-top: 1px solid var(--line); }
main section:first-of-type { border-top: 0; }
h2 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 800; }
h3 { font-size: 1.15rem; margin: 18px 0 6px; font-weight: 700; }
p { margin-bottom: 14px; }
ul.ticks { list-style: none; margin: 8px 0 14px; }
ul.ticks li { padding-left: 26px; position: relative; margin-bottom: 8px; }
ul.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

/* Trust strip */
.trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0; }
.trust .chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 14px; font-weight: 600; }

/* FAQ */
.faq h3 { font-size: 1.08rem; }
.faq p { color: #3a3a3c; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; border-radius: 14px; padding: 30px; margin: 30px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfcfd2; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.cta-band .tel { color: #fff; font-weight: 800; font-size: 1.15rem; }

/* Author / E-E-A-T */
.author { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: #3a3a3c; margin: 24px 0; }
.author strong { color: var(--ink); }

/* Related */
.related ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.related a { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-weight: 700; }

/* Footer */
.site-footer { background: var(--ink); color: #cfcfd2; margin-top: 40px; padding: 36px 0; font-size: 14px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 7px; }
.site-footer .legal { margin-top: 24px; padding-top: 16px; border-top: 1px solid #333; color: var(--grey); }

/* Enquiry form */
.enquiry-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin-top: 10px; }
.enquiry-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.enquiry-form input, .enquiry-form textarea {
  width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid #cfcdc4;
  border-radius: 8px; font: inherit; font-weight: 400; background: #fff; color: var(--ink);
}
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.enquiry-form textarea { resize: vertical; }
.enquiry-form button { margin-top: 4px; }
.enquiry-form button[disabled] { opacity: 0.6; cursor: default; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; }
.form-status.ok { color: #1b6b3f; }
.form-status.err { color: #b3261e; }

@media (max-width: 720px) {
  h1 { font-size: 1.7rem; }
  .footer-grid, .related ul, .enquiry-form .row { grid-template-columns: 1fr; }
  .header-cta .phone { display: none; }
}
