/* ============================================================
   Sunshine Renovation Pros — "Spec Sheet" design system
   Plaster paper canvas, ink text, painter's-tape cobalt accent,
   sun gold highlights, masking-tape amber + frog green per trade.
   Type: Bricolage Grotesque (display) / Public Sans (body)
         IBM Plex Mono (spec labels)
   ============================================================ */

:root {
  --paper: #F5F2EA;
  --paper-2: #ECE7D9;
  --white: #FFFFFF;
  --ink: #17190F;
  --ink-soft: #50524A;
  --tape: #2553E9;
  --tape-deep: #1A3FBD;
  --tape-tint: #E3E9FC;
  --mask: #C98A1B;      /* tan masking tape (flooring) */
  --mask-deep: #8A5A10;
  --mask-tint: #F7ECD4;
  --frog: #1F7A4C;      /* green frog tape (drywall) */
  --frog-deep: #176343;
  --frog-tint: #DFF1E6;
  --sun: #F2B300;       /* sunshine gold (brand highlight) */
  --sun-deep: #B37F00;
  --sun-tint: #FDF3D7;
  --line: #D9D3C2;
  --ok: #1E7B4D;
  --err: #B3382C;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(23, 25, 15, .06), 0 12px 32px -16px rgba(23, 25, 15, .18);
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Public Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Plaster grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection { background: var(--tape); color: var(--white); }

:focus-visible { outline: 3px solid var(--tape); outline-offset: 2px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }

/* ---------- mono spec label + painter's tape chip ---------- */

.spec {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tape {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ac-contrast, var(--white));
  background: var(--ac, var(--tape));
  padding: .45em 1.2em;
  transform: rotate(-1.4deg);
  clip-path: polygon(1.5% 8%, 98.7% 0%, 100% 90%, 98% 100%, 1% 96%, 0% 14%);
}
.tape.tape-alt { transform: rotate(1deg); }

/* trade accent utilities: apply to a card, a page body, or any block */
.ac-amber { --ac: var(--mask); --ac-deep: var(--mask-deep); --ac-tint: var(--mask-tint); --ac-contrast: var(--ink); }
.ac-green { --ac: var(--frog); --ac-deep: var(--frog-deep); --ac-tint: var(--frog-tint); --ac-contrast: var(--white); }

/* ---------- ruler tick divider ---------- */

.ruler {
  height: 12px;
  background:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 70px);
  background-size: auto 7px, auto 12px;
  background-repeat: repeat-x;
  background-position: bottom left;
  opacity: .55;
}

/* ---------- header ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  width: 30px; height: 30px; flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav { display: flex; gap: 26px; }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-color: var(--tape); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 13px 24px;
  background: var(--tape);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background .15s, transform .15s;
}
/* paint swipe on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -40%;
  width: 30%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}
.btn:hover::before { transform: skewX(-18deg) translateX(520%); }
.btn:hover { background: var(--tape-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav { display: none; }
  .topbar .btn { display: none; }
  .nav-toggle {
    display: block;
    background: none; border: 1.5px solid var(--ink);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    padding: 9px 14px; cursor: pointer; color: var(--ink);
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 14px;
  }
  .nav.open a { padding: 12px clamp(18px, 4vw, 32px); border-bottom: none; }
}

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

.hero { position: relative; overflow: hidden; }
/* faint blueprint grid behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .35;
  -webkit-mask-image: radial-gradient(120% 90% at 20% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 20% 0%, #000 30%, transparent 75%);
}
/* soft color glows washing through the hero, sun in the top corner */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 64% at 88% 0%, rgba(242, 179, 0, .22), transparent 68%),
    radial-gradient(46% 60% at 12% 8%, rgba(37, 83, 233, .13), transparent 70%),
    radial-gradient(52% 64% at 80% 92%, rgba(201, 138, 27, .16), transparent 72%),
    radial-gradient(34% 44% at 40% 100%, rgba(31, 122, 76, .08), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  margin: 18px 0 20px;
}
.hero h1 .stroke {
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
/* roller stroke of cobalt paint behind the key word, rolled on after load */
.hero h1 .stroke::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.12em; right: -.12em; top: .12em; bottom: .02em;
  background: var(--tape);
  border-radius: 3px 14px 4px 12px;
  transform: skewY(-1.2deg) scaleX(0);
  transform-origin: left center;
  animation: rollOn .55s cubic-bezier(.3, .6, .2, 1) .65s both;
}
@keyframes rollOn { to { transform: skewY(-1.2deg) scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .stroke::before { transform: skewY(-1.2deg) scaleX(1); }
}
.hero h1 .stroke { color: var(--white); }
.hero-sub {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.trust li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.trust li::before {
  content: "";
  width: 9px; height: 9px; flex: none;
  background: var(--sun);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.trust li:nth-child(2n)::before { background: var(--tape); }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero-media .tape { position: absolute; top: -14px; left: 22px; z-index: 2; }
.hero-media::after {
  /* corner spec ticks */
  content: "";
  position: absolute;
  right: -14px; bottom: -14px;
  width: 90px; height: 90px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  opacity: .5;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

/* ---------- sections ---------- */

.section { padding: clamp(52px, 8vw, 104px) 0; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
  margin-bottom: clamp(28px, 4vw, 48px);
  position: relative;
}
/* short gold tape tab over the rule */
.section-head::before {
  content: "";
  position: absolute;
  top: -5px; left: 0;
  width: 64px; height: 8px;
  background: var(--ac, var(--sun));
  clip-path: polygon(2% 12%, 98% 0%, 100% 86%, 97% 100%, 1% 92%, 0% 18%);
}
.section-num {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--ac, var(--tape));
  letter-spacing: .1em;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section-head .spec { margin-left: auto; display: none; }
@media (min-width: 700px) { .section-head .spec { display: block; } }

.section-alt {
  background-color: var(--paper-2);
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .3) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, var(--ac-tint, #EDF1FC) 0%, var(--paper-2) 62%);
}

/* deep cobalt color band (service areas) */
.band-cobalt {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tape-deep) 0%, var(--tape) 55%, #4E79FF 100%);
  color: var(--white);
}
.band-cobalt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='1.5'%3E%3Cpath d='M0 48 L42 6 M42 6 L84 48 M-21 27 L21 -15 M63 27 L105 -15'/%3E%3C/g%3E%3C/svg%3E");
}
.band-cobalt .container { position: relative; }
.band-cobalt .section-head { border-top-color: rgba(255, 255, 255, .8); }
.band-cobalt .section-head h2 { color: var(--white); }
.band-cobalt .section-num { color: #BFD0FF; }
.band-cobalt .section-head .spec { color: #C9D6FF; }
.band-cobalt .lead-note { color: #DCE4FA; }
.band-cobalt .area {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .38);
  color: var(--white);
}
.band-cobalt .area:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--tape-deep);
}
.lead-note { max-width: 60ch; color: var(--ink-soft); margin-bottom: 22px; }

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

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-grid { counter-reset: svc; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: svc;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s, border-color .25s;
}
/* spec-sheet index in the card corner */
.svc-card::before {
  content: "0" counter(svc);
  position: absolute;
  top: 12px; right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--white);
  background: rgba(23, 25, 15, .55);
  padding: 3px 9px;
  border-radius: 3px;
  backdrop-filter: blur(3px);
}
/* accent tape strip rolls across the top edge on hover */
.svc-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--ac, var(--tape));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.3, .6, .2, 1);
  z-index: 3;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(23, 25, 15, .07), 0 24px 48px -18px rgba(23, 25, 15, .28);
  border-color: var(--ac, var(--tape));
}
/* a wash of the card's accent behind its body text */
.svc-body { background: linear-gradient(180deg, var(--ac-tint, var(--tape-tint)) 0%, var(--white) 86px); }
.svc-media { overflow: hidden; }
.svc-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.svc-card:hover img { transform: scale(1.05); }
.svc-card:hover .tape { transform: rotate(.8deg) translateY(-2px); }
.svc-body .tape { transition: transform .3s; }
.svc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-body .tape { align-self: flex-start; margin: -38px 0 14px; position: relative; z-index: 2; }
.svc-body h3 { font-size: 1.45rem; margin-bottom: 10px; }
.svc-body p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 14px; }
.svc-list { list-style: none; margin-bottom: 20px; }
.svc-list li {
  font-size: .95rem;
  padding: 7px 0 7px 22px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.svc-list li::before {
  content: "";
  position: absolute; left: 2px; top: 15px;
  width: 8px; height: 8px;
  background: var(--ac, var(--tape));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.svc-link {
  margin-top: auto;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  color: var(--ac-deep, var(--tape-deep));
}
.svc-link:hover { text-decoration: underline; }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  position: relative;
  padding-top: 16px;
}
/* the top rule draws itself in when the step scrolls into view */
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1) .15s;
}
.step.in::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .step::after { transform: scaleX(1); } }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--tape);
  letter-spacing: .12em;
}
.step h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.step p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- why / feature rows ---------- */

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.why-points { list-style: none; }
.why-points li {
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.why-points li::before {
  content: "";
  position: absolute; left: 0; top: 24px;
  width: 16px; height: 16px;
  background: var(--tape);
  clip-path: polygon(14% 44%, 0 58%, 40% 100%, 100% 16%, 84% 0, 40% 66%);
}
.why-points strong { display: block; font-size: 1.06rem; }
.why-points span { color: var(--ink-soft); font-size: .95rem; }

/* ---------- areas ---------- */

.area-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.area {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.area:hover {
  background: var(--tape);
  border-color: var(--tape);
  color: var(--white);
  transform: translateY(-2px) rotate(-.6deg);
}
/* chips pop in one after another when the wrap reveals */
.area-wrap.rv .area { opacity: 0; transform: translateY(10px); }
.area-wrap.rv.in .area {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .7, .2, 1);
}
.area-wrap.rv.in .area:nth-child(n)  { transition-delay: calc(.03s * 1); }
.area-wrap.rv.in .area:nth-child(2)  { transition-delay: .06s; }
.area-wrap.rv.in .area:nth-child(3)  { transition-delay: .09s; }
.area-wrap.rv.in .area:nth-child(4)  { transition-delay: .12s; }
.area-wrap.rv.in .area:nth-child(5)  { transition-delay: .15s; }
.area-wrap.rv.in .area:nth-child(6)  { transition-delay: .18s; }
.area-wrap.rv.in .area:nth-child(7)  { transition-delay: .21s; }
.area-wrap.rv.in .area:nth-child(8)  { transition-delay: .24s; }
.area-wrap.rv.in .area:nth-child(9)  { transition-delay: .27s; }
.area-wrap.rv.in .area:nth-child(10) { transition-delay: .3s; }
.area-wrap.rv.in .area:nth-child(11) { transition-delay: .33s; }
.area-wrap.rv.in .area:nth-child(12) { transition-delay: .36s; }
.area-wrap.rv.in .area:nth-child(13) { transition-delay: .39s; }
.area-wrap.rv.in .area:nth-child(14) { transition-delay: .42s; }
.area-wrap.rv.in .area:nth-child(15) { transition-delay: .45s; }
.area-wrap.rv.in .area:nth-child(16) { transition-delay: .48s; }
.area-wrap.rv.in .area:nth-child(17) { transition-delay: .51s; }
.area-wrap.rv.in .area:nth-child(18) { transition-delay: .54s; }
.area-wrap.rv.in .area:nth-child(19) { transition-delay: .57s; }
.area-wrap.rv.in .area:nth-child(20) { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) {
  .area-wrap.rv .area { opacity: 1; transform: none; }
}

/* ---------- FAQ ---------- */

.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--ac, var(--tape));
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); max-width: 60ch; }
.faq details[open] p { animation: faqOpen .35s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq summary:hover { color: var(--tape-deep); }

/* ---------- quote band + form ---------- */

.quote-band {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  /* faint herringbone in the dark band */
  content: "";
  position: absolute; inset: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48'%3E%3Cg fill='none' stroke='%23F5F2EA' stroke-width='1.5'%3E%3Cpath d='M0 48 L42 6 M42 6 L84 48 M-21 27 L21 -15 M63 27 L105 -15'/%3E%3C/g%3E%3C/svg%3E");
}
/* colored light spilling into the dark band */
.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(56% 70% at 84% 10%, rgba(63, 105, 255, .3), transparent 66%),
    radial-gradient(46% 60% at 6% 96%, rgba(242, 179, 0, .2), transparent 70%);
}
.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(52px, 7vw, 96px) 0;
  align-items: start;
}
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-copy h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 16px 0 14px; }
.quote-copy p { color: #C9C5B6; max-width: 34em; margin-bottom: 22px; }
.quote-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--paper);
  text-decoration: none;
}
.quote-phone:hover { color: var(--white); }
.quote-phone small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9B968A;
  margin-bottom: 6px;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}
.form-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.form-card > p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--tape);
  box-shadow: 0 0 0 3px var(--tape-tint);
}
.field textarea { min-height: 96px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-msg { font-size: .95rem; margin-top: 12px; display: none; }
.form-msg.ok { display: block; color: var(--ok); }
.form-msg.err { display: block; color: var(--err); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(44px, 6vw, 80px) 0 clamp(30px, 4vw, 52px);
  position: relative;
  background: linear-gradient(180deg, var(--ac-tint, var(--tape-tint)) 0%, rgba(255, 255, 255, 0) 82%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .3;
  -webkit-mask-image: radial-gradient(110% 90% at 15% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(110% 90% at 15% 0%, #000 25%, transparent 72%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); margin: 16px 0 14px; }
.page-hero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 46em; }
.crumbs {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--tape-deep); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; max-width: 66ch; }
.prose ul { margin: 0 0 16px 20px; color: var(--ink-soft); }
.prose li { margin-bottom: 7px; }

/* warm sunshine wash for a light section */
.section-warm {
  background:
    radial-gradient(60% 70% at 90% 10%, rgba(242, 179, 0, .14), transparent 70%),
    linear-gradient(135deg, var(--sun-tint) 0%, var(--paper) 60%);
}

/* ---------- taped photo frames ---------- */

.taped { position: relative; margin: 0; }
.taped img { display: block; }
.taped::before, .taped::after {
  content: "";
  position: absolute;
  width: 92px; height: 26px;
  background: var(--ac, var(--tape));
  opacity: .92;
  clip-path: polygon(2% 10%, 98.5% 0%, 100% 88%, 97% 100%, 1.5% 94%, 0% 16%);
  pointer-events: none;
}
.taped::before { top: -10px; left: -18px; transform: rotate(-38deg); }
.taped::after { bottom: -10px; right: -18px; transform: rotate(-38deg); }

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

footer {
  background: var(--ink);
  color: #C9C5B6;
  padding: clamp(44px, 6vw, 72px) 0 110px;
  font-size: .95rem;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--tape) 0 40%, var(--sun) 40% 75%, var(--frog) 75% 100%) 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8B8779;
  margin-bottom: 14px;
}
footer a { color: #C9C5B6; text-decoration: none; }
footer a:hover { color: var(--white); }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 10px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
.foot-note {
  border-top: 1px solid #33352B;
  padding-top: 22px;
  font-size: .82rem;
  color: #8B8779;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

/* ---------- mobile sticky call bar ---------- */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 1px;
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--sun);
}
.sticky-cta a.call { background: var(--tape); color: var(--white); }
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
}

/* ---------- reveal animation ---------- */

.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* hero load-in */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero .rise { animation: rise .7s cubic-bezier(.2, .7, .2, 1) both; }
.hero .rise-1 { animation-delay: .05s; }
.hero .rise-2 { animation-delay: .15s; }
.hero .rise-3 { animation-delay: .25s; }
.hero .rise-4 { animation-delay: .35s; }
