.page {
  --forest: #0d2623;
  --forest-deep: #071b19;
  --forest-soft: #163a34;
  --sage: #bcd2c1;
  --mint: #dce9df;
  --signal: #d6ee62;
  --cream: #f4f1e8;
  --paper: #f8f6f0;
  --ink: #17231f;
  --muted: #65716b;
  --line: rgba(16, 51, 46, 0.18);
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.skipLink {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--signal);
  color: var(--forest-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  flex-direction: column;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.heroImage,
.heroShade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroImage {
  object-fit: cover;
  object-position: 68% center;
}

/*
 * On very wide desktop viewports the photograph is substantially less wide
 * than the hero container. Cropping it with `cover` would remove the heads.
 * Show the complete photograph instead and align it with the right-hand side,
 * where the Safety-Walk group is positioned.
 */
@media (min-width: 1100px) and (min-aspect-ratio: 17 / 10) {
  .heroImage {
    object-fit: contain;
    object-position: right center;
    background: var(--forest-deep);
  }
}

.heroShade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 21, 0.98) 0%,
      rgba(5, 24, 21, 0.9) 42%,
      rgba(5, 24, 21, 0.26) 73%,
      rgba(5, 24, 21, 0.1) 100%
    ),
    linear-gradient(0deg, rgba(4, 22, 20, 0.78) 0%, transparent 38%);
}

.header {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 104px;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1.3rem, 3vw, 3rem);
  align-items: center;
  padding: 0 clamp(1.4rem, 5vw, 4.8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    90deg,
    rgba(5, 24, 21, 0.94),
    rgba(5, 24, 21, 0.82)
  );
  box-shadow: 0 12px 34px rgba(2, 14, 12, 0.18);
  backdrop-filter: blur(18px) saturate(118%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 0.25rem;
}

.brand strong {
  font-size: 2rem;
  font-weight: 440;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand span {
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav,
.conceptSwitch {
  display: flex;
  align-items: center;
}

.nav {
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 0.84rem;
}

.nav a {
  padding: 0.62rem 0.35rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 570;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--signal);
}

.conceptSwitch {
  gap: 0.2rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  background: rgba(4, 23, 20, 0.5);
  font-size: 0.68rem;
}

.conceptSwitch a,
.conceptSwitch span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
}

.conceptSwitch span {
  background: var(--signal);
  color: var(--forest-deep);
  font-weight: 800;
}

.heroInner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(900px, 100%);
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem, 10vh, 8rem) clamp(1.4rem, 5vw, 4.8rem) 9rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.8rem;
  color: #6e8e82;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--signal);
}

.heroInner h1 {
  margin: 0;
  font-size: clamp(3.35rem, 5.45vw, 5.9rem);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.heroCopy {
  max-width: 760px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.81);
  font-size: clamp(1.06rem, 1.35vw, 1.24rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.35rem;
}

.primaryButton {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--forest-deep);
  font-size: 0.9rem;
  font-weight: 760;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.primaryButton:hover {
  background: #e8fa87;
  transform: translateY(-2px);
}

.secondaryLink {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.9rem;
}

.secondaryLink span {
  margin-left: 0.7rem;
  color: var(--signal);
}

.heroProof {
  position: absolute;
  z-index: 2;
  right: clamp(1.4rem, 5vw, 4.8rem);
  bottom: 2.3rem;
  width: min(440px, calc(100% - 2.8rem));
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 27, 25, 0.8);
  backdrop-filter: blur(14px);
}

.heroProof span {
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.heroProof p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trustBar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--signal);
}

.trustBar p {
  margin: 0;
  padding: 1.4rem clamp(1rem, 2.4vw, 2.3rem);
  border-right: 1px solid rgba(7, 27, 25, 0.23);
  color: var(--forest);
  font-size: 0.78rem;
  line-height: 1.4;
}

.trustBar p:last-child {
  border-right: 0;
}

.trustBar strong {
  display: block;
  font-size: 0.95rem;
}

.intro,
.architecture,
.services,
.mandates,
.profile {
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.4rem, 6vw, 6.5rem);
}

.intro {
  background: var(--cream);
}

.introGrid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.intro h2,
.sectionTop h2,
.mandateIntro h2,
.profile h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 520;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.introGrid > div {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.introGrid p {
  margin: 0 0 1.3rem;
}

.introGrid .lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.architecture {
  background: var(--forest-deep);
  color: #fff;
}

.sectionTop {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 5.8rem);
}

.architecture .kicker,
.architectureGrid span {
  color: var(--signal);
}

.sectionTop > p {
  margin: 0;
  line-height: 1.7;
}

.architecture .sectionTop > p {
  color: var(--sage);
}

.architectureGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.architectureGrid article {
  min-height: 330px;
  padding: 1.8rem clamp(1.25rem, 2.4vw, 2.4rem) 2.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.architectureGrid article:last-child {
  border-right: 0;
}

.architectureGrid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--signal);
  font-size: 0.78rem;
  font-weight: 760;
}

.architectureGrid h3 {
  margin: 5rem 0 1rem;
  font-size: 1.65rem;
  font-weight: 450;
}

.architectureGrid p {
  margin: 0;
  color: var(--sage);
  font-size: 0.91rem;
  line-height: 1.65;
}

.systemLine {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 2rem;
  padding-top: 2rem;
}

.systemLine span {
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.systemLine p {
  margin: 0;
  color: var(--sage);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.services .sectionTop > p {
  color: var(--muted);
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.serviceGrid article {
  min-height: 480px;
  padding: 1.8rem clamp(1.4rem, 3vw, 3rem) 2.5rem;
  border-right: 1px solid var(--line);
}

.serviceGrid article:last-child {
  border-right: 0;
}

.serviceNumber {
  color: #5d776c;
  font-size: 0.72rem;
  font-weight: 750;
}

.serviceGrid h3 {
  margin: 6.2rem 0 1.3rem;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  font-weight: 470;
  letter-spacing: -0.04em;
}

.serviceGrid article > p {
  min-height: 132px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.serviceGrid ul {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.serviceGrid li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #34483f;
  font-size: 0.83rem;
}

.serviceGrid li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #88a83f;
  content: "";
}

.mandates {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--mint);
}

.mandateIntro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.mandateIntro > p:last-child {
  max-width: 540px;
  margin: 2rem 0 0;
  color: #56685f;
  line-height: 1.7;
}

.mandateGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mandateGrid article {
  min-height: 285px;
  padding: 1.6rem 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mandateGrid span {
  color: #597367;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.mandateGrid h3 {
  margin: 4rem 0 0.9rem;
  font-size: 1.38rem;
  font-weight: 530;
}

.mandateGrid p {
  margin: 0;
  color: #5f6b65;
  font-size: 0.9rem;
  line-height: 1.62;
}

.profile {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cream);
}

.profileLabel {
  position: relative;
  display: flex;
  width: min(100%, 450px);
  aspect-ratio: 5 / 7;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem;
  background: #29463f;
  color: #fff;
}

.profileLabel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 29, 25, 0.02) 34%,
      rgba(5, 29, 25, 0.2) 60%,
      rgba(5, 29, 25, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(5, 29, 25, 0.14), transparent 58%);
  content: "";
  pointer-events: none;
}

.profilePortrait {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.profileIdentity {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.profileLabel span {
  font-size: 1.75rem;
  font-weight: 560;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 18px rgba(2, 18, 16, 0.36);
}

.profileLabel small {
  margin-top: 0.45rem;
  color: var(--sage);
  text-shadow: 0 2px 14px rgba(2, 18, 16, 0.5);
}

.profileCopy {
  align-self: center;
}

.profileCopy h2 {
  max-width: 900px;
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
}

.profileCopy > p:not(.kicker) {
  max-width: 880px;
  margin: 1.3rem 0;
  color: #4f615a;
  font-size: 1.02rem;
  line-height: 1.72;
}

.profileCopy .profileLead {
  margin-top: 2rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  line-height: 1.55;
}

.profileFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.profileFacts span {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(13, 38, 35, 0.24);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding: clamp(6rem, 11vw, 10rem) clamp(1.4rem, 6vw, 6.5rem);
  background:
    radial-gradient(
      circle at 80% 0,
      rgba(214, 238, 98, 0.17),
      transparent 28%
    ),
    var(--forest-deep);
  color: #fff;
}

.contact .kicker {
  color: var(--signal);
}

.contact h2 {
  max-width: 750px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.contactIntro > p:not(.kicker) {
  max-width: 660px;
  margin: 2rem 0 0;
  color: var(--sage);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contactAssurance {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0;
  max-width: 650px;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contactAssurance span,
.contactAssurance p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contactAssurance span {
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.contactAssurance p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
}

.contactForm {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 56, 49, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.formHeader {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.formHeader span {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 570;
  letter-spacing: -0.035em;
}

.formHeader p {
  max-width: 300px;
  margin: 0;
  color: var(--sage);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: right;
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.formGrid label {
  display: grid;
  gap: 0.55rem;
}

.formGrid label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fullField {
  grid-column: 1 / -1;
}

.formGrid input,
.formGrid select,
.formGrid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: rgba(5, 28, 24, 0.6);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.formGrid input,
.formGrid select {
  min-height: 51px;
  padding: 0 0.85rem;
}

.formGrid textarea {
  min-height: 126px;
  padding: 0.85rem;
  line-height: 1.55;
  resize: vertical;
}

.formGrid input::placeholder,
.formGrid textarea::placeholder {
  color: rgba(220, 233, 223, 0.46);
}

.formGrid input:focus,
.formGrid select:focus,
.formGrid textarea:focus {
  border-color: var(--signal);
  background: rgba(5, 28, 24, 0.84);
  box-shadow: 0 0 0 3px rgba(214, 238, 98, 0.12);
}

.formGrid input[type="date"],
.formGrid input[type="time"] {
  color-scheme: dark;
}

.formFooter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: 1.5rem;
}

.formFooter p {
  max-width: 570px;
  margin: 0;
  color: rgba(220, 233, 223, 0.72);
  font-size: 0.7rem;
  line-height: 1.55;
}

.formFooter a {
  border-bottom: 1px solid rgba(214, 238, 98, 0.68);
  color: var(--signal);
}

.formFooter button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--forest-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 780;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.formFooter button:hover {
  background: #e8fa87;
  transform: translateY(-2px);
}

.formFooter button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.formStatus {
  min-height: 1.2rem;
  margin: 1rem 0 0;
  color: var(--signal);
  font-size: 0.72rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 3.2rem clamp(1.4rem, 6vw, 6.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: var(--forest-deep);
  color: #fff;
}

.footer > p {
  margin: 0;
  color: var(--sage);
  font-size: 0.8rem;
}

.footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  color: var(--sage);
  font-size: 0.78rem;
}

@media (max-width: 1120px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .introGrid,
  .sectionTop,
  .mandates,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .architectureGrid,
  .trustBar {
    grid-template-columns: 1fr 1fr;
  }

  .architectureGrid article:nth-child(2),
  .trustBar p:nth-child(2) {
    border-right: 0;
  }

  .architectureGrid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mandateIntro {
    position: static;
  }

  .profileLabel {
    width: min(100%, 440px);
  }

  .contactIntro {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .serviceGrid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .serviceGrid h3 {
    margin-top: 3.5rem;
  }

  .serviceGrid article > p {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 850px;
  }

  .heroShade {
    background:
      linear-gradient(
        90deg,
        rgba(5, 24, 21, 0.95),
        rgba(5, 24, 21, 0.6)
      ),
      linear-gradient(0deg, rgba(4, 22, 20, 0.87), transparent 58%);
  }

  .header {
    min-height: 90px;
  }

  .profileLabel {
    width: 100%;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .conceptSwitch a,
  .conceptSwitch span {
    width: 25px;
    height: 25px;
  }

  .heroInner {
    padding-bottom: 10.5rem;
  }

  .heroInner h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.6rem;
  }

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

  .fullField {
    grid-column: auto;
  }

  .formHeader,
  .formFooter {
    grid-template-columns: 1fr;
  }

  .formHeader {
    display: grid;
    align-items: start;
  }

  .formHeader p {
    text-align: left;
  }

  .formFooter button {
    width: 100%;
  }

  .secondaryLink {
    width: fit-content;
  }

  .heroProof {
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    width: auto;
  }

  .trustBar,
  .architectureGrid,
  .mandateGrid {
    grid-template-columns: 1fr;
  }

  .trustBar p,
  .architectureGrid article {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 27, 25, 0.2);
  }

  .architectureGrid article {
    min-height: auto;
  }

  .architectureGrid h3 {
    margin-top: 3rem;
  }

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

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

  .footer > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Alfahosting production layer */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f6f0;
  color: #17231f;
  font-family:
    "Segoe UI Variable", "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #d6ee62;
  outline-offset: 4px;
}

.mobileMenu {
  position: relative;
  display: none;
  color: #fff;
}

.mobileMenu summary {
  min-width: 72px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
  text-align: center;
}

.mobileMenu summary::-webkit-details-marker {
  display: none;
}

.mobileMenu nav {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  width: min(310px, calc(100vw - 2.8rem));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 24, 21, 0.98);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.mobileMenu nav a {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
}

.mobileMenu nav a:last-child {
  border-bottom: 0;
}

.mobileMenu nav a:hover {
  background: rgba(214, 238, 98, 0.1);
  color: #d6ee62;
}

.websiteField {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.formNotice {
  margin: 0 0 1.3rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid #d6ee62;
  background: rgba(214, 238, 98, 0.11);
  color: #edf7c5;
  font-size: 0.82rem;
  line-height: 1.55;
}

.formNotice[data-type="error"] {
  border-left-color: #ffb4a6;
  background: rgba(255, 100, 80, 0.12);
  color: #ffd7d0;
}

.privacyAck {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.35rem;
  color: rgba(220, 233, 223, 0.78);
  font-size: 0.72rem;
  line-height: 1.55;
}

.privacyAck input {
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  accent-color: #d6ee62;
}

.privacyAck a {
  border-bottom: 1px solid rgba(214, 238, 98, 0.68);
  color: #d6ee62;
}

.formFooter button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

@media (max-width: 1120px) {
  .mobileMenu {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
