/* ==========================================================================
   Акционерам и инвесторам · ПАО «Аэрофлот» — концепт 03
   Сдержанный корпоративный editorial. Фиксированный десктоп 1440 px.
   Скругления 0, теней и градиентов нет, разделение — линии 1–2 px и отступы.
   ========================================================================== */

:root {
  --ink:          #0B1220;
  --navy:         #0A2A5E;
  --navy-deep:    #071E45;
  --blue:         #0B4EA2;
  --accent:       #E8452C;
  --paper:        #FFFFFF;
  --soft:         #F2F3F5;
  --line:         #DEE2E8;
  --line-navy:    #27467E;
  --muted:        #626C7A;
  --muted-navy:   #9FB4D6;
  --body:         #39424F;
  --nav:          #2A3442;
  --btn-border:   #B9C2CE;
  --dot:          #9AA4B2;
  --note-navy:    #B9C9E4;
  --note-navy-2:  #A8BCE8;
  --footer-link:  #C6D5EC;
  --footer-head:  #7F9AC8;
  --en-inactive:  #5D7BB0;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  width: 100%;
  min-width: 1440px;
  font-family: Inter, sans-serif;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

p { margin: 0; }
img { display: block; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }

/* --- Типографические примитивы --- */

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.h1 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 118px;
  font-weight: 600;
  letter-spacing: -4.5px;
  line-height: .95;
  color: var(--navy);
}

.h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--navy);
}

.h2-contacts {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.4px;
  line-height: 1.08;
  color: var(--navy);
}

.h3 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1.1px;
  line-height: 1.10;
  color: var(--navy);
}

.h4 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.25;
  color: var(--navy);
}

.h5 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.25;
  color: var(--navy);
}

.caption {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link:hover { color: var(--navy); }

.link-sm { font-size: 14px; }

.divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--line-navy);
}

.dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dot);
}

/* ========== 01 · Утилитарная строка ========== */

.utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 100px;
  background: var(--navy-deep);
}

.utility-left { display: flex; align-items: center; gap: 26px; }
.utility-right { display: flex; align-items: center; gap: 18px; }

.brand-ref { color: var(--muted-navy); }
.current { color: var(--paper); }
.lang-active { color: var(--paper); }
.lang-inactive { color: var(--en-inactive); }
.lang-inactive:hover { color: var(--paper); }

/* ========== 02 · Шапка ========== */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 100px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.logo-block { display: flex; align-items: center; gap: 12px; }

.wing {
  width: 34px;
  height: 22px;
  fill: var(--accent);
}

.logotype {
  font-family: "Inter Tight", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--navy);
}

.menu { display: flex; align-items: center; gap: 30px; }
.menu a { font-size: 14px; color: var(--nav); }
.menu a:hover { color: var(--blue); }

/* ========== 03 · Герой ========== */

.hero { padding: 76px 100px 72px; background: var(--paper); }

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

.hero-title { margin-top: 44px; }
.hero-title .line-2 { display: block; margin-left: 332px; }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 560px;
}

.hero-left p { font-size: 17px; line-height: 1.6; color: var(--body); }

.btn-row { display: flex; gap: 12px; }

.btn-primary {
  padding: 17px 30px;
  background: var(--navy);
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  transition: background .2s ease;
}
.btn-primary:hover { background: var(--navy-deep); }

.btn-secondary {
  padding: 17px 30px;
  border: 1px solid var(--btn-border);
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  transition: border-color .2s ease;
}
.btn-secondary:hover { border-color: var(--navy); }

.hero-calendar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  flex: none;
  padding: 0 0 6px 24px;
  border-left: 1px solid var(--line);
}

.hero-calendar .mono { color: var(--muted); }

.hero-date {
  font-family: "Inter Tight", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--navy);
}

.hero-calendar p { font-size: 14px; line-height: 1.55; color: var(--body); }

/* ========== 04 / 08 · Фотополосы ========== */

.band { margin: 0; }
.band img { width: 100%; object-fit: cover; }
.band-engine img { height: 360px; }
.band-sky img { height: 420px; }

/* ========== 05 · Синяя полоса ========== */

.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 30px 100px;
  background: var(--navy);
}

.strip-left { display: flex; align-items: center; gap: 40px; }
.strip-left a { font-size: 15px; font-weight: 500; color: var(--paper); }
.strip-left a:hover { color: var(--muted-navy); }
.strip-right { color: var(--muted-navy); }

/* ========== 06 · Инвесторам ========== */

.investors {
  display: flex;
  flex-direction: column;
  gap: 78px;
  padding: 112px 100px 104px;
  background: var(--paper);
}

.section-head { display: flex; align-items: flex-start; justify-content: space-between; }

.head-note {
  width: 470px;
  flex: none;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.major-row { display: flex; border-top: 2px solid var(--navy); }

.major-cell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 0;
  min-width: 0;
  padding: 46px 72px 4px 0;
}

.major-cell + .major-cell {
  padding: 46px 0 4px 72px;
  border-left: 1px solid var(--line);
}

.major-cell p { font-size: 16px; line-height: 1.6; color: var(--body); }
.major-cell .link { margin-top: 10px; }

.minor-row { display: flex; border-top: 1px solid var(--line); }

.minor-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  padding: 34px 36px 0 0;
}

.minor-cell + .minor-cell {
  padding: 34px 36px 0 36px;
  border-left: 1px solid var(--line);
}

/* ========== 07 · Финансовые результаты ========== */

.financials {
  display: flex;
  flex-direction: column;
  gap: 58px;
  padding: 104px 100px;
  background: var(--soft);
}

.fin-head { display: flex; align-items: flex-end; justify-content: space-between; }

.fin-head-left { display: flex; flex-direction: column; gap: 18px; width: 660px; flex: none; }
.fin-head-left p { font-size: 16px; line-height: 1.6; color: var(--body); }

.fin-body { display: flex; align-items: flex-start; gap: 72px; }

.fin-table { flex: 1 1 0; min-width: 0; }

.col-period { width: 240px; flex: none; }

.fin-thead {
  display: flex;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}
.fin-thead .mono { color: var(--muted); }

.fin-row {
  display: flex;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.fin-period {
  font-family: "Inter Tight", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.8px;
  line-height: 1;
  color: var(--navy);
}

.fin-materials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.fin-standard { font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--ink); }

.fin-links { display: flex; align-items: center; gap: 26px; }
.fin-links a { font-size: 14px; color: var(--blue); }
.fin-links a:hover { color: var(--navy); }

.fin-note {
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
}
.fin-note .link { font-size: 14px; margin-left: 8px; }

/* Панель «Календарь инвестора» */

.calendar {
  width: 360px;
  flex: none;
  padding: 34px 32px;
  background: var(--paper);
}

.calendar-title { color: var(--navy); }

.calendar-event {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.calendar-event:last-child { padding-bottom: 0; }

.calendar-date {
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: none;
  color: var(--accent);
}

.calendar-event p { font-size: 15px; line-height: 1.5; color: var(--ink); }

/* ========== 09 · Группа «Аэрофлот» ========== */

.group { padding: 92px 100px 96px; background: var(--navy); }

.group-label { color: var(--muted-navy); }

.group-statement {
  max-width: 1030px;
  margin-top: 38px;
  font-family: "Inter Tight", sans-serif;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.24;
  color: var(--paper);
}

.fact-row {
  display: flex;
  margin-top: 84px;
  border-top: 1px solid var(--line-navy);
}

.fact-cell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  padding: 34px 48px 0 0;
}

.fact-cell + .fact-cell {
  padding: 34px 48px 0 48px;
  border-left: 1px solid var(--line-navy);
}

.fact-cell .mono { color: var(--muted-navy); }

.fact-value {
  font-family: "Inter Tight", sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.10;
  color: var(--paper);
}

.fact-note { font-size: 13.5px; line-height: 1.55; color: var(--note-navy); }

/* ========== 10 · Отчеты и презентации ========== */

.reports { padding: 110px 100px 104px; background: var(--paper); }

.rep-head { display: flex; align-items: flex-end; justify-content: space-between; }
.rep-head-left { display: flex; flex-direction: column; gap: 18px; width: 640px; flex: none; }
.rep-head-left p { font-size: 16px; line-height: 1.6; color: var(--body); }

.rep-tabs {
  display: flex;
  align-items: flex-end;
  margin-top: 56px;
  border-bottom: 1px solid var(--line);
}

.rep-tab {
  padding: 0 32px 16px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}
.rep-tab:hover { color: var(--navy); }

.rep-tab.is-active {
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
}

.doc-row {
  display: flex;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.doc-name {
  flex: 1;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.doc-year {
  width: 130px;
  flex: none;
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--navy);
}

.doc-format {
  width: 210px;
  flex: none;
  font-size: 12px;
  color: var(--muted);
}

.doc-action {
  width: 110px;
  flex: none;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc-action:hover { color: var(--navy); }

/* ========== 11 · Акционерам ========== */

.shareholders { padding: 108px 100px 104px; background: var(--soft); }

.sh-head { display: flex; flex-direction: column; gap: 18px; width: 560px; }
.sh-head p { font-size: 16px; line-height: 1.6; color: var(--body); }

.sh-row {
  display: flex;
  margin-top: 72px;
  border-top: 2px solid var(--navy);
}

.sh-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  height: 238px;
  padding: 36px 34px 0 0;
}

.sh-cell + .sh-cell {
  padding: 36px 34px 0 34px;
  border-left: 1px solid var(--line);
}

.sh-top { display: flex; flex-direction: column; gap: 14px; }
.sh-top .caption { font-size: 14px; line-height: 1.6; }

.sh-fact {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .4px;
  text-transform: none;
  color: var(--ink);
}

/* Карточка дивидендов */

.div-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 64px;
  padding: 36px 40px;
  background: var(--paper);
}

.div-card-head { display: flex; align-items: center; justify-content: space-between; }
.div-card-head .mono { color: var(--navy); }

.div-row { display: flex; border-top: 1px solid var(--line); }

.div-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  padding: 22px 28px 0 0;
}

.div-cell + .div-cell {
  padding: 22px 28px 0 28px;
  border-left: 1px solid var(--line);
}

.div-year {
  font-size: 12px;
  letter-spacing: .8px;
  color: var(--muted);
}

.div-value {
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--navy);
}

.div-cell .caption { font-size: 13px; line-height: 1.5; }

.div-note { font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ========== 12 · Раскрытие информации ========== */

.disclosure { padding: 100px 100px 88px; background: var(--navy-deep); }

.disc-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.disc-left { display: flex; flex-direction: column; gap: 26px; flex: 1 1 auto; min-width: 0; }
.disc-left .h2 { color: var(--paper); }
.disc-left p { font-size: 16.5px; line-height: 1.65; color: var(--note-navy); }

.btn-ghost {
  flex: none;
  padding: 24px 40px;
  border: 1px solid var(--footer-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
  transition: border-color .2s ease;
}
.btn-ghost:hover { border-color: var(--paper); }

.disc-links {
  display: flex;
  margin-top: 76px;
  border-top: 1px solid var(--line-navy);
}

.disc-links a {
  flex: 1;
  padding: 26px 32px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--paper);
}

.disc-links a + a {
  padding: 26px 32px 0 32px;
  border-left: 1px solid var(--line-navy);
}

.disc-links a:hover { color: var(--note-navy-2); }

/* ========== 13 · Контакты для инвесторов ========== */

.contacts {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  padding: 92px 100px;
  background: var(--paper);
}

.contacts-left { display: flex; flex-direction: column; gap: 18px; width: 480px; flex: none; }
.contacts-left p { font-size: 15px; line-height: 1.65; color: var(--body); }

.contacts-right {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  border-top: 2px solid var(--navy);
}

.contact-cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  padding: 30px 40px 0 0;
}

.contact-cell + .contact-cell {
  padding: 30px 0 0 40px;
  border-left: 1px solid var(--line);
}

.contact-cell .mono { line-height: 1.5; color: var(--muted); }

.contact-mail {
  font-family: "Inter Tight", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.6px;
  line-height: 1;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-mail:hover { color: var(--blue); }

.contact-phone { font-size: 17px; line-height: 1.6; color: var(--ink); }

/* ========== 14 · Футер ========== */

.footer { padding: 76px 100px 36px; background: var(--navy); }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.footer-brand { display: flex; flex-direction: column; gap: 18px; width: 280px; flex: none; }
.footer-brand .logotype { color: var(--paper); }
.footer-sub { line-height: 1.5; color: var(--muted-navy); }

.footer-nav { display: flex; gap: 56px; }

.footer-col { display: flex; flex-direction: column; gap: 16px; width: 190px; flex: none; }
.footer-head { color: var(--footer-head); }
.footer-col a { font-size: 14px; line-height: 1.45; color: var(--paper); }
.footer-col a:hover { color: var(--muted-navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--line-navy);
}

.footer-bottom .mono { color: var(--muted-navy); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--footer-link); }
.footer-links a:hover { color: var(--paper); }
