/* ============================================================
   YUIILWATCH — Yuill, A Watch Company LLC
   Watchmaker Bench theme · DARK
   ============================================================ */

:root {
  --bench: #14120F;        /* watchmaker-bench body */
  --walnut: #1D1915;       /* raised panels */
  --loupe: #262119;        /* deeper panels */
  --deeper: #0E0C09;       /* footer deeper bench */
  --brass: #C89B4B;        /* brass-gear accent */
  --dial: #F6F1E4;         /* dial-cream headlines */
  --regulator: #F1EDE4;    /* pale regulator text */
  --lume: #B8E6C9;         /* lume-mint secondary */
  --rivet: #8A5B3C;        /* strap leather brown */
  --night: #2A3A4C;        /* night-blue moonphase */
  --steel: #A9B2B8;        /* movement-steel body text */
  --hairline: #332C22;     /* thin separators */
  --body: #CFC8BA;         /* readable body text */
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bench);
  color: var(--steel);
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.gear-noscroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.2;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   GEAR STRIP (top of nav)
   ============================================================ */
.gear-strip {
  height: 16px;
  width: 100%;
  overflow: hidden;
  background-color: var(--walnut);
  border-bottom: 1px solid var(--hairline);
}

.gear-strip .strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 12px;
}

.gear-unit {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
}

.gear, .gear.teeth-small {
  position: relative;
  width: 34px;
  height: 34px;
  margin-top: -9px;
}

.ruby-jewel {
  width: 7px;
  height: 7px;
  background-color: #D64B4B;
  border-radius: 50%;
}

/* ============================================================
   GEAR-TRAIN NAV
   ============================================================ */
.geartrain-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--walnut);
  border-bottom: 1px solid var(--hairline);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.balance-glyph {
  width: 26px;
  height: 26px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.balance-glyph::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
}

.balance-glyph::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background-color: var(--brass);
}

.brand a {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dial);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand a .brand-brass {
  color: var(--brass);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--lume);
  margin-right: 22px;
}

.nav-links a {
  position: relative;
  color: var(--steel);
  padding: 2px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brass);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--brass);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dial);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--brass);
  margin: 5px 0;
}

/* ============================================================
   WATCHMAKER BENCH HERO
   ============================================================ */
.movement-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 60px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-left {
  flex: 1 1 55%;
}

.eyebrow-chip {
  display: inline-block;
  background-color: var(--brass);
  color: var(--walnut);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  margin-bottom: 22px;
}

.hero-left h1 {
  color: var(--dial);
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-left h1 .brass {
  color: var(--brass);
}

.hero-left p.subcopy {
  color: var(--steel);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  font-family: Georgia, "Times New Roman", serif;
}

.btn-primary {
  background-color: var(--brass);
  color: var(--walnut);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #dcaa5c;
  color: #0d0b09;
}

.btn-ghost {
  background-color: transparent;
  color: var(--lume);
  border: 1px solid var(--lume);
}

.btn-ghost:hover {
  background-color: #232D24;
}

.btn-legal {
  display: inline-block;
  background-color: var(--brass);
  color: #141210;
  padding: 12px 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
}

.hero-right {
  flex: 0 1 45%;
  display: flex;
  justify-content: center;
}

/* ============================================================
   CSS MOVEMENT PLATE
   Pure-CSS drawing of a watch movement on the bench
   ============================================================ */
.bench-world {
  position: relative;
  width: 420px;
  height: 460px;
}

.movement-plate {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #6d5a33, var(--loupe) 70%);
  border: 14px solid #8a7a4f;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.plate-inner {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: var(--walnut);
  overflow: hidden;
}

/* mainspring barrel */
.mainspring-barrel {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--brass);
  border: 3px solid #a97f34;
}

.mainspring-barrel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(var(--steel) 0 3deg, var(--walnut) 3deg 9deg);
}

.mainspring-barrel::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background-color: var(--hairline);
}

/* gear train wheels ascending right */
.gear-wheel {
  position: absolute;
  border-radius: 50%;
  background-color: var(--brass);
  border: 2px solid #a97f34;
}

.gear-wheel.w1 { width: 40px; height: 40px; left: 120px; top: 120px; }
.gear-wheel.w2 { width: 55px; height: 55px; left: 175px; top: 90px; }
.gear-wheel.w3 { width: 30px; height: 30px; left: 205px; top: 30px; }

.gear-wheel::after {
  content: "";
  position: absolute;
  inset: 35%;
  background-color: var(--deeper);
  border-radius: 50%;
}

/* balance wheel on a bridge */
.balance-wheel {
  position: absolute;
  right: 8px;
  bottom: 90px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--night);
  background-color: #1c2730;
  display: flex;
  align-items: center;
  justify-content: center;
}

.balance-wheel::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(var(--lume) 0 4deg, transparent 4deg 30deg);
}

.balance-ring {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 3px;
  height: 62px;
  background-color: var(--hairline);
}

.balance-bridge {
  position: absolute;
  right: 8px;
  bottom: 158px;
  width: 90px;
  height: 10px;
  background-color: var(--brass);
  border-radius: 3px;
}

/* ruby jewels */
.jewel-red {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #D64B4B;
  box-shadow: 0 0 0 1px #a93333;
}

/* blued screws */
.screw-blue {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3d5a8c;
}

/* loupe on stand */
.loupe {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 92px;
  height: 50px;
  background-color: var(--walnut);
  border-radius: 10px 10px 14px 14px;
  border: 1px solid var(--hairline);
}

.loupe::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 24px;
  right: 24px;
  height: 36px;
  background-color: #202c38;
  border-radius: 8px;
  border: 2px solid var(--hairline);
}

.loupe::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 36px;
  width: 16px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--lume);
  filter: saturate(0.36);
}

.loupe-post {
  position: absolute;
  bottom: -6px;
  left: 42px;
  width: 6px;
  height: 14px;
  background-color: var(--hairline);
}

/* timing machine card */
.timing-card {
  position: absolute;
  top: 4px;
  left: 0;
  width: 150px;
  height: 60px;
  background-color: var(--deeper);
  border: 1px solid var(--lume);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--steel);
}

.rate-line {
  color: var(--lume);
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 3px;
  position: relative;
}

/* ============================================================
   SECTION HEADING UTILITY
   ============================================================ */
.section-head {
  padding: 90px 24px 40px;
}

.section-head .sec-label {
  color: var(--brass);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.section-head h2 {
  color: var(--dial);
  font-size: 38px;
  max-width: 720px;
}

.sec-intro {
  max-width: 720px;
  color: var(--body);
  margin-top: 16px;
}

/* ============================================================
   SERVICE TICKET ROWS
   ============================================================ */
.ticketrows {
  padding: 0 24px 20px;
}

.ticketrows .row-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ticket {
  display: flex;
  align-items: stretch;
  background-color: var(--walnut);
  border: 1px solid var(--hairline);
  margin-bottom: 12px;
  gap: 0;
}

.job-stub {
  flex: 0 0 110px;
  background-color: var(--dial);
  color: #26201a;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--hairline);
  text-align: center;
}

.job-stub .job-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.03em;
}

.job-stub .job-glyph {
  margin-top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #8a5b3c;
  position: relative;
}

.job-stub .job-glyph::after {
  content: "";
  position: absolute;
  inset: 6px;
  background-color: #8a5b3c;
  border-radius: 50%;
}

.ticket .ticket-body {
  flex: 1;
  padding: 24px 28px;
}

.ticket .ticket-body h3 {
  color: var(--dial);
  font-size: 23px;
  margin-bottom: 8px;
}

.ticket .ticket-body p {
  color: var(--body);
  font-size: 16px;
  max-width: 640px;
}

.rate-tag {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--deeper);
  color: var(--lume);
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 18px;
  letter-spacing: 1px;
  border-left: 1px solid var(--hairline);
  text-align: center;
}

/* ============================================================
   HOROLOGY METRIC BAND
   ============================================================ */
.metric-band {
  background-color: var(--loupe);
  margin-top: 40px;
}

.metric-band .band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.metric {
  flex: 1;
  text-align: center;
  position: relative;
}

.metric .m-num {
  display: block;
  color: var(--brass);
  font-size: 54px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.metric .m-label {
  display: block;
  margin-top: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.metric + .metric {
  border-left: 1px solid var(--lume);
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  background-color: var(--walnut);
  margin-top: 14px;
}

.statement-band .stmt-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px;
  border-left: 4px solid var(--lume);
}

.statement-band .stmt-inner p {
  color: var(--dial);
  font-size: 30px;
  line-height: 1.5;
}

.statement-band .stmt-byline {
  margin-top: 24px;
  color: var(--brass);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 90px 24px;
}

.cta-band .cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  color: var(--brass);
  font-size: 40px;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--steel);
  font-size: 18px;
  margin-bottom: 30px;
}

/* ============================================================
   MOONPHASE FOOTER
   ============================================================ */
.moonphase-footer {
  position: relative;
  z-index: 1;
  background-color: var(--deeper);
  border-top: 1px solid var(--hairline);
}

.rivet-strap {
  width: 100%;
  height: 18px;
  background-color: var(--rivet);
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--rivet) 0 4px,
      var(--watnut, var(--loupe)) 4px 5px
    );
  border-bottom: 1px solid #a87860;
  position: relative;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 30px;
  text-align: center;
}

.foot-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.foot-glyph .gear-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brass);
}

.fm-moonphase {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--night);
  border: 2px solid var(--brass);
  position: relative;
}

.fm-moonphase::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--dial);
}

.fm-moonphase::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 8px;
  width: 5px;
  height: 5px;
  background-color: var(--dial);
  box-shadow: 16px -20px 0 1px var(--dial);
  border-radius: 50%;
}

.foot-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dial);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 8px 0 20px;
}

.foot-wordmark span {
  color: var(--brass);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  list-style: none;
  margin-bottom: 30px;
  color: var(--steel);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-links a {
  color: var(--steel);
  transition: color 0.2s ease;
}

.foot-links a:hover {
  color: var(--brass);
}

.foot-moon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 20px;
}

.fm-disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--night);
  border: 2px solid var(--brass);
  position: relative;
}

.fm-disc::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--dial);
}

.fm-disc::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 7px;
  width: 5px;
  height: 5px;
  background-color: var(--dial);
  box-shadow: -18px -21px 0 0 var(--dial);
  border-radius: 50%;
}

.foot-moon-divider .d-gear {
  width: 8px;
  height: 8px;
  background-color: var(--brass);
  border-radius: 50%;
}

.foot-legal {
  color: var(--steel);
  font-size: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  margin-top: 4px;
  line-height: 1.8;
}

.foot-legal a {
  color: var(--lume);
}

.foot-legal a:hover {
  color: var(--brass);
}

/* ============================================================
   SECONDARY PAGE (services / contact) SHARED ELEMENTS
   ============================================================ */
.page-lead {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 30px;
}

.page-lead .eyebrow-chip {
  margin-bottom: 18px;
}

.page-lead h1 {
  color: var(--dial);
  font-size: 46px;
  margin-bottom: 16px;
}

.page-lead h1 .brass {
  color: var(--brass);
}

.page-lead p {
  color: var(--body);
  max-width: 760px;
  font-size: 17px;
}

/* scroll reveal fallback handled in JS and noscript */

/* ============================================================
   RESPONSIVE / MOBILE NAV
   ============================================================ */
@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: var(--walnut);
    padding: 16px 24px;
    gap: 14px;
    border-top: 1px solid var(--hairline);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    display: block;
    width: 100%;
  }

  .nav-links li + li::before {
    display: none;
  }

  .nav-row {
    flex-wrap: wrap;
  }

  .movement-hero {
    flex-direction: column;
    padding: 60px 24px 40px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .bench-world {
    width: 100%;
    max-width: 360px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .metric-band .band-inner {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 45%;
  }

  .metric:nth-child(3) {
    border-left: none;
  }

  .ticket {
    flex-direction: column;
  }

  .job-stub {
    flex-direction: row;
    justify-content: space-between;
    flex-basis: auto;
    border-right: none;
    border-bottom: 2px dashed var(--hairline);
  }

  .rate-tag {
    flex-basis: auto;
    border-left: none;
    border-top: 1px solid var(--hairline);
    padding: 12px;
  }
}

@media (max-width: 560px) {
  .hero-left h1 {
    font-size: 32px;
  }

  .foot-links {
    gap: 14px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 30px;
  }

  .metric {
    flex-basis: 100%;
  }
  .metric + .metric {
    border-left: none;
    border-top: 1px solid var(--lume);
  }
}

/* ============================================================
   ADDITIONAL SECONDARY PAGE STYLES (services / contact)
   ============================================================ */
.svc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.svc-list {
  display: grid;
  gap: 10px;
}

.svc-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  background-color: var(--walnut);
  border: 1px solid var(--hairline);
  padding: 30px;
  align-items: start;
}

.svc-lab {
  border-right: 1px solid var(--hairline);
  padding-right: 28px;
  text-align: right;
}

.svc-lab .svc-no {
  display: block;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.svc-lab h3 {
  color: var(--dial);
  font-size: 20px;
  line-height: 1.2;
  margin-top: 6px;
}

.svc-row .svc-body p {
  color: var(--body);
  font-size: 16px;
  margin-bottom: 14px;
}

.svc-row .svc-body p:last-child {
  margin-bottom: 0;
}

.proc-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.proc-steps {
  list-style: none;
  counter-reset: steps;
}

.proc-steps li {
  counter-increment: steps;
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}

.proc-steps li::before {
  content: "0" counter(steps);
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  flex: 0 0 44px;
}

.proc-steps h4 {
  color: var(--dial);
  font-size: 19px;
  flex: 0 0 230px;
}

.proc-steps p {
  color: var(--body);
  font-size: 16px;
}

.cta-svc {
  text-align: center;
}

/* contact page */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.info-block {
  background-color: var(--walnut);
  border: 1px solid var(--hairline);
  padding: 30px;
}

.info-block .ib {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}

.info-block .ib:last-child {
  border-bottom: none;
}

.info-block .ib-label {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.info-block .ib-val {
  color: var(--body);
  font-size: 16px;
}

.info-block .ib-val a {
  color: var(--lume);
}

.contact-form-wrap {
  background-color: var(--walnut);
  border: 1px solid var(--hairline);
  padding: 34px;
}

.contact-form-wrap h3 {
  color: var(--dial);
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--steel);
  font-size: 15px;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  color: var(--steel);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background-color: var(--loupe);
  border: 1px solid var(--hairline);
  color: var(--dial);
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
  padding: 12px 14px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--lume);
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}

.spacer-60 { height: 60px; }

.contact-region {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 90px;
  display: grid;
  gap: 14px;
}

.faq-line {
  background-color: var(--walnut);
  border: 1px solid var(--hairline);
}

.faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  color: var(--dial);
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q .faq-mark {
  color: var(--brass);
  font-size: 20px;
  font-weight: 700;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--body);
  font-size: 16px;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}

.faq-line.open .faq-a {
  display: block;
}

/* lead = label area and intro for services/contact banners */
.page-hero {
  background-color: var(--loupe);
  border-bottom: 1px solid var(--hairline);
}

/* ============================================================
   SCROLL REVEAL (graceful, JS already placed)
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up:not(.visible):not(.is-animating) {
  opacity: 0;
  transform: translateY(22px);
}
