/* TM Sandblasting — shared site styles (nav, footer, base, form fields). */
html, body { margin: 0; padding: 0; background: #FAFAF8; }
* { box-sizing: border-box; }
::selection { background: #D81E1E; color: #fff; }
body { font-family: 'Hanken Grotesk', sans-serif; color: #16181A; background: #FAFAF8; overflow-x: hidden; }
img { max-width: 100%; }

/* ── Header / Nav ─────────────────────────────────────────────── */
.tm-header { position: fixed; top: 0; left: 0; right: 0; z-index: 2000; background: rgba(250,250,248,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid #E4E3DF; }
.tm-header-inner { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tm-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.tm-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block; }
.tm-brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.05em; color: #16181A; line-height: 1; }
.tm-navlinks { display: flex; align-items: center; gap: 34px; }
.tm-link { text-decoration: none; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0.01em; color: #5A5F63; cursor: pointer; transition: color 0.18s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.tm-link:hover { color: #16181A; }
.tm-link--active { color: #16181A; font-weight: 600; border-bottom: 2px solid #D81E1E; }
.tm-services { position: relative; }
.tm-services-trigger { display: inline-flex; align-items: center; }
.tm-caret { margin-left: 6px; font-size: 10px; opacity: 0.7; }
.tm-services-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 262px; background: #fff; border: 1px solid #E4E3DF; border-radius: 4px; box-shadow: 0 18px 50px -18px rgba(20,24,28,0.28); padding: 8px; opacity: 0; visibility: hidden; transition: opacity 0.16s, transform 0.16s; }
.tm-services:hover .tm-services-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.tm-svc-item { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 3px; text-decoration: none; }
.tm-svc-item:hover { background: #F5F4F1; }
.tm-svc-t { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 14.5px; color: #16181A; }
.tm-svc-d { font-family: 'Hanken Grotesk', sans-serif; font-size: 12.5px; color: #8A8F94; }
.tm-header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tm-cta { display: inline-flex; align-items: center; font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.01em; color: #fff; background: #D81E1E; padding: 11px 20px; border-radius: 3px; text-decoration: none; transition: background 0.18s; }
.tm-cta:hover { background: #B01818; }
.tm-burger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; background: transparent; border: 1px solid #E4E3DF; border-radius: 3px; cursor: pointer; color: #16181A; font-size: 20px; line-height: 1; }
.tm-mobile { display: none; border-top: 1px solid #E4E3DF; background: #FAFAF8; padding: 14px clamp(20px,4vw,48px) 24px; flex-direction: column; }
.tm-mobile.tm-mobile--open { display: flex; }
.tm-mlink { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 17px; color: #16181A; text-decoration: none; padding: 13px 0; border-bottom: 1px solid #ECEBE7; }
.tm-cta--mobile { margin-top: 18px; justify-content: center; text-align: center; padding: 14px; font-size: 15px; }
@media (max-width: 1000px) {
  .tm-navlinks { display: none; }
  .tm-burger { display: flex; }
}
@media (max-width: 560px) {
  /* Header CTA would overflow next to the logo + burger; the mobile menu
     carries its own "Request a Quote", so drop the header one here. */
  .tm-header-actions .tm-cta { display: none; }
  .tm-brand-name { font-size: 15px; }
}

/* ── Footer ───────────────────────────────────────────────────── */
.tm-footer { background: #16181A; color: #C9CCCF; font-family: 'Hanken Grotesk', sans-serif; }
.tm-footer-inner { max-width: 1320px; margin: 0 auto; padding: clamp(60px,8vw,96px) clamp(20px,4vw,48px) 0; }
.tm-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 48px 40px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tm-footer-brand { min-width: 240px; max-width: 340px; }
.tm-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.tm-footer-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #fff; }
.tm-footer-logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.05em; color: #fff; }
.tm-footer-blurb { font-size: 14.5px; line-height: 1.7; color: #9DA1A5; margin: 0 0 24px; }
.tm-socials { display: flex; gap: 10px; }
.tm-social { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.16); border-radius: 3px; color: #C9CCCF; transition: all 0.18s; }
.tm-social span { width: 18px; height: 18px; display: block; }
.tm-social:hover { color: #fff; border-color: #D81E1E; background: #D81E1E; }
.tm-footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 22px; }
.tm-footer-links { display: flex; flex-direction: column; gap: 13px; }
.tm-flink { font-size: 14.5px; color: #9DA1A5; text-decoration: none; transition: color 0.18s; }
.tm-flink:hover { color: #fff; }
.tm-footer-contact { min-width: 220px; }
.tm-contact-row { margin-bottom: 15px; font-size: 14.5px; line-height: 1.55; }
.tm-contact-k { display: block; color: #6E7276; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.tm-contact-row a { color: #C9CCCF; text-decoration: none; }
.tm-contact-row a:hover { color: #fff; }
.tm-contact-v { color: #9DA1A5; }
.tm-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0 30px; }
.tm-footer-bottom > span { font-size: 13px; color: #6E7276; }
.tm-footer-legal { display: flex; gap: 26px; }
.tm-footer-legal a { font-size: 13px; color: #6E7276; text-decoration: none; transition: color 0.18s; }
.tm-footer-legal a:hover { color: #fff; }

/* ── Contact form fields ──────────────────────────────────────── */
.tm-field::placeholder { color: #A8ACB0; }
.tm-field:focus { outline: none; border-color: #16181A !important; }
.tm-imgph { overflow: hidden; }

/* ── Legal pages (Privacy / Terms) ────────────────────────────── */
.tm-legal { margin-top: 28px; }
.tm-legal h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(19px, 2.2vw, 23px); letter-spacing: -0.01em; color: #16181A; margin: 38px 0 12px; }
.tm-legal p { font-size: 16px; line-height: 1.72; color: #5A5F63; margin: 0 0 16px; }
.tm-legal ul { margin: 0 0 16px; padding-left: 22px; }
.tm-legal li { font-size: 16px; line-height: 1.7; color: #5A5F63; margin-bottom: 8px; }
.tm-legal a { color: #16181A; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: #D81E1E; }
.tm-legal a:hover { color: #D81E1E; }
