
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 40px;
  background: #fff;
  color: #111;
}

header {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 42px auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

header h1 {
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

nav a {
  padding: 9px 10px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid #ddd;
  color: #999;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.language-switch a,
.language-switch .active {
  padding: 9px 2px;
  color: #777;
  text-decoration: none;
}

.language-switch .active {
  color: #111;
  font-weight: 500;
}

.standalone-language-switch {
  display: flex;
  width: 900px;
  max-width: 100%;
  justify-content: flex-end;
  margin: 0 auto 12px;
  padding-left: 0;
  border-left: 0;
}

.back-to-top {
  display: block;
  width: max-content;
  margin: 70px auto 10px;
  padding: 8px 0;
  color: #111;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  color: #777;
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  width: 900px;
  max-width: 100%;
  margin: 80px auto 18px;
  padding: 28px 0 8px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #666;
}

.site-footer-copyright {
  font-size: 11px;
  letter-spacing: 0.1px;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-privacy {
  width: max-content;
  color: #888;
  font-size: 9px;
  letter-spacing: 0.2px;
  text-decoration: none;
  line-height: 1;
}

.site-footer-privacy:hover,
.site-footer-privacy:focus-visible {
  color: #111;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-social a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  color: #777;
  transform: translateY(-1px);
}

.footer-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon-is-filled {
  fill: currentColor;
  stroke: none;
}

.privacy-page {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-page h1 {
  margin: 70px 0 28px;
  color: #111;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.privacy-page h2 {
  margin: 38px 0 12px;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.privacy-page p,
.privacy-page ul {
  margin: 0 0 18px;
}

.privacy-page li {
  margin-bottom: 8px;
}

.privacy-page a {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  z-index: 10001;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 24px;
  border-top: 1px solid #ddd;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.06);
}

.cookie-consent[hidden],
.cookie-settings[hidden] {
  display: none;
}

.cookie-consent p {
  max-width: 620px;
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-consent a {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent button,
.cookie-settings {
  border: 1px solid #bbb;
  border-radius: 0;
  padding: 9px 15px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.cookie-consent button.primary {
  border-color: #111;
  background: #111;
  color: #fff;
}

.cookie-settings {
  position: fixed;
  z-index: 10000;
  bottom: 10px;
  left: 10px;
  padding: 5px 8px;
  border-color: #ddd;
  color: #777;
  font-size: 9px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  gap: 30px;
}

.not-found-page {
  width: 1180px;
  max-width: 100%;
  margin: 42px auto 90px;
  text-align: center;
}

.not-found-art {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.not-found-message {
  margin: 24px auto 0;
  color: #333;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.not-found-link {
  display: inline-block;
  margin-top: 14px;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.not-found-link:hover,
.not-found-link:focus-visible {
  color: #777;
}

.tile {
  text-decoration: none;
  color: #111;
}

.tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.tile-title {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  color: #111;
  text-decoration: none;
  line-height: 1.45;
}

.people-index,
.people-page {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.people-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eee;
  color: #fff;
  text-decoration: none;
}

.people-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.people-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.58));
}

.people-card span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.people-card:hover img {
  transform: scale(1.025);
}

.instagram-page {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.instagram-heading {
  max-width: 620px;
  margin: 0 auto 38px;
  text-align: center;
}

.instagram-heading p {
  color: #666;
  line-height: 1.65;
}

.instagram-heading a {
  color: #111;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.instagram-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eee;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease, opacity 300ms ease;
}

.instagram-item:hover img {
  transform: scale(1.025);
  opacity: 0.9;
}

.instagram-empty {
  padding: 70px 20px;
  border: 1px solid #e5e5e5;
  color: #666;
  text-align: center;
  line-height: 1.7;
}

.instagram-empty a {
  color: #111;
}

.people-gallery {
  columns: 3 280px;
  column-gap: 22px;
}

.people-gallery a {
  margin-bottom: 0;
  padding-bottom: 22px;
}

.gallery {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  columns: 4 200px;
  column-gap: 18px;
}

.drone-gallery {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.drone-layout-switcher {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -18px auto 34px;
}

.drone-layout-switcher button {
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  color: #555;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.7px;
  cursor: pointer;
}

.drone-layout-switcher button:hover,
.drone-layout-switcher button[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}

.drone-gallery.layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}

.drone-gallery.layout-grid a,
.drone-gallery.layout-justified a {
  margin-bottom: 0;
}

.drone-gallery.layout-masonry {
  columns: 3 280px;
  column-gap: 22px;
}

.drone-gallery.layout-masonry a {
  margin-bottom: 0;
  padding-bottom: 22px;
}

.drone-gallery.layout-justified {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}

.drone-gallery.layout-justified a {
  flex-grow: var(--ratio, 1);
  flex-basis: calc(var(--ratio, 1) * 210px);
}

.drone-gallery.layout-justified::after {
  content: "";
  flex-grow: 999;
  flex-basis: 210px;
}

.drone-gallery.layout-justified img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.about-page {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-intro {
  width: 680px;
  max-width: 100%;
  margin: 0 auto 70px;
}

.about-portrait {
  display: block;
  width: 260px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 34px;
}

.about-intro h1,
.about-section h2 {
  font-weight: normal;
}

.about-intro h1 {
  margin: 0 0 26px;
}

.about-intro p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
}

.about-page a {
  color: #111;
  text-underline-offset: 3px;
}

.about-section {
  margin: 0 auto 76px;
}

.about-section h2 {
  margin: 0 0 34px;
  font-size: 24px;
  text-transform: lowercase;
}

.client-carousel {
  position: relative;
  padding: 0 42px;
}

.client-viewport {
  overflow: hidden;
}

.client-track {
  display: flex;
  gap: 18px;
  transition: transform 500ms ease;
  will-change: transform;
}

.client-logo {
  flex: 0 0 calc((100% - 72px) / 5);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 12px;
  background: #f7f7f7;
}

.client-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-carousel-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  transform: translateY(-50%);
  background: transparent;
  color: #555;
  font: 300 30px/1 Arial, sans-serif;
  cursor: pointer;
}

.client-carousel-button:hover,
.client-carousel-button:focus-visible {
  color: #111;
}

.client-carousel-button.previous {
  left: 0;
}

.client-carousel-button.next {
  right: 0;
}

.about-contact {
  margin: 38px 0 0;
  font-size: 14px;
}

.contact-page {
  width: 700px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.contact-heading {
  width: 560px;
  max-width: 100%;
  margin: 0 auto 44px;
  text-align: center;
}

.contact-heading h1 {
  margin-bottom: 18px;
}

.contact-heading p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.contact-email-card {
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 34px;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.contact-email-card p {
  margin: 0 auto 26px;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
}

.contact-email-link {
  display: inline-block;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  color: #777;
}

.contact-instagram-link {
  display: inline-block;
  margin-top: 24px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
}

.contact-instagram-link:hover,
.contact-instagram-link:focus-visible {
  color: #111;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
}

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

.contact-field.full-width,
.contact-consent,
.contact-actions {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 11px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 14px;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #111;
  outline: 1px solid #111;
  outline-offset: -1px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

.contact-consent input {
  margin-top: 2px;
}

.contact-actions {
  text-align: center;
}

.contact-submit {
  border: 1px solid #111;
  padding: 12px 30px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #fff;
  color: #111;
}

.contact-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: #666;
  font-size: 12px;
}

.blog-index,
.blog-post {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.blog-index > h1 {
  margin-bottom: 14px;
}

.blog-intro {
  margin: 0 auto 52px;
  color: #666;
  text-align: center;
  font-size: 14px;
}

.blog-search {
  width: 560px;
  max-width: 100%;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-search label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-search input {
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
}

.blog-search input:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.blog-search-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: #888;
  font-size: 11px;
  letter-spacing: 0.4px;
}

.blog-no-results {
  margin: 48px 0;
  color: #666;
  text-align: center;
  font-size: 14px;
}

.blog-card[hidden],
.blog-no-results[hidden] {
  display: none;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid #e3e3e3;
  text-align: center;
}

.blog-card:last-child {
  border-bottom: 1px solid #e3e3e3;
}

.blog-card time,
.blog-post-header time {
  color: #888;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 12px 0 14px;
  font-size: 22px;
  font-weight: normal;
}

.blog-card-cover {
  display: block;
  overflow: hidden;
  width: 72%;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  background: #f2f2f2;
}

.blog-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.blog-card-cover:hover img {
  transform: scale(1.025);
}

.blog-card-cover-placeholder {
  padding: 12%;
}

.blog-card-cover-placeholder img {
  object-fit: contain;
}

.blog-card a,
.blog-back {
  color: #111;
  text-decoration: none;
}

.blog-read-more {
  font-size: 12px;
  letter-spacing: 0.6px;
}

.blog-back {
  display: inline-block;
  margin-bottom: 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.blog-post > article {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
}

.blog-post-header {
  display: block;
  width: auto;
  max-width: none;
  margin: 0 0 44px;
  text-align: center;
}

.blog-post-header h1 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.25;
}

.blog-post-body {
  font-size: 15px;
  line-height: 1.75;
}

.blog-post-body p,
.blog-post-body ul,
.blog-post-body ol,
.blog-post-body blockquote {
  margin: 0 0 22px;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3 {
  margin: 48px 0 20px;
  text-align: left;
  line-height: 1.3;
}

.blog-post-body a {
  color: #111;
  text-underline-offset: 3px;
}

.blog-post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
}

.blog-post-body .post-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.blog-post-body .post-gallery img {
  width: 100%;
  margin: 0;
}

.blog-post-body iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  margin: 34px auto;
  border: 0;
}

.missing-blog-asset {
  margin: 28px 0;
  padding: 22px;
  border: 1px dashed #bbb;
  color: #777;
  text-align: center;
  font-size: 12px;
}

.missing-download {
  color: #777;
  font-style: italic;
}

.about-map {
  width: 800px;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  border: 0;
}

.press-list {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.press-list li {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.gallery a {
  display: block;
  break-inside: avoid;
  margin-bottom: 18px;
  color: #111;
  text-decoration: none;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

.gallery-intro {
  width: 720px;
  max-width: 100%;
  margin: -12px auto 46px;
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
}

.travel-gallery {
  columns: 2 420px;
  column-gap: 28px;
}

.travel-gallery a {
  margin-bottom: 0;
  padding-bottom: 30px;
}

.gallery-caption {
  padding: 12px 8px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.7px;
  line-height: 1.55;
}

.gallery-caption strong {
  font-weight: 500;
  text-transform: uppercase;
}

.gallery-caption-description {
  display: block;
  margin-top: 3px;
  letter-spacing: 0.25px;
  color: #666;
  text-transform: none;
}

h1 {
  font-weight: normal;
  text-align: center;
  margin: 40px 0;
}

.back {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox img {
  max-width: 96vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
}

.lightbox > div {
  max-width: 100%;
  text-align: center;
}

.lightbox-caption {
  color: white;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-top: 14px;
}

.lightbox.show {
  display: flex;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 28px;
  color: white;
  font-size: 36px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  body {
    margin: 28px;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
  }

  .gallery {
    columns: 3 200px;
  }

  .drone-gallery.layout-masonry {
    columns: 2 240px;
  }

  .client-logo {
    flex-basis: calc((100% - 54px) / 4);
  }
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 34px;
    text-align: center;
  }

  header nav {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  nav a {
    min-height: 42px;
    padding: 11px 9px;
  }
}

@media (max-width: 600px) {
  body {
    margin: 18px;
  }

  .site-footer {
    margin-top: 58px;
    padding-top: 20px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .site-footer-legal,
  .site-footer-privacy {
    align-items: center;
    width: auto;
  }

  .site-footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer-social {
    gap: 16px;
  }

  .privacy-page h1 {
    margin-top: 44px;
    font-size: 32px;
  }

  nav a {
    font-size: 12px;
  }

  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }

  .cookie-consent-actions button {
    flex: 1;
    min-height: 42px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery {
    columns: 1;
  }

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

  .people-card {
    aspect-ratio: 4 / 3;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .drone-gallery.layout-grid {
    grid-template-columns: 1fr;
  }

  .drone-gallery.layout-masonry {
    columns: 1;
  }

  .drone-gallery.layout-justified {
    display: block;
  }

  .drone-gallery.layout-justified a {
    margin-bottom: 22px;
  }

  .drone-gallery.layout-justified img {
    height: auto;
    object-fit: contain;
  }

  .about-intro {
    margin-bottom: 52px;
  }

  .about-intro p {
    font-size: 14px;
  }

  .client-carousel {
    padding: 0 32px;
  }

  .client-track {
    gap: 12px;
  }

  .client-logo {
    flex-basis: calc((100% - 12px) / 2);
  }

  .client-logo {
    height: 86px;
  }

  .drone-layout-switcher {
    gap: 6px;
    margin-bottom: 26px;
  }

  .drone-layout-switcher button {
    min-height: 42px;
    padding: 8px 12px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox img {
    max-width: calc(100vw - 36px);
    max-height: 78vh;
  }

  .lightbox-close {
    top: 10px;
    right: 16px;
    padding: 8px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 16px;
  }

  .contact-submit {
    min-height: 44px;
  }

  .blog-card h2 {
    font-size: 19px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .blog-card-cover {
    width: 100%;
  }

  .blog-post-header h1 {
    font-size: 25px;
  }

  .blog-post-body {
    font-size: 14px;
  }

  .blog-post-body .post-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-post-body iframe {
    min-height: 240px;
  }

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

  .contact-field.full-width,
  .contact-consent,
  .contact-actions {
    grid-column: auto;
  }

  header h1 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    transition: none;
  }

  .blog-card-cover img {
    transition: none;
  }

  .people-card img {
    transition: none;
  }
}
