@font-face {
  font-family: "BestHeading";
  src: url("/assets/fonts/airborne-heading.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "BestBody";
  src: url("/assets/fonts/airborne-body.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "BestSmall";
  src: url("/assets/fonts/airborne-small.woff2") format("woff2");
  font-display: swap;
}

:root {
  --black: #1d1d1d;
  --accent: #30f9bb;
  --blue: #1028ae;
  --page-width: 901px;
  --contact-width: 853px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: #000;
  background: #fff;
  font-family: "BestBody", "Courier New", monospace;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  text-transform: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 10001;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border: 2px solid #000;
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 1000;
  pointer-events: none;
}

.header-inner {
  width: min(var(--page-width), 100%);
  height: 52px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(20, 20, 20, 0.96);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  width: 157px;
  margin-left: 45px;
  line-height: 0;
}

.brand img {
  width: 157px;
  height: auto;
  display: block;
}

.desktop-nav {
  margin-left: auto;
  margin-right: 45px;
  display: flex;
  align-items: center;
  gap: 33px;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 15px;
  line-height: 1;
  color: #fff;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent);
}

.desktop-nav a.active::before {
  content: "•";
  position: absolute;
  left: -10px;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  margin-right: 19px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: none;
  background: #fff;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  margin-top: 98px;
  margin-left: 105px;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.6;
}

.mobile-menu a {
  color: var(--accent);
}

.mobile-menu a.active {
  color: #000;
}

.mobile-menu a.active::before {
  content: "•";
  margin-right: 3px;
  color: var(--accent);
}

.hero-home {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}

.hero-video,
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 44px));
  margin-top: 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: "BestHeading", "Courier New", monospace;
  font-size: 50px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 112%, 0);
  animation: heroTextLoad 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.hero-line:nth-child(2) > span {
  animation-delay: 0.12s;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 190px;
  height: 45px;
  margin-top: 27px;
  border: 2px solid currentColor;
  background: transparent;
  color: currentColor;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 15px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-copy .outline-button {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: heroButtonLoad 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

.outline-button:hover {
  border-color: transparent;
  background: var(--accent);
  color: #000;
}

.outline-button .arrow {
  font-size: 22px;
  transform: translateY(-1px);
}

.media-banner {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #ddd;
}

.media-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-banner img,
.media-banner video,
.hero-video {
  will-change: transform;
}

.content-wrap {
  width: min(var(--page-width), calc(100% - 80px));
  margin: 0 auto;
}

.text-page {
  min-height: calc(100svh - 90px);
}

.about-page .text-page {
  padding-top: 49px;
  padding-bottom: 42px;
}

.text-page h1,
.services-copy h1,
.terms-copy h1 {
  margin: 0;
  font-family: "BestHeading", "Courier New", monospace;
  font-size: 50px;
  line-height: 1.16;
  font-weight: 400;
}

.about-copy {
  max-width: var(--page-width);
}

.about-copy p {
  margin: 12px 0 29px;
  font-size: 18px;
  line-height: 1.6;
}

.services-page .media-banner {
  background: #b9b9b9;
}

.services-page .media-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
}

.services-main {
  padding-top: 112px;
  padding-bottom: 64px;
  min-height: calc(100svh - 350px - 90px);
}

.services-copy p {
  margin: 17px 0 0;
  max-width: 896px;
  font-size: 18px;
  line-height: 1.6;
}

.services-copy p + p {
  margin-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 11px;
}

.service-card {
  height: 234px;
  padding: 25px 26px 22px;
  background: var(--accent);
  color: #000;
}

.service-icon {
  width: 33px;
  height: 33px;
  color: #000;
}

.service-card h2 {
  margin: 9px 0 14px;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
}

.contact-page main {
  min-height: calc(100svh - 90px);
}

.contact-wrap {
  width: min(var(--contact-width), calc(100% - 80px));
  margin: 0 auto;
  padding-top: 128px;
  padding-bottom: 64px;
}

.contact-wrap h1 {
  margin: 0 0 24px;
  font-family: "BestHeading", "Courier New", monospace;
  font-size: 31px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-intro {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  margin-top: 27px;
}

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

.field {
  display: grid;
  gap: 28px;
}

.field label {
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.4;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  height: 27px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 2px solid #000;
  border-radius: 0;
  background: transparent;
  color: #000;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

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

.field textarea {
  height: 75px;
  resize: vertical;
}

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

.submit-button {
  width: 342px;
  height: 45px;
  margin-top: 15px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.submit-button:hover {
  border-color: transparent;
  background: var(--accent);
  color: #000;
}

.terms-copy {
  width: min(811px, calc(100% - 80px));
  margin: 0 auto;
  min-height: calc(100svh - 90px);
  padding-top: 105px;
  padding-bottom: 28px;
}

.terms-copy h1 {
  margin-bottom: 2px;
}

.terms-copy .subtitle {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
}

.terms-copy p,
.terms-copy li {
  font-size: 18px;
  line-height: 1.2;
}

.terms-copy p {
  margin: 0 0 18px;
}

.terms-copy h2 {
  margin: 25px 0 18px;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.terms-copy ul {
  margin: -15px 0 0 31px;
  padding: 0;
}

.terms-copy li {
  padding-left: 2px;
}

.thank-you {
  min-height: calc(100svh - 90px);
  display: grid;
  align-content: center;
  width: min(var(--page-width), calc(100% - 80px));
  margin: 0 auto;
  padding-top: 80px;
}

.thank-you h1 {
  margin: 0 0 18px;
  font-family: "BestHeading", "Courier New", monospace;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 400;
}

.thank-you p {
  max-width: 720px;
  margin: 0 0 28px;
}

.site-footer {
  position: relative;
  height: 90px;
  font-family: "BestSmall", "Courier New", monospace;
  font-size: 15px;
  line-height: 1;
  color: #000;
  background: #fff;
}

.footer-inner {
  position: relative;
  width: min(964px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-copy {
  justify-self: center;
}

.footer-terms {
  justify-self: center;
}

.footer-terms:hover {
  color: var(--accent);
}

.designer-credit {
  position: absolute;
  left: 0;
  bottom: 10px;
  color: #b7b7b7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 1;
  text-transform: lowercase;
}

.designer-credit span {
  color: #0097ff;
  text-transform: uppercase;
}

.privacy-float {
  position: fixed;
  left: 35px;
  bottom: 36px;
  z-index: 9998;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: none;
}

.privacy-float svg {
  width: 34px;
  height: 34px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.4s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  text-transform: none;
}

#cookie-banner.hidden {
  display: none !important;
}

.cookie-content {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
}

.cookie-text {
  color: #333;
  font-size: 14px;
}

.cookie-text a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.cookie-btn-reject {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #d0d0d0;
}

.cookie-btn-reject:hover {
  background: #e5e5e5;
  border-color: #bbb;
}

.cookie-btn-accept {
  background: #0066cc;
  color: white;
}

.cookie-btn-accept:hover {
  background: #0052a3;
}

.cookie-close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  color: #333;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  text-transform: none;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 28px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 20px;
  color: #222;
  margin: 0;
  font-weight: 600;
}

.modal-close {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #666;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #333;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.category-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 13px;
  color: #666;
}

.toggle-switch {
  width: 40px;
  height: 24px;
  background: #ccc;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}

.toggle-switch:checked {
  background: #0066cc;
}

.toggle-switch:checked::after {
  left: 18px;
}

.toggle-switch:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.modal-footer button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.modal-btn-reject {
  background: #f0f0f0;
  color: #333;
}

.modal-btn-reject:hover {
  background: #e0e0e0;
}

.modal-btn-accept {
  background: #0066cc;
  color: white;
}

.modal-btn-accept:hover {
  background: #0052a3;
}

.cookie-settings-link {
  color: #0066cc;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.cookie-settings-link:hover {
  text-decoration: underline;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextLoad {
  0% {
    opacity: 0;
    transform: translate3d(0, 112%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroButtonLoad {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body {
    transition: opacity 0.18s ease;
  }

  body.page-leaving {
    opacity: 0;
  }

  .motion-enabled .motion-item {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    filter: blur(2px);
    transition:
      opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
  }

  .motion-enabled .motion-item.text-load {
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 42px, 0);
    transition:
      clip-path 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.45s ease,
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--motion-delay, 0ms);
  }

  .motion-enabled .service-card.motion-item {
    transform: translate3d(0, 44px, 0);
  }

  .motion-enabled .motion-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  .motion-enabled .motion-item.text-load.is-visible {
    clip-path: inset(0 0 0 0);
  }

  .outline-button,
  .submit-button,
  .desktop-nav a,
  .footer-terms,
  .service-card {
    will-change: transform, color, background-color, opacity;
  }

  .service-card {
    transition:
      opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.18s ease;
  }

  .service-card:hover {
    transform: translate3d(0, -4px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-line > span,
  .hero-copy .outline-button {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: 100%;
  }

  .brand {
    margin-left: calc(50% - 78.5px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .content-wrap,
  .contact-wrap,
  .terms-copy,
  .thank-you {
    width: calc(100% - 80px);
  }

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

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: stretch;
  }

  .cookie-content {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-btn {
    flex: 1;
    min-height: 40px;
  }

  .modal-content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .header-inner {
    height: 52px;
  }

  .hero-copy {
    width: calc(100% - 80px);
    margin-top: 22px;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1;
  }

  .outline-button {
    width: 190px;
    height: 45px;
    margin-top: 28px;
  }

  .media-banner {
    height: 350px;
  }

  .about-page .text-page {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .text-page h1,
  .services-copy h1,
  .terms-copy h1,
  .thank-you h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .about-copy p {
    margin: 12px 0 28px;
    font-size: 18px;
    line-height: 1.6;
  }

  .services-main {
    padding-top: 112px;
    padding-bottom: 26px;
  }

  .services-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 19px;
  }

  .service-card {
    height: 213px;
    padding: 24px 28px 22px;
  }

  .service-card h2 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 15px;
  }

  .contact-wrap {
    width: calc(100% - 88px);
    padding-top: 69px;
    padding-bottom: 34px;
  }

  .contact-wrap h1 {
    margin-bottom: 26px;
    font-size: 31px;
    line-height: 1.15;
  }

  .contact-intro {
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-form {
    margin-top: 27px;
  }

  .form-grid {
    column-gap: 36px;
    row-gap: 24px;
  }

  .field {
    gap: 28px;
  }

  .field label {
    font-size: 14px;
  }

  .field textarea {
    height: 75px;
  }

  .submit-button {
    width: min(342px, 100%);
    margin-top: 25px;
  }

  .terms-copy {
    width: calc(100% - 80px);
    padding-top: 105px;
    padding-bottom: 28px;
  }

  .terms-copy .subtitle,
  .terms-copy p,
  .terms-copy li,
  .terms-copy h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .site-footer {
    height: 90px;
    font-size: 12px;
  }

  .footer-inner {
    width: calc(100% - 68px);
  }

  .footer-copy {
    justify-self: start;
  }

  .footer-terms {
    justify-self: end;
  }

  .designer-credit {
    display: none;
  }

  .privacy-float {
    left: 35px;
    bottom: 35px;
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 380px) {
  .content-wrap,
  .terms-copy,
  .thank-you {
    width: calc(100% - 58px);
  }

  .contact-wrap {
    width: calc(100% - 60px);
  }

  .form-grid {
    column-gap: 24px;
  }
}
