:root {
  --ink: #202a27;
  --ink-soft: #5c6864;
  --forest-950: #172923;
  --forest-900: #20372f;
  --forest-800: #2d4a40;
  --forest-700: #48665c;
  --sand-50: #fcfbf7;
  --sand-100: #f4f0e7;
  --sand-200: #e8dfcf;
  --stone-100: #edf0ed;
  --stone-200: #dce2de;
  --stone-300: #c7d0cb;
  --orange: #bb7148;
  --orange-dark: #975737;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(33, 52, 46, 0.08);
  --radius-sm: 7px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.85rem, 6.3vw, 5.7rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--forest-950);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 7rem 0;
}

.section-soft {
  background: var(--sand-100);
}

.section-dark {
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.76);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  max-width: 780px;
  gap: 0.95rem;
  margin-bottom: 2.75rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.eyebrow {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #dba17f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(32, 55, 47, 0.1);
  background: rgba(252, 251, 247, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--forest-950);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span:last-child {
  margin-top: 0.22rem;
  color: var(--orange-dark);
  font-size: 0.57rem;
  letter-spacing: 0.28em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-inline-start: auto;
  color: var(--forest-800);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  border-color: var(--orange);
  color: var(--forest-950);
}

.language-select {
  width: 92px;
  min-height: 40px;
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  padding: 0 0.62rem;
  background: var(--white);
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-inline-start: auto;
  border: 1px solid var(--stone-300);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest-950);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest-950) url("../assets/images/hero-camp-supply.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 38, 32, 0.93) 0%, rgba(21, 38, 32, 0.72) 45%, rgba(21, 38, 32, 0.14) 80%),
    linear-gradient(0deg, rgba(21, 38, 32, 0.6), transparent 46%);
  content: "";
}

.hero-inner {
  display: grid;
  max-width: 800px;
  gap: 1.25rem;
  padding: 7.5rem 0 5.5rem;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero-copy {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--orange-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-light:hover,
.btn-light:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--forest-900);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus {
  background: var(--forest-800);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.7rem;
  margin: 1rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li::before {
  margin-inline-end: 0.45rem;
  color: #dba17f;
  content: "●";
  font-size: 0.48rem;
  vertical-align: middle;
}

.buyer-strip {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.72);
}

.buyer-strip-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.buyer-strip p {
  margin: 0;
  color: #dba17f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.buyer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1.2rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.catalog-card {
  display: grid;
  min-height: 226px;
  gap: 0.7rem;
  align-content: space-between;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.68);
  transition: 180ms ease;
}

.catalog-card:hover {
  border-color: var(--stone-300);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.catalog-card h3 {
  margin-bottom: 0.5rem;
}

.catalog-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.catalog-number {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.category-link,
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--forest-800);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-link:hover,
.text-link:hover {
  color: var(--orange-dark);
}

.range-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.showcase-card div {
  padding: 1.25rem;
}

.showcase-card p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card,
.process-card,
.contact-card {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
}

.feature-card h3,
.process-card h3,
.contact-card h3 {
  margin-bottom: 0.58rem;
}

.feature-card p,
.process-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-number,
.process-number {
  display: block;
  margin-bottom: 0.88rem;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 4rem;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 0.95rem;
}

.split-copy p {
  color: var(--ink-soft);
}

.section-dark .split-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.supply-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.supply-panel div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.supply-panel span {
  display: block;
  margin-bottom: 0.3rem;
  color: #dba17f;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.supply-panel strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.66rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding-inline-start: 1.18rem;
  color: inherit;
  font-size: 0.91rem;
  font-weight: 700;
}

.check-grid li::before {
  position: absolute;
  inset-inline-start: 0;
  color: var(--orange);
  content: "✓";
}

.process-grid,
.capability-grid,
.contact-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  min-height: 200px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}

.process-card p {
  color: rgba(255, 255, 255, 0.66);
}

.capability-card {
  border-top: 1px solid var(--stone-300);
  padding-top: 1.05rem;
}

.capability-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
}

.capability-card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--sand-100);
}

.cta-band p {
  max-width: 720px;
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.inquiry-section {
  background: var(--forest-950);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.inquiry-copy {
  display: grid;
  gap: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-copy h2 {
  color: var(--white);
}

.contact-lines {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.7rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-lines span {
  margin-top: 0.45rem;
  color: #dba17f;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-lines a,
.contact-lines p {
  margin: 0;
  color: var(--white);
  overflow-wrap: anywhere;
}

.wechat-qr-card {
  display: grid;
  scroll-margin-top: 96px;
  max-width: 430px;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0.65rem;
  border: 1px solid rgba(220, 226, 222, 0.78);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--sand-50);
  color: var(--forest-900);
  box-shadow: 0 16px 34px rgba(4, 15, 12, 0.14);
}

.wechat-qr-image {
  width: 132px;
  height: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(72, 102, 92, 0.42);
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.wechat-qr-card h3 {
  color: var(--forest-950);
  font-family: inherit;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.wechat-qr-card p {
  margin: 0.42rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.wechat-qr-card strong {
  display: block;
  margin-top: 0.48rem;
  color: var(--orange-dark);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-qr-link {
  margin-top: 0.55rem;
  color: #dba17f;
  font-size: 0.78rem;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  border-radius: var(--radius);
  padding: 1.45rem;
  background: var(--sand-50);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.32rem;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--forest-800);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  padding: 0.76rem 0.82rem;
  background: var(--white);
  color: var(--ink);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(187, 113, 72, 0.17);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.page-hero {
  padding: 7rem 0 6rem;
  background: var(--forest-900);
}

.page-hero-inner {
  display: grid;
  max-width: 860px;
  gap: 1rem;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card a {
  color: var(--forest-800);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locale-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.locale-card {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
}

.locale-card h3 {
  margin-bottom: 0.5rem;
}

.locale-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  background: #18241f;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer .brand {
  display: inline-flex;
  color: var(--white);
}

.site-footer .brand span:last-child {
  color: #dba17f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 2rem;
  padding: 3.5rem 0 2.4rem;
}

.footer-grid > div {
  min-width: 0;
}

.site-footer h2 {
  margin-bottom: 0.85rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: table;
  margin-bottom: 0.38rem;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #dba17f;
}

.footer-intro {
  max-width: 290px;
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.footer-contact {
  margin-top: 0.8rem;
  font-size: 0.84rem;
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.language-links a {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-inquiry {
  display: none;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 0.7rem;
    font-size: 0.65rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-showcase,
  .feature-grid,
  .locale-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 60px;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.6rem 1.25rem 0.9rem;
    border-top: 1px solid var(--stone-200);
    background: var(--sand-50);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 44px;
  }

  .language-select {
    margin-inline-start: auto;
  }

  .split,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-inquiry {
    position: fixed;
    z-index: 110;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 5px;
    background: var(--forest-950);
    box-shadow: 0 -8px 24px rgba(8, 20, 17, 0.16);
  }

  .mobile-inquiry a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-inquiry a:first-child {
    background: var(--orange);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    gap: 0.55rem;
  }

  .site-header .brand {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .site-header .brand span:last-child {
    font-size: 0.44rem;
    letter-spacing: 0.16em;
  }

  .language-select {
    width: 68px;
    padding-inline: 0.4rem;
  }

  .section {
    padding: 4.7rem 0;
  }

  .hero {
    min-height: 650px;
    background-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(21, 38, 32, 0.94), rgba(21, 38, 32, 0.52)),
      linear-gradient(0deg, rgba(21, 38, 32, 0.82), rgba(21, 38, 32, 0.1));
  }

  .hero-inner {
    padding: 6.5rem 0 4rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.15rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .buyer-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.05rem 0;
  }

  .buyer-list {
    justify-content: flex-start;
  }

  .catalog-grid,
  .range-showcase,
  .feature-grid,
  .process-grid,
  .capability-grid,
  .contact-directory,
  .locale-sections {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 195px;
  }

  .check-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .form-row.full {
    grid-column: auto;
  }

  .wechat-qr-card {
    max-width: 100%;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.72rem;
  }

  .wechat-qr-image {
    width: 108px;
    height: 108px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.8rem;
  }

  .site-footer .brand {
    white-space: normal;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .site-header .brand {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .site-header .brand span:last-child {
    display: none;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .language-select {
    width: 58px;
    font-size: 0.68rem;
  }
}
