/* ==========================================================================
   Seersucker Soft & Pressure Washing
   Palette and type match the printed business card: gold on black, with the
   blue-and-white seersucker stripe used as an accent only.
   ========================================================================== */

:root {
  --black: #0c0c0e;
  --charcoal: #16171a;
  --slate: #22242a;
  --slate-2: #2c2f36;

  --gold: #c9a961;
  --gold-bright: #e2cd97;
  --gold-deep: #9b7f42;

  --seer: #8fb2d4;
  --seer-deep: #5c84ad;

  --cream: #f4f1e8;
  --muted: #9a9689;

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 3px;
  --hairline: 1px solid rgba(201, 169, 97, 0.22);

  /* The seersucker stripe, reusable as a background */
  --stripe: repeating-linear-gradient(
    90deg,
    var(--seer) 0 4px,
    var(--cream) 4px 8px
  );
}

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

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

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration-color: rgba(201,169,97,.4); text-underline-offset: 3px; }
a:hover { color: var(--gold-bright); }

h1, h2, h3, .brand-name {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.15rem); color: var(--cream); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--cream); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--gold-bright); }

p { margin: 0 0 1.1em; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--black); padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

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

/* ------------------------------------------------------------------ layout */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.narrow { max-width: 780px; }
.center { text-align: center; }
.center h2, .center p { margin-inline: auto; }

.section { padding: clamp(3.25rem, 8vw, 6rem) 0; }
.section.alt { background: var(--charcoal); border-block: var(--hairline); }

.eyebrow {
  font-family: var(--body);
  font-size: .73rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9rem;
}
.eyebrow.center { text-align: center; }

.lede { font-size: clamp(1.06rem, 1.9vw, 1.28rem); color: color-mix(in srgb, var(--cream) 82%, transparent); max-width: 62ch; }
.section-lede { color: var(--muted); max-width: 60ch; margin-bottom: 2.5rem; }

/* Thin seersucker rule under centered headings */
.section > .wrap > h2.center::after,
.page-head h1::after {
  content: "";
  display: block;
  width: 68px; height: 3px;
  margin: 1.1rem auto 0;
  background: var(--stripe);
  opacity: .85;
}
.page-head h1::after { margin-inline: 0; }

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

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,14,.93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--hairline);
}
.head-inner { display: flex; align-items: center; gap: 1rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  background: url("../img/logo.svg") center/contain no-repeat;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 1.3rem; color: var(--gold); letter-spacing: .1em;
  text-transform: uppercase; margin: 0;
}
.brand-sub {
  font-size: .58rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); margin-top: .32rem;
}

.nav-toggle {
  display: grid; gap: 5px; margin-left: auto;
  background: none; border: 0; padding: .55rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); transition: .22s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: none; }
.site-nav.open { display: block; }
.nav-list { list-style: none; margin: 0; padding: 0 0 1rem; }
.nav-list > li > a {
  display: block; padding: .8rem .2rem; color: var(--cream);
  text-decoration: none; font-size: .95rem;
  border-bottom: 1px solid rgba(244,241,232,.07);
}
.nav-list > li > a:hover { color: var(--gold); }
.sub { list-style: none; margin: 0; padding: 0 0 .5rem .9rem; }
.sub a { display: block; padding: .45rem 0; font-size: .88rem; color: var(--muted); text-decoration: none; }
.sub a:hover { color: var(--gold); }
.nav-phone a { font-family: var(--display); font-size: 1.15rem; color: var(--gold); text-decoration: none; }
.nav-cta { margin: .9rem 0 .4rem; }

/* The header Free Estimate button is the primary conversion target, so it is
   deliberately larger and louder than the surrounding nav links. */
.nav-cta .btn {
  padding: .95rem 1.75rem;
  font-size: .88rem;
  letter-spacing: .12em;
  box-shadow: 0 0 0 1px rgba(226,205,151,.35), 0 6px 18px rgba(0,0,0,.45);
}
.nav-cta .btn:hover { transform: translateY(-1px); }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .nav-list { display: flex; align-items: center; gap: 1.5rem; padding: 0; }
  .nav-list > li > a { border: 0; padding: .5rem 0; }
  .has-sub { position: relative; }
  .sub {
    position: absolute; top: 100%; left: -1rem; min-width: 236px;
    background: var(--charcoal); border: var(--hairline);
    padding: .55rem 0; opacity: 0; visibility: hidden;
    transform: translateY(6px); transition: .18s;
  }
  .sub a { padding: .55rem 1.1rem; }
  .has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
  .nav-cta { margin: 0; }
}

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.6rem;
  background: var(--gold); color: var(--black);
  font-family: var(--body); font-size: .87rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--gold); border-radius: var(--radius);
  cursor: pointer; transition: .18s;
}
.btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--black); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(201,169,97,.12); color: var(--gold-bright); }
.btn-sm { padding: .6rem 1.1rem; font-size: .78rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: .92rem; }
.btn-block { display: flex; width: 100%; margin-bottom: .6rem; }

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

.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 11vw, 8rem) 0 clamp(3rem, 8vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 15% 0%, rgba(92,132,173,.16), transparent 58%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--stripe); opacity: .9;
}
.hero-inner { position: relative; }
.hero h1 { max-width: 20ch; }
.hero .lede { margin-top: 1.4rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.center-actions { justify-content: center; }

.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.9rem;
  margin: 2.8rem 0 0; padding: 1.5rem 0 0; border-top: var(--hairline);
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.hero-trust li::before { content: "◆"; color: var(--gold); margin-right: .55rem; font-size: .6rem; }

/* -------------------------------------------------------------------- grids */

.grid-2, .grid-3, .grid-4 { display: grid; gap: var(--gap); }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

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

.card {
  background: var(--charcoal); border: var(--hairline);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: .22s;
}
.section.alt .card { background: var(--slate); }
.card:hover { border-color: rgba(201,169,97,.5); transform: translateY(-3px); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .55rem; }
.card-body h3 a { text-decoration: none; color: inherit; }
.card-body p { color: var(--muted); font-size: .96rem; }
.card-body .link-arrow { margin-top: auto; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: var(--gold); font-weight: 600;
}
.link-arrow::after { content: "→"; transition: transform .18s; }
.link-arrow:hover::after { transform: translateX(4px); }

.price { font-family: var(--display); font-size: 1.1rem; color: var(--gold-bright); margin: .4rem 0 1rem; }
.price span { font-family: var(--body); font-size: .78rem; color: var(--muted); letter-spacing: .04em; }

/* ----------------------------------------------------------- photo slots */

.photo-slot { margin: 0; background: var(--slate); position: relative; overflow: hidden; }
.photo-slot::before {
  content: ""; position: absolute; inset: 0;
  background: var(--stripe); opacity: .045;
}
.photo-slot-inner {
  position: absolute; inset: 10px;
  border: 1px dashed rgba(201,169,97,.35);
  display: grid; place-content: center; gap: .7rem; text-align: center; padding: 1rem;
}
.ps-icon {
  width: 30px; height: 30px; margin-inline: auto; border: 2px solid var(--gold-deep);
  border-radius: 2px; position: relative;
}
.ps-icon::after {
  content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-deep); top: 5px; left: 5px;
}
.ps-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }

/* --------------------------------------------------------- differentiators */

.diffs .diff { border-left: 2px solid var(--gold-deep); padding-left: 1.25rem; }
.diffs h3 { color: var(--cream); font-size: 1.18rem; }
.diffs p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------- why use us */

.why-list { margin-top: 2.75rem; border-top: var(--hairline); }
.why-item {
  display: grid; gap: .75rem 3rem;
  padding: 2.1rem 0;
  border-bottom: var(--hairline);
}
@media (min-width: 860px) {
  .why-item { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr); align-items: start; }
}
.why-item h3 { margin: 0; font-size: clamp(1.2rem, 2.1vw, 1.5rem); color: var(--gold-bright); }
.why-body p { margin: 0; color: color-mix(in srgb, var(--cream) 78%, transparent); }

/* ------------------------------------------------------ missing-copy slots */

.copy-slot {
  border: 1px dashed rgba(201,169,97,.4);
  border-radius: var(--radius);
  background: rgba(201,169,97,.05);
  padding: 1.2rem 1.4rem;
  margin: 0 0 1.2rem;
}
.cs-label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .35rem;
}
.cs-note { margin: 0; font-size: .92rem; color: var(--muted); font-style: italic; }

.owner-block > .eyebrow { margin-bottom: .5rem; }
.owner-block > h2:first-of-type { margin-top: 0; }

/* ------------------------------------------------------------------ compare */

.compare { display: grid; gap: var(--gap); margin-top: 2.5rem; }
@media (min-width: 780px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 1.7rem; border: var(--hairline); border-radius: var(--radius); background: var(--charcoal); }
.compare-col h3 { font-size: 1.1rem; padding-bottom: .9rem; border-bottom: var(--hairline); }
.compare-col ul { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.compare-col li { position: relative; padding-left: 1.7rem; margin-bottom: .8rem; font-size: .95rem; color: var(--muted); }
.compare-col li::before { position: absolute; left: 0; top: -1px; font-size: 1.05rem; }
.compare-col.bad { border-color: rgba(180,90,80,.3); }
.compare-col.bad h3 { color: #d99a90; }
.compare-col.bad li::before { content: "✕"; color: #c4756a; }
.compare-col.good { border-color: rgba(201,169,97,.45); }
.compare-col.good li::before { content: "✓"; color: var(--gold); }

/* -------------------------------------------------------------------- steps */

.steps { list-style: none; counter-reset: s; margin: 2.5rem 0 0; padding: 0; display: grid; gap: var(--gap); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; padding-top: 3.3rem; }
.step-n {
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; display: grid; place-content: center;
  border: 1px solid var(--gold-deep); border-radius: 50%;
  font-family: var(--display); font-size: 1.15rem; color: var(--gold);
}
.steps h3 { font-size: 1.1rem; color: var(--cream); }
.steps p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ----------------------------------------------------------- before / after */

.ba-grid { margin-top: 2rem; }
.ba figcaption { margin-top: .85rem; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); text-align: center; }
.ba-frame {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: var(--hairline); border-radius: var(--radius); background: var(--slate);
}
.ba-frame > div { position: absolute; inset: 0; display: grid; place-content: center; }
.ba-frame span {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem .8rem; border: 1px solid currentColor;
}
.ba-after { background: var(--slate); color: var(--gold); }
.ba-after::before, .ba-before::before {
  content: ""; position: absolute; inset: 0; background: var(--stripe); opacity: .05;
}
.ba-before { background: #101114; color: var(--muted); clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--gold); pointer-events: none;
}
.ba-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 34px; height: 34px; transform: translate(-50%, -50%);
  border: 2px solid var(--gold); border-radius: 50%; background: rgba(12,12,14,.75);
}
.ba-range { width: 100%; margin-top: .7rem; accent-color: var(--gold); }

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

.area-pills { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin: 1.6rem 0 0; padding: 0; }
.area-pills a {
  display: block; padding: .55rem 1.15rem; border: var(--hairline);
  border-radius: 999px; font-size: .85rem; text-decoration: none; color: var(--cream);
}
.area-pills a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,97,.08); }

.area-card { padding: 1.6rem; background: var(--charcoal); border: var(--hairline); border-radius: var(--radius); }
.area-card h3 a { text-decoration: none; }
.area-card p { color: var(--muted); font-size: .94rem; }

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

.faq { margin-top: 2rem; }
.faq details { border-bottom: var(--hairline); }
.faq summary {
  cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--display); font-size: 1.13rem; color: var(--cream); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-family: var(--body); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--gold); }
.faq details p { color: var(--muted); padding: 0 2rem 1.4rem 0; margin: 0; font-size: .98rem; }
.more { margin-top: 2rem; }

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

.band { padding: clamp(2.75rem, 6vw, 4.25rem) 0; background: var(--charcoal); border-block: var(--hairline); position: relative; }
.stripe-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--stripe); opacity: .9; }
.band-inner { display: grid; gap: 1.9rem; align-items: center; }
@media (min-width: 900px) { .band-inner { grid-template-columns: 1.4fr auto; gap: 3rem; } }
.band h2 { margin-bottom: .5rem; }
.band p { color: var(--muted); margin: 0; max-width: 52ch; }
.band-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

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

.page-head { padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); border-bottom: var(--hairline); background: var(--charcoal); }
.crumbs { font-size: .78rem; letter-spacing: .06em; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a { text-decoration: none; }
.crumbs span { margin: 0 .5rem; opacity: .5; }

/* -------------------------------------------------------------------- split */

.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 940px) { .split { grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); align-items: start; } }
.split-main h2 { margin-top: 2.4rem; }
.split-main h2:first-child { margin-top: 0; }
.split-side { display: grid; gap: 1.25rem; }
@media (min-width: 940px) { .split-side { position: sticky; top: 100px; } }

.side-card { padding: 1.6rem; background: var(--charcoal); border: var(--hairline); border-radius: var(--radius); }
.side-card.quiet { background: transparent; }
.side-card h3 { font-size: 1.08rem; margin-bottom: .6rem; }
.side-card p { color: var(--muted); font-size: .93rem; }
.mini-steps { color: var(--muted); font-size: .93rem; padding-left: 1.2rem; margin: 0; }
.mini-steps li { margin-bottom: .6rem; }

/* ------------------------------------------------------------------- lists */

.checks { list-style: none; margin: 1.2rem 0 1.8rem; padding: 0; }
.checks li { position: relative; padding-left: 1.85rem; margin-bottom: .85rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold); }

.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.1rem 0 1.9rem; padding: 0; }
.tags li {
  padding: .4rem .9rem; border: var(--hairline); border-radius: 999px;
  font-size: .82rem; color: var(--muted);
}

.plain { list-style: none; margin: 0; padding: 0; }
.plain li { margin-bottom: .55rem; }
.plain a { font-size: .92rem; text-decoration: none; color: var(--cream); }
.plain a:hover { color: var(--gold); }

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

.quote-form { margin-top: 1.5rem; }
.field { margin: 0 0 1.15rem; }
.field label, .field legend, fieldset legend {
  display: block; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem; padding: 0;
}
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

input[type=text], input[type=tel], input[type=email], select, textarea {
  width: 100%; padding: .8rem .95rem;
  background: var(--charcoal); color: var(--cream);
  border: 1px solid rgba(244,241,232,.16); border-radius: var(--radius);
  font-family: var(--body); font-size: 1rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: none; }
textarea { resize: vertical; }
::placeholder { color: rgba(154,150,137,.65); }

fieldset { border: 0; padding: 0; margin: 0 0 1.15rem; }
.check-grid { display: grid; gap: .6rem; }
@media (min-width: 560px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check { display: flex; align-items: center; gap: .6rem; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--gold); flex: none; }
.check span { font-size: .93rem; color: var(--cream); }

.field-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.8rem; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status { font-size: .92rem; margin-top: 1rem; min-height: 1.4em; }
.form-status.ok { color: var(--gold-bright); }
.form-status.err { color: #d99a90; }

.cal-embed { border: var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--charcoal); }
.cal-embed iframe { width: 100%; min-height: 640px; border: 0; display: block; }

.booking-pending { padding: 1.7rem; border: 1px dashed rgba(201,169,97,.4); border-radius: var(--radius); background: var(--charcoal); }
.bp-title { font-family: var(--display); font-size: 1.15rem; color: var(--gold-bright); margin-bottom: .5rem; }
.booking-pending p:last-child { margin: 0; color: var(--muted); }

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

.site-foot { background: var(--charcoal); border-top: var(--hairline); padding: clamp(2.75rem, 6vw, 4.25rem) 0 0; margin-top: 0; }
.foot-grid { display: grid; gap: 2.4rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1060px) { .foot-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }
.site-foot h3 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-family: var(--body); font-weight: 600; }
.foot-brand .brand-name { display: block; font-size: 1.5rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.foot-brand .brand-sub { display: block; font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }
.foot-story { color: var(--muted); font-size: .92rem; margin-top: 1.2rem; max-width: 40ch; }
.foot-phone a { font-family: var(--display); font-size: 1.35rem; text-decoration: none; }
.social { display: flex; gap: 1.1rem; }
.social a { font-size: .88rem; }
.hours { margin: 0; font-size: .87rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.hours dt { color: var(--cream); }
.hours dd { margin: 0; color: var(--muted); }

.foot-legal {
  margin-top: 3rem; padding: 1.5rem 0; border-top: var(--hairline);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
}
.foot-legal p { margin: 0; font-size: .8rem; color: var(--muted); }

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

/* Honeypot. Off-screen rather than display:none, because some bots skip
   display:none fields but still fill positioned ones. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Service areas as a plain sentence rather than a row of clickable pills. */
.area-line {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--gold-bright);
  line-height: 1.5;
  max-width: 34ch;
  margin-inline: auto;
}

/* Original mechanism diagram. Sits above the pressure-vs-soft comparison and
   carries the argument visually before the bullet lists spell it out. */
.mechanism {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 2.5rem;
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--black);
  padding: clamp(.5rem, 2vw, 1.25rem);
}

/* ------------------------------------------------------- photography */

/* Licensed atmosphere photos (Pexels, free commercial use). Real job photos
   replace these as they are shot. The before/after sliders stay empty until then. */
.photo {
  margin: 0;
  overflow: hidden;
  background: var(--slate);
  position: relative;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.02);
  transition: transform .5s ease;
}
.card:hover .photo img { transform: scale(1.035); }

/* Hero photograph sits behind the type, dark enough on the left that the gold
   headline keeps its contrast, opening up toward the right. */
.hero {
  background:
    linear-gradient(100deg,
      rgba(12,12,14,.94) 0%,
      rgba(12,12,14,.80) 34%,
      rgba(12,12,14,.42) 62%,
      rgba(12,12,14,.12) 100%),
    url("../img/photo/hero.webp") center 42% / cover no-repeat;
}
@media (max-width: 780px) {
  /* On a phone the copy spans the full width, so darken the whole frame. */
  .hero {
    background:
      linear-gradient(180deg, rgba(12,12,14,.88) 0%, rgba(12,12,14,.80) 55%, rgba(12,12,14,.93) 100%),
      url("../img/photo/hero.webp") center 35% / cover no-repeat;
  }
}

/* Ghost buttons in the hero sit over photography, so they need their own
   ground. Without this the gold type disappears against pale siding. */
.hero .btn-ghost {
  background: rgba(12, 12, 14, .62);
  backdrop-filter: blur(3px);
  border-color: rgba(201, 169, 97, .75);
}
.hero .btn-ghost:hover {
  background: rgba(12, 12, 14, .8);
  border-color: var(--gold-bright);
}
/* Same problem for the trust line under the buttons. */
.hero-trust { text-shadow: 0 1px 6px rgba(12, 12, 14, .9); }
