/* ==========================================================================
   4T Improvements LLC — Mineral Wells, TX
   Palette and type drawn from the business card:
   ivory field, black ink, copper/gold foil, chevron motif.
   ========================================================================== */

:root {
  --ivory:   #FBF8F2;
  --paper:   #FFFFFF;
  --wash:    #F3EADA;
  --ink:     #17130D;
  --ink-2:   #4E463A;
  --copper:  #B4701D;
  --gold:    #E7B268;
  --bronze:  #7C4E0F;
  --hairline: rgba(124, 78, 15, .28);
  --hairline-soft: rgba(124, 78, 15, .16);
  --shadow: 0 24px 60px rgba(23, 19, 13, .16), 0 4px 14px rgba(23, 19, 13, .08);
  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; }

#services, #work, #about, #area, #faq, #contact { scroll-margin-top: 72px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--copper); }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: .6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- shared type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .01em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.4rem;
}
.eyebrow .rule {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: var(--copper);
  transform-origin: left center;
}

.sec { padding: 7rem max(5vw, 1.5rem); }
.sec-inner { max-width: 1180px; margin: 0 auto; }

.sec-head { max-width: 680px; margin-bottom: 3.5rem; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; text-wrap: balance; }
.sec-note { color: var(--ink-2); max-width: 56ch; }

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

.btn {
  position: relative;
  display: inline-block;
  padding: .95rem 1.9rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: var(--copper);
  color: var(--ivory);
  border: 1px solid var(--copper);
}
.btn-solid:hover { background: var(--bronze); border-color: var(--bronze); }
.btn-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .38) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease-out);
}
.btn-solid:hover::after { transform: translateX(130%); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { color: var(--copper); border-color: var(--copper); }

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

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: .9rem max(5vw, 1.5rem);
  background: var(--ivory);
  transition: background-color .35s, box-shadow .35s, padding .35s;
}
.site-head.scrolled {
  background: rgba(251, 248, 242, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--hairline-soft);
  padding-top: .6rem;
  padding-bottom: .6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  display: inline-block;
  width: 39px;
  height: 40px;
  background-image: url("assets/logo-4t.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name small {
  font-size: .62em;
  letter-spacing: .18em;
  color: var(--copper);
}

.head-nav { display: flex; gap: 1.8rem; }
.head-nav a {
  position: relative;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--ink-2);
  padding: .2rem 0;
}
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transition: right .3s var(--ease-out);
}
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after { right: 0; }

.head-call { padding: .6rem 1.2rem; font-size: .88rem; }

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem max(5vw, 1.5rem) 5rem;
}

.hero-chevrons {
  position: absolute;
  top: 74px;
  right: 0;
  bottom: 0;
  width: min(42vw, 580px);
  pointer-events: none;
}
.hero-chevrons svg { width: 100%; height: 100%; }
.chev {
  transform: translateX(18%);
  opacity: 0;
  transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out);
}
body.loaded .chev { transform: translateX(0); opacity: 1; }
body.loaded .chev-2 { transition-delay: .12s; }
body.loaded .chev-3 { transition-delay: .24s; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  gap: 3rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.3rem);
  margin-bottom: 1.6rem;
}
.h1-line { display: block; overflow: hidden; }
.h1-inner { display: inline-block; }

.lede {
  font-size: 1.13rem;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }

.hero-note {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* load-in choreography (initial hidden states only when JS is running) */
.load { transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.js .load-1 { opacity: 0; }
html.js .load-1 .rule { transform: scaleX(0); transition: transform .9s var(--ease-out) .25s; }
html.js .load-2, html.js .load-3 { transform: translateY(110%); }
html.js .load-4, html.js .load-5, html.js .load-6 { opacity: 0; transform: translateY(22px); }
html.js .load-card { opacity: 0; transform: translateY(34px); transition-duration: 1.1s; }

body.loaded .load-1 { opacity: 1; }
body.loaded .load-1 .rule { transform: scaleX(1); }
body.loaded .load-2 { transform: none; transition-delay: .15s; }
body.loaded .load-3 { transform: none; transition-delay: .27s; }
body.loaded .load-4 { opacity: 1; transform: none; transition-delay: .45s; }
body.loaded .load-5 { opacity: 1; transform: none; transition-delay: .58s; }
body.loaded .load-6 { opacity: 1; transform: none; transition-delay: .7s; }
body.loaded .load-card { opacity: 1; transform: none; transition-delay: .35s; }

/* the business card, unfolded */

.hero-card-wrap { perspective: 1200px; justify-self: center; }

.card-float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.biz-card {
  position: relative;
  width: min(430px, 82vw);
  aspect-ratio: 7 / 4;
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid rgba(124, 78, 15, .12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .18s ease-out;
}

.biz-card-body {
  position: absolute;
  inset: 0 20% 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.biz-mark { height: 21%; width: auto; margin-bottom: 2%; }
.biz-name {
  font-family: var(--font-display);
  font-size: clamp(.85rem, 2.4vw, 1.05rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.biz-town {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: clamp(.55rem, 1.6vw, .66rem);
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 2% 0 4%;
}
.biz-town .rule { width: 1.4rem; height: 1px; background: var(--copper); }
.biz-owner {
  font-size: clamp(.8rem, 2.2vw, .98rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
}
.biz-role {
  font-size: clamp(.52rem, 1.5vw, .62rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4%;
}
.biz-contact {
  display: flex;
  flex-direction: column;
  gap: .3em;
  font-size: clamp(.6rem, 1.8vw, .74rem);
  font-weight: 500;
}
.biz-contact span { display: flex; align-items: center; gap: .45em; }
.biz-contact .dot {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: var(--copper);
  color: var(--paper);
  font-size: .8em;
}

.biz-chev {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 17%;
}

.sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, .55) 50%, transparent 62%);
  background-size: 300% 100%;
  background-position: var(--mx, 130%) 0;
  transition: background-position .3s ease-out;
}
body.loaded .sheen { animation: firstsheen 1.6s var(--ease-out) 1.1s backwards; }
@keyframes firstsheen {
  from { background-position: -30% 0; }
  to   { background-position: 130% 0; }
}

/* ---------- ticker ---------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  background: var(--paper);
  padding: .95rem 0;
}
.ticker-track { display: flex; width: max-content; animation: tick 46s linear infinite; }
@keyframes tick { to { transform: translateX(-50%); } }

.ticker-list { display: flex; list-style: none; }
.ticker-list li {
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-right: 3.2rem;
  position: relative;
}
.ticker-list li::after {
  content: "\276F";
  position: absolute;
  right: 1.25rem;
  color: var(--copper);
}

/* ---------- scroll reveals ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-out) var(--d, 0ms), transform .85s var(--ease-out) var(--d, 0ms);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- services ---------- */

.services { background: var(--ivory); }

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4.5rem;
}
.svc {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.2rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
}
.svc-text h3 { font-size: 1.42rem; margin-bottom: .35rem; transition: color .3s; }
.svc-text p { color: var(--ink-2); font-size: .97rem; max-width: 40ch; }
.svc:hover .svc-text h3 { color: var(--copper); }

.svc-chev {
  align-self: center;
  color: var(--copper);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.svc:hover .svc-chev { opacity: 1; transform: none; }

/* self-drawing check circles (the card's checklist, animated) */
.check svg {
  width: 46px;
  height: 46px;
  transform: rotate(-90deg);
}
.check circle,
.check path {
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check circle {
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset .8s var(--ease-out) calc(var(--d, 0ms) + 150ms);
}
.check path {
  transform: rotate(90deg);
  transform-origin: center;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset .45s var(--ease-out) calc(var(--d, 0ms) + 750ms);
}
html:not(.js) .check circle,
html:not(.js) .check path,
.svc.in .check circle,
.svc.in .check path { stroke-dashoffset: 0; }

/* ---------- work / gallery ---------- */

.work {
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

/* before / after sliders */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
}
.ba { margin: 0; }

/* an odd last slider sits centered on its own row */
.ba:nth-child(odd):last-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.ba-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--hairline);
  background: var(--wash);
  box-shadow: 0 14px 34px rgba(23, 19, 13, .09);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: linear-gradient(180deg, var(--gold), var(--copper), var(--bronze));
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--ivory);
  border: 2px solid rgba(255, 255, 255, .85);
  box-shadow: 0 4px 14px rgba(23, 19, 13, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .05em;
  animation: handle-pulse 2.4s ease-out infinite;
}
@keyframes handle-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(23, 19, 13, .35), 0 0 0 0 rgba(180, 112, 29, .5); }
  55%      { box-shadow: 0 4px 14px rgba(23, 19, 13, .35), 0 0 0 14px rgba(180, 112, 29, 0); }
}
.ba-frame.touched .ba-handle { animation: none; }

.ba-chip {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .5em 1em;
  border-radius: 3px;
  pointer-events: none;
}
.ba-chip-before { left: 14px; background: rgba(23, 19, 13, .82); color: var(--ivory); }
.ba-chip-after { right: 14px; background: var(--copper); color: var(--ivory); }

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}
.ba-frame:has(.ba-range:focus-visible) {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.ba figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .9rem .2rem 0;
}

.frame { margin: 0; }
.frame-img {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 10px;
  box-shadow: 0 14px 34px rgba(23, 19, 13, .09);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.frame:hover .frame-img {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(23, 19, 13, .14);
}
.frame-img svg { width: 100%; height: auto; display: block; }

.ph-big {
  font-family: var(--font-display);
  font-size: 34px;
  fill: var(--bronze);
  opacity: .75;
}
.ph-small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  fill: var(--copper);
}
.ph-mono {
  font-family: var(--font-display);
  font-size: 130px;
  fill: var(--copper);
  opacity: .35;
}

.frame figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .9rem .2rem 0;
}
.cap-title { font-family: var(--font-display); font-size: 1.1rem; }
.cap-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}
.portrait { max-width: 520px; }
.portrait .frame-img img { display: block; width: 100%; height: auto; }

.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-2); margin-bottom: 1.1rem; max-width: 54ch; }

.points { list-style: none; margin: 1.6rem 0 2.2rem; }
.points li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .55rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--hairline-soft);
}
.pt-chev { color: var(--copper); font-size: .85em; }

/* ---------- service area ---------- */

.area { background: var(--wash); }

.towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.towns li {
  padding: .55rem 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  background: transparent;
  transition: background-color .3s, border-color .3s, color .3s, transform .3s var(--ease-out);
}
.towns li:hover { transform: translateY(-3px); border-color: var(--copper); }
.towns .town-home {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
  letter-spacing: .04em;
}

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

.faq {
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}
.faq-list { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--hairline-soft); }
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  list-style: none;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "\276F";
  color: var(--copper);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq summary:hover { color: var(--copper); }
.faq details[open] summary::after { transform: rotate(90deg); }
.faq details p {
  color: var(--ink-2);
  max-width: 62ch;
  padding-bottom: 1.3rem;
}

/* ---------- contact ---------- */

.contact {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.contact-chev {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(50vw, 700px);
  pointer-events: none;
}
.contact-chev svg { width: 100%; height: 100%; }

.contact-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow-gold { color: var(--gold); justify-content: center; }
.eyebrow-gold .rule { background: var(--gold); }

.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 2.2rem;
  color: var(--ivory);
}

.foil-phone {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8.5vw, 5.4rem);
  line-height: 1.1;
  text-decoration: none;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .foil-phone {
    background: linear-gradient(100deg, #8A5A14 0%, #E7B268 32%, #F8E3B4 50%, #E7B268 68%, #8A5A14 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: foil 7s ease-in-out infinite alternate;
  }
}
@keyframes foil {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.foil-phone:hover { animation-duration: 2.5s; }

.contact-alt { color: rgba(251, 248, 242, .82); margin-bottom: .5rem; }
.contact-alt a { color: var(--gold); text-underline-offset: 3px; }
.contact-alt a:hover { color: #F8E3B4; }

.contact-sig {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, .5);
  margin-top: 1.4rem;
}

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

.site-foot {
  background: var(--ink);
  color: rgba(251, 248, 242, .72);
  border-top: 1px solid rgba(231, 178, 104, .18);
  padding: 2.4rem max(5vw, 1.5rem) 2rem;
}
.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.foot-brand {
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-right: auto;
}
.foot-mark { color: var(--gold); font-size: 1.25em; }
.foot-nav { display: flex; gap: 1.6rem; }
.foot-nav a {
  color: rgba(251, 248, 242, .72);
  text-decoration: none;
  font-size: .88rem;
}
.foot-nav a:hover { color: var(--gold); }
.foot-town { font-size: .88rem; }
.foot-legal {
  max-width: 1180px;
  margin: 1.6rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(251, 248, 242, .08);
  font-size: .78rem;
  color: rgba(251, 248, 242, .4);
}

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

.mobile-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: .95rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  background: var(--copper);
  color: var(--ivory);
  box-shadow: 0 -6px 20px rgba(23, 19, 13, .18);
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero { padding-top: 8.5rem; min-height: 0; }
  .hero-chevrons { width: 70vw; opacity: .35; }
  .svc-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ba-grid { gap: 2rem; }
  .head-nav { display: none; }
}

@media (max-width: 720px) {
  .sec { padding-top: 5rem; padding-bottom: 5rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .head-call { display: none; }
  .mobile-call { display: block; }
  body { padding-bottom: 3.4rem; }
  .brand-name { font-size: .92rem; }
  .cta-row .btn { width: 100%; text-align: center; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load, .load-1 .rule, .load-2, .load-3, .load-4, .load-5, .load-6, .load-card,
  .chev, html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .card-float, .ticker-track, .foil-phone, .ba-handle { animation: none !important; }
  body.loaded .sheen { animation: none; }
  .check circle, .check path { stroke-dashoffset: 0 !important; transition: none !important; }
  .biz-card { transform: none !important; }
}
