/* ============================================================
   SHE ADVISORY SERVICES LTD
   Watchmaker Bench motif — case-ink / dial-cream / lume-mint
   ============================================================ */

:root {
  --case-ink: #17191D;
  --dial-cream: #EFE9DB;
  --lume-mint: #8FD0C7;
  --bridge-steel: #242A31;
  --mainplate-black: #101216;
  --brass-knob: #A98F55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  background-color: #17191D;
  color: #EFE9DB;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.18;
  margin: 0 0 0.6em 0;
  color: #EFE9DB;
}

p {
  margin: 0 0 1.1em 0;
}

a {
  color: #8FD0C7;
  text-decoration: none;
}

a:hover {
  color: #EFE9DB;
}

ul, ol {
  margin: 0 0 1.2em 0;
  padding-left: 1.3em;
}

li {
  margin-bottom: 0.45em;
}

/* ---------- shared helpers ---------- */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8FD0C7;
  border-bottom: 1px solid #A98F55;
  padding-bottom: 5px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.14rem;
  color: #EFE9DB;
  max-width: 70ch;
}

/* scroll reveal base — content is visible by default (no-JS safe) */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

html.js-ready .reveal.is-seen {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. MOVEMENT BRIDGE HEADER
   ============================================================ */

.bridgehead {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #101216;
  border-bottom: 1px solid #A98F55;
}

.bridgehead-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 28px 16px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
}

.brandplaque {
  position: relative;
  background-color: #242A31;
  border: 1px solid #2F3840;
  border-top: 2px solid #3A444D;
  border-radius: 4px;
  padding: 12px 34px 12px 20px;
  box-shadow: inset 0 1px 0 #3A444D;
}

.brandplaque::before,
.brandplaque::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #A98F55;
  top: 50%;
  transform: translateY(-50%);
}

.brandplaque::before { left: 7px; }
.brandplaque::after  { right: 7px; }

.brandplaque-mark {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: #EFE9DB;
  text-transform: uppercase;
}

.brandplaque-sub {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: #8FD0C7;
  text-transform: uppercase;
  margin-top: 4px;
}

.platerow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-left: auto;
}

.bridgeplate {
  position: relative;
  display: inline-block;
  background-color: #242A31;
  border: 1px solid #333C45;
  border-radius: 3px;
  padding: 10px 26px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EFE9DB;
  box-shadow: inset 0 1px 0 #39434C;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.bridgeplate::before,
.bridgeplate::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #A98F55;
  transform: translateY(-50%);
}

.bridgeplate::before { left: 8px; }
.bridgeplate::after  { right: 8px; }

.bridgeplate:link,
.bridgeplate:visited {
  color: #EFE9DB;
}

.bridgeplate:hover,
.bridgeplate:focus {
  background-color: #2E363F;
  color: #8FD0C7;
}

.plate-narrow { min-width: 96px; text-align: center; }
.plate-mid    { min-width: 122px; text-align: center; }
.plate-wide   { min-width: 150px; text-align: center; }
.plate-broad  { min-width: 172px; text-align: center; }

.platejewel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #8FD0C7;
  box-shadow: 0 0 6px #8FD0C7;
}

.bridgeplate span.label {
  position: relative;
  z-index: 2;
}

.platehairline {
  flex-basis: 100%;
  height: 1px;
  background-color: #A98F55;
  margin-top: 2px;
}

.navtoggle {
  display: none;
  margin-left: auto;
  background-color: #242A31;
  color: #EFE9DB;
  border: 1px solid #A98F55;
  border-radius: 3px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
}

.navtoggle:hover {
  color: #8FD0C7;
}

/* ============================================================
   2. LONGCASE REGULATOR HERO
   ============================================================ */

.regulatorhero {
  background-color: #17191D;
  border-bottom: 1px solid #242A31;
  padding: 72px 0 84px 0;
}

.regulatorhero-field {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-copy h1 .lume {
  color: #8FD0C7;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 60ch;
}

.engraved-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.brassbutton {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 3px;
  border: 1px solid #A98F55;
  background-color: #8FD0C7;
  color: #101216;
  box-shadow: inset 0 2px 0 #B7E2DC, inset 0 -2px 0 #6FB3A9;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.brassbutton:link,
.brassbutton:visited {
  color: #101216;
}

.brassbutton:hover,
.brassbutton:focus {
  background-color: #EFE9DB;
  color: #101216;
  transform: translateY(-2px);
}

.brassbutton.is-ghost {
  background-color: #242A31;
  color: #EFE9DB;
  border: 1px solid #A98F55;
  box-shadow: inset 0 1px 0 #39434C;
}

.brassbutton.is-ghost:link,
.brassbutton.is-ghost:visited {
  color: #EFE9DB;
}

.brassbutton.is-ghost:hover,
.brassbutton.is-ghost:focus {
  background-color: #2E363F;
  color: #8FD0C7;
}

.hero-note {
  margin-top: 26px;
  font-size: 0.92rem;
  color: #EFE9DB;
  border-left: 2px solid #A98F55;
  padding-left: 16px;
}

/* ---------- CSS longcase regulator ---------- */

.regulator-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 26px;
}

.longcase {
  position: relative;
  width: 250px;
  height: 470px;
  background-color: #242A31;
  border: 2px solid #333C45;
  border-radius: 120px 120px 8px 8px;
  box-shadow: inset 0 1px 0 #3A444D;
}

.longcase-arch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 196px;
  height: 96px;
  border: 1px solid #A98F55;
  border-radius: 98px 98px 0 0;
  border-bottom: none;
}

.chapterring {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background-color: #101216;
  border: 4px solid #A98F55;
  box-shadow: inset 0 0 0 2px #242A31;
}

.chapterring-ticks {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed #8FD0C7;
}

.chapterring-inner {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed #A98F55;
}

.chapterring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background-color: #A98F55;
  border-radius: 50%;
}

.hand-hour {
  position: absolute;
  left: 50%;
  top: 26px;
  width: 3px;
  height: 38px;
  background-color: #EFE9DB;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(38deg);
}

.hand-minute {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 2px;
  height: 50px;
  background-color: #8FD0C7;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-64deg);
}

.doorline {
  position: absolute;
  top: 206px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 226px;
  background-color: #A98F55;
}

.pendulumrod {
  position: absolute;
  left: 50%;
  top: 232px;
  width: 2px;
  height: 190px;
  background-color: #8FD0C7;
  transform: translateX(-50%);
  transform-origin: top center;
}

.pendulumbob {
  position: absolute;
  left: 50%;
  top: 386px;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  border-radius: 50%;
  background-color: #242A31;
  border: 3px solid #A98F55;
  box-shadow: inset 0 0 0 6px #101216;
}

.pendulumbob::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background-color: #8FD0C7;
}

.weightline {
  position: absolute;
  left: 76px;
  top: 232px;
  width: 1px;
  height: 150px;
  background-color: #A98F55;
}

.weightblock {
  position: absolute;
  left: 76px;
  top: 382px;
  width: 22px;
  height: 44px;
  margin-left: -11px;
  background-color: #101216;
  border: 2px solid #EFE9DB;
}

.benchcushion {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 40px;
  background-color: #242A31;
  border: 1px solid #A98F55;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 #3A444D;
}

.benchcushion::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #A98F55;
}

.crown-glyph {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #A98F55;
  border-radius: 50%;
}

.crown-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background-color: #8FD0C7;
}

/* ============================================================
   3. GEAR TRAIN RUN
   ============================================================ */

.geartrain {
  background-color: #17191D;
  padding: 84px 0 40px 0;
  border-top: 1px solid #242A31;
}

.geartrain-intro {
  max-width: 1180px;
  margin: 0 auto 40px auto;
  padding: 0 28px;
}

.geartrain-intro p {
  max-width: 74ch;
}

.gearrow {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto 34px auto;
  padding: 0 28px;
}

.gearrow.anchor-left {
  flex-direction: row;
}

.gearrow.anchor-right {
  flex-direction: row-reverse;
}

.gearrow.skewed {
  transform: skewX(-1deg);
}

.gear-wheel {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101216;
}

.gear-wheel::before,
.gear-wheel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border-style: dashed;
}

.gear-wheel::before {
  inset: 0;
  border-width: 8px;
  border-color: #A98F55;
}

.gear-wheel::after {
  inset: 22px;
  border-width: 4px;
  border-color: #8FD0C7;
}

.gear-d1 { width: 220px; height: 220px; }
.gear-d2 { width: 168px; height: 168px; }
.gear-d3 { width: 252px; height: 252px; }
.gear-d4 { width: 194px; height: 194px; }

.gear-tag {
  position: relative;
  z-index: 3;
  background-color: #242A31;
  border: 1px solid #A98F55;
  border-radius: 3px;
  padding: 10px 18px;
  text-align: center;
  max-width: 150px;
}

.gear-tag h3 {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: #8FD0C7;
  margin: 0;
}

.servicepanel {
  flex: 1 1 auto;
  position: relative;
  background-color: #101216;
  border: 1px solid #242A31;
  border-left: 3px solid #A98F55;
  border-radius: 4px;
  padding: 26px 30px 26px 30px;
  max-width: 560px;
}

.servicepanel h4 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #EFE9DB;
}

.servicepanel p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.jewel-num {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #101216;
  background-color: #8FD0C7;
  border-radius: 2px;
  padding: 4px 9px;
  margin-bottom: 12px;
}

.servicepanel .tolink {
  display: inline-block;
  margin-top: 14px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8FD0C7;
  border-bottom: 1px solid #A98F55;
  padding-bottom: 3px;
}

.servicepanel .tolink:hover {
  color: #EFE9DB;
}

/* ---------- narrative bands between gears ---------- */

.bench-note {
  max-width: 1180px;
  margin: 0 auto 40px auto;
  padding: 0 28px;
}

.bench-note-inner {
  background-color: #242A31;
  border: 1px solid #333C45;
  border-radius: 4px;
  padding: 30px 34px;
  box-shadow: inset 0 1px 0 #3A444D;
}

.bench-note-wide {
  max-width: 1120px;
  margin: 0 auto;
}

.bench-note-inner h3 {
  color: #8FD0C7;
  font-size: 1.2rem;
}

.bench-note-inner p {
  margin-bottom: 0;
}

/* ============================================================
   4. REGULATOR STRIP
   ============================================================ */

.regulatorstrip {
  background-color: #8FD0C7;
  color: #101216;
  padding: 34px 0;
  border-top: 1px solid #101216;
  border-bottom: 1px solid #101216;
}

.regulatorstrip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
  text-align: center;
}

.regulatorstrip p {
  margin: 0;
  color: #101216;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.strip-gear {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px dashed #101216;
  flex: 0 0 auto;
}

/* ============================================================
   5. CASE BACK FOOTER
   ============================================================ */

.caseback {
  background-color: #101216;
  border-top: 1px solid #A98F55;
  padding: 0 0 0 0;
}

.caseback-topline {
  position: relative;
  height: 1px;
  background-color: #A98F55;
}

.crown-center {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background-color: #101216;
  border: 2px solid #A98F55;
}

.crown-center::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background-color: #8FD0C7;
}

.caseback-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 28px 40px 28px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 54px;
  align-items: start;
}

.caseback-disc {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid #A98F55;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #101216;
}

.caseback-disc::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid #8FD0C7;
}

.caseback-disc::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed #A98F55;
}

.caseback-disc-inner {
  position: relative;
  z-index: 3;
  padding: 0 44px;
}

.caseback-disc-inner strong {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #EFE9DB;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.caseback-disc-inner span {
  display: block;
  font-size: 0.82rem;
  color: #8FD0C7;
  letter-spacing: 0.06em;
}

.caseback-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.strapkeeper {
  display: block;
  position: relative;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EFE9DB;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid #242A31;
}

.strapkeeper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 50%;
  background-color: #A98F55;
}

.strapkeeper:link,
.strapkeeper:visited {
  color: #EFE9DB;
}

.strapkeeper:hover,
.strapkeeper:focus {
  color: #8FD0C7;
}

.caseback-col-title {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8FD0C7;
  margin-bottom: 10px;
}

.caseback-base {
  border-top: 1px solid #A98F55;
  background-color: #101216;
}

.caseback-base-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #EFE9DB;
}

.caseback-base-inner a:link,
.caseback-base-inner a:visited {
  color: #8FD0C7;
}

.caseback-base-inner a:hover {
  color: #EFE9DB;
}

.lumedot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8FD0C7;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   SUB-PAGE FURNITURE
   ============================================================ */

.pagehead {
  background-color: #101216;
  border-bottom: 1px solid #A98F55;
  padding: 58px 0 52px 0;
}

.pagehead-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.pagehead h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 24ch;
}

.pagehead p {
  max-width: 72ch;
  font-size: 1.06rem;
}

.infoband {
  background-color: #17191D;
  padding: 70px 0;
}

.infoband.is-steel {
  background-color: #242A31;
}

.infoband.is-ink {
  background-color: #101216;
}

.info-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.prose-block {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.prose-block h2 {
  font-size: 1.6rem;
  color: #8FD0C7;
  margin-top: 34px;
}

.prose-block h3 {
  font-size: 1.16rem;
  margin-top: 26px;
}

.prose-block p {
  max-width: 82ch;
}

.spec-list {
  background-color: #242A31;
  border: 1px solid #333C45;
  border-left: 3px solid #A98F55;
  border-radius: 4px;
  padding: 24px 28px;
}

.spec-list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #8FD0C7;
}

.cta-band {
  background-color: #8FD0C7;
  color: #101216;
  padding: 46px 0;
}

.cta-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  color: #101216;
  margin: 0 0 8px 0;
  font-size: 1.55rem;
}

.cta-band p {
  color: #101216;
  margin: 0;
  max-width: 60ch;
}

.cta-band .brassbutton {
  background-color: #101216;
  color: #EFE9DB;
  border: 1px solid #101216;
  box-shadow: none;
}

.cta-band .brassbutton:link,
.cta-band .brassbutton:visited {
  color: #EFE9DB;
}

.cta-band .brassbutton:hover,
.cta-band .brassbutton:focus {
  background-color: #242A31;
  color: #8FD0C7;
}

/* ---------- process steps (non-loop, numbered rail) ---------- */

.processrail {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.processstep {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #242A31;
  align-items: start;
}

.processstep:last-child {
  border-bottom: none;
}

.stepdial {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px dashed #A98F55;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101216;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1.5rem;
  color: #8FD0C7;
}

.processstep h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.processstep p {
  margin-bottom: 0;
  max-width: 76ch;
}

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

.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.contactform {
  background-color: #242A31;
  border: 1px solid #333C45;
  border-radius: 4px;
  padding: 30px 32px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8FD0C7;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  background-color: #101216;
  color: #EFE9DB;
  border: 1px solid #A98F55;
  border-radius: 3px;
  padding: 12px 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #8FD0C7;
  outline-offset: 1px;
}

.formstatus {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #8FD0C7;
}

.contactcard {
  background-color: #101216;
  border: 1px solid #242A31;
  border-left: 3px solid #A98F55;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 22px;
}

.contactcard h3 {
  color: #8FD0C7;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contactcard p {
  margin-bottom: 6px;
}

.contactcard a:link,
.contactcard a:visited {
  color: #EFE9DB;
}

.contactcard a:hover {
  color: #8FD0C7;
}

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

.faqlist {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.faqitem {
  border: 1px solid #333C45;
  border-radius: 4px;
  background-color: #242A31;
  margin-bottom: 14px;
  overflow-x: hidden;
}

.faqq {
  width: 100%;
  text-align: left;
  background-color: #242A31;
  color: #EFE9DB;
  border: none;
  border-left: 3px solid #A98F55;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.98rem;
  padding: 17px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faqq:hover {
  color: #8FD0C7;
}

.faqq .caret {
  color: #8FD0C7;
  font-size: 1.1rem;
}

.faqa {
  padding: 0 20px 18px 20px;
  background-color: #101216;
}

.faqa p {
  margin: 14px 0 0 0;
  font-size: 0.95rem;
}

.faqa[hidden] {
  display: none;
}

/* ---------- counters ---------- */

.counterrow {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.countcell {
  background-color: #242A31;
  border: 1px solid #333C45;
  border-top: 3px solid #A98F55;
  border-radius: 4px;
  padding: 26px 24px;
}

.countcell .countnum {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 2.3rem;
  color: #8FD0C7;
  margin-bottom: 6px;
}

.countcell .countlabel {
  display: block;
  font-size: 0.9rem;
  color: #EFE9DB;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1040px) {
  .regulatorhero-field {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .caseback-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .platerow {
    display: none;
    flex-basis: 100%;
    margin-left: 0;
    padding-top: 6px;
  }

  .platerow.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .bridgeplate {
    width: 100%;
    text-align: center;
  }

  .bridgehead-inner {
    gap: 12px;
  }

  .navtoggle {
    display: block;
  }

  .gearrow,
  .gearrow.anchor-left,
  .gearrow.anchor-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .servicepanel {
    max-width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .counterrow {
    grid-template-columns: 1fr;
  }

  .caseback-links {
    grid-template-columns: 1fr;
  }

  .processstep {
    grid-template-columns: 1fr;
  }

  .caseback-disc {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 560px) {
  .regulatorhero {
    padding: 48px 0 60px 0;
  }

  .longcase {
    width: 208px;
    height: 400px;
  }

  .benchcushion {
    width: 250px;
  }

  .gear-d1, .gear-d2, .gear-d3, .gear-d4 {
    width: 176px;
    height: 176px;
  }

  .gear-wheel::after {
    inset: 16px;
  }
}
