/* ===== Tokens ===== */
:root {
  --dark: #1B2523;
  --hero-bg: #111918;
  --green: #173C2E;
  --green-hover: #4E745D;
  --dark-hover: #262f2c;
  --heading-dark: #173C2E;
  --gold: #4E745D;
  --tint: #EEEAE1;
  --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: #E2E2DD;
  --placeholder-bg: #e4e2da;

  --status-yellow: #F2C94C;
  --status-blue: #397FA3;
  --status-success: #5D8B68;
  --radius: 8px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-main: "Montserrat", Arial, 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-main);
  font-size: 16px;
  line-height: 1.6;
  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: 16px 30px;
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-height: 48px;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn .ms { font-size: 17px; transition: transform 0.2s ease; }
.btn:hover .ms { transform: translateX(3px); }
.btn--solid { background: var(--green); color: #fff; }
.btn--solid:hover { background: var(--green-hover); }
.btn--solid .ms { color: var(--on-dark); }
.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 ===== */
.header-fixed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(9, 15, 12, 0.65) 0%, rgba(9, 15, 12, 0) 100%);
  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-main);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  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: 14.5px;
  font-weight: 500;
  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;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 13px;
}
.mobile-nav__cta .ms { color: var(--on-dark); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--on-dark-6);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 2px;
  cursor: pointer;
  min-height: 32px;
}
.lang-btn + .lang-btn {
  border-left: 1px solid rgba(244, 243, 239, 0.3);
  padding-left: 10px;
}
.lang-btn:hover:not(.active) { color: var(--on-dark); }
.lang-btn.active { color: var(--on-dark); font-weight: 700; }

/* ===== 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: 1;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 20, 15, 0.68) 0%, rgba(11, 20, 15, 0.4) 44%, rgba(11, 20, 15, 0.03) 100%);
}
.hero__inner {
  position: relative;
  padding: 140px 48px 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-display);
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--on-dark-3);
}
.hero__text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-dark);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  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: 14px;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  color: var(--on-dark);
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__values .ms { font-size: 34px; color: var(--gold); flex: none; }

/* ===== Sections / shared ===== */
.section { padding: 88px 48px; }
.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-display);
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.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-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 18px;
}
.about__p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--on-light-3);
  margin-bottom: 14px;
}
.about__p:last-of-type { margin-bottom: 26px; }

.quote-card {
  background: var(--tint);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius);
}
.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  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-display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  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: row; align-items: stretch; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.work-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(23, 32, 30, 0.1); }
.work-card img, .work-card .img-placeholder { width: 110px; height: auto; flex: none; object-fit: cover; transition: transform 0.4s ease; }
.work-card:hover img { transform: scale(1.04); }
.work-card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; 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);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.work-card__icon .ms { font-size: 18px; color: var(--on-dark); }
.work-card__head h3 {
  font-family: var(--font-main);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--heading-dark);
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: normal;
  hyphens: auto;
}
.work-card p { font-size: 14px; 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: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--on-light-4);
}
.work-card__status strong { font-weight: 600; color: var(--on-light-2); }

/* ===== 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;
  border-radius: var(--radius);
}
.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-main); font-size: 21px; font-weight: 700; letter-spacing: 0.01em; }
.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: stretch;
  flex: 1;
  min-height: 0;
}
.shipment-card__grid img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; border-radius: 6px; }
.shipment-card__list { display: flex; flex-direction: column; justify-content: center; gap: 14px; 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__flag { font-size: 17px; line-height: 1.5; flex: none; }
.shipment-card__list b { color: var(--on-dark-6); font-weight: 400; }
.status-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--status-yellow);
  color: #3d2f0a;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d2f0a;
  flex: none;
}

.results-card { background: var(--white); padding: 32px; display: flex; flex-direction: column; gap: 18px; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); }
.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-main); font-size: 21px; font-weight: 700; letter-spacing: 0.01em; }
.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-main); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--heading-dark); line-height: 1.2; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat__label { font-size: 12px; font-weight: 500; color: var(--on-light-5); line-height: 1.5; margin-top: 8px; }
.results-card__p { font-size: 15px; 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;
  border-radius: 6px;
}
.mini-quote p { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.45; color: var(--heading-dark); }

/* ===== 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;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(23, 32, 30, 0.08); }
.area-tile .ms { font-size: 44px; color: var(--green); }
.area-tile span:last-child { font-size: 13.5px; line-height: 1.45; color: var(--on-light-2); font-weight: 600; }

/* ===== Chairperson mini-card (in "Хто ми") ===== */
.about-team {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}
.about-team__photo { width: 136px; height: 136px; flex: none; object-fit: cover; object-position: 50% 12%; border-radius: 50%; }
.about-team__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.about-team__name { font-family: var(--font-main); font-size: 19px; font-weight: 700; letter-spacing: 0.005em; color: var(--heading-dark); }
.about-team__role { font-size: 14.5px; line-height: 1.4; color: var(--on-light-5); }
.about-team__contact {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  overflow-wrap: anywhere;
  margin-top: 7px;
}
.about-team__contact .ms { font-size: 17px; }

/* ===== 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;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.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-main); font-size: 18px; font-weight: 700; letter-spacing: 0.005em; }
.contact-card__sub { font-size: 13px; font-weight: 500; margin-top: 5px; }
.contact-card__arrow { font-size: 20px; }

.contact-card--dark { background: var(--dark); color: var(--on-dark); border: 1px solid transparent; }
.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); border: 1px solid var(--line); }
.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(--on-dark); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.site-footer a .ms { color: var(--gold); }
.site-footer a:hover { color: var(--gold); }
.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-display);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  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)); }

  .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--raised { bottom: 260px; }
  .floating-cta__label { display: none; }
  .floating-cta .ms { font-size: 22px; }

  .hero__photo { object-position: 72% center; }

  .stats { grid-template-columns: 1fr; gap: 14px; }

  .about-team { flex-direction: column; text-align: center; }
  .about-team__contact { justify-content: center; font-size: 12.5px; }
  .about-team__contact .ms { font-size: 15px; }
}

/* ===== 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;
  border-radius: var(--radius);
  transition: bottom 0.25s ease, background 0.2s ease;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 28px rgba(15, 26, 20, 0.4);
  animation: floating-cta-pulse 2.6s ease-out infinite;
}
.floating-cta:hover { background: var(--green-hover); animation-play-state: paused; }
.floating-cta .ms { font-size: 20px; color: var(--on-dark); }
.floating-cta--raised { bottom: 160px; }

@keyframes floating-cta-pulse {
  0% { box-shadow: 0 10px 28px rgba(15, 26, 20, 0.4), 0 0 0 0 rgba(23, 60, 46, 0.55); }
  70% { box-shadow: 0 10px 28px rgba(15, 26, 20, 0.4), 0 0 0 16px rgba(23, 60, 46, 0); }
  100% { box-shadow: 0 10px 28px rgba(15, 26, 20, 0.4), 0 0 0 0 rgba(23, 60, 46, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta { animation: none; }
}
