/* contact.css */

:root {
  --purple-deep: #4f29c4;
  --purple: #6b3df0;
  --gold: #f0a429;
  --ink: #14121f;
  --muted: #5c5670;
  --paper: #faf8ff;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 50px rgba(47, 24, 108, 0.14);
  --shadow-card: 0 8px 30px rgba(35, 18, 90, 0.08);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --maxw: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(800px 440px at 15% 100%, #fdebcf 0%, transparent 50%),
    radial-gradient(1000px 500px at 90% 10%, #efe8ff 0%, transparent 55%), var(--paper);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--maxw), calc(100% - 2.5rem));
  margin-inline: auto;
}

.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;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  background: rgba(250, 248, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 41, 196, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(79, 41, 196, 0.25);
}

.brand-name {
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a {
  padding: 0.35rem 0;
  color: var(--muted);
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--purple-deep);
}

.site-nav a.is-active {
  color: var(--purple-deep);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
}

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(79, 41, 196, 0.35);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.05);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  position: absolute;
  left: 12px;
}

.nav-toggle-bar {
  top: 21px;
}

.nav-toggle-bar::before {
  content: "";
  top: -7px;
}

.nav-toggle-bar::after {
  content: "";
  top: 7px;
}

@media (max-width: 800px) {
  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .brand {
    order: 0;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 0.25rem;
    gap: 0.75rem;
  }

  .nav-check:checked ~ .site-nav {
    display: flex;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-left: 0;
  }
}

.page-main {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5rem);
}

.page-intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 0.65rem;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-panel,
.form-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(79, 41, 196, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.company-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  color: var(--purple-deep);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
}

.label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  color: var(--purple-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #d7840f;
}

.address {
  line-height: 1.55;
  color: var(--muted);
}

.map-note {
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff9f0 0%, #efe8ff 100%);
  border: 1px solid rgba(240, 164, 41, 0.35);
}

.map-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.form-hint {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(79, 41, 196, 0.18);
  background: #fdfbff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 61, 240, 0.2);
}

.btn-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #1a1028;
  background: linear-gradient(135deg, var(--gold) 0%, #ff8b3d 100%);
  box-shadow: 0 10px 28px rgba(240, 164, 41, 0.4);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  filter: brightness(1.04);
}

.site-footer {
  border-top: 1px solid rgba(79, 41, 196, 0.1);
  background: #130b24;
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer img {
  border-radius: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: auto;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-copy {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 560px) {
  .footer-links {
    margin-left: 0;
  }
}
