/* VollmerIT: base styles. Responsive rules stay with their component. */
:root {
  --bg: #121617;
  --fg: #f5f5ee;
  --muted: #b3bbb9;
  --line: #37413f;
  --accent: #d5bc81;
  --surface: #1d2423;
  --pad: clamp(22px,6vw,100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 Poppins,Arial,sans-serif;
}
button {
  font: inherit;
}
button {
  -webkit-tap-highlight-color: transparent;
}
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #171c19;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn.secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0 0 24px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 530px;
}
.micro {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}
.section {
  padding: 90px var(--pad);
}
h2 {
  font-size: clamp(30px,3.3vw,49px);
  line-height: 1.18;
  letter-spacing: -1.6px;
  font-weight: 600;
  margin: 0;
  max-width: 750px;
}
figcaption {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
}
footer {
  padding: 30px var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
@keyframes enter{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none}}
[hidden] {
  display: none !important;
}
@media (min-width:1600px) {
  main {
    max-width: 1800px;
    margin: auto;
  }
}
@media (max-width:900px) {
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
@media (max-width:540px) {
  .section h2 {
    letter-spacing: -1px;
  }
}
@media (prefers-reduced-motion:reduce) {
  *:before {
    animation: none !important;
    transition: none !important;
  }
}
@font-face{font-family:Poppins;src:url("../assets/fonts/poppins-v20-latin-regular.woff2");font-display:swap}
@font-face{font-family:Poppins;src:url("../assets/fonts/poppins-v20-latin-600.woff2");font-weight:600;font-display:swap}
body {
  overflow-x: clip;
}
.btn {
  transition: transform .25s,box-shadow .25s,background .25s;
}
.btn:hover {
  box-shadow: 0 9px 30px #d5bc8118;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease,transform .7s ease;
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 15px;
  background: #d5bc81;
  color: #121617;
  transform: translateY(-150%);
  z-index: 30;
}
.skip-link:focus {
  transform: none;
}
@media (prefers-reduced-motion:reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
.site-footer-full {
  display: block;
  padding: 55px var(--pad) 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 45px;
}
.footer-top strong {
  font-size: 14px;
  color: #e4e9de;
}
.footer-top ul {
  padding: 0;
  list-style: none;
}
.footer-top li {
  margin: 10px 0;
}
.footer-base {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 23px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inquiry-summary {
  font-size: 13px;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}
@media (max-width:700px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top>div:first-child {
    grid-column: 1/-1;
  }
}
.footer-top>div {
  min-width: 0;
}
button {
  touch-action: manipulation;
}
a {
  touch-action: manipulation;
}
summary {
  touch-action: manipulation;
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  *::before {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width:700px) {
  :root {
    --pad: 24px;
  }
  .section {
    padding: 56px var(--pad);
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 1.4px;
    margin-bottom: 20px;
  }
  .section h2 {
    font-size: clamp(29px,8vw,38px);
    line-height: 1.18;
  }
  .btn {
    white-space: normal !important;
    text-align: center;
    gap: 10px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-base {
    gap: 14px;
  }
  .site-footer-full {
    padding: 40px var(--pad) 24px;
  }
}
@media (max-width:360px) {
  :root {
    --pad: 18px;
  }
}
@media (max-width:700px) {
  html {
    scroll-padding-top: 90px;
  }
}
.contact-anchor {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 0;
  pointer-events: none;
}
@media (max-width:900px) {
  .contact-anchor {
    position: static;
    width: auto;
  }
}
html {
  scroll-padding-top: 165px;
}
@media (max-width:1000px) {
  html {
    scroll-padding-top: 95px;
  }
}
