/* Roo Blue Plumbing — v2 "Hometown dispatch"
   Sample site by Formidus. Weatherford / Parker County, TX. */

:root {
  --cream: #F6F1E6;
  --cream-2: #EDE5D3;
  --paper: #FFFDF8;
  --ink: #101B2E;
  --navy: #0B1F3A;
  --navy-2: #12305A;
  --blue: #1F5FCC;
  --blue-deep: #174DAB;
  --orange: #E8622C;
  --orange-deep: #C94F1F;
  --green: #1E6B3C;
  --green-deep: #175630;
  --muted: #55607A;
  --line: rgba(11, 31, 58, 0.16);
  --line-strong: rgba(11, 31, 58, 0.38);

  --display: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .055; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 900; line-height: .95; text-transform: uppercase; letter-spacing: .005em; color: var(--navy); }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
h2 { font-size: clamp(40px, 6vw, 84px); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px;
  font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase;
  border: 2px solid var(--navy); border-radius: 6px;
  background: var(--paper); color: var(--navy);
  cursor: pointer; white-space: nowrap;
  box-shadow: 4px 4px 0 var(--navy);
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 var(--navy); color: var(--navy); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }
.btn-orange { background: var(--orange); color: var(--paper); border-color: var(--navy); }
.btn-orange:hover { background: var(--orange-deep); color: var(--paper); }
.btn-blue { background: var(--blue); color: var(--paper); }
.btn-blue:hover { background: var(--blue-deep); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: 4px 4px 0 rgba(255,255,255,.35); }
.btn-ghost:hover { color: var(--paper); box-shadow: 6px 6px 0 rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 19px; box-shadow: 3px 3px 0 var(--navy); }
.btn-block { width: 100%; }

/* ---------- Top strip ---------- */
.strip { background: var(--navy); color: var(--cream); font-size: 14px; font-weight: 500; }
.strip .wrap { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.strip a { color: var(--cream); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.strip a:hover { color: #fff; }
.strip-left { display: flex; align-items: center; gap: 8px; opacity: .9; }

/* ---------- Masthead ---------- */
.masthead { position: sticky; top: 0; z-index: 60; background: var(--cream); border-bottom: 2px solid var(--navy); }
.masthead .wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); flex-shrink: 0; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-name { white-space: nowrap; font-family: var(--display); font-weight: 900; font-size: 34px; line-height: .9; letter-spacing: .01em; text-transform: uppercase; color: var(--navy); }
.brand-name span { color: var(--blue); }
.brand-sub { display: block; white-space: nowrap; font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav ul { display: flex; gap: 22px; flex-wrap: nowrap; }
.nav a { white-space: nowrap; font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); border-bottom: 3px solid transparent; padding-bottom: 2px; }
.nav a:hover { border-color: var(--orange); color: var(--navy); }
.mast-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mast-icon { display: none; width: 46px; height: 46px; border: 2px solid var(--navy); border-radius: 6px; background: var(--paper); color: var(--navy); align-items: center; justify-content: center; cursor: pointer; }
.mast-icon.is-orange { background: var(--orange); color: var(--paper); }

/* Mobile drawer */
.drawer { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(11,31,58,.6); }
.drawer[data-open="true"] { display: block; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 90vw); background: var(--cream); border-left: 3px solid var(--navy); padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head strong { font-family: var(--display); font-size: 30px; font-weight: 900; text-transform: uppercase; color: var(--navy); }
.drawer-links a { display: block; padding: 14px 0; border-bottom: 2px solid var(--line); font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.drawer-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: var(--cream); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,31,58,.94) 0%, rgba(11,31,58,.82) 34%, rgba(11,31,58,.25) 62%, rgba(11,31,58,.05) 100%); }
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 48px; align-items: end; padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(48px, 6vw, 80px); min-height: 640px; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.hero-tag { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: .16em; text-transform: uppercase; color: #F4B37E; display: flex; align-items: center; gap: 12px; }
.hero-tag::before { content: ""; width: 34px; height: 3px; background: var(--orange); }
.hero h1 { color: var(--cream); font-size: clamp(60px, 7.8vw, 112px); line-height: .88; letter-spacing: 0; }
.hero h1 .hop { color: #F4B37E; display: block; white-space: nowrap; }
.hero-lede { font-size: clamp(17px, 1.5vw, 21px); max-width: 52ch; color: rgba(246,241,230,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 16px; align-items: center; }
.hero-note { font-size: 14px; color: rgba(246,241,230,.72); }

/* Dispatch ticket */
.ticket-wrap { position: relative; display: flex; justify-content: flex-end; min-width: 0; }
.ticket {
  position: relative; width: min(420px, 100%);
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--navy); border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0,0,0,.35);
  transform: rotate(-1.5deg);
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.ticket::before, .ticket::after { content: ""; position: absolute; left: 14px; right: 14px; height: 0; border-top: 2px dashed var(--line-strong); }
.ticket::before { top: 58px; }
.ticket-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--display); font-weight: 800; letter-spacing: .12em; font-size: 17px; text-transform: uppercase; color: var(--navy); padding-bottom: 12px; }
.live { display: inline-flex; align-items: center; gap: 8px; color: var(--green); }
.live i { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(30,107,60,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(30,107,60,.55); } 70% { box-shadow: 0 0 0 10px rgba(30,107,60,0); } 100% { box-shadow: 0 0 0 0 rgba(30,107,60,0); } }
.ticket-label { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.ticket-slot { font-family: var(--display); font-weight: 900; font-size: clamp(38px, 3.4vw, 50px); line-height: .95; text-transform: uppercase; color: var(--navy); }
.ticket-slot em { font-style: normal; color: var(--orange); }
.ticket-rows { display: grid; gap: 8px; font-size: 14px; color: var(--muted); padding-right: 64px; }
.ticket-rows div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dotted var(--line-strong); padding-bottom: 6px; }
.ticket-rows strong { color: var(--ink); text-align: right; }
.ticket-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 4px; }
.ticket-foot .btn { flex: 1; margin-right: 64px; }
.stamp {
  position: absolute; left: -18px; top: -26px;
  transform: rotate(-7deg);
  border: 3px solid var(--orange); color: var(--orange);
  border-radius: 6px; padding: 6px 10px;
  font-family: var(--display); font-weight: 900; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.05; text-align: center;
  background: rgba(255,253,248,.9);
  mix-blend-mode: multiply;
}
.mascot-peek { position: absolute; right: -46px; bottom: -40px; width: 132px; transform: rotate(6deg); filter: drop-shadow(4px 6px 0 rgba(0,0,0,.25)); pointer-events: none; }

/* ---------- Towns ticker ---------- */
.ticker { background: var(--orange); color: var(--navy); border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); overflow: hidden; }
.ticker-inner { display: flex; align-items: stretch; }
.ticker-label { flex-shrink: 0; background: var(--navy); color: var(--cream); font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: .1em; text-transform: uppercase; padding: 12px 20px; display: flex; align-items: center; }
.ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-track ul { display: flex; gap: 0; white-space: nowrap; animation: ticker 48s linear infinite; }
.ticker-track:hover ul { animation-play-state: paused; }
.ticker-track li { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: .08em; text-transform: uppercase; padding: 0 28px; display: flex; align-items: center; gap: 28px; }
.ticker-track li::after { content: "★"; font-size: 14px; opacity: .7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 32px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head > div { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.rule { border: 0; border-top: 3px solid var(--navy); margin: 0; }

/* Local problems */
.problems { border-top: 3px solid var(--navy); }
.problem { display: grid; grid-template-columns: 140px minmax(0, 1fr) minmax(0, .9fr); gap: 32px; padding: 36px 0; border-bottom: 2px solid var(--line); align-items: start; }
.problem-num { font-family: var(--display); font-weight: 900; font-size: 96px; line-height: .8; color: var(--orange); }
.problem h3 { font-size: clamp(30px, 3vw, 44px); margin-bottom: 12px; }
.problem p { color: var(--muted); }
.fix { background: var(--paper); border: 2px solid var(--navy); border-radius: 6px; padding: 18px 20px; box-shadow: 4px 4px 0 var(--navy); display: flex; flex-direction: column; gap: 6px; }
.fix-label { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.fix strong { font-size: 17px; color: var(--navy); }
.fix span { font-size: 15px; color: var(--muted); }
.fix-price { font-family: var(--display); font-weight: 900; font-size: 30px; color: var(--navy); margin-top: 4px; }
.fix-price small { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-right: 8px; }

/* Price board */
.board { background: var(--navy); color: var(--cream); border-top: 3px solid var(--navy); }
.board h2, .board .eyebrow { color: var(--cream); }
.board .eyebrow { color: #F4B37E; }
.board .lede { color: rgba(246,241,230,.78); }
.board-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 64px; margin-top: 40px; }
.board-col h3 { font-size: 24px; letter-spacing: .08em; color: #F4B37E; padding-bottom: 12px; border-bottom: 2px solid rgba(246,241,230,.25); margin-bottom: 6px; }
.price-row { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(246,241,230,.14); }
.price-row .name { font-weight: 600; }
.price-row .name small { display: block; font-weight: 400; font-size: 13px; color: rgba(246,241,230,.62); margin-top: 2px; }
.price-row .dots { flex: 1; border-bottom: 2px dotted rgba(246,241,230,.35); transform: translateY(-6px); min-width: 20px; }
.price-row .price { font-family: var(--display); font-weight: 900; font-size: 28px; white-space: nowrap; color: var(--cream); }
.price-row .price small { font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,241,230,.6); margin-right: 6px; }
.board-note { margin-top: 40px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; background: var(--orange); color: var(--navy); border: 3px solid var(--cream); border-radius: 8px; padding: 22px 26px; }
.board-note strong { font-family: var(--display); font-weight: 900; font-size: 26px; text-transform: uppercase; letter-spacing: .03em; display: block; margin-bottom: 4px; }
.board-note p { color: var(--navy); }

/* How it works + SMS */
.how { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.steps { display: grid; gap: 0; border-top: 3px solid var(--navy); }
.step { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-bottom: 2px solid var(--line); align-items: start; }
.step-num { font-family: var(--display); font-weight: 900; font-size: 60px; line-height: .8; color: var(--blue); }
.step h3 { font-size: 30px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 16px; }
.phone { justify-self: center; width: min(360px, 100%); background: var(--navy); border-radius: 36px; padding: 16px 14px 22px; box-shadow: 10px 12px 0 rgba(11,31,58,.18), inset 0 0 0 3px rgba(255,255,255,.08); transform: rotate(2deg); }
.phone-screen { background: var(--paper); border-radius: 24px; padding: 18px 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.phone-top { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.phone-top img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.phone-top strong { display: block; font-size: 14px; }
.phone-top span { font-size: 12px; color: var(--muted); }
.bubble { max-width: 86%; padding: 10px 13px; border-radius: 16px; font-size: 14px; line-height: 1.4; }
.bubble.them { background: #E9E2D2; color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.me { background: var(--blue); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.bubble .id { display: flex; align-items: center; gap: 10px; margin-top: 8px; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 8px; padding: 6px 8px; }
.bubble .id img { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; object-position: center 20%; }
.bubble .id strong { display: block; font-size: 12px; color: var(--navy); }
.bubble .id span { font-size: 11px; color: var(--muted); }
.bubble-time { font-size: 11px; color: var(--muted); align-self: center; letter-spacing: .06em; text-transform: uppercase; }

/* Crew */
.crew { background: var(--cream-2); border-top: 3px solid var(--navy); }
.crew-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.crew-photo { position: relative; }
.crew-photo img { width: 100%; border: 3px solid var(--navy); border-radius: 8px; box-shadow: 10px 10px 0 var(--navy); }
.crew-caption { position: absolute; left: 18px; bottom: -18px; background: var(--orange); color: var(--navy); border: 2px solid var(--navy); border-radius: 6px; padding: 8px 12px; font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: .06em; text-transform: uppercase; transform: rotate(-2deg); }
.crew-copy { display: flex; flex-direction: column; gap: 22px; }
.roster { display: grid; gap: 14px; border-top: 3px solid var(--navy); padding-top: 18px; }
.roster li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: baseline; border-bottom: 2px solid var(--line); padding-bottom: 12px; }
.roster strong { font-family: var(--display); font-weight: 900; font-size: 26px; text-transform: uppercase; color: var(--navy); }
.roster span { display: block; font-size: 15px; color: var(--muted); }
.roster em { font-style: normal; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); white-space: nowrap; }
.owner-note { background: var(--paper); border: 2px solid var(--navy); border-radius: 8px; padding: 22px 24px; box-shadow: 5px 5px 0 var(--navy); font-size: 16px; color: var(--ink); position: relative; }
.owner-note p + p { margin-top: 10px; }
.owner-note .sig { display: block; margin-top: 12px; font-family: var(--display); font-weight: 900; font-size: 24px; text-transform: uppercase; color: var(--blue); }
.creds { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; font-weight: 600; color: var(--muted); }
.creds li { display: flex; align-items: center; gap: 8px; }
.creds .icon { color: var(--green); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review { background: var(--paper); border: 2px solid var(--navy); border-radius: 8px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: 5px 5px 0 var(--navy); }
.review-stars { color: var(--orange); font-size: 18px; letter-spacing: .08em; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink); }
.review-meta { margin-top: auto; padding-top: 12px; border-top: 2px solid var(--line); display: flex; justify-content: space-between; gap: 12px; align-items: flex-end; }
.review-meta strong { font-family: var(--display); font-weight: 900; font-size: 22px; text-transform: uppercase; display: block; }
.review-meta span { font-size: 13px; color: var(--muted); display: block; }
.review-meta em { font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.rating-big { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.rating-big strong { font-family: var(--display); font-weight: 900; font-size: 84px; line-height: .8; color: var(--navy); }
.rating-big span { font-size: 16px; color: var(--muted); }

/* Service area sign */
.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.sign { background: var(--green); color: #fff; border-radius: 14px; padding: 12px; box-shadow: 10px 10px 0 var(--navy); transform: rotate(-1deg); }
.sign-inner { border: 4px solid #fff; border-radius: 10px; padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 18px; }
.sign-title { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 5vw, 64px); text-transform: uppercase; letter-spacing: .02em; line-height: .9; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sign-title small { font-size: 18px; letter-spacing: .16em; font-weight: 800; opacity: .9; text-align: right; line-height: 1.2; }
.sign-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; border-top: 3px solid #fff; padding-top: 12px; }
.sign-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.28); font-family: var(--display); font-weight: 800; font-size: 25px; letter-spacing: .05em; text-transform: uppercase; }
.sign-list li span { font-size: 18px; letter-spacing: .1em; opacity: .9; white-space: nowrap; }
.sign-list li.here { color: #FFD37A; }
.area-copy { display: flex; flex-direction: column; gap: 20px; }
.area-copy .big { font-family: var(--display); font-weight: 900; font-size: 30px; text-transform: uppercase; color: var(--navy); line-height: 1; }

/* Work order */
.book { background: var(--cream-2); border-top: 3px solid var(--navy); }
.book-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.book-copy { display: flex; flex-direction: column; gap: 22px; }
.book-copy .contact-rows { display: grid; gap: 12px; border-top: 3px solid var(--navy); padding-top: 16px; }
.book-copy .contact-rows li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.book-copy .contact-rows .icon { color: var(--blue); margin-top: 2px; }
.book-copy .contact-rows strong { display: block; font-family: var(--display); font-weight: 900; font-size: 22px; text-transform: uppercase; color: var(--navy); }
.book-copy .contact-rows a { color: var(--ink); }
.workorder { background: var(--paper); border: 2px solid var(--navy); border-radius: 8px; box-shadow: 8px 8px 0 var(--navy); overflow: hidden; }
.wo-head { background: var(--navy); color: var(--cream); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: .08em; text-transform: uppercase; }
.wo-head span { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .16em; color: #F4B37E; }
.wo-body { padding: 26px 24px 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--body); font-size: 16px; color: var(--ink); min-height: 50px; padding: 0 14px; border: 2px solid var(--navy); border-radius: 6px; background: #fff; width: 100%; }
.field textarea { min-height: 110px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(232,98,44,.35); border-color: var(--orange); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input[type="file"] { padding: 10px 14px; min-height: 0; font-size: 14px; background: var(--cream); }
.form-actions { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.fineprint { font-size: 13px; color: var(--muted); }
.form-success { display: none; flex-direction: column; gap: 12px; align-items: flex-start; }
.form-success h3 { font-size: 34px; }
.workorder[data-state="sent"] .form-body { display: none; }
.workorder[data-state="sent"] .form-success { display: flex; }

/* Footer */
.footer { background: var(--navy); color: rgba(246,241,230,.8); padding: clamp(48px, 6vw, 80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand-name { color: var(--cream); font-size: 40px; }
.footer .brand-sub { color: rgba(246,241,230,.6); }
.footer-col strong { display: block; font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: .1em; text-transform: uppercase; color: #F4B37E; margin-bottom: 12px; }
.footer-col a, .footer-col span { display: block; color: rgba(246,241,230,.8); font-size: 15px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 18px; border-top: 1px solid rgba(246,241,230,.2); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(246,241,230,.6); }
.footer-bottom a { color: var(--cream); font-weight: 700; }
.footer-mascot { width: 96px; margin-top: 16px; opacity: .95; }

/* Mobile sticky bar */
.dock { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--navy); border-top: 3px solid var(--orange); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.dock a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 6px; font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); border: 2px solid rgba(246,241,230,.35); }
.dock a.primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1500px) {
  .mast-actions .btn:first-child { display: none; }
}
@media (max-width: 1100px) {
  .nav ul { gap: 20px; }
  .nav a { font-size: 18px; }
  .hero .wrap { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .ticket-wrap { justify-content: flex-start; }
  .ticket { transform: rotate(0); width: min(440px, 100%); }
  .problem { grid-template-columns: 96px minmax(0, 1fr); }
  .problem .fix { grid-column: 2; }
  .problem-num { font-size: 72px; }
  .how, .crew-grid, .area-grid, .book-grid { grid-template-columns: 1fr; }
  .phone { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1180px) {
  .nav, .mast-actions .btn { display: none; }
  .mast-icon { display: flex; }
}
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .strip .wrap { justify-content: center; text-align: center; }
  .strip-left { display: none; }
  .masthead .wrap { height: 70px; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 28px; }
  .brand-sub { font-size: 10px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .hero .wrap { padding-top: 40px; padding-bottom: 36px; gap: 28px; }
  .hero-bg img { object-position: 60% 50%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(11,31,58,.6) 0%, rgba(11,31,58,.9) 45%, rgba(11,31,58,.96) 100%); }
  .hero h1 { font-size: clamp(56px, 17vw, 76px); }
  .hero-actions .btn { width: 100%; }
  .ticket { padding: 18px 18px 20px; }
  .ticket::before { top: 54px; }
  .stamp { left: -6px; top: -20px; font-size: 13px; }
  .mascot-peek { right: -10px; bottom: -30px; width: 100px; }
  .ticket-rows { padding-right: 56px; }
  .ticket-foot .btn { margin-right: 56px; }
  .ticker-label { font-size: 16px; padding: 10px 14px; }
  .ticker-track li { font-size: 20px; padding: 0 18px; gap: 18px; }
  .problem { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
  .problem .fix { grid-column: 1; }
  .problem-num { font-size: 56px; }
  .board-grid { grid-template-columns: 1fr; gap: 24px; }
  .board-note { grid-template-columns: 1fr; }
  .board-note .btn { width: 100%; }
  .step { grid-template-columns: 56px minmax(0, 1fr); }
  .step-num { font-size: 44px; }
  .step h3 { font-size: 26px; }
  .crew-photo img { box-shadow: 6px 6px 0 var(--navy); }
  .reviews-grid { grid-template-columns: 1fr; }
  .sign { transform: none; box-shadow: 6px 6px 0 var(--navy); }
  .sign-inner { padding: 20px 18px 22px; }
  .sign-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .wo-body { padding: 20px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .dock { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track ul { animation: none; }
  .live i { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
