:root {
  --maxw: 1240px;
  --gutter: 1rem;
  --surface: #ffffff;
  --surface-muted: #f4f7f3;
  --page-bg: #eef3ee;
  --line: #d5dfd4;
  --text: #112218;
  --text-soft: #4f6357;
  --forest-900: #173b2c;
  --forest-800: #1f4b37;
  --forest-700: #2f6b50;
  --accent: #d8941e;
  --accent-soft: #f6e2b9;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 12px 30px rgba(17, 34, 24, 0.08);
  --shadow-hover: 0 18px 34px rgba(17, 34, 24, 0.14);
  --font-body: "Trebuchet MS", "Lucida Sans Unicode", "Verdana", sans-serif;
  --font-display: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(222, 232, 220, 0.75), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(241, 227, 197, 0.45), transparent 45%),
    var(--page-bg);
  font-family: var(--font-body);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 35, 26, 0.94);
  color: #edf6ef;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-top {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 255px;
}

.brand img {
  width: auto;
  height: 46px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.header-search {
  flex: 1;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.search-field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f7fff8;
  min-height: 46px;
  padding: 0 1.05rem;
  font-size: 0.98rem;
  font-family: var(--font-body);
}

.search-field::placeholder {
  color: rgba(239, 251, 242, 0.84);
}

.search-field:focus {
  outline: 2px solid rgba(216, 148, 30, 0.45);
  border-color: rgba(246, 226, 185, 0.75);
  background: rgba(255, 255, 255, 0.2);
}

.primary-btn {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 1.35rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #2f1b00;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.primary-btn:hover {
  background: #e2a433;
  transform: translateY(-1px);
}

.quick-contact {
  border: 1px solid rgba(246, 226, 185, 0.5);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  color: #f7f0de;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.quick-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 226, 185, 0.9);
}

.menu-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(11, 26, 20, 0.62);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

.menu-list li {
  flex: 0 0 auto;
}

.menu-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1rem;
  color: rgba(238, 248, 241, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.menu-list a:hover,
.menu-list a.active {
  color: #fff9eb;
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent);
}

.menu-list::-webkit-scrollbar {
  height: 7px;
}

.menu-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.chip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip-list a,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 75, 55, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest-900);
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.chip-list a:hover,
.chip:hover {
  border-color: rgba(216, 148, 30, 0.65);
  background: #fff;
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(100deg, #122d21 0%, #1d4330 100%);
  color: #dceadf;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.15rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f8f1;
}

.footer-brand img {
  height: 34px;
  width: auto;
}

.footer-note {
  margin: 0;
  color: rgba(220, 234, 223, 0.92);
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.83rem;
  color: rgba(220, 234, 223, 0.74);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-top {
    flex-wrap: wrap;
    padding-bottom: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .header-search {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .brand-title {
    font-size: 1rem;
  }

  .brand img {
    height: 40px;
  }

  .quick-contact {
    margin-left: auto;
  }

  .search-field,
  .primary-btn {
    min-height: 42px;
  }

  .menu-list a {
    min-height: 44px;
    font-size: 0.7rem;
    padding: 0 0.8rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}
