@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #4b68f0;
  --pink: #f05898;
  --black: #0a0a0a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.is-hidden {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
}

.logo-mark {
  display: flex;
  gap: 4px;
  align-items: center;
}

.logo-mark span {
  width: 13px;
  height: 13px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border: 1px solid #fff;
}

.cta.is-active {
  background: #fff;
  color: #111;
}

/* ===== CONTACT ===== */
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 96px);
  padding: 110px clamp(22px, 4vw, 56px) 72px;
  align-items: start;
}

.contact-copy h1 {
  margin: 0 0 28px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 11vw, 140px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  color: var(--blue);
  text-transform: uppercase;
}

.contact-lead {
  margin: 0 0 22px;
  max-width: 28ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.25;
  color: #eee9e6;
}

.contact-sub {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #cfcfd4;
}

.contact-sub a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff;
}

.contact-sub a:hover {
  color: var(--blue);
}

/* Form */
.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.form-field label em {
  color: #ff4d4d;
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #fff;
  color: #111;
  border: 0;
  border-radius: 0;
  padding: 14px 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  box-shadow: 0 0 0 2px #ff4d4d;
}

.form-legal {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c8c8ce;
}

.form-legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.form-submit {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  background: var(--blue);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.form-success {
  margin: 8px 0 0;
  padding: 14px 16px;
  background: rgba(75, 104, 240, 0.18);
  border: 1px solid var(--blue);
  font-size: 14px;
  line-height: 1.45;
}

/* Awards */
.awards-bar {
  background: var(--blue);
  overflow: hidden;
  padding: 34px 0;
}

.awards-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: awards-marquee 32s linear infinite;
  will-change: transform;
}

.awards-track img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}

@keyframes awards-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 56px clamp(22px, 4vw, 48px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.7fr;
  gap: 28px;
}

.footer-brand h6,
.newsletter-title {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.footer-tag {
  margin: 0 0 14px !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px !important;
  color: #bbb !important;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #cfcfd4;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-title {
  margin-top: 34px !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.newsletter-input {
  margin-top: 16px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4a4f;
}

.footer-grid > div:not(.footer-brand) h6 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  display: block;
  color: #d0d0d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-grid > div:not(.footer-brand) p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.dot.is-blue {
  background: var(--blue);
}

.dot.is-pink {
  background: var(--pink);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #2c2c30;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9f9fa5;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .contact-page,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-submit {
    width: 100%;
  }
}

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