@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Work+Sans:wght@400;500&display=swap');

:root {
  --ink: #0e0e0f;
  --paper: #ededed;
  --accent: #445dc9;
  --pink: #cf8a82;
  --olive: #a49e71;
  --lavender: #9ab1ed;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid rgba(237,237,237,0.08);
}

.site-header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 20px; display: block; }

.main-nav { display: flex; gap: 36px; }

.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { opacity: 1; }

.main-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.nav-toggle { display: none; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(237,237,237,0.08);
  background: var(--ink);
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 13px;
  color: rgba(237,237,237,0.6);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a { text-decoration: underline; text-underline-offset: 3px; color: rgba(237,237,237,0.85); }
.footer-links a:hover { color: var(--paper); }

/* ---------- HOME ---------- */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
}

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

/* ---------- ABOUT ---------- */
.about-hero {
  background: var(--ink);
  padding: 110px 0 130px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 46px;
}

.about-hero p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.6;
  max-width: 920px;
  margin: 0 auto;
}

.what-we-do {
  background: var(--paper);
  color: var(--ink);
  padding: 90px 0 110px;
}

.what-we-do h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 42px);
  text-align: center;
  margin-bottom: 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: 48px 28px 40px;
  text-align: center;
}

.service-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: block;
}

.service-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(237,237,237,0.75);
}

/* ---------- CONTACT ---------- */
.contact-hero {
  min-height: calc(100vh - var(--header-h) - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, #0e0e0f 0%, #0e0e0f 35%, #4b53b0 78%, #6a6fd0 100%);
}

.contact-card {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 620px;
  padding: 56px 56px 48px;
  border-radius: 2px;
}

.contact-card h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}

.field label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  margin-bottom: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  background: transparent;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  padding: 4px 0 10px;
  color: var(--ink);
}

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

.field.full { margin-bottom: 30px; }

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

.submit-btn {
  margin-top: 12px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.submit-btn:hover { opacity: 0.85; }

.form-note {
  margin-top: 18px;
  font-size: 13px;
  min-height: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .main-nav { gap: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 40px 28px; }
  .about-hero { padding: 70px 0 80px; }
  .what-we-do { padding: 64px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- TERMS & PRIVACY ---------- */
.legal-page {
  background: var(--paper);
  color: var(--ink);
  min-height: calc(100vh - var(--header-h));
  padding: 90px 0 110px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 22px;
}

.legal-content h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin: 44px 0 14px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p { margin-bottom: 18px; }

.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  opacity: 0.6;
  font-size: 13px !important;
  margin-top: 50px;
}
