/* ============================================================
   IPS Mechanical - shared stylesheet (design system + chrome)
   Owned by the orchestrator. Page subagents may ONLY append
   page-scoped rules below, each under a banner comment reading
   page: <slug>. Do not edit the token/header/footer sections.
   ============================================================ */

:root {
  --charcoal-deep: #0d0d0d;
  --charcoal-light: #1f1f1f;
  --charcoal-mid: #151515;
  --ips-red: #d01f2b;
  --ips-red-dark: #b3161f;
  --ips-light: #f4f2ee;
  --ips-band: #e8e7e7;
  --font-heading: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --maxw: 80rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--charcoal-deep);
  color: var(--ips-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* --- typography helpers --- */
.font-heading { font-family: var(--font-heading); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ips-red);
}
.accent { color: var(--ips-red); }
.muted { color: rgba(244,242,238,0.6); }
.muted-2 { color: rgba(244,242,238,0.4); }

.display {
  font-family: var(--font-heading);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
h1.display { font-size: clamp(3rem, 8vw, 6.5rem); }
h2.display { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h3.display { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--ips-red); color: var(--ips-light); }
.btn-primary:hover { background: var(--ips-light); color: var(--charcoal-deep); }
.btn-outline { background: transparent; color: var(--ips-light); border-color: rgba(244,242,238,0.3); }
.btn-outline:hover { border-color: var(--ips-light); background: rgba(244,242,238,0.06); }

/* ============================================================
   SITE HEADER / NAV (shared)
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,242,238,0.1);
}
.site-nav .container {
  height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.nav-brand img {
  height: 4.7rem; /* 35% larger than the previous 3.5rem */
  width: auto;
  max-height: 100%;
  flex-shrink: 0;
}
.nav-brand .brand-word {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--ips-red);
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ips-light);
  transition: color 0.2s ease;
}
.nav-links a.nav-link:hover,
.nav-links a.nav-link[aria-current="page"] { color: var(--ips-red); }
.nav-sep { height: 1rem; width: 1px; background: rgba(244,242,238,0.2); }
.nav-cta {
  background: var(--ips-red);
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ips-light);
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--ips-light); color: var(--charcoal-deep); }
.nav-cta-mobile { display: none; }
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta-mobile {
    display: inline-block;
    background: var(--ips-red);
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ips-light);
  }
}
/* narrow desktop: tighten the link row so the larger mark never crowds it */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links { gap: 0.9rem; }
  .nav-brand .brand-word { font-size: 1.45rem; }
}
/* offset for fixed nav */
.page-body { padding-top: 5.75rem; }
/* keep the enlarged mark from crowding the mobile CTA on narrow phones */
@media (max-width: 640px) {
  .site-nav .container { height: 5.25rem; }
  .nav-brand { gap: 0.5rem; }
  .nav-brand img { height: 4.2rem; }
  .nav-brand .brand-word { font-size: 1.35rem; }
  .page-body { padding-top: 5.25rem; }
}

/* ============================================================
   SITE FOOTER (shared)
   ============================================================ */
.site-footer {
  background: var(--charcoal-deep);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(244,242,238,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-brand img { height: 3.25rem; width: auto; }
.footer-brand .brand-word { font-family: var(--font-heading); font-size: 1.3rem; color: var(--ips-red); }
.footer-desc { color: rgba(244,242,238,0.4); max-width: 24rem; line-height: 1.7; margin-bottom: 1.5rem; }
/* light chip so the accreditation seal reads against the dark footer */
.footer-bbb {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--ips-light);
  border: 1px solid rgba(13,13,13,0.12);
  border-radius: 0.5rem;
  padding: 0.7rem 1.05rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.footer-bbb:hover { background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.footer-bbb .bbb-mark { font-family: var(--font-heading); font-size: 1.5rem; color: var(--ips-red); line-height: 1; }
.footer-bbb .bbb-text {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--charcoal-deep); line-height: 1.4;
}
.footer-col h5 {
  color: var(--ips-red); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.2em; margin-bottom: 1.5rem; text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.75rem; font-size: 0.9rem; color: rgba(244,242,238,0.6); }
.footer-col a:hover { color: var(--ips-light); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 2rem 1.5rem;
  margin-top: 4rem; border-top: 1px solid rgba(244,242,238,0.06);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.625rem; color: rgba(244,242,238,0.3);
  letter-spacing: 0.15em; text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- honeypot (shared form helper) --- */
.hp-field { position: absolute; left: -9999px; overflow: hidden; height: 0; width: 0; }

/* ============================================================
   PAGE-SCOPED RULES BELOW (append-only, per page banner)
   ============================================================ */

/* page: home */
.pg-home .container-wide { max-width: 90rem; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.pg-home .hero { padding: 2.5rem 0 0; overflow: hidden; }
.pg-home .hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: end; padding-bottom: 3rem; }
.pg-home .hero-copy { animation: .8s cubic-bezier(.16,1,.3,1) both fade-up; }
@keyframes fade-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@media (prefers-reduced-motion: reduce) { .pg-home .hero-copy { animation: none; } }
.pg-home .hero-kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.pg-home .hero-kicker-line { height: 1px; width: 3rem; background: var(--ips-red); display: inline-block; }
.pg-home .hero-heading { font-size: clamp(3rem, 12vw, 8rem); margin-bottom: 2rem; }
.pg-home .hero-lead { font-size: 1.1rem; max-width: 34rem; line-height: 1.7; margin: 0 0 2.5rem; }
.pg-home .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.pg-home .hero-media { position: relative; width: 100%; height: 60vh; min-height: 22rem; }
.pg-home .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pg-home .hero-tag { position: absolute; top: 1.25rem; left: 1.25rem; background: rgba(13,13,13,0.8); backdrop-filter: blur(4px); padding: 0.5rem 1rem; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.pg-home .hero-badge { position: absolute; bottom: 0; right: 0; background: var(--ips-red); padding: 1.25rem 1.5rem; text-align: left; }
.pg-home .hero-badge-text { font-family: var(--font-heading); font-size: 1.9rem; line-height: 0.95; }
.pg-home .hero-badge-sub { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 0.5rem; opacity: 0.9; }
.pg-home .stat-row { border-top: 1px solid rgba(244,242,238,0.1); }
.pg-home .stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.pg-home .stat { padding: 2rem 1rem; border-left: 1px solid rgba(244,242,238,0.1); }
.pg-home .stat:first-child { border-left: none; padding-left: 0; }
.pg-home .stat-num { font-family: var(--font-heading); font-size: 2.75rem; line-height: 1; }
.pg-home .stat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(244,242,238,0.5); margin-top: 0.75rem; }
.pg-home .cap-head { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.pg-home .cap-head h2 { font-size: clamp(2.4rem, 8vw, 5.5rem); }
.pg-home .cap-link { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid var(--ips-red); padding-bottom: 0.25rem; align-self: flex-start; }
.pg-home .cap-link:hover { color: var(--ips-red); }
.pg-home .cap-list { border-top: 1px solid rgba(244,242,238,0.1); }
.pg-home .cap-row { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem; padding: 2rem 0.5rem; border-bottom: 1px solid rgba(244,242,238,0.1); align-items: center; transition: background 0.2s ease; }
.pg-home .cap-row:hover { background: rgba(244,242,238,0.03); }
.pg-home .cap-num { font-family: var(--font-heading); font-size: 1.6rem; grid-row: 1; }
.pg-home .cap-title { font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 0.02em; text-transform: uppercase; grid-column: 2; grid-row: 1; }
.pg-home .cap-desc { grid-column: 1 / -1; line-height: 1.6; }
.pg-home .cap-arrow { display: none; }
.pg-home .ice-band { display: grid; grid-template-columns: 1fr; border-top: 1px solid rgba(244,242,238,0.1); }
.pg-home .ice-band-grid { display: grid; grid-template-columns: 1fr; }
.pg-home .ice-band-media { position: relative; min-height: 22rem; }
.pg-home .ice-band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pg-home .ice-band-content { background: var(--ips-red); color: var(--ips-light); padding: 3rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.pg-home .ice-band-eyebrow { color: rgba(244,242,238,0.85) !important; }
.pg-home .ice-band-content h2 { font-size: clamp(2.2rem, 8vw, 4rem); margin-bottom: 1.5rem; color: var(--ips-light); }
.pg-home .ice-band-lead { font-size: 1.05rem; line-height: 1.7; max-width: 32rem; margin: 0 0 2rem; color: rgba(244,242,238,0.9); }
.pg-home .brand-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem; max-width: 24rem; margin-bottom: 2.5rem; }
.pg-home .brand-item { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ips-light); }
.pg-home .brand-item::before { content: "+ "; }
.pg-home .ice-band-btn { align-self: flex-start; background: var(--charcoal-deep); color: var(--ips-light); }
.pg-home .ice-band-btn:hover { background: var(--ips-light); color: var(--ips-red); }
.pg-home .signature { background: var(--charcoal-light); }
.pg-home .signature-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.pg-home .signature-copy h2 { font-size: clamp(2.2rem, 8vw, 4.5rem); margin: 0 0 1.5rem; }
.pg-home .signature-italic { font-family: var(--font-body); font-style: italic; font-weight: 300; }
.pg-home .signature-lead { font-size: 1.05rem; max-width: 30rem; margin-bottom: 2rem; }
.pg-home .signature-img { width: 100%; height: auto; box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.pg-home .why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.pg-home .why-media { position: relative; }
.pg-home .why-img { width: 100%; height: 24rem; object-fit: cover; }
.pg-home .why-badge { position: absolute; bottom: -1.25rem; right: -1.25rem; background: var(--ips-red); padding: 1.25rem 1.5rem; text-align: left; }
.pg-home .why-badge-num { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; color: var(--ips-light); }
.pg-home .why-badge-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; color: var(--ips-light); }
.pg-home .why-heading { font-size: clamp(2.2rem, 7vw, 4rem); margin-bottom: 2.5rem; }
.pg-home .why-points { display: flex; flex-direction: column; gap: 2rem; }
.pg-home .why-point { display: flex; gap: 1.5rem; border-top: 1px solid rgba(244,242,238,0.1); padding-top: 1.5rem; }
.pg-home .why-point-num { font-family: var(--font-heading); font-size: 1.5rem; flex-shrink: 0; width: 2.5rem; }
.pg-home .why-point-title { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 0.5rem; }
.pg-home .testimonial-band { background: var(--ips-band); color: var(--charcoal-deep); }
.pg-home .testimonial-inner { max-width: 56rem; text-align: center; }
.pg-home .quote-mark { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1; margin-bottom: 1rem; }
.pg-home .testimonial-quote { font-size: clamp(1.6rem, 5vw, 2.75rem); line-height: 1.15; margin: 0 0 2rem; color: var(--charcoal-deep); }
.pg-home .testimonial-attr { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(13,13,13,0.6); margin-bottom: 2rem; }
.pg-home .testimonial-link { color: var(--charcoal-deep); }
.pg-home .testimonial-link:hover { color: var(--ips-red); }
.pg-home .urgent-band { background: var(--ips-red); padding: 5rem 0; color: var(--ips-light); }
.pg-home .urgent-inner { max-width: 56rem; text-align: center; }
.pg-home .urgent-heading { font-size: clamp(2.4rem, 9vw, 5.5rem); margin-bottom: 1.5rem; color: var(--ips-light); }
.pg-home .urgent-lead { font-size: 1.1rem; max-width: 34rem; margin: 0 auto 2.5rem; color: rgba(244,242,238,0.9); }
.pg-home .urgent-actions { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.pg-home .urgent-dispatch-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(244,242,238,0.75); margin-bottom: 0.25rem; }
.pg-home .urgent-phone { font-family: var(--font-heading); font-size: 1.9rem; color: var(--ips-light); }
.pg-home .urgent-phone:hover { text-decoration: underline; }
.pg-home .urgent-divider { width: 4rem; height: 1px; background: rgba(244,242,238,0.3); }
.pg-home .urgent-btn { background: var(--charcoal-deep); color: var(--ips-light); }
.pg-home .urgent-btn:hover { background: var(--ips-light); color: var(--ips-red); }
@media (min-width: 768px) {
  .pg-home .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .pg-home .brand-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pg-home .hero-grid { grid-template-columns: 5fr 7fr; }
  .pg-home .hero-media { height: 78vh; }
  .pg-home .cap-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .pg-home .cap-row { grid-template-columns: 3rem 1fr 2fr auto; }
  .pg-home .cap-num { grid-row: auto; }
  .pg-home .cap-title { grid-column: auto; grid-row: auto; }
  .pg-home .cap-desc { grid-column: auto; }
  .pg-home .cap-arrow { display: block; text-align: right; opacity: 0.4; }
  .pg-home .ice-band-grid { grid-template-columns: 1fr 1fr; }
  .pg-home .ice-band-content { padding: 4rem 5rem; }
  .pg-home .signature-grid { grid-template-columns: 5fr 7fr; }
  .pg-home .why-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .pg-home .why-img { height: 30rem; }
}

/* page: services */
.pg-services .svc-hero { padding: 6.5rem 0 3rem; }
.pg-services .svc-hero-desc { font-size: 1.15rem; color: rgba(244,242,238,0.7); max-width: 40rem; line-height: 1.6; margin-top: 1.5rem; }
.pg-services .svc-list { padding: 0 0 6rem; }
.pg-services .svc-block { display: grid; grid-template-columns: 1fr; margin-bottom: 0.25rem; }
.pg-services .svc-media img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pg-services .svc-content { background: var(--charcoal-light); padding: 2.5rem 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.pg-services .svc-num { font-family: var(--font-heading); font-size: 3rem; color: var(--ips-red); display: block; margin-bottom: 1rem; }
.pg-services .svc-content h2 { margin-bottom: 1.25rem; }
.pg-services .svc-content p { color: rgba(244,242,238,0.7); line-height: 1.7; margin: 0 0 2rem; }
.pg-services .svc-features { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pg-services .svc-features li { font-size: 0.85rem; color: rgba(244,242,238,0.8); position: relative; padding-left: 1.15rem; }
.pg-services .svc-features li::before { content: '+'; color: var(--ips-red); font-weight: 700; position: absolute; left: 0; }
.pg-services .svc-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 768px) {
  .pg-services .svc-block { grid-template-columns: 1fr 1fr; }
  .pg-services .svc-block.svc-alt .svc-media { order: 2; }
  .pg-services .svc-block.svc-alt .svc-content { order: 1; }
  .pg-services .svc-content { padding: 4rem; }
}

/* page: ice-machines */
.pg-ice-machines .ice-hero { position: relative; padding: 10rem 0 5rem; background-image: linear-gradient(to right, rgba(13,13,13,0.96), rgba(13,13,13,0.9) 45%, rgba(13,13,13,0.55)), url('orig/02.jpg'); background-size: cover; background-position: center; }
.pg-ice-machines .ice-hero-h1 { margin: 1.25rem 0 1.75rem; }
.pg-ice-machines .ice-hero-desc { font-size: 1.15rem; color: rgba(244,242,238,0.85); max-width: 40rem; line-height: 1.6; margin: 0 0 2rem; }
.pg-ice-machines .ice-checks { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.pg-ice-machines .ice-checks span { color: rgba(244,242,238,0.9); }
.pg-ice-machines .ice-checks span::before { content: '+'; color: var(--ips-red); margin-right: 0.4rem; font-weight: 700; }
.pg-ice-machines .ice-provide { background: var(--ips-light); color: var(--charcoal-deep); padding: 5rem 0; }
.pg-ice-machines .ice-provide h2 { color: var(--charcoal-deep); margin: 0 0 3rem; }
.pg-ice-machines .ice-cards { display: grid; grid-template-columns: 1fr; gap: 2px; background: rgba(13,13,13,0.08); }
/* four cards: 2x2 on tablet, one full row on wide screens */
@media (min-width: 768px) { .pg-ice-machines .ice-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pg-ice-machines .ice-cards { grid-template-columns: repeat(4, 1fr); } }
.pg-ice-machines .ice-card { padding: 2.5rem; }
.pg-ice-machines .ice-card--dark { background: var(--charcoal-deep); color: var(--ips-light); }
.pg-ice-machines .ice-card--light { background: var(--ips-light); color: var(--charcoal-deep); border: 1px solid rgba(13,13,13,0.1); }
.pg-ice-machines .ice-card-num { font-family: var(--font-heading); font-size: 2.25rem; color: var(--ips-red); margin-bottom: 1rem; }
.pg-ice-machines .ice-card h3 { font-family: var(--font-heading); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem; }
.pg-ice-machines .ice-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.pg-ice-machines .ice-card li { font-size: 0.88rem; margin-bottom: 0.5rem; padding-left: 1.1rem; position: relative; }
.pg-ice-machines .ice-card li::before { content: '+'; color: var(--ips-red); font-weight: 700; position: absolute; left: 0; }
.pg-ice-machines .ice-card--dark p { font-size: 0.88rem; line-height: 1.6; color: rgba(244,242,238,0.7); margin: 0; }
.pg-ice-machines .ice-card--light p { font-size: 0.88rem; line-height: 1.6; color: rgba(13,13,13,0.7); margin: 0; }
.pg-ice-machines .ice-serve { padding: 5rem 0; border-top: 1px solid rgba(244,242,238,0.1); }
.pg-ice-machines .ice-serve h2 { margin: 0 0 3rem; }
.pg-ice-machines .industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .pg-ice-machines .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.pg-ice-machines .industry-item { border: 1px solid rgba(244,242,238,0.1); padding: 2rem; font-family: var(--font-heading); font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.02em; transition: all 0.2s ease; }
.pg-ice-machines .industry-item:hover { background: rgba(208,31,43,0.1); border-color: var(--ips-red); }
.pg-ice-machines .ice-cta { background: var(--ips-red); padding: 6rem 0; }
.pg-ice-machines .ice-cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.pg-ice-machines .ice-cta h2 { color: var(--ips-light); margin: 0 0 1.5rem; }
.pg-ice-machines .ice-cta p { color: rgba(244,242,238,0.9); font-size: 1.1rem; line-height: 1.7; margin: 0 0 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.pg-ice-machines .ice-cta-btn { background: var(--charcoal-deep); color: var(--ips-light); padding: 1.15rem 2.5rem; }
.pg-ice-machines .ice-cta-btn:hover { background: var(--ips-light); color: var(--ips-red); }

/* page: gallery */
.pg-gallery .hero-lead { color: rgba(244,242,238,0.65); max-width: 40rem; font-size: 1.05rem; margin-top: 1.5rem; }
.pg-gallery .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 1.5rem; }
.pg-gallery .gallery-item { background: var(--charcoal-light); position: relative; }
.pg-gallery .gallery-item:nth-child(1), .pg-gallery .gallery-item:nth-child(6) { grid-row: span 2; }
.pg-gallery .gallery-media { position: relative; width: 100%; height: 100%; overflow: hidden; }
.pg-gallery .gallery-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-gallery .gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1.25rem 1.1rem; background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0) 100%); }
.pg-gallery .gallery-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ips-red); margin: 0 0 0.4rem; }
.pg-gallery .gallery-title { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ips-light); margin: 0; }
@media (max-width: 900px) { .pg-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pg-gallery .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } .pg-gallery .gallery-item:nth-child(1), .pg-gallery .gallery-item:nth-child(6) { grid-row: span 1; } }

/* page: testimonials */
.pg-testimonials .hero-lead { color: rgba(244,242,238,0.65); max-width: 40rem; font-size: 1.05rem; margin-top: 1.5rem; }
.pg-testimonials .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--charcoal-mid); border-top: 1px solid rgba(244,242,238,0.08); border-bottom: 1px solid rgba(244,242,238,0.08); }
.pg-testimonials .stat { text-align: center; padding: 2.5rem 1rem; border-left: 1px solid rgba(244,242,238,0.08); }
.pg-testimonials .stat:first-child { border-left: none; }
.pg-testimonials .stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--ips-red); line-height: 1; }
.pg-testimonials .stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(244,242,238,0.5); margin-top: 0.6rem; }
.pg-testimonials .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pg-testimonials .review-card { background: var(--charcoal-light); padding: 2rem; border: 1px solid rgba(244,242,238,0.06); }
.pg-testimonials .stars { color: var(--ips-red); letter-spacing: 0.2em; font-size: 0.95rem; margin: 0 0 1.25rem; }
.pg-testimonials .review-quote { text-transform: uppercase; font-size: 0.95rem; line-height: 1.7; color: var(--ips-light); margin: 0 0 1.5rem; }
.pg-testimonials .review-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(244,242,238,0.08); }
.pg-testimonials .review-name { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.25rem; }
.pg-testimonials .review-role { font-size: 0.8rem; color: rgba(244,242,238,0.5); margin: 0; }
.pg-testimonials .review-city { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ips-red); margin: 0; white-space: nowrap; }
.pg-testimonials .cta-band { background: var(--ips-red); padding: 5rem 0; }
.pg-testimonials .cta-inner { text-align: center; }
.pg-testimonials .cta-band h2 { color: var(--ips-light); margin-bottom: 1.25rem; }
.pg-testimonials .cta-band p { color: rgba(244,242,238,0.92); max-width: 32rem; margin: 0 auto 2rem; }
.pg-testimonials .cta-band .btn-outline { background: var(--charcoal-deep); border-color: var(--charcoal-deep); color: var(--ips-light); }
.pg-testimonials .cta-band .btn-outline:hover { background: var(--ips-light); color: var(--charcoal-deep); border-color: var(--ips-light); }
@media (max-width: 900px) { .pg-testimonials .stat-row { grid-template-columns: repeat(2, 1fr); } .pg-testimonials .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .pg-testimonials .stat-row { grid-template-columns: 1fr; } .pg-testimonials .stat { border-left: none; border-top: 1px solid rgba(244,242,238,0.08); } .pg-testimonials .stat:first-child { border-top: none; } }

/* page: about */
.pg-about .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.pg-about .about-media img { width: 100%; height: 520px; object-fit: cover; display: block; }
.pg-about .about-copy p { color: rgba(244,242,238,0.75); margin: 0 0 1.5rem; line-height: 1.85; font-size: 1rem; }
.pg-about .about-copy p:last-child { margin-bottom: 0; }
.pg-about .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--charcoal-mid); border-top: 1px solid rgba(244,242,238,0.08); border-bottom: 1px solid rgba(244,242,238,0.08); }
.pg-about .stat { text-align: center; padding: 2.5rem 1rem; border-left: 1px solid rgba(244,242,238,0.08); }
.pg-about .stat:first-child { border-left: none; }
.pg-about .stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--ips-red); line-height: 1; }
.pg-about .stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(244,242,238,0.5); margin-top: 0.6rem; }
@media (max-width: 900px) { .pg-about .about-grid { grid-template-columns: 1fr; } .pg-about .about-media img { height: 360px; } .pg-about .stat-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pg-about .stat-row { grid-template-columns: 1fr; } .pg-about .stat { border-left: none; border-top: 1px solid rgba(244,242,238,0.08); } .pg-about .stat:first-child { border-top: none; } }

/* page: blog */
.pg-blog .hero-lead { color: rgba(244,242,238,0.65); max-width: 40rem; font-size: 1.05rem; margin-top: 1.5rem; }
.pg-blog .blog-filters { display: flex; flex-wrap: wrap; gap: 1.75rem; border-bottom: 1px solid rgba(244,242,238,0.12); padding-bottom: 1.1rem; margin-bottom: 3rem; }
.pg-blog .filter-pill { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,242,238,0.45); }
.pg-blog .filter-pill.active { color: var(--ips-red); }
.pg-blog .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pg-blog .blog-card { display: block; background: var(--charcoal-light); padding: 1.75rem; border: 1px solid rgba(244,242,238,0.06); transition: border-color 0.2s ease; }
.pg-blog .blog-card:hover { border-color: var(--ips-red); }
.pg-blog .blog-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ips-red); margin: 0 0 0.85rem; }
.pg-blog .blog-title { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.005em; text-transform: uppercase; line-height: 1.35; color: var(--ips-light); margin: 0 0 0.85rem; }
.pg-blog .blog-desc { font-size: 0.85rem; color: rgba(244,242,238,0.55); line-height: 1.6; margin: 0 0 1.25rem; }
.pg-blog .blog-meta { font-size: 0.68rem; color: rgba(244,242,238,0.4); letter-spacing: 0.05em; text-transform: uppercase; margin: 0; padding-top: 1rem; border-top: 1px solid rgba(244,242,238,0.08); }
@media (max-width: 900px) { .pg-blog .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pg-blog .blog-grid { grid-template-columns: 1fr; } .pg-blog .blog-filters { gap: 1rem; } }

/* page: service-areas */
.pg-areas .areas-hero { padding: 4rem 0 3rem; }
.pg-areas .areas-hero .eyebrow { display: block; margin-bottom: 1rem; }
.pg-areas .areas-hero h1 { margin-bottom: 1.5rem; }
.pg-areas .areas-hero-desc { max-width: 44rem; font-size: 1.125rem; line-height: 1.7; }
.pg-areas .areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding-bottom: 6rem; }
.pg-areas .areas-list { background: var(--charcoal-light); padding: 2.5rem; }
.pg-areas .areas-list .eyebrow { display: block; margin-bottom: 1.5rem; }
.pg-areas .areas-ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; }
.pg-areas .areas-ul li { font-family: var(--font-heading); font-size: 1.35rem; letter-spacing: 0.02em; text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; }
.pg-areas .areas-ul li::before { content: "+"; color: var(--ips-red); font-weight: 700; font-family: var(--font-body); }
.pg-areas .areas-map-wrap { border: 1px solid rgba(244,242,238,0.1); min-height: 480px; }
.pg-areas #map { width: 100%; height: 100%; min-height: 480px; }
.pg-areas .areas-cta { background: var(--ips-red); padding: 5rem 0; }
.pg-areas .areas-cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.pg-areas .areas-cta-inner h2 { margin-bottom: 1.5rem; }
.pg-areas .areas-cta-inner p { font-size: 1.125rem; color: rgba(244,242,238,0.9); max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.pg-areas .areas-cta-btn { background: var(--charcoal-deep); color: var(--ips-light); }
.pg-areas .areas-cta-btn:hover { background: var(--ips-light); color: var(--ips-red); }
@media (max-width: 900px) { .pg-areas .areas-grid { grid-template-columns: 1fr; } .pg-areas .areas-ul { grid-template-columns: 1fr; } }

/* page: contact */
.pg-contact .contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; padding: 4rem 0 6rem; align-items: start; }
.pg-contact .contact-info .eyebrow { display: block; margin-bottom: 1rem; }
.pg-contact .contact-info h1 { margin-bottom: 1.5rem; }
.pg-contact .contact-lede { font-size: 1.125rem; line-height: 1.7; margin-bottom: 3rem; max-width: 30rem; }
.pg-contact .contact-details { border-top: 1px solid rgba(244,242,238,0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 2rem; }
.pg-contact .info-label { display: block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ips-red); margin-bottom: 0.5rem; }
.pg-contact .contact-phone { font-family: var(--font-heading); font-size: 2.25rem; letter-spacing: 0.02em; transition: color 0.2s ease; }
.pg-contact .contact-phone:hover { color: var(--ips-red); }
.pg-contact .contact-email { font-size: 1.15rem; transition: color 0.2s ease; }
.pg-contact .contact-email:hover { color: var(--ips-red); }
.pg-contact .contact-hours { color: rgba(244,242,238,0.8); line-height: 1.7; margin: 0; }
.pg-contact .contact-form { background: var(--charcoal-light); border: 1px solid rgba(244,242,238,0.1); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.pg-contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pg-contact .form-field { display: flex; flex-direction: column; }
.pg-contact .contact-form input[type="text"],
.pg-contact .contact-form input[type="tel"],
.pg-contact .contact-form input[type="email"],
.pg-contact .contact-form select,
.pg-contact .contact-form textarea { background: var(--charcoal-deep); border: 1px solid rgba(244,242,238,0.15); color: var(--ips-light); font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 1rem; width: 100%; }
.pg-contact .contact-form textarea { resize: vertical; }
.pg-contact .contact-form input:focus,
.pg-contact .contact-form select:focus,
.pg-contact .contact-form textarea:focus { outline: none; border-color: var(--ips-red); }
.pg-contact .contact-submit { width: 100%; justify-content: center; }
@media (max-width: 900px) { .pg-contact .contact-grid { grid-template-columns: 1fr; gap: 3rem; } .pg-contact .form-row { grid-template-columns: 1fr; } }
