/* Wasatch Commercial Refrigeration
   Trades property stylesheet. Light-only by design - a contractor site should
   look identical to every visitor. All colors painted explicitly. */

:root {
  --ink:        #0f1720;
  --ink-2:      #3d4d5c;
  --ink-3:      #6b7c8a;
  --steel:      #123a4d;
  --steel-2:    #1b5570;
  --cold:       #2d87a8;
  --cold-tint:  #e4f1f6;
  --amber:      #d6560f;
  --amber-2:    #b8460a;
  --ground:     #ffffff;
  --ground-2:   #f3f6f7;
  --line:       #d8e0e4;
  --line-2:     #bcc9cf;

  --f-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --f-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --shell: 1120px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

a { color: var(--steel-2); }
a:hover { color: var(--amber); }
a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--amber); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- top bar ---------- */

.topbar { background: var(--ink); color: #cfdae1; font-size: 14px; }
.topbar-in {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px;
}
.topbar-note { color: #a8b8c2; }
.topbar-call { color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.topbar-call:hover { color: #ffb27a; }

/* ---------- masthead ---------- */

.masthead { background: var(--ground); border-bottom: 3px solid var(--steel); }
.masthead-in {
  display: flex; align-items: center; gap: 20px; flex-wrap: nowrap;
  padding-top: 16px; padding-bottom: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 30px; height: 30px; flex: none;
  background:
    linear-gradient(135deg, var(--cold) 0%, var(--steel) 100%);
  border-radius: 3px;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 8px;
  border: 2px solid rgba(255,255,255,0.85); border-radius: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--f-head); font-weight: 700; font-size: 25px;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--steel);
}
.brand-text span {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}

.nav { display: flex; gap: 18px; margin-left: auto; flex-wrap: wrap; }
.nav a {
  font-family: var(--f-head); font-size: 17px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--ink-2); text-decoration: none;
}
.nav a:hover { color: var(--amber); }

.cta {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--amber); color: #fff; padding: 9px 18px; border-radius: 3px;
  line-height: 1.15;
}
.cta:hover { background: var(--amber-2); color: #fff; }
.cta-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.cta-num { font-family: var(--f-head); font-size: 22px; font-weight: 700; }

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

.hero {
  background: linear-gradient(160deg, var(--steel) 0%, var(--ink) 100%);
  color: #fff;
  border-bottom: 5px solid var(--amber);
}
.hero-in { padding-top: 58px; padding-bottom: 58px; }

.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #7fc4dd; margin: 0 0 16px;
}
.hero h1 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(38px, 6vw, 62px); line-height: 1.02;
  letter-spacing: 0.005em; margin: 0 0 20px; color: #fff;
  text-wrap: balance;
}
.hero-lede { font-size: 19px; line-height: 1.55; color: #c9dbe4; max-width: 62ch; margin: 0 0 28px; }

.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { font-size: 15px; color: #9fbecd; }

.btn {
  display: inline-block; background: var(--amber); color: #fff;
  font-family: var(--f-head); font-size: 24px; font-weight: 700;
  letter-spacing: 0.02em; text-decoration: none;
  padding: 13px 28px; border-radius: 3px;
}
.btn:hover { background: var(--amber-2); color: #fff; }

.trust { list-style: none; margin: 0; padding: 0; display: flex; gap: 12px 30px; flex-wrap: wrap; }
.trust li {
  font-size: 14.5px; color: #a9c6d3; padding-left: 22px; position: relative;
}
.trust li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 11px; height: 6px; border-left: 2px solid #7fc4dd; border-bottom: 2px solid #7fc4dd;
  transform: rotate(-45deg);
}

/* ---------- page head ---------- */

.crumbs { font-size: 14px; color: var(--ink-3); padding-top: 22px; }
.crumbs a { color: var(--ink-3); }
.crumbs span { margin: 0 4px; }

.page-head { padding: 28px 0 40px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.page-head h1 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(33px, 5vw, 50px); line-height: 1.06;
  margin: 0 0 18px; color: var(--steel); text-wrap: balance;
}
.lede { font-size: 19.5px; line-height: 1.55; color: var(--ink-2); max-width: 66ch; margin: 0 0 26px; }

/* ---------- prose ---------- */

.prose { padding: 40px 0 8px; }
.lead-sec { padding-top: 48px; }
.prose h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px); line-height: 1.12;
  margin: 0 0 18px; color: var(--steel); text-wrap: balance;
}
.prose p { margin: 0 0 17px; max-width: 68ch; }

.marks { list-style: none; margin: 22px 0 8px; padding: 0; max-width: 72ch; }
.marks li {
  position: relative; padding: 0 0 0 26px; margin-bottom: 13px; line-height: 1.55;
}
.marks li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 9px; height: 9px; background: var(--cold); border-radius: 2px;
}

/* ---------- stat row ---------- */

.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin: 24px 0 20px;
}
.stat { background: var(--cold-tint); padding: 15px 18px; display: flex; flex-direction: column; gap: 4px; }
.stat-k { font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--steel-2); }
.stat-v { font-family: var(--f-head); font-size: 25px; font-weight: 700; color: var(--steel); }
.stat-v.cap::first-letter { text-transform: uppercase; }

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

.grid-sec { padding: 46px 0 10px; }
.grid-sec h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 24px; color: var(--steel);
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 18px; }
.card {
  display: flex; flex-direction: column; gap: 9px;
  background: var(--ground-2); border: 1px solid var(--line);
  border-top: 3px solid var(--cold);
  padding: 22px 24px 20px; text-decoration: none; color: var(--ink);
}
.card:hover { border-top-color: var(--amber); background: #fff; color: var(--ink); }
.card h3 {
  font-family: var(--f-head); font-weight: 700; font-size: 22px;
  line-height: 1.15; margin: 0; color: var(--steel);
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }
.card-go {
  margin-top: auto; padding-top: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
}

/* ---------- chips ---------- */

.chips { list-style: none; margin: 20px 0 8px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips a {
  display: block; font-size: 14.5px; text-decoration: none;
  background: var(--ground-2); border: 1px solid var(--line);
  color: var(--ink-2); padding: 6px 13px; border-radius: 3px;
}
.chips a:hover { background: var(--cold-tint); border-color: var(--cold); color: var(--steel); }

/* ---------- faq ---------- */

.faq { padding: 44px 0 10px; }
.faq h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 22px; color: var(--steel);
}
.faq-list { border-top: 1px solid var(--line); max-width: 78ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0;
  font-weight: 600; font-size: 17.5px; color: var(--steel); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 25px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--cold); border-bottom: 2px solid var(--cold);
  transform: rotate(45deg); transition: transform 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 0 18px; }
.faq-a p { margin: 0; color: var(--ink-2); max-width: 70ch; }

/* ---------- request form ---------- */

.quote { background: var(--ground-2); border-top: 1px solid var(--line); margin-top: 56px; }
.quote-in {
  max-width: var(--shell); margin: 0 auto; padding: 46px 24px 50px;
  display: grid; grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.25fr);
  gap: 40px; align-items: start;
}

.quote-head h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(25px, 3.2vw, 33px); line-height: 1.12;
  margin: 0 0 16px; color: var(--steel); text-wrap: balance;
}
.quote-head p { margin: 0 0 14px; color: var(--ink-2); font-size: 16px; max-width: 44ch; }
.quote-head a { font-weight: 700; color: var(--amber); text-decoration: none; white-space: nowrap; }
.quote-head a:hover { text-decoration: underline; }

.quote-form {
  background: var(--ground); border: 1px solid var(--line-2);
  padding: 26px 28px 24px; display: flex; flex-direction: column; gap: 16px;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel-2);
}
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: var(--ground); border: 1px solid var(--line-2);
  padding: 10px 12px; border-radius: 2px; width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--amber); outline-offset: 1px; border-color: var(--amber);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }

.btn-form {
  font-size: 20px; padding: 12px 24px; border: none; cursor: pointer;
  align-self: flex-start; font-family: var(--f-head); font-weight: 700;
  letter-spacing: 0.02em; background: var(--amber); color: #fff; border-radius: 3px;
}
.btn-form:hover { background: var(--amber-2); }

.f-note { margin: 0; font-size: 13.5px; color: var(--ink-3); }

@media (max-width: 820px) {
  .quote-in { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .f-row { grid-template-columns: 1fr; }
  .quote-in { padding-left: 18px; padding-right: 18px; }
  .quote-form { padding: 20px; }
  .btn-form { width: 100%; }
}

/* ---------- call band ---------- */

.band { background: var(--steel); color: #fff; margin-top: 56px; }
.band-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-top: 34px; padding-bottom: 34px;
}
.band h2 {
  font-family: var(--f-head); font-weight: 700; font-size: clamp(25px, 3.2vw, 34px);
  margin: 0 0 6px; color: #fff;
}
.band p { margin: 0; color: #b6cfda; font-size: 16.5px; }
.band-cta {
  font-family: var(--f-head); font-size: 30px; font-weight: 700;
  background: var(--amber); color: #fff; text-decoration: none;
  padding: 12px 28px; border-radius: 3px; white-space: nowrap;
}
.band-cta:hover { background: var(--amber-2); color: #fff; }

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

.foot { background: var(--ink); color: #a8b8c2; padding-top: 46px; font-size: 15px; }
.foot-in {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 34px; padding-bottom: 36px;
}
.foot-col h3 {
  font-family: var(--f-head); font-size: 17px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin: 0 0 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-col ul.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.foot-col a { color: #a8b8c2; text-decoration: none; }
.foot-col a:hover { color: #ffb27a; }
.foot-brand .brand-text strong { color: #fff; }
.foot-brand .brand-text span { color: #7e93a1; }
.foot-brand p { margin: 14px 0; max-width: 34ch; }
.foot-call {
  display: inline-block; font-family: var(--f-head); font-size: 27px;
  font-weight: 700; color: #fff; text-decoration: none;
}
.foot-call:hover { color: #ffb27a; }
.foot-hours { font-size: 13.5px; color: #7e93a1; margin: 4px 0 0; }

.foot-legal {
  border-top: 1px solid #22303b; padding-top: 20px; padding-bottom: 30px;
  font-size: 13px; color: #6f8593;
}
.foot-legal p { margin: 0 0 6px; max-width: none; }

/* ---------- responsive ---------- */

@media (max-width: 1040px) {
  .masthead-in { flex-wrap: wrap; }
  .nav { order: 3; margin-left: 0; width: 100%; gap: 16px; }
  .cta { margin-left: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { padding: 0 18px; }
  .hero-in { padding-top: 40px; padding-bottom: 42px; }
  .hero-lede { font-size: 17.5px; }
  .btn { font-size: 21px; padding: 12px 22px; }
  .band-in { padding-top: 28px; padding-bottom: 28px; }
  .band-cta { font-size: 25px; width: 100%; text-align: center; }
  .foot-col ul.cols { grid-template-columns: 1fr; }
  .topbar-note { display: none; }
  .topbar-in { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
