@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --orange: #e8621a;
  --orange-light: #f5e8df;
  --dark: #1a1a2e;
  --mid: #4a4a6a;
  --light: #f7f6f4;
  --border: #e2ddd8;
  --white: #ffffff;
  --green: #2a7a3b;
  --green-light: #e8f5eb;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.6;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 11px;
  padding: 6px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #aaa; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 20px; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.header-main .logo { flex-shrink: 0; }
.header-search-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.lang-switch { flex-shrink: 0; }
.lang-select {
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.lang-select:hover, .lang-select:focus { border-color: var(--orange); }
.logo {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--dark); }
.search-box {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.search-box input {
  border: none;
  padding: 7px 14px;
  width: 260px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  background: var(--light);
}
.search-box button {
  background: var(--orange);
  border: none;
  color: white;
  padding: 7px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
}
.search-box button:hover { background: #c9551a; }

nav {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
nav a {
  text-decoration: none;
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }
nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
nav a.nav-btn {
  padding: 8px 18px;
  margin: 8px 0;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  justify-content: center;
  text-align: center;
}
nav a.nav-btn:hover { border-color: var(--orange); color: var(--orange); }
nav a.nav-btn-primary {
  background: var(--orange);
  color: white !important;
  border-color: var(--orange);
}
nav a.nav-btn-primary:hover { background: #c9551a; border-color: #c9551a; color: white !important; }
nav a.nav-btn.active { border-color: var(--orange); color: var(--orange); }
.nav-btn-combined { display: none !important; }
@media (max-width: 1000px) {
  .nav-buttons .nav-btn:not(.nav-btn-combined) { display: none !important; }
  .nav-btn-combined { display: inline-flex !important; }
  .nav-contact { display: none !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #c9551a; }
.btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline:hover { background: var(--orange-light); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #2d2d4e; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--dark);
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,.1);
}
.form-input::placeholder { color: #bbb; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #888;
  font-size: 12px;
  padding: 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ccc; }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 11px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim { animation: fadeUp 0.45s ease both; }
.anim-d1 { animation-delay: .05s; }
.anim-d2 { animation-delay: .10s; }
.anim-d3 { animation-delay: .15s; }
.anim-d4 { animation-delay: .20s; }
.anim-d5 { animation-delay: .25s; }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .search-box { display: none; }
  header { padding: 0 16px; }
  footer { padding: 24px 16px; }
}
