/* ─── Fonts ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Armenian:wght@100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --green:   #006958;
  --green-d: #004f42;
  --teal:    #1bccb4;
  --ink:     #16161c;
  --mid:     #3f3b3c;
  --soft:    #7a7575;
  --ghost:   #696969;
  --rule:    #e4e0d8;
  --bg:      #ffffff;
  --warm:    #f7f5f1;
  --max-w:   1040px;
  --font:    'Noto Sans Armenian', sans-serif;
}

/* ─── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── Top bar ─────────────────────────────────────────────── */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  z-index: 200;
}

/* ─── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 199;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-logo::after {
  content: '●';
  font-size: 0.3rem;
  color: var(--teal);
  animation: breathe 4s ease-in-out infinite;
  margin-top: -2px;
}
@keyframes breathe {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 1; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ghost);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ─── Type ────────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.75rem;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.020em;
  color: var(--ink);
  margin-bottom: 2rem;
}
h1 span { display: block; }
h1 em   { font-style: italic; color: var(--soft); }
h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: -0.08em;
  color: var(--ink);
}
h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.012em;
}
.rule-line {
  width: 40px; height: 2px;
  background: var(--green);
  margin-bottom: 1.75rem;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
}
.btn-primary:hover { background: var(--green-d); border-color: var(--green-d); }
.btn-outline {
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--rule);
}
.btn-outline:hover { border-color: var(--mid); }
.text-link {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--green); border-color: var(--green); }

/* ─── Forms ───────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 0.3rem; }
label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
}
input, textarea {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.55rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
input:focus, textarea:focus { border-bottom-color: var(--green); }
input::placeholder, textarea::placeholder { color: var(--rule); }
textarea { resize: none; min-height: 72px; line-height: 1.6; }
button[type="submit"], .submit-btn {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}
button[type="submit"]:hover, .submit-btn:hover { background: var(--green-d); }
.form-note {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--ghost);
  margin-top: 0.65rem;
}
.form-success {
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(0,105,88,0.05);
  border-left: 2px solid var(--green);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.8;
}
.form-success strong { font-weight: 500; color: var(--green); }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem 2.5rem 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-contact a {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.8); }
.footer-rule { height: 1px; background: rgba(255,255,255,0.08); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-endgame {
  font-size: 0.6rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.1);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1.5rem; }
  .container  { padding: 0 1.5rem; }
  .nav-links  { gap: 1.5rem; }
  footer      { padding: 2.5rem 1.5rem 2rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
}
