:root {
  --geo-ink: #171816;
  --geo-ink-soft: #343733;
  --geo-paper: #f4f1ea;
  --geo-white: #ffffff;
  --geo-gold: #b69b6e;
  --geo-gold-light: #d7c49e;
  --geo-moss: #31483b;
  --geo-line: rgba(23, 24, 22, 0.16);
  --geo-muted: #696d67;
  --geo-header-height: 76px;
  --geo-shell: min(1240px, calc(100% - 48px));
  --geo-shadow: 0 22px 60px rgba(17, 18, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.geo-page {
  margin: 0;
  overflow-wrap: anywhere;
  background: var(--geo-paper);
  color: var(--geo-ink);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

html[lang="mn-MN"] body.geo-page {
  font-family: Arial, "Noto Sans", sans-serif;
}

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

.geo-page a {
  color: inherit;
  text-decoration: none;
}

.geo-page button,
.geo-page input,
.geo-page textarea {
  font: inherit;
}

.geo-page button,
.geo-page a {
  -webkit-tap-highlight-color: transparent;
}

.geo-page :focus-visible {
  outline: 2px solid var(--geo-gold);
  outline-offset: 4px;
}

.geo-shell {
  width: var(--geo-shell);
  margin-inline: auto;
}

.geo-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 9px 16px;
  background: var(--geo-white);
  color: var(--geo-ink);
  transform: translateY(-160%);
}

.geo-skip-link:focus {
  transform: translateY(0);
}

.geo-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--geo-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.geo-eyebrow::before {
  flex: 0 0 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.geo-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
}

.geo-heading--small {
  font-size: 50px;
}

.geo-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--geo-ink-soft);
  font-size: 19px;
  line-height: 1.85;
}

.geo-lead--light {
  color: rgba(255, 255, 255, 0.7);
}

.geo-section {
  padding: 104px 0;
}

.geo-section--white {
  background: var(--geo-white);
}

.geo-section--dark {
  background: var(--geo-ink);
  color: var(--geo-white);
}

.geo-section--moss {
  background: var(--geo-moss);
  color: var(--geo-white);
}

.geo-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.geo-section__head .geo-lead {
  margin: 0;
}

.geo-site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--geo-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 18, 16, 0.52);
  color: var(--geo-white);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.geo-site-header.is-scrolled,
.geo-site-header.is-open {
  border-bottom-color: var(--geo-line);
  background: rgba(244, 241, 234, 0.98);
  color: var(--geo-ink);
  box-shadow: 0 8px 28px rgba(17, 18, 16, 0.08);
}

.geo-site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: var(--geo-shell);
  height: 100%;
  margin-inline: auto;
}

.geo-wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.geo-wordmark small {
  max-width: 120px;
  margin-left: 9px;
  padding-left: 9px;
  border-left: 1px solid currentColor;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.geo-nav {
  justify-self: end;
}

.geo-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-nav__list > li {
  position: relative;
}

.geo-nav__list > li > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.geo-nav__list > li > a::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: var(--geo-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.geo-nav__list > li > a:hover::after,
.geo-nav__list > li.active > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.geo-nav .subnav {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  display: none;
  min-width: 184px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--geo-line);
  border-radius: 4px;
  background: var(--geo-paper);
  color: var(--geo-ink);
  box-shadow: var(--geo-shadow);
  list-style: none;
}

.geo-nav li:hover > .subnav,
.geo-nav li:focus-within > .subnav {
  display: block;
}

.geo-nav .subnav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
}

.geo-header-tools {
  display: flex;
  gap: 10px;
  align-items: center;
}

.geo-language {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid currentColor;
}

.geo-language a {
  display: grid;
  min-width: 40px;
  min-height: 44px;
  place-items: center;
  border-right: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.geo-language a:last-child {
  border-right: 0;
}

.geo-language a[aria-current="page"] {
  background: currentColor;
}

.geo-language a[aria-current="page"] span {
  color: var(--geo-ink);
}

.geo-site-header.is-scrolled .geo-language a[aria-current="page"] span,
.geo-site-header.is-open .geo-language a[aria-current="page"] span {
  color: var(--geo-paper);
}

.geo-menu-button {
  display: none;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.geo-menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.geo-site-header.is-open .geo-menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.geo-site-header.is-open .geo-menu-button span:nth-child(2) {
  opacity: 0;
}

.geo-site-header.is-open .geo-menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.geo-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--geo-ink);
  color: var(--geo-white);
}

.geo-hero-track,
.geo-hero-slide {
  position: absolute;
  inset: 0;
}

.geo-hero-slide {
  display: none;
}

.geo-hero-slide:first-child,
.geo-hero-slide.is-active {
  display: block;
}

.js .geo-hero-slide:first-child {
  display: none;
}

.js .geo-hero-slide.is-active {
  display: block;
}

.geo-hero-slide.is-leaving {
  display: block;
  opacity: 0;
  transition: opacity 500ms ease;
}

.geo-hero__image,
.geo-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.geo-hero__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.geo-hero__shade {
  background: rgba(9, 10, 9, 0.58);
}

.geo-hero__content {
  position: relative;
  z-index: 2;
  width: var(--geo-shell);
  margin-inline: auto;
  padding-top: 245px;
}

.geo-hero__content h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
}

.geo-hero__content > p:not(.geo-eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.geo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.geo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 22px;
  border: 1px solid var(--geo-gold);
  border-radius: 2px;
  background: var(--geo-gold);
  color: var(--geo-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.geo-button:hover {
  background: var(--geo-gold-light);
  transform: translateY(-2px);
}

.geo-button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--geo-white);
}

.geo-button--outline {
  background: transparent;
  color: var(--geo-ink);
}

.geo-button--ghost:hover {
  border-color: var(--geo-white);
  background: var(--geo-white);
  color: var(--geo-ink);
}

.geo-hero__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(17, 18, 16, 0.9);
}

.geo-hero__fact {
  min-height: 122px;
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.geo-hero__fact:last-child {
  border-right: 0;
}

.geo-hero__fact strong {
  display: block;
  color: var(--geo-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
}

.geo-hero__fact span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.geo-intro {
  padding-top: 132px;
}

.geo-intro__grid,
.geo-detail-grid,
.geo-contact-grid,
.geo-form-layout,
.geo-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 88px;
  align-items: center;
}

.geo-intro__copy p {
  margin-top: 22px;
}

.geo-intro__copy .geo-definition {
  padding-left: 24px;
  border-left: 2px solid var(--geo-gold);
  color: var(--geo-ink);
  font-size: 19px;
}

.geo-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--geo-moss);
  font-size: 13px;
  font-weight: 700;
}

.geo-intro__image {
  position: relative;
}

.geo-intro__image::before {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--geo-gold);
  content: "";
}

.geo-intro__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.geo-space-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.geo-space-card {
  position: relative;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--geo-ink);
  color: var(--geo-white);
}

.geo-space-card:nth-child(1),
.geo-space-card:nth-child(5) {
  grid-column: span 8;
}

.geo-space-card__media,
.geo-space-card__media img,
.geo-space-card__shade {
  position: absolute;
  inset: 0;
}

.geo-space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.geo-space-card__shade {
  top: 54%;
  background: rgba(9, 10, 9, 0.62);
}

.geo-space-card__content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.geo-space-card__content small,
.geo-space-card__content strong,
.geo-space-card__content span {
  display: block;
}

.geo-space-card__content small {
  color: var(--geo-gold-light);
  font-size: 11px;
  font-weight: 700;
}

.geo-space-card__content strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
}

.geo-space-card__content span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.geo-space-card:hover .geo-space-card__media img {
  transform: scale(1.04);
}

.geo-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.geo-system-item {
  padding: 40px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.geo-system-item:last-child {
  border-right: 0;
}

.geo-system-item strong {
  display: block;
  color: var(--geo-gold-light);
  font-size: 12px;
}

.geo-system-item h3 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

.geo-system-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.geo-factory-grid,
.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.geo-factory-card,
.geo-content-card {
  overflow: hidden;
  border: 1px solid var(--geo-line);
  border-radius: 4px;
  background: var(--geo-white);
}

.geo-factory-card__media,
.geo-content-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #d9d6cf;
}

.geo-factory-card__media img,
.geo-content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.geo-factory-card:hover img,
.geo-content-card:hover img {
  transform: scale(1.035);
}

.geo-factory-card__content,
.geo-content-card__body {
  padding: 26px;
}

.geo-factory-card__content small,
.geo-content-card__body small {
  color: var(--geo-gold);
  font-size: 11px;
  font-weight: 700;
}

.geo-factory-card__content h3,
.geo-content-card__body h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
}

.geo-factory-card__content p,
.geo-content-card__body p {
  margin: 12px 0 0;
  color: var(--geo-muted);
  font-size: 14px;
}

.geo-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.geo-process__item {
  padding: 32px 24px 8px 0;
}

.geo-process__item span {
  color: var(--geo-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.geo-process__item h3 {
  margin: 16px 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.geo-process__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.geo-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.geo-article {
  padding-top: 20px;
  border-top: 1px solid var(--geo-line);
}

.geo-article time,
.geo-news-row time {
  color: var(--geo-gold);
  font-size: 11px;
  font-weight: 700;
}

.geo-article h3 {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.geo-article p {
  margin: 14px 0 0;
  color: var(--geo-muted);
  font-size: 14px;
}

.geo-article > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--geo-moss);
  font-size: 13px;
  font-weight: 700;
}

.geo-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.72fr);
  gap: 96px;
}

.geo-faq__list {
  border-top: 1px solid var(--geo-line);
}

.geo-faq details {
  border-bottom: 1px solid var(--geo-line);
}

.geo-faq summary {
  position: relative;
  min-height: 60px;
  padding: 20px 48px 20px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.geo-faq summary::-webkit-details-marker {
  display: none;
}

.geo-faq summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--geo-gold);
  content: "+";
  font-size: 26px;
  font-weight: 300;
}

.geo-faq details[open] summary::after {
  content: "−";
}

.geo-faq details p {
  margin: 0 0 24px;
  color: var(--geo-muted);
}

.geo-cta {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  background: var(--geo-ink) var(--geo-cta-image) center / cover no-repeat;
  color: var(--geo-white);
}

.geo-cta__shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 12, 0.66);
}

.geo-cta__content {
  position: relative;
  z-index: 2;
  width: var(--geo-shell);
  margin-inline: auto;
}

.geo-cta__content p:not(.geo-eyebrow) {
  max-width: 640px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.geo-inner-hero {
  min-height: 400px;
  padding: 160px 0 70px;
  background: var(--geo-ink);
  color: var(--geo-white);
}

.geo-inner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.08;
}

.geo-inner-hero p:not(.geo-eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.geo-subnav {
  overflow-x: auto;
  border-bottom: 1px solid var(--geo-line);
  background: var(--geo-white);
  scrollbar-width: none;
}

.geo-subnav::-webkit-scrollbar {
  display: none;
}

.geo-subnav ul {
  display: flex;
  min-width: max-content;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-subnav a {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  font-size: 14px;
}

.geo-subnav .active a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--geo-gold);
  content: "";
}

.geo-list-intro {
  max-width: 820px;
  margin-bottom: 52px;
}

.geo-answer {
  margin-top: 30px;
  padding: 24px 26px;
  border-left: 3px solid var(--geo-gold);
  border-radius: 0 4px 4px 0;
  background: rgba(182, 155, 110, 0.1);
}

.geo-answer strong {
  display: block;
  color: var(--geo-moss);
  font-size: 12px;
  text-transform: uppercase;
}

.geo-answer p {
  margin: 8px 0 0;
  color: var(--geo-ink-soft);
  font-size: 18px;
}

.geo-detail-grid {
  align-items: start;
}

.geo-detail-visual {
  margin: 0;
}

.geo-detail-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.geo-detail-visual figcaption {
  margin-top: 10px;
  color: var(--geo-muted);
  font-size: 12px;
}

.geo-meta-row {
  display: flex;
  gap: 12px;
  margin: 22px 0;
  color: var(--geo-muted);
  font-size: 13px;
}

.geo-richtext {
  color: var(--geo-ink-soft);
}

.geo-richtext--detail {
  max-width: 920px;
  margin-top: 78px;
}

.geo-richtext h2,
.geo-richtext h3,
.geo-richtext h4 {
  margin: 2em 0 0.7em;
  color: var(--geo-ink);
  line-height: 1.35;
}

.geo-richtext h2 {
  font-size: 32px;
}

.geo-richtext h3 {
  font-size: 24px;
}

.geo-richtext p,
.geo-richtext ul,
.geo-richtext ol {
  margin: 1em 0;
}

.geo-richtext img {
  width: auto;
  height: auto;
  margin: 28px auto;
}

.geo-richtext table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.geo-richtext td,
.geo-richtext th {
  min-width: 120px;
  padding: 10px;
  border: 1px solid var(--geo-line);
  text-align: left;
}

.geo-news-list {
  border-top: 1px solid var(--geo-line);
}

.geo-news-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--geo-line);
}

.geo-news-row__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.geo-news-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geo-news-row__body h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
}

.geo-news-row__body p {
  margin: 13px 0 0;
  color: var(--geo-muted);
}

.geo-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.geo-case-card {
  overflow: hidden;
  border-radius: 4px;
  background: var(--geo-white);
}

.geo-case-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.geo-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.geo-case-card:hover img {
  transform: scale(1.035);
}

.geo-case-card__body {
  display: block;
  padding: 24px;
}

.geo-case-card__body small,
.geo-case-card__body strong,
.geo-case-card__body span {
  display: block;
}

.geo-case-card__body small {
  color: var(--geo-gold);
  font-size: 11px;
  font-weight: 700;
}

.geo-case-card__body strong {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 27px;
  font-weight: 400;
}

.geo-case-card__body span {
  margin-top: 8px;
  color: var(--geo-muted);
  font-size: 14px;
}

.geo-gallery__stage {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d9d6cf;
}

.geo-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geo-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.geo-gallery__thumbs button {
  min-height: 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.geo-gallery__thumbs button.is-active {
  border-color: var(--geo-gold);
}

.geo-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.geo-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.geo-related-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.geo-article-page {
  padding: 86px 0 104px;
}

.geo-article-shell {
  max-width: 900px;
}

.geo-article-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
}

.geo-article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  color: var(--geo-muted);
  font-size: 13px;
}

.geo-article-byline a {
  margin-left: auto;
  color: var(--geo-moss);
  font-weight: 700;
}

.geo-article-cover {
  margin: 46px 0;
}

.geo-article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.geo-prevnext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--geo-line);
  background: var(--geo-line);
}

.geo-prevnext a {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  background: var(--geo-paper);
}

.geo-prevnext small {
  color: var(--geo-gold);
  font-size: 11px;
  font-weight: 700;
}

.geo-prevnext span {
  margin-top: 5px;
  font-size: 14px;
}

.geo-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 52px;
}

.geo-pagination a,
.geo-pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
  place-items: center;
  border: 1px solid var(--geo-line);
  background: var(--geo-white);
}

.geo-pagination .page-num-current,
.geo-pagination .active {
  border-color: var(--geo-gold);
  background: var(--geo-gold);
}

.geo-empty {
  padding: 50px 0;
  color: var(--geo-muted);
  text-align: center;
}

.geo-contact-grid,
.geo-form-layout {
  align-items: start;
}

.geo-contact-list {
  margin-top: 40px;
  border-top: 1px solid var(--geo-line);
}

.geo-contact-list > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--geo-line);
}

.geo-contact-list small {
  color: var(--geo-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.geo-contact-content {
  padding: 30px;
  border: 1px solid var(--geo-line);
  border-radius: 4px;
  background: var(--geo-white);
}

.geo-contact-list--compact {
  margin-top: 30px;
}

.geo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--geo-line);
  border-radius: 4px;
  background: var(--geo-white);
}

.geo-form label {
  display: block;
}

.geo-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--geo-ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.geo-form input,
.geo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--geo-line);
  border-radius: 2px;
  background: var(--geo-paper);
  color: var(--geo-ink);
}

.geo-form textarea {
  resize: vertical;
}

.geo-form__full {
  grid-column: 1 / -1;
}

.geo-form__actions {
  display: flex;
  gap: 12px;
}

.geo-site-footer {
  padding: 70px 0 28px;
  background: #10110f;
  color: var(--geo-white);
}

.geo-site-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 62px;
  align-items: start;
}

.geo-site-footer__brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.geo-site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-site-footer__nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.geo-site-footer__contact strong {
  display: block;
  margin: 5px 0;
  color: var(--geo-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.geo-site-footer__contact span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.geo-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.geo-site-footer__bottom p {
  margin: 0;
}

.js .geo-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .geo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .geo-reveal[data-delay="1"] {
  transition-delay: 90ms;
}

@media (min-width: 821px) {
  .geo-hero {
    min-height: min(900px, calc(100vh - 48px));
  }
}

@media (min-width: 821px) and (max-height: 850px) {
  .geo-hero__content {
    padding-top: 180px;
  }

  .geo-hero__content h1 {
    font-size: 72px;
  }

  .geo-hero__content > p:not(.geo-eyebrow) {
    margin-top: 20px;
    font-size: 18px;
  }

  .geo-actions {
    margin-top: 24px;
  }
}

@media (max-width: 1120px) {
  :root {
    --geo-shell: min(100% - 40px, 1040px);
  }

  .geo-site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .geo-menu-button {
    display: block;
  }

  .geo-nav {
    position: fixed;
    top: var(--geo-header-height);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - var(--geo-header-height));
    justify-self: stretch;
    overflow-y: auto;
    border-top: 1px solid var(--geo-line);
    background: var(--geo-paper);
    color: var(--geo-ink);
  }

  .geo-site-header.is-open .geo-nav {
    display: block;
  }

  .geo-nav__list {
    display: block;
    width: var(--geo-shell);
    margin-inline: auto;
    padding: 14px 0 26px;
  }

  .geo-nav__list > li > a {
    min-height: 50px;
    border-bottom: 1px solid var(--geo-line);
    font-size: 16px;
  }

  .geo-nav__list > li > a::after {
    display: none;
  }

  .geo-nav .subnav {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .geo-section__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .geo-section__head .geo-lead {
    max-width: 760px;
  }

  .geo-space-card,
  .geo-space-card:nth-child(1),
  .geo-space-card:nth-child(5) {
    grid-column: span 6;
  }

  .geo-intro__grid,
  .geo-detail-grid,
  .geo-contact-grid,
  .geo-form-layout,
  .geo-product-hero {
    gap: 54px;
  }
}

@media (max-width: 820px) {
  :root {
    --geo-header-height: 68px;
    --geo-shell: calc(100% - 32px);
  }

  .geo-section {
    padding: 76px 0;
  }

  .geo-heading {
    font-size: 48px;
  }

  .geo-heading--small {
    font-size: 40px;
  }

  .geo-site-header__inner {
    gap: 12px;
  }

  .geo-wordmark {
    font-size: 25px;
  }

  .geo-wordmark small {
    display: none;
  }

  .geo-language a {
    min-width: 36px;
  }

  .geo-hero {
    min-height: 790px;
  }

  .geo-hero__content {
    padding-top: 160px;
  }

  .geo-hero__content h1 {
    max-width: 640px;
    font-size: 64px;
  }

  .geo-hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .geo-hero__fact {
    min-height: 110px;
    padding: 20px 16px;
  }

  .geo-hero__fact strong {
    font-size: 24px;
  }

  .geo-intro {
    padding-top: 88px;
  }

  .geo-intro__grid,
  .geo-detail-grid,
  .geo-contact-grid,
  .geo-form-layout,
  .geo-product-hero {
    grid-template-columns: 1fr;
  }

  .geo-detail-visual {
    order: -1;
  }

  .geo-intro__image {
    width: calc(100% - 18px);
  }

  .geo-space-card,
  .geo-space-card:nth-child(1),
  .geo-space-card:nth-child(5) {
    grid-column: span 12;
    min-height: 390px;
  }

  .geo-system-grid,
  .geo-factory-grid,
  .geo-card-grid,
  .geo-knowledge-grid {
    grid-template-columns: 1fr;
  }

  .geo-system-item {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .geo-system-item:last-child {
    border-bottom: 0;
  }

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

  .geo-process__item:last-child {
    grid-column: span 2;
  }

  .geo-faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .geo-inner-hero {
    min-height: 340px;
    padding-top: 136px;
  }

  .geo-inner-hero h1 {
    font-size: 50px;
  }

  .geo-news-row {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 26px;
  }

  .geo-site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 720px) {
  .geo-lead {
    font-size: 17px;
  }

  .geo-hero__content > p:not(.geo-eyebrow) {
    font-size: 17px;
  }

  .geo-news-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .geo-case-grid,
  .geo-related-grid {
    grid-template-columns: 1fr;
  }

  .geo-article-page {
    padding: 68px 0 78px;
  }

  .geo-article-header h1 {
    font-size: 42px;
  }

  .geo-article-byline a {
    width: 100%;
    margin-left: 0;
  }

  .geo-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .geo-form__full {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  :root {
    --geo-shell: calc(100% - 28px);
  }

  .geo-heading {
    font-size: 40px;
  }

  .geo-heading--small {
    font-size: 34px;
  }

  .geo-language a {
    min-width: 32px;
    font-size: 9px;
  }

  .geo-hero {
    min-height: 760px;
  }

  .geo-hero-track {
    position: relative;
    inset: auto;
    min-height: 650px;
  }

  .geo-hero__image {
    object-position: 58% center;
  }

  .geo-hero__content {
    padding-top: 138px;
  }

  .geo-hero__content h1 {
    font-size: 47px;
  }

  .geo-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .geo-button {
    width: 100%;
  }

  .geo-hero__facts {
    position: relative;
    grid-template-columns: 1fr 1fr;
  }

  html[lang="mn-MN"] .geo-hero__content {
    padding-top: 118px;
  }

  html[lang="mn-MN"] .geo-hero__content h1 {
    font-size: 42px;
  }

  html[lang="mn-MN"] .geo-hero__content > p:not(.geo-eyebrow) {
    margin-top: 20px;
    line-height: 1.6;
  }

  html[lang="mn-MN"] .geo-actions {
    margin-top: 24px;
  }

  .geo-hero__fact {
    min-height: 96px;
    padding: 18px 12px;
  }

  .geo-hero__fact strong {
    font-size: 26px;
  }

  .geo-hero__fact span {
    font-size: 10px;
    line-height: 1.35;
  }

  .geo-hero__fact:nth-child(3) {
    display: none;
  }

  .geo-space-card {
    min-height: 330px;
  }

  .geo-process {
    grid-template-columns: 1fr;
  }

  .geo-process__item:last-child {
    grid-column: auto;
  }

  .geo-inner-hero h1 {
    font-size: 42px;
  }

  .geo-inner-hero p:not(.geo-eyebrow) {
    font-size: 16px;
  }

  .geo-answer {
    padding: 20px;
  }

  .geo-answer p {
    font-size: 16px;
  }

  .geo-article-header h1 {
    font-size: 36px;
  }

  .geo-prevnext {
    grid-template-columns: 1fr;
  }

  .geo-contact-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .geo-form__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .geo-site-footer__bottom {
    display: block;
  }

  .geo-site-footer__bottom p + p {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .geo-reveal {
    opacity: 1;
    transform: none;
  }
}
