﻿:root {
  --bg: #070809;
  --bg-soft: #111315;
  --panel: rgba(18, 20, 22, 0.92);
  --panel-alt: rgba(24, 27, 29, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(210, 176, 109, 0.28);
  --text: #f4f1ea;
  --muted: #b3b0a8;
  --gold: #d2b06d;
  --gold-soft: #f0d39c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #135de3, #0f2027, #2b3a43);
}

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

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

.contact-shell {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 12px 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 60px;
  padding: 6px 12px 6px 198px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 11, 12, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  overflow: hidden;
}

.brand img {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.contact-layout {
  padding-top: 24px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.contact-copy,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(210, 176, 109, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(23, 25, 27, 0.95), rgba(14, 16, 18, 0.98));
}

.contact-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(28, 31, 33, 0.98), rgba(17, 19, 21, 0.98));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-copy h1,
.form h2 {
  font-family: "Syne", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.lead {
  max-width: 50ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-notes article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-notes span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-notes strong,
.contact-notes strong a {
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-notes a {
  color: var(--gold-soft);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-heading {
  margin-bottom: 2px;
}

.form h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
}

.form p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

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

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

.form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ebe6da;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #8f8b84;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(210, 176, 109, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

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

.submit-btn {
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d39c, #d2b06d);
  color: #161616;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.footer {
  margin-top: 18px;
  padding: 24px 18px;
  background: #000000;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .contact-shell {
    width: min(100% - 18px, 1100px);
  }

  .nav-main {
    min-height: 54px;
    padding: 5px 10px 5px 156px;
  }

  .brand {
    left: 10px;
    max-width: 136px;
  }

  .brand img {
    width: 136px;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(10, 11, 12, 0.96);
  }

  .nav-links.active {
    display: flex;
  }

  .contact-copy,
  .contact-card {
    padding: 18px;
  }

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

@media (max-width: 560px) {
  .contact-shell {
    width: min(100% - 14px, 1100px);
  }

  .nav-main {
    min-height: 50px;
    padding: 5px 8px 5px 124px;
  }

  .brand {
    left: 8px;
    max-width: 108px;
  }

  .brand img {
    width: 108px;
  }

  .contact-layout {
    padding-top: 18px;
  }

  .contact-copy,
  .contact-card {
    border-radius: 22px;
    padding: 16px;
  }

  .contact-copy h1 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 0.92rem;
  }

  .contact-notes article {
    padding: 12px 14px;
  }

  .footer {
    padding: 18px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
  }
}
