:root {
  --blue-950: #08253e;
  --blue-900: #0b3153;
  --blue-800: #084d82;
  --blue-700: #0067ad;
  --blue-600: #0078ca;
  --blue-500: #128ad9;
  --blue-100: #dff1ff;
  --blue-50: #f2f9ff;
  --ink: #13202b;
  --muted: #5a6975;
  --line: #dce4ea;
  --soft: #f3f6f8;
  --white: #fff;
  --shadow: 0 20px 50px rgba(13, 42, 65, .11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
svg { width: 1.35em; height: 1.35em; flex: 0 0 auto; }
address { font-style: normal; }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,228,234,.85);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: var(--container);
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-phone {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #cce9fc;
}
.phone-copy { display: grid; line-height: 1.2; }
.phone-copy small { font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; color: var(--muted); font-weight: 800; }
.phone-copy strong { margin-top: 4px; font-size: .98rem; }
.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.site-header .brand {
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.brand img {
  width: 58px;
  height: 64px;
  object-fit: cover;
}
.site-header .brand img {
  border-radius: 0;
  box-shadow: none;
}
.brand span { display: grid; }
.brand strong { font-size: 1.55rem; letter-spacing: -.04em; color: var(--blue-800); }
.brand small { margin-top: 5px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: .67rem; color: var(--muted); }
.site-header .brand .brand-title {
  display: block;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--blue-800);
  white-space: nowrap;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: 11px 14px;
  border-radius: 999px;
  color: #334451;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.active { color: var(--blue-800); background: var(--blue-50); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,.97) 0 50%, rgba(232,244,252,.92) 50% 100%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(0,103,173,.05) 22px 24px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -210px;
  border-radius: 50%;
  border: 70px solid rgba(0,120,202,.08);
}
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-block: 70px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 5.4vw, 5.4rem); max-width: 850px; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.8vw, 3.5rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
p { margin-top: 0; }
.hero-lead { max-width: 700px; color: var(--muted); font-size: 1.18rem; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue-700); color: #fff; box-shadow: 0 12px 26px rgba(0,103,173,.2); }
.button-primary:hover { background: var(--blue-800); }
.button-secondary, .button-outline { background: #fff; color: var(--blue-800); border-color: var(--line); }
.button-secondary:hover, .button-outline:hover { border-color: #9ecce9; box-shadow: 0 10px 25px rgba(18,51,77,.08); }
.button-white { background: #fff; color: var(--blue-900); }
.button-ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.hero-note { margin-top: 24px; display: flex; gap: 10px; align-items: center; color: #3d5363; font-weight: 700; font-size: .93rem; }
.hero-note svg { color: var(--blue-700); }
.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(420px, 80%);
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(8,49,83,.25);
  transform: rotate(1.5deg);
}
.metal-rings {
  position: absolute;
  inset: 7% 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(0,120,202,.12) 38% 41%, transparent 41% 53%, rgba(0,120,202,.08) 53% 56%, transparent 56%),
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(0,103,173,.09));
  filter: drop-shadow(0 30px 50px rgba(0,82,139,.12));
}
.rate-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 40px;
  display: grid;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.rate-card strong { color: var(--blue-800); font-size: 1.05rem; }
.rate-card span { color: var(--muted); font-size: .85rem; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 118px; display: flex; align-items: center; gap: 14px; padding: 24px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid svg { color: var(--blue-700); width: 30px; height: 30px; }
.trust-grid span { display: grid; font-size: .82rem; color: var(--muted); }
.trust-grid strong { color: var(--ink); font-size: .95rem; }

.section { padding-block: 100px; }
.section-soft { background: var(--soft); }
.section-blue { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--blue-900), var(--blue-700)); color: #fff; }
.section-blue::after { content: ""; position: absolute; width: 520px; height: 520px; border: 70px solid rgba(255,255,255,.05); border-radius: 50%; right: -210px; bottom: -280px; }
.section-blue > .container { position: relative; z-index: 2; }
.eyebrow-light { color: #9fdcff; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); margin-bottom: 5px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading.light > p { color: #c5deef; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 30px rgba(13,42,65,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #b9daee; box-shadow: var(--shadow); }
.card-icon, .detail-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-700); background: var(--blue-50); }
.card-icon svg { width: 27px; height: 27px; }
.service-card p { color: var(--muted); }
.service-card a { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-800); font-weight: 900; text-decoration: none; }
.service-card a svg { width: 18px; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-layout p { color: inherit; opacity: .86; }
.materials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.materials-grid span { padding: 18px; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); font-weight: 850; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.process-grid li { position: relative; padding: 32px; border-top: 4px solid var(--blue-600); background: var(--soft); border-radius: 0 0 var(--radius-md) var(--radius-md); }
.process-grid li > span { display: block; margin-bottom: 28px; color: #a1b2be; font-size: 2.7rem; font-weight: 950; letter-spacing: -.08em; }
.process-grid p { color: var(--muted); }
.location-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 48px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.location-panel address { font-weight: 800; color: var(--blue-900); margin-bottom: 12px; }
.hours-card { padding: 30px; border-radius: var(--radius-md); background: var(--blue-950); color: #fff; }
.hours-card h3 { display: flex; align-items: center; gap: 10px; }
.hours-card ul, .hours-list, .footer-list, .footer-links, .plain-contact, .tick-list, .metal-card-grid ul { margin: 0; padding: 0; list-style: none; }
.hours-card li, .hours-list li, .plain-contact li { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.hours-card li:last-child, .hours-list li:last-child, .plain-contact li:last-child { border-bottom: 0; }
.hours-card span { color: #b8d1e2; }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
details { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; background: #fff; }
summary { cursor: pointer; font-weight: 900; color: var(--blue-900); }
details p { color: var(--muted); margin: 14px 0 0; }
.cta-band { padding-block: 48px; background: var(--blue-950); color: #fff; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem,3vw,2.8rem); }
.cta-band .button-row { margin-top: 0; flex: 0 0 auto; }

.page-hero { position: relative; overflow: hidden; padding-block: 100px 84px; background: linear-gradient(120deg, var(--blue-50), #fff 60%); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; top: -140px; border: 52px solid rgba(0,103,173,.08); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 980px; font-size: clamp(2.7rem,5vw,5rem); }
.page-hero p:last-child { max-width: 780px; color: var(--muted); font-size: 1.12rem; }
.about-intro p { color: var(--muted); }
.about-emblem { position: relative; justify-self: center; }
.about-emblem img { width: min(430px,90%); border-radius: 24px; box-shadow: var(--shadow); }
.about-emblem span { position: absolute; right: -18px; bottom: 24px; padding: 12px 18px; border-radius: 999px; background: #fff; color: var(--blue-900); box-shadow: var(--shadow); font-weight: 900; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.values-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.values-grid article > span { color: var(--blue-700); }
.values-grid svg { width: 34px; height: 34px; }
.values-grid p, .audience-grid p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.audience-grid > div { padding: 28px; border-left: 5px solid var(--blue-600); background: var(--soft); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.audience-grid strong { font-size: 1.15rem; color: var(--blue-900); }
.contact-card { padding: 32px; border-radius: var(--radius-md); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); }
.plain-contact li span { color: #b8d1e2; }
.plain-contact a { color: #fff; font-weight: 900; text-decoration: none; word-break: break-word; }

.service-detail-list { display: grid; gap: 20px; }
.service-detail { display: grid; grid-template-columns: auto 1fr; gap: 28px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 12px 30px rgba(13,42,65,.04); scroll-margin-top: 120px; }
.detail-icon { width: 66px; height: 66px; }
.detail-icon svg { width: 34px; height: 34px; }
.service-detail p { color: var(--muted); }
.tick-list { display: grid; gap: 10px; margin-top: 20px; }
.tick-list li { display: flex; align-items: flex-start; gap: 10px; }
.tick-list svg { margin-top: .15em; color: var(--blue-600); }
.metal-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.metal-card-grid article { padding: 30px; border-radius: var(--radius-md); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); }
.metal-card-grid li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.metal-card-grid li:last-child { border-bottom: 0; }
.info-panel { padding: 32px; border-radius: var(--radius-md); background: var(--soft); border: 1px solid var(--line); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.contact-option { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-option > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-50); }
.contact-option div { display: grid; }
.contact-option small { color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.contact-option a, .contact-option address { color: var(--blue-900); font-weight: 900; text-decoration: none; word-break: break-word; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-card form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
label { display: grid; gap: 8px; font-weight: 850; }
label > span[aria-hidden] { color: #b72222; display: inline; }
input, select, textarea { width: 100%; border: 1px solid #cbd7df; border-radius: 12px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; }
textarea { resize: vertical; min-height: 150px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(0,120,202,.12); }
.consent { grid-template-columns: auto 1fr; align-items: start; font-weight: 500; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 4px; }
.consent a { color: var(--blue-800); }
.form-note { margin: 0; color: var(--muted); font-size: .84rem; }
.form-status { min-height: 24px; font-weight: 800; color: var(--blue-800); }
.form-status.error { color: #a82222; }

.legal-hero { padding-block: 78px; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin-top: 42px; font-size: 1.65rem; }
.legal-content p, .legal-content li { color: #44545f; }
.legal-updated { font-weight: 800; color: var(--blue-800) !important; }
.legal-content a { color: var(--blue-800); }

.site-footer { background: #071a2a; color: #fff; }
.footer-main { width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1.15fr 1.25fr 1fr .75fr; gap: 42px; padding-block: 70px; }
.footer-main h2 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: #9fdcff; }
.brand-footer { justify-self: start; color: #fff; }
.brand-footer strong { color: #fff; }
.brand-footer small { color: #9eb3c2; }
.footer-brand p { margin-top: 20px; max-width: 330px; color: #aebfca; }
.footer-list, .footer-links { display: grid; gap: 11px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: #b9cad5; }
.contact-list svg { color: #62b9ed; margin-top: .12em; }
.contact-list a, .footer-links a { color: #dbe7ee; text-decoration: none; word-break: break-word; }
.contact-list a:hover, .footer-links a:hover { color: #fff; text-decoration: underline; }
.hours-list li { color: #aec1ce; }
.hours-list strong { color: #fff; }
.footer-bottom { width: var(--container); margin-inline: auto; display: flex; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #91a6b5; font-size: .84rem; }
.footer-bottom p { margin: 0; }
.floating-call { display: none; }

:focus-visible { outline: 3px solid #f5b928; outline-offset: 3px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: center; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; color: var(--blue-800); cursor: pointer; }
  .menu-toggle svg { width: 28px; height: 28px; }
  .menu-close { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-open { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close { display: block; }
  .mobile-nav { display: none; width: var(--container); margin: 0 auto 18px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 13px 14px; border-radius: 10px; text-decoration: none; font-weight: 900; }
  .mobile-nav a:hover, .mobile-nav a.active { background: var(--blue-50); color: var(--blue-800); }
  .mobile-nav .mobile-call { margin-top: 6px; background: var(--blue-700); color: #fff; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 480px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .site-header { position: sticky; }
  .header-inner { min-height: 78px; gap: 8px; }
  .phone-copy { display: none; }
  .header-icon { width: 42px; height: 42px; }
  .brand { gap: 8px; }
  .site-header .brand { gap: 5px; }
  .brand img { width: 48px; height: 53px; }
  .site-header .brand .brand-title { font-size: .56rem; letter-spacing: .14em; }
  .brand strong { font-size: 1.25rem; }
  .brand small { font-size: .57rem; }
  .hero-grid { min-height: auto; padding-block: 58px 70px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4.1rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.7rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { width: min(340px,82%); }
  .rate-card { right: 4px; bottom: 12px; }
  .section { padding-block: 72px; }
  .section-heading, .split-layout, .location-panel, .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .card-grid, .process-grid, .metal-card-grid, .faq-grid, .audience-grid { grid-template-columns: 1fr; }
  .location-panel { padding: 28px; }
  .cta-band .container { display: grid; }
  .cta-band .button-row { margin-top: 0; }
  .service-detail { grid-template-columns: 1fr; padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-block: 55px; }
  .footer-bottom { display: grid; padding-bottom: 90px; }
  .floating-call {
    position: fixed;
    z-index: 900;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--blue-700);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0,45,79,.28);
  }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .site-header .brand .brand-title { display: block; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .materials-grid, .values-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .button-row { width: 100%; }
  .hero-visual { min-height: 330px; }
  .rate-card { position: relative; right: auto; bottom: auto; margin-top: -20px; }
  .page-hero { padding-block: 70px 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
.label-text { display: block; font-weight: 850; }
.label-text i { color: #b72222; font-style: normal; }

/* Contact-form bot trap: intentionally hidden from genuine visitors. */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
