@import url("../assets/fonts/fonts.css");

/* ==========================================================================
   Mark Allen Builders, v3
   Palette sampled from his own MA gable monogram.
   Dial settings: variance 6, motion 3, density 4. Below baseline on purpose:
   the visitor is one to three months into an insurance claim and stressed,
   and every competitor in this category shouts. Calm is the differentiator.
   ========================================================================== */

:root {
  --paper:  #EAE9E5;
  --card:   #F6F5F2;
  --ink:    #0F100F;
  --text:   #272827;
  --muted:  #4F504A;
  --accent: #3D2E6B;
  --accent-lt: #A99CD6;
  --hair:   #CFCEC8;
  --field:  #FFFFFF;

  /* Inverse fields are a DESIGN CHOICE, not a theme. They must stay dark in
     both colour schemes, so they get their own tokens rather than reusing
     --ink, which flips. Reusing --ink here shipped light-on-light once. */
  --on-dark:      #EAE9E5;
  --on-dark-mut:  #ADADA6;
  --on-dark-soft: #D6D5D0;
  --dark-field:   #0F100F;
  --dark-field-2: #141513;

  --disp: "Libre Baskerville", Georgia, serif;
  --sans: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* macro-micro scale. The gap between these is the point: template sites
     put everything between 16 and 48px, which is what reads as corporate. */
  --t-hero:  clamp(2.15rem, 4.6vw, 3.5rem);
  --t-lg:    clamp(2rem, 4vw, 3.25rem);
  --t-md:    clamp(1.7rem, 3.1vw, 2.6rem);
  --t-beat:  clamp(1.3rem, 2.1vw, 1.8rem);
  --t-num:   clamp(3.25rem, 6.6vw, 5.5rem);
  --t-body:  1.0625rem;

  --pad: clamp(1.25rem, 4.4vw, 4rem);
  --edge: max(var(--pad), calc((100vw - 1312px) / 2 + var(--pad)));
  --sec: clamp(3.75rem, 7vw, 5.75rem);
  --grain: .05;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1D1E1B; --card: #26271F; --ink: #EAE9E5; --text: #DCDBD6;
    --muted: #A3A39C; --accent: #A99CD6; --accent-lt: #C4BAE6;
    --hair: #3A3B33; --field: #101110; --grain: .03;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font: 400 var(--t-body)/1.65 var(--sans); overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--disp); font-weight: 700; color: var(--ink); margin: 0; }
p { margin: 0; }
a { color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent-lt); outline-offset: 3px; }

/* Grain. Stops the page reading as glass. Fixed + pointer-events:none so it
   never repaints on scroll. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: var(--grain); mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) { body::after { mix-blend-mode: screen; } }

.wrap { max-width: 1312px; margin: 0 auto; padding-inline: var(--pad); }
.sec { padding-block: var(--sec); }
.sec--paper { background: var(--paper); }
.sec--card  { background: var(--card); }
.sec--dark  { background: var(--dark-field); color: var(--on-dark-soft); }
.sec--dark h2, .sec--dark h1 { color: var(--on-dark); }

.skip { position: absolute; left: -9999px; background: #0F100F; color: #EAE9E5; padding: .75rem 1rem; z-index: 70; }
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- micro type. the counterweight to the display sizes ---------- */
.micro {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; line-height: 1.6; color: var(--accent);
}
.micro--dark { color: var(--accent-lt); }
.micro--mut  { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 1rem 1.75rem;
  border: 1px solid transparent; border-radius: 0;
  font: 600 1rem/1 var(--sans); text-decoration: none; white-space: nowrap;
  cursor: pointer; transition: transform .25s cubic-bezier(.25,1,.5,1), opacity .25s;
}
.btn--primary { background: var(--accent); color: #fff; }
@media (prefers-color-scheme: dark) { .btn--primary { color: #14150F; } }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--on-dark { background: transparent; color: #EAE9E5; border-color: #EAE9E5; }
.btn--on-dark:hover { background: #EAE9E5; color: #0F100F; }
.btn--light { background: #EAE9E5; color: #0F100F; }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: .75rem 1.15rem; font-size: .9rem; }
.btn:hover { opacity: .92; }
.btn:active { transform: translateY(1px); }

/* ---------- masthead. transparent over the hero, solid elsewhere ---------- */
.mast { background: var(--paper); border-bottom: 1px solid var(--hair); position: relative; z-index: 5; }
.mast--over { background: transparent; border-bottom: 0; position: absolute; inset: 0 0 auto; }
.mast__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 92px; }
.mast__brand img { width: clamp(76px, 6.4vw, 96px); }
@media (prefers-color-scheme: dark) { .mast:not(.mast--over) .mast__brand img { filter: invert(1); } }
.mast__nav { display: flex; align-items: center; gap: clamp(1rem, 1.9vw, 1.9rem); }
.mast__nav a:not(.btn) {
  font-size: .95rem; font-weight: 500; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.mast--over .mast__nav a:not(.btn) { color: #EAE9E5; }
.mast__nav a:not(.btn):hover { color: var(--accent); }
.mast--over .mast__nav a:not(.btn):hover { color: #fff; }
@media (max-width: 1040px) { .mast__nav a:not(.btn) { display: none; } }
/* the sticky call bar owns calling on phones. three identical buttons in one
   view is the thing he flagged on v1. */
@media (max-width: 767px) { .mast__nav .btn { display: none; } .mast__in { min-height: 76px; } }

/* ---------- immersive hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--dark-field); isolation: isolate; }
.hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,15,.85) 0%, rgba(15,16,15,.54) 42%, rgba(15,16,15,.78) 100%),
    linear-gradient(90deg, rgba(15,16,15,.82) 0%, rgba(15,16,15,.62) 50%, rgba(15,16,15,.2) 100%);
}
.hero__in { position: relative; z-index: 2; }
.hero--home .hero__in { min-height: min(88dvh, 760px); display: flex; flex-direction: column; justify-content: flex-end; padding-block: 8rem clamp(3rem, 6vw, 5rem); }
.hero--page .hero__in { min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; padding-block: 9rem clamp(2.5rem, 5vw, 4rem); }
.hero h1 { font-size: var(--t-hero); line-height: 1.14; letter-spacing: -.03em; color: #fff; max-width: 34ch; text-wrap: balance; }
.hero--page h1 { max-width: 18ch; }
.hero__sub { margin-top: 1.35rem; max-width: 52ch; font-size: clamp(1.02rem, 1.4vw, 1.19rem); line-height: 1.62; color: var(--on-dark-soft); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2.25rem; }
.hero .micro { margin-bottom: 1.25rem; }
@media (max-width: 560px) { .hero__ctas .btn { width: 100%; } }

/* ---------- S2 the estimate gap. beats, not paragraphs ---------- */
.gap { border-top: 3px solid var(--accent); }
.gap__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; padding-top: 2.5rem; }
.gap h2 { font-size: var(--t-md); line-height: 1.16; letter-spacing: -.028em; }
.gap__badge { display: inline-block; margin-top: 2rem; border: 1px solid var(--accent); padding: .7rem 1rem; }
.beat { font-family: var(--disp); font-weight: 700; font-size: var(--t-beat); line-height: 1.44; letter-spacing: -.012em; color: var(--ink); }
.beat + .beat { margin-top: 2.25rem; }
.beat--key { color: var(--accent); }
@media (max-width: 860px) { .gap__grid { grid-template-columns: 1fr; } }

/* ---------- S3 right to choose. macro-micro inversion ---------- */
.choose__q { max-width: 46ch; }
.choose h2 { font-size: var(--t-lg); line-height: 1.14; letter-spacing: -.03em; margin-top: 1.5rem; max-width: 20ch; }
.choose__sub { margin-top: 1.15rem; color: var(--on-dark-soft); max-width: 54ch; }

/* ---------- S4 process index ---------- */
.runs { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.runs h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; }
.runs__sub { margin-top: 1.1rem; color: var(--muted); }
.runs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem 2.75rem; }
.step { border-top: 2px solid var(--accent); padding-top: 1.15rem; }
.step h3 { font-family: var(--sans); font-size: .95rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); }
.step p { margin-top: .65rem; font-size: .97rem; line-height: 1.62; color: var(--muted); }
@media (max-width: 900px) { .runs { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .runs__grid { grid-template-columns: 1fr; } }

/* ---------- S5 full bleed strip. breaks the margin rhythm on purpose ---------- */
.bleed h2 { font-size: var(--t-lg); line-height: 1.14; letter-spacing: -.03em; }
.bleed__sub { margin-top: 1.1rem; max-width: 52ch; font-size: 1.09rem; color: var(--text); }
.bleed__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2.75rem; }
.bleed__strip img { width: 100%; height: clamp(240px, 29vw, 420px); object-fit: cover; }
.bleed__cap { margin-top: 1rem; padding-inline: 1.25rem; font-family: var(--disp); font-weight: 700; font-size: 1.05rem; line-height: 1.36; color: var(--ink); }
@media (max-width: 860px) { .bleed__strip { grid-template-columns: 1fr; gap: 1px; } .bleed__cap { padding-inline: var(--pad); } }

/* ---------- S6 category grid ---------- */
.cats h2 { font-size: var(--t-lg); line-height: 1.14; letter-spacing: -.03em; }
.cats__sub { margin-top: 1.1rem; max-width: 52ch; font-size: 1.09rem; }
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.4vw, 2.15rem); margin-top: 2.9rem; }
.cat img { width: 100%; height: clamp(260px, 27vw, 400px); object-fit: cover; }
.cat h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: .02em; margin-top: 1.15rem; }
.cat a { display: inline-flex; align-items: center; min-height: 44px; margin-top: .35rem; font-size: .9rem; font-weight: 600; color: var(--accent); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 980px) { .cats__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .cats__grid { grid-template-columns: 1fr; } }

/* ---------- S7 what we don't do ---------- */
.nots { display: grid; grid-template-columns: minmax(0, 4.5fr) minmax(0, 7.5fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.nots h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; }
.nots__sub { margin-top: 1.1rem; color: var(--muted); }
.not { border-top: 1px solid var(--hair); padding-top: 1.35rem; }
.not + .not { margin-top: 1.75rem; }
.not h3 { font-family: var(--sans); font-size: 1.06rem; font-weight: 700; color: var(--ink); }
.not p { margin-top: .6rem; line-height: 1.68; }
@media (max-width: 860px) { .nots { grid-template-columns: 1fr; } }

/* ---------- S8 numerals. the macro moment ---------- */
.about h2 { font-size: var(--t-lg); line-height: 1.12; letter-spacing: -.032em; max-width: 22ch; }
.nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.num { border-top: 2px solid var(--accent); padding-top: 1.35rem; }
.num__n { font-family: var(--disp); font-weight: 700; font-size: var(--t-num); line-height: 1; letter-spacing: -.045em; color: var(--ink); }
.num__l { margin-top: .75rem; }
.about__body { margin-top: 2.5rem; max-width: 58ch; font-size: 1.09rem; line-height: 1.66; }
.about__link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 1.25rem; font-size: .95rem; font-weight: 600; color: var(--accent); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 700px) { .nums { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- S9 accordion. all the depth lives here, closed by default ---------- */
.faq { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; }
.faq__sub { margin-top: 1.1rem; color: var(--muted); }
.qa { border-top: 1px solid var(--hair); }
.qa:last-of-type { border-bottom: 1px solid var(--hair); }
.qa > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding-block: 1.35rem; cursor: pointer; list-style: none;
  font-size: 1.06rem; font-weight: 600; line-height: 1.5; color: var(--ink);
  min-height: 44px;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--accent); }
.qa__mark { position: relative; width: 16px; height: 16px; flex: none; }
.qa__mark::before, .qa__mark::after { content: ""; position: absolute; background: var(--accent); }
.qa__mark::before { inset-inline: 0; top: 7px; height: 2px; }
.qa__mark::after { inset-block: 0; left: 7px; width: 2px; transition: transform .25s cubic-bezier(.25,1,.5,1); }
.qa[open] .qa__mark::after { transform: scaleY(0); }
.qa__a { margin: 0 0 1.35rem; max-width: 62ch; line-height: 1.7; color: var(--text); }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }

/* ---------- closer ---------- */
.closer { position: relative; overflow: hidden; background: var(--dark-field); }
.closer__media { position: absolute; inset: 0; background: url("../assets/img/home-dusk.jpg") center/cover; }
.closer__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,16,15,.95) 0%, rgba(15,16,15,.84) 46%, rgba(15,16,15,.34) 100%); }
.closer__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.closer h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; color: #fff; max-width: 18ch; }
.closer__p { margin-top: 1.15rem; color: var(--on-dark-soft); max-width: 44ch; }
.closer .btn { margin-top: 1.85rem; }
@media (max-width: 900px) {
  .closer__grid { grid-template-columns: 1fr; }
  .closer__scrim { background: linear-gradient(180deg, rgba(15,16,15,.9) 0%, rgba(15,16,15,.86) 50%, rgba(15,16,15,.94) 100%); }
}

/* ---------- form ---------- */
.form { background: var(--card); border: 1px solid var(--hair); padding: clamp(1.4rem, 2.6vw, 2.15rem); }
.form__title { font-family: var(--disp); font-weight: 700; font-size: 1.22rem; color: var(--ink); }
.form__intro { margin-top: .5rem; font-size: .95rem; color: var(--muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field + .field, .form__row + .field { margin-top: 1.25rem; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.field input, .field textarea {
  width: 100%; padding: .8rem .85rem; border: 1px solid var(--hair); border-radius: 0;
  background: var(--field); color: var(--text); font: 400 1rem/1.5 var(--sans);
}
.field textarea { min-height: 92px; resize: vertical; }
.help { margin-top: .4rem; font-size: .875rem; color: var(--muted); }
.err { margin-top: .4rem; font-size: .875rem; color: var(--accent); font-weight: 600; display: none; }
.field.is-bad input, .field.is-bad textarea { border-color: var(--accent); border-width: 2px; }
.field.is-bad .err { display: block; }
.form .btn { margin-top: 1.5rem; }
.form__note { margin-top: .85rem; font-size: .875rem; color: var(--muted); text-align: center; }

/* ---------- page CTA band ---------- */
.cta { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta h2 { font-size: var(--t-md); line-height: 1.18; letter-spacing: -.028em; }
.cta p { margin-top: 1rem; max-width: 48ch; }
.cta__btns { display: flex; gap: .875rem; flex-wrap: wrap; }

/* ---------- page service list ---------- */
.plist { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.plist h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; }
.pitem { border-top: 1px solid var(--hair); padding-top: 1.35rem; display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 2.75rem; }
.pitem + .pitem { margin-top: 1.75rem; }
.pitem h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); }
.pitem p { line-height: 1.68; }
@media (max-width: 900px) { .plist { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .pitem { grid-template-columns: 1fr; gap: .6rem; } }

/* ---------- xactimate strip ---------- */
.xact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.xact h2 { font-size: var(--t-md); line-height: 1.18; letter-spacing: -.028em; }
.xact__badge { display: inline-block; margin-top: 1.6rem; border: 1px solid var(--accent-lt); padding: .7rem 1rem; }
@media (max-width: 860px) { .xact { grid-template-columns: 1fr; } }

/* ---------- about page ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: stretch; background: var(--card); }
.split__img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.split__copy { padding: clamp(2.75rem, 5.5vw, 5rem) var(--edge) clamp(2.75rem, 5.5vw, 5rem) clamp(1.5rem, 4vw, 4.25rem); align-self: center; }
.split__copy h2 { font-size: var(--t-md); line-height: 1.2; letter-spacing: -.028em; }
.split__copy p { margin-top: 1.25rem; max-width: 52ch; line-height: 1.7; }
.split__tag { margin-top: 1.75rem; font-family: var(--disp); font-weight: 700; font-size: 1.15rem; color: var(--accent); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__img { height: auto; min-height: 0; aspect-ratio: 4/3; } .split__copy { padding-inline: var(--pad); } }

/* ---------- contact page ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.side h2 { font-family: var(--disp); font-size: 1.5rem; line-height: 1.3; }
.side__phone { display: inline-block; margin-top: .75rem; font-family: var(--disp); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.6rem); color: var(--accent); text-decoration: none; letter-spacing: -.03em; }
.side__rule { height: 1px; background: var(--hair); margin-block: 2rem; }
.side ol { margin: 1rem 0 0; padding: 0; list-style: none; counter-reset: n; }
.side ol li { counter-increment: n; padding-left: 2.2rem; position: relative; line-height: 1.6; }
.side ol li + li { margin-top: 1rem; }
.side ol li::before { content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: .1rem; font-family: var(--disp); font-weight: 700; font-size: .85rem; color: var(--accent); letter-spacing: .06em; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.foot { background: var(--dark-field-2); color: var(--on-dark-mut); padding-block: 3.5rem 2.5rem; }
.foot a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.foot a:hover { color: #fff; }
.foot__row { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
.foot__brand { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; color: var(--on-dark); }
.foot__tag { margin-top: .5rem; color: var(--accent-lt); font-size: .95rem; }
.foot__phone { font-family: var(--disp); font-weight: 700; font-size: 1.5rem; color: var(--on-dark); letter-spacing: -.02em; }
.foot h3 { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); margin-bottom: .35rem; }
.foot ul { margin: 0; padding: 0; list-style: none; font-size: .92rem; }
.foot__rule { height: 1px; background: #33342E; margin-block: 2.5rem 1.5rem; }
.foot__bot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .875rem; }
@media (max-width: 860px) { .foot__row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__row { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 767px) {
  .callbar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: var(--accent); color: #fff; text-align: center;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    font-weight: 600; text-decoration: none;
  }
  body { padding-bottom: 4.25rem; }
}
@media (prefers-color-scheme: dark) { .callbar { color: #14150F; } }

/* ---------- motion. dial is 3, so: entrance only, and it obeys the OS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.25,1,.5,1), transform .7s cubic-bezier(.25,1,.5,1); }
  .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
