/* ---------- Design tokens ---------- */
:root {
  --navy: #172647;
  --navy-dark: #0D1730;
  --gold: #D9A441;
  --gold-dark: #B8842F;
  --light-bg: #F7F6F2;
  --white: #FFFFFF;
  --text-gray: #5C6478;
  --border: #E7E4DC;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(23, 38, 71, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #C7D0E0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-contact a { color: #C7D0E0; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact .divider { margin: 0 8px; opacity: 0.4; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--navy);
}
.brand-name em { color: var(--gold); font-style: normal; }
.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-gray);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--gold-dark); }
.primary-nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
}
.primary-nav .nav-cta:hover { background: var(--gold); color: var(--navy-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 56px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-copy h1 span { color: var(--gold); }
.hero-copy p {
  color: #C7D0E0;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}
.hero-panel p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0;
}
.hero-panel-mark { flex-shrink: 0; }

/* ---------- Section titles ---------- */
.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin: 0 0 10px;
  position: relative;
  text-wrap: balance;
}
.section-title.align-left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin: 0 0 44px;
}

/* ---------- Services ---------- */
.services { padding: 90px 0; background: var(--white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--navy);
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.card p { color: var(--text-gray); font-size: 0.95rem; margin: 0; }

/* ---------- Why Kosovo ---------- */
.why-kosovo { background: var(--light-bg); padding: 90px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--navy-dark);
  border-bottom: 2px solid var(--navy-dark);
  transform: rotate(-45deg);
}
.why-visual { display: flex; flex-direction: column; gap: 20px; }
.why-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.why-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.tile strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.tile span { font-size: 0.85rem; color: var(--text-gray); }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: var(--white); padding: 44px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: 0.9rem; color: #C7D0E0; }

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about p { color: var(--text-gray); font-size: 1.05rem; }
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { margin: 0 0 8px; color: var(--navy-dark); font-size: 1.6rem; }
.cta-inner p { margin: 0 0 24px; color: var(--navy-dark); opacity: 0.85; }
.cta-inner .btn-primary { background: var(--navy); color: var(--white); }
.cta-inner .btn-primary:hover { background: var(--navy-dark); }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; background: var(--light-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-info p { color: var(--text-gray); }
.contact-details { margin-top: 24px; }
.contact-details li { margin-bottom: 12px; }
.contact-details a:hover { color: var(--gold-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-row .optional { font-weight: 400; color: var(--text-gray); }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: #1B7A43; }
.form-status.error { color: #B3261E; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #9AA7BE;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col p { margin: 12px 0 0; font-size: 0.9rem; line-height: 1.6; max-width: 34ch; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}
.footer-heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-links a, .footer-contact a, .footer-contact li {
  font-size: 0.9rem;
  color: #9AA7BE;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #33415C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9AA7BE;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #22304A;
  padding: 20px 24px;
}
.footer-copy { font-size: 0.85rem; margin: 0; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .why-inner, .contact-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-photo { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .primary-nav.open { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .why-tiles { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: 1.9rem; }
  .footer-inner { justify-content: center; text-align: center; }
}
