/*
 * Typ od Sieci — production stylesheet
 * Consolidated from the original base styles and the light premium theme.
 * Main UI: Manrope | Technical details/easter eggs: JetBrains Mono
 */

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

:root {
  --green: #172729;
  --green-dim: #40585c;
  --green-dark: #dbe2e3;
  --bg: #fafbfa;
  --bg2: #f0f4f3;
  --gray: #637376;
  --gray-light: #4b6064;
  --white: #172729;
  --cursor: #16866c;
  --accent: #12725d;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Manrope,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--green);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px);
  pointer-events: none;
  z-index: 1000;
  display: none;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: -48px;
  background: var(--bg2);
  color: var(--green);
  border: 1px solid var(--accent);
  padding: 8px 12px;
  text-decoration: none;
  z-index: 2000;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  margin: 0 auto;
  max-width: 1392px;
  padding: 0 56px;
}

/* HEADER */

header {
  padding: 0;
  animation: none;
  opacity: 1;
}

.prompt-line {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 4px;
  font: 12px "JetBrains Mono",monospace;
  opacity: .65;
  margin: 0 0 14px;
}

.prompt-line span {
  color: var(--gray) !important;
}

.site-title {
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  font-size: 25px;
  text-decoration: none;
  letter-spacing: -1.3px;
  flex-shrink: 0;
}

.site-title .at {
  font-weight: 300;
  color: var(--accent);
  font-size: 20px;
  padding: 0 3px;
}

.tagline {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 24px;
  max-width: 440px;
}

.tagline::before {
  color: var(--gray);
  content: none;
}

.hero-wrap {
  align-items: center;
  margin-top: 28px;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  display: block;
  margin: 80px 0 60px;
}

@media (max-width: 700px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
}

.hero-lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
  color: var(--gray-light);
}

.hero-sub {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 16px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 0;
  border-radius: 8px;
  background: #e8efed;
  align-self: stretch;
  min-height: 480px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
  filter: none;
  object-fit: cover;
}

.hero-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 10px;
  background: #132b2dcc;
  color: #fff;
  padding: 18px 20px;
  font: 12px "JetBrains Mono",monospace;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--green);
  font-size: 12px;
  transition: all 0.15s;
  font: 600 15px Manrope,Arial,sans-serif;
  border: 1px solid #bacac5;
  padding: 13px 22px;
  border-radius: 5px;
  min-height: 50px;
}

.hero-link::before {
  color: var(--gray);
  margin-right: 4px;
  content: none;
}

.hero-link:hover, .hero-link:focus-visible {
  background: var(--green);
  color: var(--bg);
}

.hero-link:hover::before, .hero-link:focus-visible::before {
  color: var(--bg2);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-family: "JetBrains Mono",monospace;
  font-size: 12px;
  margin-top: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17856b;
  animation: none;
}

.header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  color: var(--gray);
  font-family: "JetBrains Mono",monospace;
  font-size: 12px;
  gap: 2px;
}

.lang-switch a {
  color: var(--gray-light);
  text-decoration: none;
  transition: all 0.15s;
  border: 0;
  padding: 6px 7px;
}

.lang-switch a:hover, .lang-switch a:focus-visible, .lang-switch a.active {
  color: var(--green);
  border-color: var(--green);
}

nav {
  margin-top: 32px;
  border-top: 1px solid var(--green-dark);
  border-bottom: 1px solid var(--green-dark);
  padding: 12px 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.4s ease 0.3s forwards;
}

nav a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
}

nav a::before {
  content: "./";
  color: var(--gray);
}

nav a:hover, nav a:focus-visible {
  color: var(--green);
}

/* SECTIONS */

section {
  border-bottom: 1px solid var(--green-dark);
  padding: 92px 0;
  opacity: 1;
  animation: none !important;
  scroll-margin-top: 24px;
}

section:nth-child(1) {
  animation: fadeIn 0.4s ease 0.5s forwards;
}

section:nth-child(2) {
  animation: fadeIn 0.4s ease 0.65s forwards;
}

section:nth-child(3) {
  animation: fadeIn 0.4s ease 0.8s forwards;
}

section:nth-child(4) {
  animation: fadeIn 0.4s ease 0.95s forwards;
}

section:nth-child(5) {
  animation: fadeIn 0.4s ease 1.1s forwards;
}

section:nth-child(6) {
  animation: fadeIn 0.4s ease 1.25s forwards;
}

section:nth-child(7) {
  animation: fadeIn 0.4s ease 1.4s forwards;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  font: 12px "JetBrains Mono",monospace;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 22px;
}

.section-label::before {
  content: "[ ";
}

.section-label::after {
  content: " ]";
}

h2 {
  color: var(--white);
  font-size: clamp(32px,3.4vw,48px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.04em;
  margin-bottom: 22px;
  max-width: 760px;
}

p {
  color: var(--gray-light);
  margin-bottom: 12px;
  font-weight: 400;
  max-width: 750px;
}

/* SERVICES */

.services {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  margin-top: 42px;
  border-left: 1px solid var(--green-dark);
  border-top: 1px solid var(--green-dark);
}

.service-item {
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  overflow: hidden;
  padding: 28px 25px 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--green-dark);
  border-right: 1px solid var(--green-dark);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.2s ease;
  display: none;
}

.service-item:hover {
  border-color: var(--accent);
  background: #edf3ef;
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 20px;
  font: 13px "JetBrains Mono",monospace;
  color: var(--accent);
  margin-bottom: 30px;
}

.service-name {
  color: var(--green);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.03em;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 28px;
  margin-top: 40px;
}

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

  .gallery-item--wide {
    grid-column: span 2;
  }
}

.gallery-item {
  position: relative;
  border: 0;
  border-radius: 7px;
  aspect-ratio: auto !important;
  background: transparent;
  overflow: hidden;
}

.gallery-item--wide {
  aspect-ratio: 16/7;
  grid-column: span 2;
}

.gallery-item--sq {
  aspect-ratio: 1/1;
}

.gallery-item--land {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  object-position: center;
  display: block;
  transition: filter 0.3s ease, transform 0.4s ease;
  height: auto;
  aspect-ratio: 4/3;
  filter: none;
  object-fit: cover;
}

.gallery-item:hover img {
  filter: none;
  transform: none;
}

.gallery-caption {
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.2s;
  position: static;
  background: none;
  opacity: 1;
  padding: 18px 0 0;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--green);
}

.gallery-caption-tag {
  font-size: 9px;
  font: 12px "JetBrains Mono",monospace;
  color: var(--gray);
  margin-top: 6px;
}

.gallery-item::after {
  content: attr(data-slot);
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: var(--gray);
  font-size: 9px;
  padding: 3px 7px;
  letter-spacing: 1px;
  pointer-events: none;
  display: none;
}

/* FAQ */

.faq {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 36px 0 0;
  gap: 0;
  border-top: 1px solid var(--green-dark);
}

.faq-item {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--green-dark);
  background: transparent;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  transition: color 0.15s, background 0.15s;
  line-height: 1.5;
  font: 500 18px/1.5 Manrope,Arial,sans-serif;
  color: var(--green);
  padding: 25px 0;
  align-items: center;
}

.faq-question::before {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  content: none;
}

.faq-question:hover {
  background: transparent;
  color: var(--accent);
}

.faq-question.open {
  border-bottom: 1px solid var(--green-dark);
  border: 0;
  color: var(--accent);
}

.faq-chevron {
  margin-left: auto;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  padding-left: 12px;
  font-size: 12px;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  font: 400 16px/1.8 Manrope,Arial,sans-serif;
  padding: 0;
  transition: none;
}

.faq-answer.open {
  max-height: none;
  padding: 0 48px 24px 0;
}

.faq-answer::before {
  color: var(--gray);
  content: none;
}

/* TECH */

.tech-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px;
}

.tech-tag {
  border: 1px solid var(--green-dark);
  font-size: 11px;
  transition: all 0.15s;
  font: 12px/1.7 "JetBrains Mono",monospace;
  padding: 8px 13px;
  border-color: #ccd9d3;
  color: var(--gray-light);
  border-radius: 4px;
}

.tech-tag:hover {
  background: #e5eeea;
  color: var(--accent);
  border-color: var(--accent);
}

/* ABOUT */

.about-block {
  border-left: 3px solid var(--accent);
  margin-top: 20px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  grid-column: 2;
  grid-row: 2/4;
}

.about-block p {
  max-width: 100%;
  font-size: 18px;
  margin-bottom: 18px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.invaders {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  grid-column: 1;
  grid-row: 3;
  margin-top: 16px;
}

.invader {
  opacity: 0;
  transition: opacity 0.4s ease;
  user-select: none;
}

.invader pre {
  font-family: "JetBrains Mono", monospace;
  font-size: 7px;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--accent);
}

#omnie:hover .invader, #about:hover .invader {
  opacity: 1;
}

#omnie:hover .invader:nth-child(1), #about:hover .invader:nth-child(1) {
  transition-delay: 0s;
}

#omnie:hover .invader:nth-child(2), #about:hover .invader:nth-child(2) {
  transition-delay: 0.1s;
}

#omnie:hover .invader:nth-child(3), #about:hover .invader:nth-child(3) {
  transition-delay: 0.2s;
}

#omnie:hover .invader:nth-child(4), #about:hover .invader:nth-child(4) {
  transition-delay: 0.3s;
}

/* FORM */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 11px;
  font: 500 14px Manrope,Arial,sans-serif;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 4px;
}

label::before {
  color: var(--accent);
  content: none;
}

input, textarea, select {
  background: var(--bg2);
  border: 1px solid var(--green-dark);
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--green);
}

input::placeholder, textarea::placeholder {
  color: var(--gray);
}

select option {
  background: var(--bg);
}

textarea {
  min-height: 170px;
}

.submit-btn {
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
  font: 600 16px Manrope,Arial,sans-serif;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 16px 24px;
  letter-spacing: 0;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--green);
  transition: left 0.2s ease;
  z-index: 0;
  display: none;
}

.submit-btn:hover, .submit-btn:focus-visible {
  color: var(--bg);
}

.submit-btn:hover::before, .submit-btn:focus-visible::before {
  left: 0;
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-note {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 18px;
}

.form-note::before {
  content: none;
}

.form-status-error {
  color: #a82525 !important;
}

/* FOOTER */

footer {
  opacity: 1;
  animation: none;
  padding: 44px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand {
  font-weight: 700;
  color: var(--green);
  font-size: 25px;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.15s;
  font-size: 15px;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--green-dark);
  padding-top: 16px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.cursor {
  display: inline-block;
  height: 15px;
  margin-left: 3px;
  vertical-align: middle;
  animation: none;
  width: 5px;
  background: var(--accent);
}

#modem-btn {
  bottom: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid #2d2d2d;
  font-family: "JetBrains Mono", monospace;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 500;
  letter-spacing: 1px;
  position: static;
  display: block;
  margin: 0 auto 24px;
  font-size: 12px;
  color: #637376;
  border-color: #cbd6d2;
  padding: 8px 12px;
  border-radius: 4px;
}

#modem-btn:hover {
  border-color: #666;
  color: #666;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  nav {
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
  }
}

/* Premium light theme overrides */

.brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  border-bottom: 1px solid var(--green-dark);
}

.site-title .cursor {
  display: none;
}

.brandbar nav {
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 1;
  animation: none;
  gap: 22px;
}

.brandbar nav a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.brandbar nav a::before {
  content: none;
}

.brandbar nav a:last-child {
  color: var(--accent);
}

.lang-switch a.active {
  background: #e7eeeb;
  border-radius: 4px;
}

h1 {
  font-size: clamp(44px,5.2vw,76px);
  line-height: 1.07;
  letter-spacing: -.06em;
  font-weight: 600;
  margin-bottom: 26px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-link:first-child {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hero-link:first-child::after {
  content: "↗";
  margin-left: 24px;
}

.hero-link:hover {
  background: #dbe8e2;
  color: var(--green);
  transform: translateY(-2px);
}

.hero-link:first-child:hover {
  background: #0c5948;
  color: #fff;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 26px 0;
  border-top: 1px solid var(--green-dark);
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}

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

.benefits span {
  color: var(--accent);
  font-size: 23px;
}

.section-label::before,.section-label::after {
  content: none;
}

.service-type {
  font: 12px "JetBrains Mono",monospace;
  color: var(--accent);
  margin-bottom: 12px;
}

.gallery-item--wide img {
  aspect-ratio: 2.3/1;
}

#omnie,#about {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  column-gap: 70px;
  align-items: start;
}

#omnie .section-label,#about .section-label {
  grid-column: 1/-1;
}

#omnie h2,#about h2 {
  grid-column: 1;
  grid-row: 2;
}

#omnie>.tech-list,#about>.tech-list {
  grid-column: 2;
}

form {
  max-width: 800px;
  background: #eef3f0;
  padding: 36px;
  border-radius: 8px;
}

input,textarea,select {
  font: 400 16px/1.6 Manrope,Arial,sans-serif;
  background: #fff;
  border: 1px solid #c8d4ce;
  padding: 13px 15px;
  border-radius: 4px;
  color: var(--green);
}

.submit-btn:hover {
  background: #0c5948;
  color: #fff;
}

.form-note span {
  font-family: "JetBrains Mono",monospace;
  display: block;
  color: var(--gray) !important;
  font-size: 12px;
}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible {
  outline: 3px solid #16866c;
  outline-offset: 4px;
}

@media (min-width:1500px) {
  .hero-wrap {
    gap: 85px;
  }
}

@media (max-width:1100px) {
  .container {
    padding: 0 32px;
  }

  .brandbar {
    flex-wrap: wrap;
    padding: 24px 0;
    gap: 20px;
  }

  .brandbar nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-wrap {
    gap: 32px;
    margin-top: 48px;
  }

  .hero-photo {
    min-height: 430px;
  }

  .services {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .benefits {
    font-size: 14px;
    gap: 16px;
  }
}

@media (max-width:700px) {
  .container {
    padding: 0 22px;
  }

  .brandbar {
    gap: 18px;
    min-height: auto;
  }

  .brandbar nav {
    gap: 12px 20px;
    justify-content: flex-start;
  }

  .brandbar nav a {
    font-size: 13px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    margin: 38px 0 28px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(44px,9vw,65px);
  }

  .hero-photo {
    min-height: 0;
    aspect-ratio: 4/3;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-photo::after {
    font-size: 12px;
    padding: 12px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .benefits div {
    font-size: 15px;
  }

  section {
    padding: 58px 0;
  }

  .services {
    margin-top: 28px;
  }

  .service-item {
    padding: 24px 18px;
  }

  .service-name {
    font-size: 20px;
  }

  .service-desc {
    font-size: 15px;
  }

  .service-icon {
    margin-bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--wide img {
    aspect-ratio: 4/3;
  }

  .gallery-caption-text {
    font-size: 18px;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px 0;
  }

  .faq-answer.open {
    padding-right: 12px;
  }

  #omnie,#about {
    display: block;
  }

  .about-block {
    margin-top: 24px;
  }

  .about-block p {
    font-size: 17px;
  }

  .invaders {
    margin: 20px 0;
  }

  .invader {
    opacity: .35;
  }

  form {
    padding: 24px 18px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top {
    gap: 24px;
  }

  .prompt-line {
    line-height: 1.9;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    gap: 12px;
  }

  .hero-link {
    font-size: 15px;
  }

  .status {
    font-size: 12px;
  }
}

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

  .brandbar nav {
    gap: 10px 17px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-link {
    padding: 12px 16px;
  }

  .site-title {
    font-size: 23px;
  }
}

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

  *,*::before,*::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-link:hover {
    transform: none;
  }
}

/* Text-led hero: complete without installation photography. */

.hero-text {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 80px;
  align-items: start;
}

.hero-text .tagline {
  grid-column: 1/-1;
  max-width: none;
  margin-bottom: 30px;
}

.hero-text h1 {
  grid-column: 1;
  grid-row: 2/6;
  font-size: clamp(48px,5.8vw,82px);
  margin: 0;
}

.hero-text .hero-lead {
  grid-column: 2;
  font-size: 18px;
  margin: 0 0 16px;
}

.hero-text .hero-sub,.hero-text .status,.hero-text .hero-actions {
  grid-column: 2;
}

.hero-text .hero-sub {
  margin-top: 0;
}

.hero-text .status {
  margin-top: 12px;
}

.hero-text .hero-actions {
  margin-top: 24px;
}

@media (max-width:1100px) {
  .hero-text {
    column-gap: 40px;
  }

  .hero-wrap {
    margin: 60px 0 44px;
  }
}

@media (max-width:700px) {
  .hero-text {
    display: block;
  }

  .hero-wrap {
    margin: 40px 0 32px;
  }

  .hero-text .tagline {
    margin-bottom: 24px;
  }

  .hero-text h1 {
    font-size: clamp(44px,9vw,65px);
    margin-bottom: 26px;
  }

  .hero-text .hero-lead {
    font-size: 17px;
  }

  .hero-text .hero-sub {
    font-size: 16px;
  }
}
