/* VIRTUE — начална страница
   Копие на работната референция (reference/index.html), пренаписано в един слой правила.
   Една гарнитура (Manrope), локално. Преходи: ≤1000px (таблет) и ≤700px (телефон);
   секцията „Интерактивни пространства“ минава в една колона под 1180px. */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --paper: #f2f2e9;
  --white: #ffffff;
  --ink: #191c19;
  --blue: #304de4;
  --muted: #4e554c;
  --line: #cccec4;

  /* производни тонове от референцията */
  --caption: #50564d;
  --rule-soft: #babfb2;
  --on-dark-muted: #b9c2b2;
  --on-dark-text: #dedfd7;
  --on-dark-rule: #42473f;
  --on-dark-label: #bcc2b6;
  --on-dark-kicker: #b5bcaf;
  --on-dark-footer: #a9afa2;
  --on-dark-line: #4c4e4c;
  --on-dark-line-soft: #3a3d3a;
  --menu-line: #3d403d;
  --link-on-dark: #9dacff;
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 24px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 "Manrope", Arial, sans-serif;
  font-synthesis: none;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.process-chapter :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible,
.mobile-menu nav :focus-visible {
  outline-color: var(--paper);
}

h1, h2, h3, p, figure {
  margin: 0;
}

address {
  font-style: normal;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

summary {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: calc(100% - 112px);
  max-width: 1360px;
  margin-inline: auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.arrow {
  display: inline-block;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.arrow--ne {
  width: 22px;
  height: 22px;
}

.arrow--down {
  width: 11px;
  height: 22px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
}

@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
}

/* ---------- Logo mark: две застъпени рамки ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1;
}

.logo:hover {
  text-decoration: none;
}

.mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  color: var(--blue);
}

/* content-box като в референцията: браузърът закръгля рамките по един и същи начин */
.mark::before,
.mark::after {
  content: "";
  position: absolute;
  box-sizing: content-box;
  width: 19px;
  height: 23px;
  border: 1.7px solid currentColor;
}

.mark::before {
  top: 0;
  left: 1px;
}

.mark::after {
  top: 7px;
  left: 9px;
}

/* ---------- Header ---------- */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 86px;
  border-bottom: 1px solid var(--line);
}

.header nav {
  display: flex;
  gap: 30px;
  font-size: 16px;
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1000px) {
  .header nav {
    gap: 23px;
    font-size: 14px;
  }

  .header-cta {
    gap: 15px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .header {
    position: relative;
    gap: 15px;
    height: 78px;
  }

  .logo {
    font-size: 25px;
  }

  .mark {
    width: 26px;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .header > nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 13px 0;
    font-size: 14px;
    text-decoration: none;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-menu[open] summary span {
    transform: rotate(45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 76px;
    right: 0;
    z-index: 20;
    display: grid;
    width: min(340px, 100vw - 40px);
    padding: 13px 22px;
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--menu-line);
    font-size: 16px;
  }

  .mobile-menu nav a:last-child {
    border: 0;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 28px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.hero h1 {
  margin-top: 23px;
  font-size: clamp(54px, 8.8vw, 122px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin: 24px 0 29px;
}

.hero-intro p {
  max-width: 620px;
  font-size: 21px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--blue);
  text-decoration: none;
}

.hero-art {
  position: relative;
}

.hero-art img {
  height: auto;
  aspect-ratio: 2.35;
  object-position: 50% 53%;
}

.hero-art figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 13px;
  font-size: 15px;
}

.hero-art figcaption strong {
  font-weight: 700;
}

.hero-art figcaption span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 25px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.035em;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(43px, 9.4vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .hero-intro {
    display: block;
  }

  .hero-intro p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-intro .text-link {
    min-height: 44px;
    margin-top: 16px;
    font-size: 14px;
  }

  .hero-art img {
    aspect-ratio: 1.22;
    object-position: 49% center;
  }

  .hero-art figcaption {
    display: block;
    font-size: 12px;
  }

  .hero-art figcaption span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
  }
}

/* ---------- About: какво прави VIRTUE и за кого ---------- */

/* Колоната на заглавието е широка колкото заглавието, за да остане на два реда.
   Размерът му следва ширината на съдържанието: заглавието заема около 56% от нея.
   Под 1180px двете колони не се побират (заглавие ≥40px + текст ~400px) и секцията е в една колона. */
.about {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: 18px clamp(48px, 5vw, 80px);
  padding: 44px 0 64px;
  border-top: 1px solid var(--line);
}

.about > .eyebrow {
  grid-column: 1 / -1;
  color: var(--blue);
}

.about h2 {
  font-size: clamp(40px, 3.74vw - 4px, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-text {
  font-size: 18px;
  line-height: 1.65;
}

.about-text p {
  text-wrap: pretty;
}

.about-audience {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-audience .eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
}

.about-audience p {
  font-weight: 600;
}

@media (max-width: 1180px) {
  .about {
    display: block;
    padding: 40px 0 56px;
  }

  .about h2 {
    margin-top: 16px;
    font-size: clamp(38px, 5.8vw, 48px);
  }

  .about-text {
    max-width: 620px;
    margin-top: 24px;
  }
}

@media (max-width: 1000px) {
  .about-text {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 32px 0 44px;
  }

  .about > .eyebrow {
    font-size: 11px;
  }

  .about h2 {
    margin-top: 14px;
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.1;
  }

  .about-text {
    margin-top: 20px;
    font-size: 16px;
  }

  .about-audience {
    margin-top: 22px;
    padding-top: 18px;
  }

  .about-audience .eyebrow {
    font-size: 11px;
  }
}

/* ---------- Applications ---------- */

.applications {
  padding: 60px 0 62px;
  background: var(--white);
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.work-heading h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.work-heading p {
  color: var(--muted);
  font-size: 14px;
}

.applications .eyebrow {
  color: var(--muted);
}

/* 01 — водещата концепция */

.case-title {
  display: grid;
  grid-template-columns: 42px 1fr 330px;
  align-items: end;
  gap: 25px;
  margin: 48px 0 35px;
}

.case-index {
  align-self: start;
  padding-top: 4px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.case-title h3 {
  margin-top: 18px;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.case-title > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.museum-composition {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 48px;
}

.museum-view img {
  height: 570px;
  object-position: 62% center;
}

.museum-view figcaption,
.supporting-work figcaption {
  color: var(--caption);
  font-size: 14px;
}

.museum-view figcaption {
  margin-top: 13px;
}

.interaction-detail h4 {
  margin: 0 0 25px;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.interaction-detail p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.interaction-meta {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* 02 и 03 */

.supporting-work {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 56px;
  margin-top: 63px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.supporting-title {
  display: flex;
  align-items: start;
  gap: 25px;
  min-height: 112px;
  margin-bottom: 24px;
}

.supporting-title > span {
  padding-top: 1px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.supporting-title h3 {
  margin-top: 13px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.supporting-work img {
  height: 435px;
  object-position: 68% center;
}

.supporting-work article:last-child img {
  height: 350px;
  object-position: center bottom;
}

.supporting-work figcaption {
  margin-top: 12px;
}

.supporting-work article > p {
  max-width: 440px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.supporting-work article:last-child > p {
  max-width: 500px;
}

@media (max-width: 1000px) {
  .case-title {
    grid-template-columns: 30px 1fr 245px;
    gap: 19px;
  }

  .case-title h3 {
    font-size: 49px;
  }

  .museum-composition {
    grid-template-columns: 1fr 285px;
    gap: 34px;
  }

  .museum-view img {
    height: 510px;
  }

  .interaction-detail h4 {
    font-size: 31px;
  }

  .interaction-detail p {
    font-size: 17px;
  }

  .supporting-work {
    gap: 38px;
  }

  .supporting-title {
    gap: 19px;
    min-height: 108px;
  }

  .supporting-title h3 {
    font-size: 29px;
  }

  .supporting-work img {
    height: 400px;
  }

  .supporting-work article:last-child img {
    height: 320px;
  }
}

@media (max-width: 700px) {
  .applications {
    padding: 42px 0;
  }

  .work-heading {
    display: block;
  }

  .work-heading h2 {
    max-width: 320px;
    font-size: 30px;
  }

  .work-heading p {
    margin-top: 15px;
    font-size: 12px;
  }

  .applications .eyebrow {
    font-size: 11px;
  }

  .case-title {
    grid-template-columns: 30px 1fr;
    gap: 16px;
    margin: 33px 0 25px;
  }

  .case-index,
  .supporting-title > span {
    font-size: 22px;
  }

  .case-index {
    padding-top: 1px;
  }

  .case-title h3 {
    margin-top: 13px;
    font-size: 34px;
  }

  .case-title > p {
    grid-column: 2;
    margin-top: 8px;
    padding: 0;
    font-size: 16px;
  }

  .case-title h3 br,
  .interaction-detail h4 br {
    display: none;
  }

  .museum-composition {
    display: block;
  }

  .museum-view img {
    height: auto;
    aspect-ratio: 1.05;
  }

  .museum-view figcaption,
  .supporting-work figcaption {
    font-size: 12px;
  }

  .museum-view figcaption {
    margin-top: 10px;
  }

  .interaction-detail {
    padding-top: 25px;
  }

  .interaction-detail h4 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .interaction-detail p {
    font-size: 16px;
  }

  .interaction-meta {
    gap: 8px;
    margin-top: 19px;
    padding-top: 17px;
    font-size: 12px;
  }

  .supporting-work {
    display: block;
    margin-top: 36px;
    padding-top: 29px;
  }

  .supporting-work article + article {
    margin-top: 36px;
  }

  .supporting-title {
    gap: 16px;
    min-height: 0;
    margin-bottom: 22px;
  }

  .supporting-work img {
    height: auto;
    aspect-ratio: 1.05;
  }

  .supporting-work article:last-child img {
    height: auto;
    aspect-ratio: 1.35;
  }

  .supporting-work article > p {
    margin-top: 17px;
    font-size: 16px;
  }
}

/* ---------- Approach ---------- */

.process-chapter {
  padding: 65px 0;
  background: var(--ink);
  color: var(--paper);
}

.prototype-study {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  align-items: center;
  gap: 7%;
}

.prototype-intro .eyebrow {
  color: var(--on-dark-muted);
  font-size: 13px;
}

.prototype-intro h2 {
  margin: 23px 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.prototype-intro p {
  max-width: 455px;
  color: var(--on-dark-text);
  font-size: 19px;
  line-height: 1.65;
}

.prototype-intro ol {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}

.prototype-intro li {
  display: flex;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--on-dark-rule);
}

.prototype-intro li span {
  padding-top: 4px;
  color: var(--on-dark-muted);
  font-size: 13px;
}

.prototype-study img {
  height: 470px;
  object-position: center;
}

.prototype-study figcaption {
  margin-top: 14px;
  color: var(--on-dark-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .prototype-intro h2 {
    font-size: 33px;
  }

  .prototype-intro p {
    font-size: 17px;
  }

  .prototype-intro ol {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .process-chapter {
    padding: 44px 0;
  }

  .prototype-study {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .prototype-intro h2 {
    margin: 19px 0;
    font-size: 32px;
  }

  .prototype-intro p {
    font-size: 16px;
  }

  .prototype-intro ol {
    margin-top: 23px;
  }

  .prototype-intro li {
    gap: 19px;
    padding: 14px 0;
  }

  .prototype-intro li span {
    padding-top: 2px;
    font-size: 12px;
  }

  .prototype-study img {
    height: auto;
    aspect-ratio: 1.2;
  }

  .prototype-study figcaption {
    font-size: 12px;
  }
}

/* ---------- Journal ---------- */

.journal {
  padding: 62px 0 65px;
}

.section-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 37px;
}

.section-head .eyebrow {
  color: var(--blue);
}

.section-head h2 {
  margin-top: 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-head p {
  max-width: 343px;
  margin-left: auto;
  color: var(--muted);
  font-size: 16px;
}

.section-head small {
  display: inline-block;
  margin-top: 7px;
  font-size: 13px;
}

.editorial-list {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  align-items: start;
  gap: 0 65px;
}

.lead-note {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.editorial-list article:not(.lead-note) {
  padding: 25px 0 29px;
  border-top: 1px solid var(--rule-soft);
}

.editorial-list article:nth-child(2) {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.editorial-list article:last-child {
  grid-column: 2;
}

.journal-thumb img {
  height: 410px;
  object-position: 45% center;
}

/* Референцията скрива този подпис; заданието изисква произходът да се вижда. */
.journal-thumb figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.lead-note-copy {
  padding-top: 24px;
}

.editorial-category {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
}

.lead-note .editorial-category {
  margin-bottom: 15px;
  color: var(--blue);
  font-weight: 600;
}

.editorial-list h3 {
  margin-top: 15px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lead-note h3 {
  max-width: 610px;
  font-size: 47px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead-note h3 br {
  display: none;
}

.editorial-list p {
  max-width: 480px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.lead-note p {
  max-width: 590px;
  margin-top: 18px;
  line-height: 1.7;
}

.editorial-list details {
  margin-top: 14px;
}

.editorial-list summary {
  font-size: 15px;
  font-weight: 600;
}

.editorial-list details p {
  margin-top: 14px;
  font-size: 16px;
}

@media (max-width: 1000px) {
  .editorial-list {
    grid-template-columns: 1.5fr 1fr;
    column-gap: 38px;
  }

  .journal-thumb img {
    height: 350px;
  }

  .editorial-list h3 {
    font-size: 27px;
  }

  .lead-note h3 {
    font-size: 40px;
  }

  .editorial-list p {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .journal {
    padding: 44px 0 26px;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    font-size: 42px;
    line-height: 1.1;
  }

  .section-head p {
    margin: 21px 0 0;
    font-size: 14px;
  }

  .editorial-list {
    display: block;
  }

  .lead-note {
    padding-bottom: 30px;
  }

  .editorial-list article:not(.lead-note) {
    padding: 23px 0;
  }

  .journal-thumb img {
    height: auto;
    aspect-ratio: 1.1;
  }

  .journal-thumb figcaption {
    font-size: 12px;
  }

  .editorial-category {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .lead-note .editorial-category {
    margin-bottom: 15px;
  }

  .editorial-list h3 {
    font-size: 28px;
  }

  .lead-note h3 {
    font-size: 33px;
  }

  .editorial-list p {
    font-size: 16px;
  }

  .editorial-list summary {
    min-height: 44px;
    padding: 10px 0;
    font-size: 13px;
  }
}

/* ---------- Contact ---------- */

.contact {
  padding-top: 47px;
  background: var(--ink);
  color: var(--paper);
}

.contact .eyebrow {
  color: var(--on-dark-kicker);
}

.contact h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  min-height: 60px;
  margin-top: 27px;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--paper);
  color: var(--paper);
  font-size: 35px;
  font-weight: 500;
  white-space: nowrap;
}

.contact-action:hover {
  color: var(--link-on-dark);
  text-decoration: none;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
  padding-top: 21px;
  border-top: 1px solid var(--on-dark-line);
  font-size: 16px;
  line-height: 1.8;
}

.contact-details > :last-child {
  text-align: right;
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--on-dark-label);
  font-size: 13px;
}

/* По-голяма зона за докосване на телефона, без промяна във вида. */
.contact-details a {
  position: relative;
}

.contact-details a::after {
  content: "";
  position: absolute;
  inset: -6px -4px;
}

/* Затварящата лента е в <footer>, продължение на тъмния контакт. */
.site-footer {
  padding: 25px 0 27px;
  background: var(--ink);
  color: var(--on-dark-footer);
}

.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--on-dark-line-soft);
  font-size: 13px;
}

.contact-bottom .logo {
  color: var(--paper);
  font-size: 32px;
}

.contact-bottom .mark {
  width: 29px;
  height: 29px;
}

.contact-bottom .mark::before,
.contact-bottom .mark::after {
  height: 22px;
}

.contact-bottom .mark::after {
  top: 6px;
  left: 8px;
}

@media (max-width: 700px) {
  .contact {
    padding-top: 39px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .contact-action {
    gap: 17px;
    width: fit-content;
    min-height: 48px;
    margin-top: 23px;
    font-size: clamp(15px, 4.4vw, 22px);
  }

  .contact-details {
    display: block;
    font-size: 15px;
  }

  .contact-details > * + * {
    margin-top: 21px;
  }

  .contact-details > :last-child {
    text-align: left;
  }

  .contact-label {
    margin-bottom: 3px;
    font-size: 12px;
  }

  .site-footer {
    padding-top: 29px;
  }

  .contact-bottom {
    gap: 15px;
    font-size: 11px;
  }

  .contact-bottom .logo {
    font-size: 26px;
  }

  .contact-bottom .mark {
    transform: scale(0.75);
    transform-origin: left center;
  }

  .contact-bottom > span {
    text-align: right;
  }
}
