/* Jewell Painting — site styles */
:root {
  --lake: #173a5e;
  --lake-deep: #0f2438;
  --lake-mid: #2c5f8a;
  --clay: #d9643a;
  --clay-deep: #b84f2a;
  --sun: #f5b93b;
  --pine: #2f5d50;
  --cream: #faf6ef;
  --birch: #f1ebe0;
  --paper: #ffffff;
  --ink: #1d232b;
  --muted: #5a6470;
  --line: #e4dccd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 36, 56, 0.12);
  --wrap: 1140px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --hand: "Caveat Brush", "Comic Sans MS", cursive;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--lake-mid); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; margin: 0 0 0.5em; color: var(--lake-deep); overflow-wrap: break-word; }
h1 { font-size: clamp(1.9rem, 9.4vw, 4.3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 6.8vw, 2.7rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1em; }

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

.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--sun); }
.muted { color: var(--muted); font-size: 0.95rem; }
.section-lede { font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.more { font-weight: 700; color: var(--clay-deep); text-decoration: none; white-space: nowrap; }
.more:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4em; text-align: center;
  padding: 0.85em 1.4em; border-radius: 999px; border: 2px solid var(--clay);
  background: var(--clay); color: #fff; font-weight: 600; text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 6px 16px rgba(217, 100, 58, 0.28);
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.btn-small { padding: 0.55em 1.05em; font-size: 0.92rem; box-shadow: none; }
.btn-ghost { background: transparent; color: var(--clay-deep); box-shadow: none; }
.btn-ghost:hover { background: rgba(217, 100, 58, 0.08); color: var(--clay-deep); }
.btn-outline-light { background: rgba(15, 36, 56, 0.25); border-color: rgba(255, 255, 255, 0.85); color: #fff; box-shadow: none; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
.btn-light { background: #fff; border-color: #fff; color: var(--lake-deep); box-shadow: none; }
.btn-light:hover { background: var(--sun); border-color: var(--sun); color: var(--lake-deep); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.4rem 0 0; }

button.btn { font: inherit; font-weight: 600; cursor: pointer; }
.btn.is-copied { background: var(--pine); border-color: var(--pine); color: #fff; }
.desktop-hint, .scan-card { display: none; }
.scan-card {
  align-items: center; gap: 20px; margin: 1.8rem auto 0; max-width: 420px; text-align: left;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 16px 22px 16px 16px;
  box-shadow: var(--shadow); transform: rotate(-1.5deg);
}
.scan-card { flex-wrap: wrap; justify-content: center; }
.scan-card img { width: 148px; height: 148px; max-width: 100%; flex: none; border-radius: 8px; }
.scan-copy { display: flex; flex-direction: column; gap: 4px; flex: 1 1 150px; min-width: 0; }
.scan-title { font-family: var(--hand); font-size: 1.9rem; line-height: 1; color: var(--clay-deep); }
.scan-text { color: var(--muted); font-size: 0.98rem; line-height: 1.4; }
.scan-card-dark { margin: 1.6rem 0 0; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
.scan-card-dark .scan-title { color: var(--sun); }
.scan-card-dark .scan-text { color: rgba(255, 255, 255, 0.82); }

/* Phones and tablets call/text directly. Computers (mouse) can't place a call from a tel:/sms: link,
   so they get "Copy number" / "Save contact" instead, and phone numbers show as plain text. */
.btn.on-desktop { display: none; }
@media (hover: hover) and (pointer: fine) {
  .btn.on-desktop { display: inline-flex; }
  .btn.on-touch { display: none; }
  .scan-card { display: flex; }
  a[href^="tel:"]:not(.btn), a[href^="sms:"]:not(.btn) { pointer-events: none; cursor: text; text-decoration: none; }
}
.cta-center { justify-content: center; }

/* ---------- Header + menu ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 12px 24px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; min-width: 0; }
.brand-mark { width: 36px; height: 36px; flex: none; }
.mark-bg { fill: var(--lake); }
.mark-stroke { fill: none; stroke: var(--clay); stroke-width: 5; stroke-linecap: round; }
.mark-j { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.28rem; color: var(--lake-deep); letter-spacing: -0.01em; white-space: nowrap; }
.nav { order: 2; display: flex; gap: 6px; }
.header-call { order: 3; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.97rem;
  padding: 8px 12px; border-radius: 999px;
}
.nav a:hover { color: var(--clay-deep); background: rgba(217, 100, 58, 0.08); }
.nav a[aria-current="page"] { background: var(--lake); color: #fff; }
.nav a.nav-hiring:not([aria-current]) { color: var(--clay-deep); }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background-color: var(--lake-deep);
  background-image:
    linear-gradient(90deg, rgba(10, 26, 42, 0.9) 0%, rgba(10, 26, 42, 0.72) 38%, rgba(10, 26, 42, 0.2) 68%, rgba(10, 26, 42, 0.05) 100%),
    url("/assets/img/newfound-lake.jpg");
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.hero::after, .page-banner::after {
  /* brush-edge transition into the page */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 34px;
  background: var(--cream);
  clip-path: polygon(0 60%, 6% 40%, 14% 58%, 23% 35%, 33% 55%, 44% 30%, 55% 52%, 66% 32%, 77% 56%, 88% 36%, 100% 55%, 100% 100%, 0 100%);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 24px; align-items: end;
  padding-top: 72px; padding-bottom: 72px; min-height: 620px;
}
.hero-grid > * { min-width: 0; }
.hero-copy { align-self: center; max-width: 590px; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.hl {
  color: #fff;
  background-image: linear-gradient(transparent 66%, var(--clay) 66%, var(--clay) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 0.06em;
}
.hero .lede { font-size: 1.16rem; color: rgba(255, 255, 255, 0.92); max-width: 540px; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); }
.hero .lede strong { color: var(--sun); }

.phone-swipe {
  display: inline-flex; flex-direction: column; align-items: flex-start; max-width: 100%;
  margin-top: 0.6rem; padding: 14px 34px 14px 26px;
  background: var(--sun); color: var(--lake-deep); text-decoration: none;
  border-radius: 255px 18px 225px 18px / 18px 225px 18px 255px;
  transform: rotate(-2deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease;
}
.phone-swipe:hover { transform: rotate(-1deg) scale(1.03); }
.phone-label { font-family: var(--hand); font-size: 1.35rem; line-height: 1; color: var(--clay-deep); }
.phone-number { font-family: var(--serif); font-weight: 800; font-size: clamp(1.5rem, 8.2vw, 2.9rem); line-height: 1.05; letter-spacing: -0.01em; white-space: nowrap; }

/* Fred + callouts */
.hero-art { position: relative; min-height: 520px; display: flex; justify-content: center; align-items: flex-end; }
.fred { position: relative; z-index: 1; width: min(370px, 100%); height: auto; margin-right: 70px; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35)); }
.bubble {
  position: absolute; z-index: 2; top: -40px; right: -18px; max-width: 240px;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; color: var(--lake-deep); text-decoration: none;
  padding: 14px 18px 16px; border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transform: rotate(-3deg);
  transition: transform 0.18s ease;
}
.bubble:hover { transform: rotate(-2deg) scale(1.03); }
.bubble::after {
  content: ""; position: absolute; bottom: -18px; left: 44px;
  border-width: 20px 12px 0 12px; border-style: solid; border-color: #fff transparent transparent transparent;
  transform: skewX(22deg);
}
.bubble-small { font-family: var(--hand); font-size: 1.3rem; color: var(--clay-deep); line-height: 1.1; }
.bubble-big { font-family: var(--serif); font-weight: 800; font-size: 1.28rem; line-height: 1.15; }
.bubble-cta { font-weight: 600; font-size: 0.9rem; color: var(--lake-mid); margin-top: 4px; }
.burst {
  position: absolute; z-index: 2; left: -12px; bottom: 56px; width: 172px; height: 172px;
  display: grid; place-items: center; text-decoration: none;
  transform: rotate(-10deg);
  transition: transform 0.2s ease;
}
.burst:hover { transform: rotate(-4deg) scale(1.06); }
.burst svg { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35)); }
.burst-shape { fill: var(--clay); stroke: #fff; stroke-width: 5; stroke-linejoin: round; }
.burst-text { position: relative; display: flex; flex-direction: column; align-items: center; color: #fff; line-height: 1; text-align: center; }
.burst-top { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.burst-pay { font-family: var(--serif); font-weight: 800; font-size: 1.75rem; margin: 4px 0 2px; white-space: nowrap; }
.burst-unit { font-family: var(--hand); font-size: 1.15rem; }

/* Fred illustration parts */
.r-ol { stroke: var(--lake-deep); stroke-width: 4; stroke-linejoin: round; }
.r-ol-thin { stroke: var(--lake-deep); stroke-width: 3; stroke-linejoin: round; }
.r-shadow { fill: rgba(0, 0, 0, 0.3); }
.r-boot { fill: #5a3d2b; }
.r-cream { fill: #f7f2e8; }
.r-shirt { fill: var(--lake-mid); }
.r-arm-ol { fill: none; stroke: var(--lake-deep); stroke-width: 32; stroke-linecap: round; }
.r-arm { fill: none; stroke: var(--lake-mid); stroke-width: 24; stroke-linecap: round; }
.r-seam { stroke: var(--lake-deep); stroke-width: 3; }
.r-button { fill: var(--sun); stroke: var(--lake-deep); stroke-width: 2.5; }
.r-clay { fill: var(--clay); }
.r-blue { fill: var(--lake-mid); }
.r-pine { fill: var(--pine); }
.r-ferrule { fill: #c9ced4; }
.r-skin { fill: #f1c39a; }
.r-ink { fill: var(--lake-deep); }
.r-white { fill: #fff; }
.r-cheek { fill: #e8866b; opacity: 0.45; }
.r-mouth { fill: #7a2a18; }
.r-line { fill: none; stroke: var(--lake-deep); stroke-width: 4; stroke-linecap: round; }
.r-line-thin { fill: none; stroke: var(--lake-deep); stroke-width: 3; stroke-linecap: round; }
.r-cap { fill: var(--clay); }
.r-cap-brim { fill: var(--clay-deep); }
.r-cap-text { font-family: var(--serif); font-weight: 800; font-size: 16px; letter-spacing: 1px; fill: var(--clay-deep); }
.r-pocket-text { font-family: var(--serif); font-weight: 800; font-size: 14px; fill: var(--clay-deep); }
.r-pole { stroke: #7a5436; stroke-width: 8; stroke-linecap: round; }
.r-wire { fill: none; stroke: #9aa3ad; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.r-roller { fill: var(--clay); }
.r-roller-shine { stroke: rgba(255, 255, 255, 0.45); stroke-width: 4; stroke-linecap: round; }

/* ---------- Inner-page banner ---------- */
.page-banner {
  position: relative; overflow: hidden; color: #fff;
  background-color: var(--lake-deep);
  background-image:
    linear-gradient(90deg, rgba(10, 26, 42, 0.92) 0%, rgba(10, 26, 42, 0.74) 55%, rgba(10, 26, 42, 0.4) 100%),
    url("/assets/img/newfound-lake.jpg");
  background-size: cover; background-position: center 45%;
  padding: 64px 0 76px;
}
.page-banner h1 { color: #fff; max-width: 780px; margin-bottom: 0.35em; }
.banner-intro { font-size: 1.15rem; color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-tint { background: var(--birch); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
.section-head h2 { margin-bottom: 0; }

/* Home teasers */
.teasers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 1.8rem; }
.teaser {
  display: flex; flex-direction: column; gap: 12px; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--clay);
  border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.teaser:nth-child(2) { border-top-color: var(--lake-mid); }
.teaser:nth-child(3) { border-top-color: var(--sun); }
.teaser:nth-child(4) { border-top-color: var(--pine); }
.teaser:hover { transform: translateY(-2px); }
.teaser .card-icon { margin: 0; }
.teaser-title { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; line-height: 1.2; color: var(--lake-deep); }

/* Home strips */
.strip { display: flex; align-items: center; gap: 28px 44px; flex-wrap: wrap; }
.strip-copy { flex: 1 1 320px; min-width: 0; }
.strip-copy p { font-size: 1.08rem; }
.strip-copy .more { display: inline-block; }
.hiring-teaser { padding: 64px 0; }
.hiring-teaser .strip { justify-content: space-between; }
.hiring-teaser h2 { margin-bottom: 0.3em; }
.hiring-teaser .hiring-lede { margin: 0; }

/* Services cards */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 5px solid var(--clay);
}
.card:nth-child(2) { border-top-color: var(--lake-mid); }
.card:nth-child(3) { border-top-color: var(--sun); }
.card:nth-child(4) { border-top-color: var(--pine); }
.card p { color: var(--muted); margin: 0; }
.card-title { font-size: 1.3rem; font-weight: 600; }
.card-icon { width: 44px; height: 44px; margin-bottom: 14px; fill: none; stroke: var(--lake); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; }

/* Job photos coming soon */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 1.6rem; }
.tile {
  position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 18px;
  color: #fff; box-shadow: var(--shadow);
}
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 18px, rgba(255, 255, 255, 0) 18px 44px);
}
.tile::after {
  content: ""; position: absolute; right: 18px; bottom: 16px; width: 54px; height: 54px; opacity: 0.35;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='6' width='30' height='12' rx='5'/%3E%3Cpath d='M36 12h6v10H24v6'/%3E%3Crect x='20' y='28' width='8' height='14' rx='3'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tile-1 { background: var(--lake-mid); }
.tile-2 { background: var(--pine); }
.tile-3 { background: var(--clay); }
.tile-4 { background: var(--lake); }
.tile-5 { background: #8b6b4a; }
.tile-6 { background: #5b7f9e; }
.tile-tag {
  position: relative; max-width: 100%;
  background: rgba(255, 255, 255, 0.92); color: var(--lake-deep);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3;
  padding: 5px 11px; border-radius: 999px;
}
.tile-soon { position: relative; font-family: var(--hand); font-size: 2rem; line-height: 1; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.steps li { background: var(--paper); border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); }
.steps p { color: var(--muted); margin: 0; }
.step-num { display: inline-block; font-family: var(--serif); font-weight: 800; font-size: 2rem; color: var(--clay); margin-bottom: 6px; }

/* Chips */
.towns, .skills { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.towns li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-weight: 600; color: var(--lake); }
.skills li { background: var(--clay); color: #fff; border-radius: 999px; padding: 7px 16px; font-weight: 600; }
.towns li:has(a) { padding: 0; }
.towns a { display: block; padding: 7px 16px; color: var(--lake); text-decoration: none; border-radius: 999px; }
.towns a:hover { background: var(--lake); color: #fff; }

/* Service areas */
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 1.6rem 0 1.2rem; }
.area-card {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--clay);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: transform 0.15s ease;
}
.area-card:nth-child(2) { border-left-color: var(--lake-mid); }
.area-card:nth-child(3) { border-left-color: var(--sun); }
.area-card:nth-child(4) { border-left-color: var(--pine); }
.area-card:hover { transform: translateY(-2px); }
.area-name { font-family: var(--serif); font-weight: 800; font-size: 1.3rem; color: var(--lake-deep); }
.area-note { color: var(--muted); font-size: 0.95rem; }
.checklist a { font-weight: 600; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--lake-deep);
  padding: 18px 52px 18px 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; font-weight: 500; color: var(--clay);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.serving { margin: 1.6rem 0 0; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.serving + .towns { margin-top: 0.7rem; }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 48px; align-items: start; }
.about-copy p { font-size: 1.08rem; }
.about-copy .about-lead { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; line-height: 1.35; color: var(--lake-deep); }
.years {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--lake); color: #fff; padding: 16px 24px 16px 20px;
  border-radius: 255px 18px 225px 18px / 18px 225px 18px 255px;
  transform: rotate(-2deg); box-shadow: var(--shadow);
}
.years-num { font-family: var(--serif); font-weight: 800; font-size: 4rem; line-height: 0.9; color: var(--sun); }
.years-label { font-family: var(--hand); font-size: 1.45rem; line-height: 1.05; }

/* Hiring */
.hiring {
  background: var(--lake);
  background-image: radial-gradient(circle at 85% 20%, rgba(44, 95, 138, 0.9), transparent 55%);
  color: #fff; padding: 72px 0;
}
.hiring h2 { color: #fff; }
.hiring-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 24px 56px; align-items: start; }
.hiring-lede { font-size: 1.12rem; color: rgba(255, 255, 255, 0.88); }
.perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.perks li {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--sun); border-radius: 10px; padding: 12px 16px;
}
.hiring-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 18px; }
.hiring-cta p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.hiring-cta a:not(.btn) { color: var(--sun); font-weight: 600; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 56px; }
.checklist { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.25em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--clay) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 20px;
}
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.fact-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
.fact-value { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--lake-deep); margin-top: 4px; }

/* Contact */
.contact-inner { text-align: center; }
.contact .section-lede { margin: 0 auto 1rem; }
.phone {
  display: inline-block; font-family: var(--serif); font-weight: 800; text-decoration: none; white-space: nowrap;
  font-size: clamp(1.8rem, 10vw, 3.8rem); color: var(--lake-deep); margin: 0.2rem 0 0.4rem;
}
.phone:hover { color: var(--clay-deep); }
.contact .muted { margin-top: 1.4rem; }

/* Footer */
.site-footer { background: var(--lake-deep); color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; padding: 28px 0; }
.site-footer a { color: #fff; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; width: 100%; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-nav a { text-decoration: none; font-weight: 600; }
.credit { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
.credit a { color: rgba(255, 255, 255, 0.8); }

.mobile-bar { display: none; }

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .cards, .teasers, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  html { scroll-padding-top: 116px; }
  /* Menu drops to its own row of tabs under the logo */
  .header-inner { flex-wrap: wrap; min-height: 0; padding-top: 10px; padding-bottom: 8px; }
  .nav { order: 3; width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .nav a { text-align: center; font-size: 0.9rem; line-height: 1.2; padding: 8px 4px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
  .nav a[aria-current="page"] { background: var(--lake); border-color: var(--lake); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-top: 48px; padding-bottom: 60px; }
  .hero {
    background-image:
      linear-gradient(180deg, rgba(10, 26, 42, 0.86) 0%, rgba(10, 26, 42, 0.62) 55%, rgba(10, 26, 42, 0.25) 100%),
      url("/assets/img/newfound-lake-960.jpg");
  }
  .page-banner { background-image: linear-gradient(90deg, rgba(10, 26, 42, 0.9), rgba(10, 26, 42, 0.7)), url("/assets/img/newfound-lake-960.jpg"); }
  .hero-art { min-height: 420px; max-width: 460px; width: 100%; margin: 12px auto 0; }
  .fred { width: 270px; margin-right: 40px; }
  .bubble { top: -20px; right: 0; }
  .steps, .two-col, .facts { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .hiring-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
}

/* ---------- Phone ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; padding-bottom: 60px; }
  .wrap { padding: 0 16px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 1.12rem; }
  .site-header .btn.header-call { display: none; }
  .nav a { font-size: 0.82rem; padding: 7px 2px; }
  .section { padding: 48px 0; }
  .hiring, .hiring-teaser { padding: 48px 0; }
  .page-banner { padding: 36px 0 50px; }
  .banner-intro { font-size: 1.02rem; }

  /* Phone hero: text, then callouts on the left and Fred on the right */
  .hero-grid { padding-top: 28px; padding-bottom: 50px; gap: 6px; }
  .hero .lede { font-size: 1.02rem; }
  .phone-swipe { padding: 10px 24px 10px 18px; }
  .phone-label { font-size: 1.15rem; }
  .cta-row .btn { padding: 0.75em 1.1em; }
  .hero-art {
    display: grid; grid-template-columns: minmax(0, 1fr) 44%; grid-template-rows: auto auto;
    column-gap: 8px; row-gap: 12px; align-items: center;
    min-height: 0; max-width: none; margin: 20px 0 0;
  }
  .bubble {
    position: relative; grid-column: 1; grid-row: 1; top: auto; right: auto; max-width: none;
    padding: 11px 13px 12px; border-radius: 18px; transform: rotate(-2deg);
  }
  .bubble:hover { transform: rotate(-2deg); }
  .bubble::after {
    left: auto; right: -14px; bottom: 24px;
    border-width: 9px 0 9px 16px; border-color: transparent transparent transparent #fff; transform: none;
  }
  .bubble-small { font-size: 1.08rem; }
  .bubble-big { font-size: 1rem; }
  .bubble-cta { font-size: 0.8rem; }
  .burst { position: relative; grid-column: 1; grid-row: 2; left: auto; bottom: auto; justify-self: center; width: 124px; height: 124px; }
  .burst-pay { font-size: 1.25rem; }
  .burst-top { font-size: 0.54rem; letter-spacing: 0.06em; }
  .burst-unit { font-size: 0.95rem; }
  .fred { grid-column: 2; grid-row: 1 / span 2; align-self: end; width: 100%; margin: 0; }

  .teasers { gap: 10px; margin-top: 1.2rem; }
  .teaser { padding: 14px 12px; gap: 8px; }
  .teaser .card-icon { width: 34px; height: 34px; }
  .teaser-title { font-size: 1rem; }
  .cards, .area-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .faq-item summary { font-size: 1.05rem; padding: 15px 44px 15px 16px; }
  .faq-item p { padding: 0 16px 15px; }
  .card { padding: 20px 18px; }
  .strip { gap: 20px; }
  .years { padding: 12px 18px 12px 16px; }
  .years-num { font-size: 3rem; }
  .years-label { font-size: 1.2rem; }
  .about-copy .about-lead { font-size: 1.2rem; }
  .gallery { gap: 10px; }
  .tile { padding: 10px; }
  .tile-tag { font-size: 0.66rem; padding: 4px 8px; }
  .tile-soon { font-size: 1.35rem; }
  .tile::after { width: 30px; height: 30px; right: 10px; bottom: 10px; }
  .footer-nav { gap: 6px 14px; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--lake-deep); box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
  }
  .mobile-bar a { color: #fff; text-align: center; padding: 15px 0; font-weight: 700; text-decoration: none; }
  .mobile-bar a:first-child { background: var(--clay); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
