/* ===== Tokens ===== */
:root {
  --dark: #16241d;
  --hero-bg: #0f1a14;
  --green: #234436;
  --green-hover: #2f5a49;
  --dark-hover: #1d3126;
  --heading-dark: #1f3b30;
  --gold: #c9b489;
  --tint: #f2f1ec;
  --white: #fff;
  --on-dark: #f4f3ef;
  --on-dark-2: #dfe5e0;
  --on-dark-3: #e3e8e4;
  --on-dark-4: #c3ccc6;
  --on-dark-5: #b0bdb5;
  --on-dark-6: #93a49a;
  --on-dark-7: #6d7f75;
  --on-light-1: #1b201d;
  --on-light-2: #26302a;
  --on-light-3: #3d453f;
  --on-light-4: #4a534d;
  --on-light-5: #6b756e;
  --on-light-6: #5c6862;
  --line: #eae8e1;
  --placeholder-bg: #e4e2da;

  --font-head: "Oswald", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-note: "Caveat", cursive;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--tint);
  font-family: var(--font-body);
  color: var(--on-light-1);
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, blockquote { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.ms {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  flex: none;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  min-height: 44px;
}
.btn .ms { font-size: 17px; }
.btn--solid { background: var(--green); color: #fff; }
.btn--solid:hover { background: var(--green-hover); }
.btn--solid .ms { color: var(--gold); }
.btn--ghost { border: 1px solid rgba(244, 243, 239, 0.5); color: var(--on-dark); }
.btn--ghost:hover { background: rgba(244, 243, 239, 0.1); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-light-4);
}
.link-arrow .ms { font-size: 16px; }

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  margin-top: 5px;
}

.img-placeholder {
  width: 100%;
  background: var(--placeholder-bg);
  background-image: repeating-linear-gradient(135deg, rgba(31, 59, 48, 0.12) 0 9px, rgba(31, 59, 48, 0) 9px 20px);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.img-placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 9.5px;
  color: var(--on-light-6);
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 44px;
  background: var(--dark);
  color: var(--on-dark);
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
}
.brand__text { display: flex; flex-direction: column; gap: 3px; }
.brand__name {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
}
.brand__tag { font-size: 9px; letter-spacing: 0.2em; color: var(--on-dark-6); }

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
  margin-left: 16px;
  flex-wrap: wrap;
}
.site-nav a { color: var(--on-dark-2); }
.site-nav a:hover { color: var(--gold); }

.header__cta { margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  flex: none;
  padding: 0;
  margin-left: auto;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--on-dark);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(244, 243, 239, 0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark-2);
  border-bottom: 1px solid rgba(244, 243, 239, 0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__lang { padding: 14px 20px; justify-content: center; }
.mobile-nav__cta {
  margin: 16px 20px;
  justify-content: center !important;
  gap: 10px;
  background: var(--green);
  color: #fff !important;
  border-bottom: none !important;
  padding: 14px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.mobile-nav__cta .ms { color: var(--gold); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(244, 243, 239, 0.08);
  padding: 3px;
  flex: none;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--on-dark-6);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  cursor: pointer;
  min-height: 32px;
}
.lang-btn:hover:not(.active) { color: var(--on-dark); }
.lang-btn.active { background: var(--gold); color: var(--dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--on-dark);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 20, 15, 0.95) 0%, rgba(11, 20, 15, 0.76) 44%, rgba(11, 20, 15, 0.2) 100%);
}
.hero__inner {
  position: relative;
  padding: 78px 44px 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: end;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 66px;
  min-width: 0;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.hero__sub {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--on-dark-3);
}
.hero__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--on-dark-4);
  max-width: 470px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.hero__note {
  font-family: var(--font-note);
  font-size: 34px;
  color: var(--on-dark);
  line-height: 1.15;
  padding-bottom: 96px;
  transform: rotate(-6deg);
  text-align: center;
}
.hero__values {
  border-top: 1px solid rgba(244, 243, 239, 0.14);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 32px;
}
.hero__values li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-size: 11.5px;
  letter-spacing: 0.11em;
  line-height: 1.4;
  color: var(--on-dark-2);
  text-transform: uppercase;
}
.hero__values .ms { font-size: 27px; color: var(--gold); }

/* ===== Sections / shared ===== */
.section { padding: 72px 44px; }
.section--white { background: var(--white); }
.section--tint { background: var(--tint); }
.section--no-bottom { padding-bottom: 0; }
.section--no-top { padding-top: 0; }

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.section-head__rule { height: 2px; width: 52px; background: var(--gold); flex: none; }
.section-head--row { flex-wrap: wrap; margin-bottom: 30px; }
.section-head--row .section-head__link { margin-left: auto; }
.section-head--center { justify-content: center; }

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
}
.about__lede {
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 18px;
}
.about__p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--on-light-3);
  margin-bottom: 14px;
}
.about__p:last-of-type { margin-bottom: 26px; }
.about__photo { width: 100%; height: 220px; object-fit: cover; }

.quote-card {
  background: var(--tint);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 0.6;
  color: var(--gold);
  display: block;
}
.quote-mark--sm { font-size: 36px; }
.quote-card p {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--heading-dark);
}
.quote-card cite {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--on-light-5);
}

/* ===== Work ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.work-card { background: var(--white); display: flex; flex-direction: column; min-width: 0; }
.work-card img, .work-card .img-placeholder { width: 100%; height: 156px; object-fit: cover; }
.work-card__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
.work-card__head { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.work-card__icon {
  width: 30px;
  height: 30px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.work-card__icon .ms { font-size: 18px; color: var(--gold); }
.work-card__head h3 {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--heading-dark);
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}
.work-card p { font-size: 13.5px; line-height: 1.6; color: var(--on-light-4); flex: 1; min-width: 0; }
.work-card__status {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--on-light-4);
}

/* ===== Done ===== */
.done-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 0 72px;
}

.shipment-card {
  background: var(--dark);
  color: var(--on-dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.shipment-card__head { display: flex; align-items: flex-start; gap: 14px; }
.shipment-card__head .ms { font-size: 32px; color: var(--gold); }
.shipment-card__title { font-family: var(--font-head); font-size: 26px; letter-spacing: 0.05em; }
.shipment-card__sub { font-size: 14.5px; color: var(--on-dark-5); margin-top: 7px; line-height: 1.5; }
.shipment-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.shipment-card__grid img { width: 100%; height: 176px; object-fit: cover; }
.shipment-card__list { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--on-dark-2); min-width: 0; }
.shipment-card__list li { display: flex; gap: 9px; }
.shipment-card__list .ms { font-size: 17px; color: var(--on-dark-6); }
.shipment-card__list b { color: var(--on-dark-6); font-weight: 400; }
.status-pill {
  align-self: flex-start;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.results-card { background: var(--white); padding: 32px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.results-card__head { display: flex; align-items: center; gap: 14px; }
.results-card__head .ms { font-size: 32px; color: var(--green); }
.results-card__head h3 { font-family: var(--font-head); font-size: 26px; font-weight: 600; letter-spacing: 0.05em; }
.results-card__sub { font-size: 14px; color: var(--on-light-5); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.stat__num { font-family: var(--font-head); font-size: 25px; color: var(--heading-dark); line-height: 1.1; }
.stat__label { font-size: 11.5px; color: var(--on-light-5); line-height: 1.5; margin-top: 8px; }
.results-card__p { font-size: 14.5px; line-height: 1.65; color: var(--on-light-3); }
.mini-quote {
  background: var(--tint);
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mini-quote p { font-size: 13.5px; line-height: 1.6; color: var(--on-light-3); }

/* ===== Areas ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.area-tile {
  background: var(--tint);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 148px;
  text-align: center;
  min-width: 0;
  justify-content: center;
}
.area-tile .ms { font-size: 32px; color: var(--green); }
.area-tile span:last-child { font-size: 13.5px; line-height: 1.45; color: var(--on-light-2); font-weight: 600; }

/* ===== Team ===== */
.team-card {
  background: var(--white);
  display: flex;
  gap: 40px;
  max-width: 880px;
  min-width: 0;
  margin: 0 auto;
}
.team-card__photo { width: 320px; height: 440px; flex: none; object-fit: cover; }
.team-card__body { padding: 40px 40px 40px 0; display: flex; flex-direction: column; justify-content: center; gap: 14px; min-width: 0; }
.team-card__name { font-family: var(--font-head); font-size: 26px; letter-spacing: 0.05em; color: var(--heading-dark); }
.team-card__role { font-size: 14px; line-height: 1.5; color: var(--on-light-5); }
.team-card__contact {
  font-size: 13.5px;
  color: var(--on-light-4);
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  overflow-wrap: anywhere;
  margin-top: 8px;
}
.team-card__contact:first-of-type { margin-top: 8px; font-weight: 600; color: var(--green); }
.team-card__contact .ms { font-size: 17px; color: var(--on-light-5); }
.team-card__contact--muted { margin-top: 0; }

/* ===== Contacts ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 74px;
}
.contact-card {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.contact-card__icon { font-size: 32px; }
.contact-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.contact-card__title { font-family: var(--font-head); font-size: 18px; letter-spacing: 0.06em; }
.contact-card__sub { font-size: 12.5px; margin-top: 5px; }
.contact-card__arrow { font-size: 20px; }

.contact-card--dark { background: var(--dark); color: var(--on-dark); }
.contact-card--dark:hover { background: var(--dark-hover); }
.contact-card--dark .contact-card__icon,
.contact-card--dark .contact-card__arrow { color: var(--gold); }
.contact-card--dark .contact-card__sub { color: var(--on-dark-5); }

.contact-card--green { background: var(--green); color: #fff; }
.contact-card--green:hover { background: var(--green-hover); }
.contact-card--green .contact-card__sub { color: #d3e2da; }

.contact-card--white { background: var(--white); color: var(--heading-dark); }
.contact-card--white:hover { background: #faf9f5; }
.contact-card--white .contact-card__icon,
.contact-card--white .contact-card__arrow { color: var(--green); }
.contact-card--white .contact-card__sub { color: var(--on-light-5); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: var(--on-dark-6); padding: 26px 44px; }
.site-footer__row {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.site-footer .divider { width: 1px; height: 14px; background: rgba(147, 164, 154, 0.4); }
.site-footer a { color: var(--gold); display: flex; align-items: center; gap: 8px; }
.site-footer__tag { margin-left: auto; color: var(--on-dark-7); }

.site-footer__legal {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(147, 164, 154, 0.18);
}
.site-footer__slogan {
  font-family: var(--font-head);
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 18px;
}
.site-footer__legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--on-dark-2);
}
.site-footer__legal-grid p { margin: 0; }
.site-footer__legal-grid span:first-child { color: var(--on-dark-5); }
.site-footer__legal-grid a {
  display: inline-flex;
  color: var(--on-dark-2);
  font-weight: 600;
  gap: 0;
}
.site-footer__legal-grid a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-nav,
  .site-header .lang-toggle,
  .site-header .header__cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__note { display: none; }
  .hero__values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .areas-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .done-grid { grid-template-columns: 1fr; }
  .shipment-card__grid { grid-template-columns: 1fr; }
  .shipment-card__grid img { height: 200px; }
}

@media (max-width: 680px) {
  .site-header,
  .hero__inner,
  .section,
  .contacts-grid,
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 48px; padding-bottom: 48px; }
  .section--no-bottom { padding-bottom: 0; }
  .section--no-top { padding-top: 0; }
  .done-grid { padding-bottom: 48px; }
  .contacts-grid { padding-bottom: 48px; }

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

  .team-card { flex-direction: column; }
  .team-card__photo { width: 100%; height: auto; object-fit: contain; }
  .team-card__body { padding: 24px; }

  .contacts-grid { grid-template-columns: 1fr; }

  .site-footer__row { font-size: 12px; }
  .site-footer__tag { margin-left: 0; width: 100%; }
  .site-footer__legal-grid { grid-template-columns: 1fr; gap: 14px; }

  .floating-cta { right: 16px; bottom: 16px; padding: 14px; }
  .floating-cta__label { display: none; }
  .floating-cta .ms { font-size: 22px; }
}

/* ===== Floating contact button ===== */
.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 28px rgba(15, 26, 20, 0.4);
}
.floating-cta:hover { background: var(--green-hover); }
.floating-cta .ms { font-size: 20px; color: var(--gold); }
